@font-face {
  font-family: "Brittany Signature";
  src: url("./BrittanySignature.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #181818;
  --ink-soft: #4c4c4c;
  --paper: #f2f2ef;
  --paper-bright: #fbfbf8;
  --line: rgba(24, 24, 24, 0.14);
  --glass: rgba(18, 18, 18, 0.72);
  --glass-light: rgba(255, 255, 255, 0.88);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  --content: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(16px, 2.5vw, 38px);
  pointer-events: none;
}

.brand,
.nav-shell,
.menu-button {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-width: max-content;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.brand.dark {
  color: var(--ink);
  text-shadow: none;
}

.brand-cicada {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.brand-interiors {
  font-family: "Brittany Signature", "Allura", cursive;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1;
  transform: translateY(1px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(18px);
}

.nav-shell a {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-shell a:hover,
.nav-shell a:focus-visible,
.nav-shell a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 18px;
  height: 1px;
  background: var(--ink);
  display: block;
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button span::before {
  top: -6px;
}

.menu-button span::after {
  top: 6px;
}

.menu-open .menu-button span {
  background: transparent;
}

.menu-open .menu-button span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-button span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #1b1b1b;
}

.hero-layer {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 7s linear;
}

.hero-layer.active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36) 0%, transparent 48%);
}

.hero-content {
  min-height: 100svh;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 24px;
}

.hero-copy {
  width: min(690px, 100%);
  padding: clamp(24px, 4vw, 48px);
  color: #fff;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.78;
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.89;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.hero-summary {
  max-width: 610px;
  margin: 26px 0 0;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.light {
  color: var(--ink);
  background: #fff;
}

.button.ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.button.outline {
  border-color: var(--line);
  background: transparent;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.slide-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-counter {
  min-width: 56px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.icon-button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}

.ad-dock {
  align-self: end;
}

.ad-unit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: rgba(24, 24, 24, 0.54);
  background: var(--glass-light);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.ad-unit.rectangle {
  min-height: 286px;
  padding: 22px;
}

.ad-unit.banner {
  min-height: 126px;
  padding: 20px;
  border-color: var(--line);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.62);
}

.ad-label {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.ad-placeholder {
  text-align: center;
}

.ad-placeholder strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
}

.ad-placeholder span {
  display: block;
  max-width: 24ch;
  font-size: 11px;
  line-height: 1.6;
}

.ad-unit.is-filled .ad-placeholder,
.ad-unit.is-filled .ad-label {
  display: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  transform: translateX(-50%);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.page-shell {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: clamp(78px, 10vw, 150px) 0;
}

.section.compact {
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(52px, 7vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 94px);
}

.section-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

.section-heading h2,
.editorial-title,
.page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.section-heading h2 {
  max-width: 16ch;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
}

.lead-copy {
  max-width: 820px;
  margin: 0;
  font-size: clamp(17px, 2vw, 28px);
  line-height: 1.55;
  color: #2c2c2c;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.copy-card {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
}

.copy-card span {
  display: block;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.copy-card h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

.copy-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.ad-band {
  padding: 0 0 clamp(72px, 8vw, 120px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #d8d8d3;
}

.project-card:nth-child(1),
.project-card:nth-child(4) {
  grid-column: span 7;
}

.project-card:nth-child(2),
.project-card:nth-child(3) {
  grid-column: span 5;
}

.project-card:nth-child(5),
.project-card:nth-child(6) {
  grid-column: span 6;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.project-caption h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
  font-weight: 500;
}

.project-caption span {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  white-space: nowrap;
}

.dark-section {
  color: #fff;
  background: #181818;
}

.dark-section .section-kicker,
.dark-section .service-index,
.dark-section .service-copy,
.dark-section .article-card p,
.dark-section .article-meta {
  color: rgba(255, 255, 255, 0.66);
}

.services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(240px, 0.7fr) minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-index {
  font-size: 10px;
  letter-spacing: 0.16em;
}

.service-row h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1;
  font-weight: 500;
}

.service-copy {
  margin: 0;
  max-width: 620px;
  font-size: 13px;
  line-height: 1.75;
}

.service-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.service-row:hover .service-arrow {
  color: #181818;
  background: #fff;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-card {
  min-height: 430px;
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.52);
  transition: transform 250ms ease, background 250ms ease;
}

.article-card:hover {
  transform: translateY(-5px);
  background: #fff;
}

.article-meta {
  margin: 0 0 26px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.article-card h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 0.98;
  font-weight: 500;
}

.article-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.article-link {
  margin-top: auto;
  padding-top: 28px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(34px, 5vw, 70px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: #202020;
}

.contact-panel h2 {
  max-width: 13ch;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.contact-details {
  display: grid;
  gap: 10px;
  min-width: min(100%, 280px);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.contact-details a:hover {
  color: #fff;
}

.site-footer {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Interior pages */
.inner-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(242, 242, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.inner-header .header-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.inner-header .nav-shell {
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
  border-color: var(--line);
}

.page-hero {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(82px, 12vw, 170px) 0 clamp(58px, 8vw, 110px);
}

.page-hero.split {
  display: grid;
  grid-template-columns: 0.7fr minmax(0, 1fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: end;
}

.page-title {
  font-size: clamp(62px, 10vw, 140px);
  line-height: 0.83;
}

.page-intro {
  max-width: 670px;
  margin: 0;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.6;
  color: var(--ink-soft);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-feature {
  min-height: 520px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  background: #202020;
  color: #fff;
}

.service-feature:nth-child(2) {
  color: var(--ink);
  background: #d8d4cb;
}

.service-feature:nth-child(3) {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.service-feature .number {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.66;
}

.service-feature h2 {
  margin: auto 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.92;
  font-weight: 500;
}

.service-feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.74;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-step {
  min-height: 250px;
  padding: 26px 26px 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-step:not(:last-child) {
  margin-right: 26px;
  border-right: 1px solid var(--line);
}

.process-step span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.process-step h3 {
  margin: 52px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px) minmax(250px, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 118px;
}

.article-sidebar p {
  margin: 0 0 15px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.article-sidebar a {
  display: block;
  padding: 8px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.12;
}

.article-sidebar a:hover {
  opacity: 0.55;
}

.article-body article {
  scroll-margin-top: 120px;
  padding: 0 0 88px;
  margin: 0 0 88px;
  border-bottom: 1px solid var(--line);
}

.article-body article:last-child {
  border-bottom: 0;
}

.article-body .article-meta {
  margin-bottom: 20px;
}

.editorial-title {
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.95;
}

.article-body .intro {
  margin: 28px 0 36px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: #2f2f2f;
}

.article-body h3 {
  margin: 38px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
}

.article-body p,
.article-body li {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.article-body ul {
  padding-left: 20px;
}

.article-ad {
  position: sticky;
  top: 118px;
}

.privacy-content {
  max-width: 850px;
  padding-bottom: 120px;
}

.privacy-content h2 {
  margin: 52px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
}

.privacy-content p,
.privacy-content li {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 18px 60px;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.5)),
    url("project-8.webp") center / cover no-repeat;
}

.error-card {
  width: min(660px, 100%);
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(20, 20, 20, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.error-code {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(96px, 20vw, 210px);
  line-height: 0.7;
  font-weight: 500;
}

.error-card h1 {
  margin: 34px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 500;
}

.error-card p {
  margin: 0 auto 30px;
  max-width: 44ch;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-cicada {
    font-size: 28px;
  }

  .brand-interiors {
    font-size: 20px;
  }

  .inner-header .brand,
  .inner-header .menu-button {
    position: relative;
    z-index: 2;
  }

  .menu-button {
    display: flex;
  }

  .site-header .nav-shell,
  .inner-header .nav-shell {
    position: fixed;
    inset: 0;
    padding: 100px 24px 40px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    border: 0;
    border-radius: 0;
    background: rgba(242, 242, 239, 0.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .menu-open .site-header .nav-shell,
  .menu-open .inner-header .nav-shell {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header .nav-shell a,
  .inner-header .nav-shell a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-header .nav-shell a:hover,
  .site-header .nav-shell a:focus-visible,
  .site-header .nav-shell a[aria-current="page"],
  .inner-header .nav-shell a:hover,
  .inner-header .nav-shell a:focus-visible,
  .inner-header .nav-shell a[aria-current="page"] {
    color: var(--ink);
    background: transparent;
    transform: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .ad-dock {
    width: min(100%, 520px);
  }

  .ad-unit.rectangle {
    min-height: 140px;
  }

  .copy-grid,
  .article-grid,
  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: 350px;
  }

  .service-row {
    grid-template-columns: 50px minmax(180px, 0.7fr) minmax(0, 1fr) auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar,
  .article-ad {
    position: static;
  }

  .article-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .article-sidebar p {
    grid-column: 1 / -1;
  }

  .article-ad .ad-unit {
    min-height: 140px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero-stage,
  .hero-content {
    min-height: 100svh;
  }

  .hero-content {
    width: calc(100% - 20px);
    padding: 92px 0 18px;
    gap: 10px;
  }

  .hero-copy {
    padding: 25px;
    border-radius: 20px;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(46px, 15vw, 72px);
  }

  .hero-summary {
    margin-top: 18px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    flex: 1 1 150px;
  }

  .hero-meta {
    margin-top: 24px;
  }

  .ad-unit.rectangle {
    min-height: 112px;
    border-radius: 16px;
  }

  .ad-placeholder strong {
    font-size: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .page-hero.split {
    grid-template-columns: 1fr;
  }

  .copy-grid {
    gap: 10px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-card,
  .project-card:nth-child(n) {
    grid-column: 1;
    min-height: 390px;
  }

  .project-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .service-row {
    grid-template-columns: 38px 1fr auto;
    gap: 12px;
    align-items: start;
  }

  .service-copy {
    grid-column: 2 / -1;
  }

  .service-arrow {
    width: 38px;
    height: 38px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer {
    flex-direction: column;
  }

  .inner-header .header-inner {
    min-height: 70px;
  }

  .page-hero {
    padding-top: 74px;
  }

  .page-title {
    font-size: clamp(66px, 23vw, 104px);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step:not(:last-child) {
    margin-right: 0;
    border-right: 0;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-body article {
    margin-bottom: 64px;
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-layer.active {
    transform: scale(1.02);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
