@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --text: #171717;
  --muted: #7a746b;
  --soft: #e7e1d8;
  --line: #dfd8cf;
  --hero-text: #f7f0e7;
  --hero-subtext: rgba(247, 240, 231, 0.84);
  --hero-ui: rgba(247, 240, 231, 0.9);
  --shadow: 0 20px 60px rgba(15, 15, 15, 0.06);
  --container: 1200px;
  --header-h: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.05;
}

p {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  pointer-events: none;
}

.site-header__inner {
  height: var(--header-h);
  max-width: calc(var(--container) + 4rem);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: auto;
  height: 2.5rem;
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.menu-button span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.menu-button span:nth-child(1),
.menu-button span:nth-child(3) {
  width: 1.5rem;
}

.menu-button span:nth-child(2) {
  width: 1rem;
}

body.menu-open .menu-button span:nth-child(1) {
  width: 1.5rem;
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  width: 1.5rem;
  opacity: 0;
}

body.menu-open .menu-button span:nth-child(3) {
  width: 1.5rem;
  transform: translateY(-6px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.menu-layout {
  min-height: 100vh;
  display: flex;
}

.menu-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 3rem;
}

.menu-nav a {
  display: block;
  padding: 0.35rem 0;
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  line-height: 1;
  transition: opacity 0.2s ease;
  opacity: 0.3;
}

.menu-nav a[aria-current="page"] {
  opacity: 1;
}

.menu-nav a:hover {
  opacity: 1;
}

.menu-aside {
  display: none;
  width: 18rem;
  border-left: 1px solid var(--line);
  padding: calc(var(--header-h) + 3rem) 2rem 2rem;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2rem;
}

.menu-aside__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.menu-aside__text,
.menu-aside a {
  font-size: 0.92rem;
  color: #5f5a53;
  line-height: 1.55;
}

.page {
  flex: 1 1 auto;
  padding-top: var(--header-h);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
  background: #ede9e2;
}

.hero--home {
  min-height: 100vh;
  margin-top: calc(-1 * var(--header-h));
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 12, 10, 0.16) 0%, rgba(15, 12, 10, 0.22) 40%, rgba(15, 12, 10, 0.34) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
}

.hero__content--top {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.hero__title {
  font-size: 3.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-text);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.hero__subtitle {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--hero-subtext);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(247, 240, 231, 0.76);
}

.hero__scroll span:first-child {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__scroll span:last-child {
  width: 1px;
  height: 2rem;
  background: rgba(247, 240, 231, 0.56);
}

body.page-home:not(.menu-open) .site-header__inner {
  color: var(--hero-ui);
}

body.page-home:not(.menu-open) .menu-button {
  color: var(--hero-ui);
}

body.page-home:not(.menu-open) .menu-button span {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 5rem 1.5rem;
}

.section--wide {
  padding: 6rem 1.5rem;
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #8a847b;
}

.headline {
  font-size: 2.2rem;
  line-height: 1.2;
  max-width: 22ch;
}

.lede {
  max-width: 58ch;
  font-size: 1.05rem;
  color: #615b54;
}

.quote {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  line-height: 1.45;
  font-style: italic;
  color: #615a52;
}

.border-top {
  border-top: 1px solid var(--line);
}

.border-bottom {
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.03);
}

.card__label {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f8a81;
}

.content-grid {
  display: grid;
  gap: 2.5rem;
}

.content-grid--split {
  align-items: start;
}

.stack {
  display: grid;
  gap: 1.2rem;
}

.copy {
  max-width: 62ch;
  font-size: 1.02rem;
  color: #635d56;
}

.copy p + p {
  margin-top: 1rem;
}

.image-frame img {
  object-fit: cover;
}

.image-frame--portrait img {
  aspect-ratio: 3 / 4;
}

.image-frame--landscape img {
  aspect-ratio: 4 / 3;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.stat-card__value {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.stat-card__label {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c877f;
}

.stat-card__copy {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: #645f58;
}

.tech-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: #5f5a53;
}

.tech-list strong {
  font-weight: 500;
}

.client-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-card {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.client-card__name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.client-card__meta {
  margin-top: 0.35rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b857d;
}

.collection-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collection-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-list li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: #5f5a53;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.address-block {
  display: grid;
  gap: 0.6rem;
}

.address-block__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c877f;
}

.address-block__text {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #5d5851;
}

.contact-link {
  font-size: 1.05rem;
  color: #1e1e1e;
}

.page-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 1.25rem 1.5rem;
}

.page-footer__inner {
  max-width: calc(var(--container) + 1rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-note,
.footer-link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c877f;
}

.footer-link:hover {
  color: var(--text);
}

.page-title {
  font-size: 3.6rem;
}

.page-kicker {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #8c877f;
}

.menu-note {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9b958d;
}

body.page-admin {
  background:
    radial-gradient(circle at top left, rgba(94, 78, 58, 0.12), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(56, 75, 55, 0.1), transparent 26%),
    linear-gradient(180deg, #f7f2ea 0%, #f1ebe2 100%);
}

body.page-admin .menu-overlay {
  background:
    radial-gradient(circle at top left, rgba(94, 78, 58, 0.16), transparent 32%),
    linear-gradient(180deg, #f7f2ea 0%, #f1ebe2 100%);
}

body.page-admin .page {
  position: relative;
  z-index: 0;
}

body.page-admin .page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 20%);
  opacity: 0.7;
}

.admin-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 2rem;
}

.admin-hero__inner {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.admin-hero__copy {
  display: grid;
  gap: 1rem;
}

.admin-hero__lede {
  max-width: 52ch;
  font-size: 1rem;
}

.admin-hero__panel {
  padding: 1.25rem;
  border: 1px solid rgba(95, 90, 83, 0.16);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.admin-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6c655d;
}

.admin-status__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3d6b49;
  box-shadow: 0 0 0 0.45rem rgba(61, 107, 73, 0.12);
}

.admin-meta {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.admin-meta div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(95, 90, 83, 0.12);
}

.admin-meta dt,
.admin-meta dd {
  margin: 0;
  font-size: 0.82rem;
  color: #615a52;
}

.admin-meta dt {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a847b;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(95, 90, 83, 0.18);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.admin-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(95, 90, 83, 0.28);
}

.admin-button--primary {
  background: #1f2d22;
  color: #f8f4ec;
  border-color: #1f2d22;
}

.admin-button--primary:hover {
  background: #2a3a2e;
}

.admin-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.admin-stat-grid {
  gap: 1rem;
}

.admin-stat-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 90, 83, 0.14);
  box-shadow: var(--shadow);
}

.admin-grid {
  display: grid;
  gap: 1rem;
}

.admin-card {
  padding: 1.25rem;
  border: 1px solid rgba(95, 90, 83, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.admin-card--wide {
  min-height: 100%;
}

.admin-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.admin-card__title {
  margin-top: 0.25rem;
  font-size: 1.85rem;
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #1f2d22;
  color: #f8f4ec;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-chip--soft {
  background: rgba(31, 45, 34, 0.08);
  color: #314035;
}

.admin-flow {
  display: grid;
  gap: 0.9rem;
}

.admin-flow__row {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) 2.2rem;
  gap: 0.85rem;
  align-items: center;
}

.admin-flow__label,
.admin-flow__value,
.admin-list__meta,
.admin-table__row {
  font-size: 0.9rem;
  color: #5f5a53;
}

.admin-flow__track {
  height: 0.6rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(95, 90, 83, 0.1);
}

.admin-flow__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7b6957, #2f5640);
}

.admin-list {
  display: grid;
  gap: 0.75rem;
}

.admin-list__item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(95, 90, 83, 0.12);
}

.admin-list__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.admin-list__item--urgent {
  padding-left: 0.75rem;
  border-left: 2px solid #8b5b3f;
  background: linear-gradient(90deg, rgba(139, 91, 63, 0.04), transparent);
}

.admin-list__title {
  font-size: 1rem;
  color: #221f1c;
}

.admin-list__meta {
  margin-top: 0.2rem;
}

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(95, 90, 83, 0.08);
  color: #615a52;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-status-badge--urgent {
  background: rgba(139, 91, 63, 0.12);
  color: #8b5b3f;
}

.admin-table {
  display: grid;
  gap: 0.2rem;
}

.admin-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.9fr 0.6fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(95, 90, 83, 0.12);
}

.admin-table__row--head {
  border-top: 0;
  padding-top: 0;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a847b;
}

.admin-table__row strong {
  font-weight: 500;
  color: #2b2621;
}

.admin-release-list {
  display: grid;
  gap: 1rem;
}

.admin-release-card {
  padding: 0.95rem;
  border: 1px solid rgba(95, 90, 83, 0.1);
  background: rgba(255, 255, 255, 0.52);
}

.admin-release-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.admin-release-card__score {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  color: #1f2d22;
}

.admin-matrix {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-matrix__tile {
  padding: 1rem;
  border: 1px solid rgba(95, 90, 83, 0.1);
  background: rgba(255, 255, 255, 0.52);
}

.admin-matrix__value {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
  color: #1f2d22;
}

.admin-matrix__label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: #625c55;
}

.admin-timeline {
  display: grid;
  gap: 1rem;
}

.admin-timeline__item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(95, 90, 83, 0.12);
}

.admin-timeline__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.admin-timeline__time {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a847b;
}

.admin-activity {
  display: grid;
  gap: 0.95rem;
}

.admin-activity__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(95, 90, 83, 0.12);
}

.admin-activity__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.admin-activity__mark {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #7b6957;
  box-shadow: 0 0 0 0.35rem rgba(123, 105, 87, 0.12);
}

@media (min-width: 760px) {
  .admin-hero__inner {
    grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.95fr);
    gap: 2rem;
  }

  .admin-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-card__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 759px) {
  .admin-table__row,
  .admin-flow__row,
  .admin-timeline__item {
    grid-template-columns: 1fr;
  }

  .admin-card__header,
  .admin-release-card__top,
  .admin-list__item {
    flex-direction: column;
  }

  .admin-table__row--head {
    display: none;
  }
}

@media (min-width: 760px) {
  .hero__title {
    font-size: 5.25rem;
  }

  .hero__subtitle {
    font-size: 0.82rem;
  }

  .headline {
    font-size: 2.9rem;
  }

  .quote {
    font-size: 2rem;
  }

  .page-title {
    font-size: 5rem;
  }

  .section,
  .section--wide {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .content-grid--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .gallery-grid,
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .page-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .site-header__inner,
  .page-footer__inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .site-logo img {
    height: 2.75rem;
  }

  .menu-nav {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .menu-nav a {
    font-size: 4rem;
  }

  .menu-aside {
    display: flex;
  }

  .hero__title {
    font-size: 8rem;
  }

  .hero__subtitle {
    margin-top: 1.75rem;
  }

  .headline {
    font-size: 4rem;
  }

  .quote {
    font-size: 2.4rem;
  }

  .page-title {
    font-size: 6rem;
  }

  .section,
  .section--wide {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
}

@media (max-width: 639px) {
  .hero__content {
    padding: 4.5rem 1rem 2rem;
  }

  .hero__title {
    font-size: 2.75rem;
    letter-spacing: 0.075em;
  }

  .hero__subtitle {
    margin-top: 1rem;
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    white-space: nowrap;
  }

  .hero__scroll {
    bottom: 1.25rem;
  }

  .headline {
    font-size: 1.7rem;
    max-width: 15ch;
  }

  .quote {
    font-size: 1.2rem;
  }

  .page-title {
    font-size: 2.35rem;
  }

  .section,
  .section--wide {
    padding: 3rem 1rem;
  }

  .content-grid {
    gap: 1.75rem;
  }

  .gallery-grid,
  .collection-grid,
  .client-grid,
  .stat-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tech-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .tech-list strong {
    min-width: 2.5rem;
  }

  .card__label,
  .client-card__meta,
  .stat-card__label,
  .eyebrow,
  .page-kicker,
  .footer-note,
  .footer-link,
  .address-block__label,
  .menu-aside__label,
  .menu-aside a,
  .menu-aside__text {
    letter-spacing: 0.14em;
  }
}
