:root {
  --ink: #f8f1e7;
  --muted: #c8b9a3;
  --gold: #c99b5a;
  --copper: #9f5f49;
  --sage: #607464;
  --wine: #5e2838;
  --deep: #090807;
  --charcoal: #12100d;
  --panel: rgba(255, 248, 234, 0.08);
  --line: rgba(255, 242, 218, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 155, 90, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(94, 40, 56, 0.24), transparent 26rem),
    linear-gradient(135deg, #090807 0%, #15110e 45%, #0c100d 100%);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, textarea, select { font: inherit; }

.ambient-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.ambient-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

.cursor-light {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 155, 90, 0.12), transparent 68%);
  translate: -50% -50%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 28px), 1180px);
  min-height: 68px;
  translate: -50% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.62);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  transition: transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(12, 10, 8, 0.84);
  border-color: rgba(201, 155, 90, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f2d49e, #b77743 54%, #d4b577);
  box-shadow: 0 0 28px rgba(201, 155, 90, 0.35);
  padding: 2px;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-copy { color: var(--ink); white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); color: var(--muted); font-size: .92rem; }
.desktop-nav a { position: relative; transition: color .3s ease; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  scale: 0 1;
  background: var(--gold);
  transform-origin: left;
  transition: scale .35s var(--ease);
}
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { scale: 1 1; }

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #17100a;
  background: linear-gradient(135deg, #f2d49e, #c99b5a);
  font-size: .9rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.06);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .35s ease;
}
.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: grid;
  align-content: center;
  gap: 42px;
  padding: 110px 26px 34px;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(24px);
  transform: translateY(-100%);
  transition: transform .7s var(--ease);
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer nav { display: grid; gap: 18px; }
.mobile-drawer nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 14vw, 4.6rem);
  line-height: .92;
}
.drawer-contact { color: var(--muted); display: grid; gap: 10px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: 130px max(22px, calc((100vw - var(--max)) / 2)) 80px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img { filter: saturate(.9) contrast(1.08) brightness(.62); transform: scale(1.05); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,8,7,.9), rgba(9,8,7,.44) 47%, rgba(9,8,7,.82));
}
.hero-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.11), transparent 48%);
  animation: sheen 7s ease-in-out infinite;
}

.hero-content { max-width: 820px; }
.eyebrow, .section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: .94;
}
h1 { max-width: 980px; font-size: clamp(3.2rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.35rem, 5vw, 5.2rem); }
h3 { font-size: clamp(1.7rem, 3vw, 2.8rem); }
p { line-height: 1.75; }
.hero-lede {
  max-width: 660px;
  color: rgba(248,241,231,.78);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-weight: 700;
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  translate: -105% 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transition: translate .6s var(--ease);
}
.button:hover::before { translate: 105% 0; }
.button-primary { color: #17100a; background: linear-gradient(135deg, #f4d7a4, #c99b5a 58%, #9f5f49); border-color: transparent; }
.button-ghost { background: rgba(255,255,255,.07); backdrop-filter: blur(16px); }

.glass {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.hero-panel {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 72px;
  width: min(320px, calc(100vw - 44px));
  padding: 24px;
  border-radius: 18px;
}
.hero-panel span { color: var(--muted); font-size: .84rem; }
.hero-panel strong { display: block; margin-top: 8px; font-family: "Cormorant Garamond", serif; font-size: 1.7rem; line-height: 1.05; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; translate: -50% 0; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .2em; }

.section-wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; padding: clamp(80px, 12vw, 150px) 0; }
.editorial-section {
  position: relative;
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(88px, 14vw, 180px) 0;
  text-align: center;
}
.editorial-title { margin-top: 18px; }
.editorial-copy { max-width: 720px; margin: 26px auto 0; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.22rem); }
.section-heading { display: grid; gap: 14px; margin-bottom: 44px; max-width: 820px; }

.service-panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; min-height: 560px; }
.service-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform .65s var(--ease), border-color .45s ease;
}
.service-panel:nth-child(even) { transform: translateY(44px); }
.service-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: brightness(.62) saturate(.86);
  transition: transform 1.1s var(--ease), filter .6s ease;
}
.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(6,5,4,.96), rgba(6,5,4,.2));
}
.service-panel:hover { transform: translateY(-10px); border-color: rgba(201,155,90,.55); }
.service-panel:nth-child(even):hover { transform: translateY(24px); }
.service-panel:hover img { transform: scale(1.12); filter: brightness(.78) saturate(1); }
.panel-index { position: absolute; top: 22px; left: 22px; color: var(--gold); font-weight: 800; }
.service-panel p, .wide-copy p, .process-card p, .studio-note p { color: var(--muted); }

.service-overview,
.material-section,
.comparison-section,
.showcase-section,
.benefits-section,
.faq-section {
  position: relative;
}

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

.overview-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 155, 90, .16), transparent 15rem),
    rgba(255,255,255,.055);
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}

.overview-card span,
.tab-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.overview-card p { margin: 0; color: var(--muted); }

.material-tabs {
  display: grid;
  grid-template-columns: minmax(210px, .34fr) 1fr;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}

.tab-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.tab-button {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--muted);
  text-align: left;
  background: rgba(255,255,255,.045);
  cursor: pointer;
  transition: color .35s ease, border-color .35s ease, background .35s ease, transform .35s var(--ease);
}

.tab-button:hover,
.tab-button.is-active {
  color: var(--ink);
  border-color: rgba(201,155,90,.45);
  background: linear-gradient(135deg, rgba(201,155,90,.18), rgba(255,255,255,.06));
  transform: translateX(4px);
}

.tab-panels {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 0%, rgba(96,116,100,.2), transparent 18rem),
    rgba(8,7,6,.42);
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr minmax(240px, .55fr);
  gap: 22px;
  min-height: 520px;
  padding: clamp(22px, 4vw, 42px);
}

.tab-panel.is-active {
  display: grid;
  animation: tabReveal .65s var(--ease);
}

.tab-copy p { max-width: 680px; color: var(--muted); }
.tab-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}
.tab-copy dl div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}
.tab-copy dt { color: var(--gold); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.tab-copy dd { margin: 8px 0 0; color: var(--muted); line-height: 1.55; }

.mini-gallery {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 100%;
}
.mini-gallery img {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}

.comparison-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}
.comparison-row {
  display: grid;
  grid-template-columns: .8fr 1.45fr .85fr .85fr .72fr;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.comparison-row:first-child { border-top: 0; }
.comparison-head {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(201,155,90,.22), rgba(255,255,255,.055));
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.comparison-row span:first-child { color: var(--ink); font-weight: 800; }

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.gallery-tile:nth-child(1),
.gallery-tile:nth-child(4) { grid-row: span 2; }
.gallery-tile img {
  filter: brightness(.74) saturate(.9);
  transition: transform 1s var(--ease), filter .45s ease;
}
.gallery-tile:hover img { transform: scale(1.09); filter: brightness(.9) saturate(1); }
.gallery-tile figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(8,7,6,.56);
  backdrop-filter: blur(14px);
  font-size: .78rem;
}

.benefit-band {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 78px);
  border: 1px solid rgba(201,155,90,.28);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(201,155,90,.16), rgba(96,116,100,.13)),
    rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}
.benefit-band::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(255,255,255,.08), transparent, rgba(201,155,90,.12), transparent);
  animation: rotateMesh 22s linear infinite;
}
.benefit-band > * { position: relative; z-index: 1; }
.benefit-band h2 { max-width: 920px; font-size: clamp(2.1rem, 3.7vw, 4.2rem); }
.benefit-band p:not(.eyebrow) { max-width: 720px; color: var(--muted); }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}
.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metric {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}
.metric strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: .8;
  color: var(--gold);
}
.metric span { display: block; margin-top: 18px; color: var(--muted); max-width: 240px; }

.cinematic-cta {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  margin: 20px auto clamp(70px, 10vw, 130px);
  padding: clamp(42px, 8vw, 90px);
  overflow: hidden;
  border: 1px solid rgba(201,155,90,.28);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(96,116,100,.22), rgba(94,40,56,.24)),
    rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}
.cinematic-cta h2 { max-width: 820px; }
.cinematic-cta p:not(.eyebrow) { max-width: 640px; color: var(--muted); }
.cta-orbit {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 40deg, transparent, rgba(201,155,90,.18), transparent, rgba(96,116,100,.15), transparent);
  animation: rotateMesh 18s linear infinite;
  opacity: .75;
}
.cinematic-cta > *:not(.cta-orbit) { position: relative; }

.page-hero, .detail-hero, .contact-shell {
  width: min(var(--max), calc(100% - 44px));
  min-height: 86svh;
  margin: 0 auto;
  padding: 130px 0 70px;
  display: grid;
  grid-template-columns: 1.02fr .88fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}
.page-hero img, .detail-image {
  height: min(70svh, 720px);
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.compact-hero { min-height: 78svh; }

.immersive-list { display: grid; gap: 36px; }
.wide-service {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: 430px;
}
.wide-service:nth-child(even) .wide-image { order: 2; }
.wide-image {
  height: clamp(320px, 48vw, 560px);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.wide-image img, .related-card img { transition: transform .9s var(--ease), filter .5s ease; }
.wide-image:hover img, .related-card:hover img { transform: scale(1.08); filter: brightness(.82); }
.wide-copy span, .process-card span, .studio-note span { color: var(--gold); font-weight: 800; }
.text-link { color: var(--gold); font-weight: 800; }

.detail-copy p { max-width: 640px; color: var(--muted); font-size: 1.08rem; }
.detail-body { display: grid; gap: 60px; }
.studio-note {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}
.studio-note p { margin: 0; font-size: clamp(1.18rem, 2.3vw, 2rem); line-height: 1.45; }
.process-grid, .principles, .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  transition: transform .45s var(--ease), border-color .35s ease;
}
.process-card:hover { transform: translateY(-8px); border-color: rgba(201,155,90,.42); }
.related-card {
  display: grid;
  gap: 16px;
  overflow: hidden;
}
.related-card img {
  height: 280px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.contact-shell { grid-template-columns: .9fr 1fr; }
.contact-copy p { color: var(--muted); max-width: 560px; }
.contact-lines { display: grid; gap: 10px; margin-top: 28px; color: var(--muted); }
.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
}
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-size: .92rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255,255,255,.075);
  padding: 15px 16px;
  outline: none;
}
.contact-form option { color: #17100a; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); }
.form-message { margin: 0; color: var(--gold); }

.site-footer {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 82px 0 34px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  inset: 28px 0 auto auto;
  width: 42%;
  height: 260px;
  background: radial-gradient(circle, rgba(201,155,90,.16), transparent 70%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr minmax(190px, auto);
  gap: 34px;
  align-items: end;
}
.footer-brand { max-width: 850px; font-family: "Cormorant Garamond", serif; font-size: clamp(3rem, 7vw, 6.4rem); line-height: .9; }
.footer-position { max-width: 690px; color: var(--muted); }
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: #17100a;
  background: linear-gradient(135deg, #f4d7a4, #c99b5a);
  font-weight: 800;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); }
.footer-service-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .86fr .86fr;
  gap: 18px;
  margin-top: 54px;
}
.footer-service-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.footer-service-grid h3 {
  margin-bottom: 18px;
  font-size: 1.8rem;
}
.footer-service-grid p,
.footer-service-grid a {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
  transition: color .3s ease, transform .3s var(--ease);
}
.footer-service-grid a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.footer-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
}
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 54px; color: rgba(248,241,231,.54); font-size: .9rem; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes sheen {
  0%, 48% { transform: translateX(-80%); opacity: 0; }
  58% { opacity: .6; }
  100% { transform: translateX(80%); opacity: 0; }
}
@keyframes rotateMesh { to { transform: rotate(360deg); } }
@keyframes tabReveal {
  from { opacity: 0; transform: translateY(16px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .site-header { top: 12px; width: calc(100% - 22px); min-height: 62px; padding: 10px 10px 10px 14px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .brand-copy { font-size: .98rem; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { min-height: 100svh; padding: 118px 22px 78px; align-items: end; }
  h1 { font-size: clamp(3rem, 13.5vw, 5rem); }
  h2 { font-size: clamp(2.25rem, 9vw, 3.8rem); }
  .hero-panel { position: relative; right: auto; bottom: auto; margin-top: 34px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; min-height: 56px; }
  .service-panels, .metric-grid, .process-grid, .principles, .related-grid, .overview-grid, .footer-service-grid { grid-template-columns: 1fr; }
  .service-panels { min-height: 0; }
  .service-panel, .service-panel:nth-child(even), .service-panel:nth-child(even):hover { min-height: 390px; transform: none; }
  .page-hero, .detail-hero, .contact-shell, .wide-service, .studio-note { grid-template-columns: 1fr; }
  .page-hero, .detail-hero, .contact-shell { min-height: auto; padding-top: 118px; }
  .page-hero img, .detail-image { height: 48svh; min-height: 320px; border-radius: 20px; }
  .wide-service:nth-child(even) .wide-image { order: 0; }
  .wide-image { height: 360px; border-radius: 20px; }
  .cinematic-cta { border-radius: 20px; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .material-tabs { grid-template-columns: 1fr; border-radius: 20px; }
  .tab-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }
  .tab-button {
    min-width: max-content;
    scroll-snap-align: start;
  }
  .tab-button:hover,
  .tab-button.is-active { transform: translateY(-2px); }
  .tab-panel,
  .tab-panel.is-active { grid-template-columns: 1fr; min-height: auto; }
  .tab-copy dl { grid-template-columns: 1fr; }
  .comparison-table { overflow-x: auto; }
  .comparison-row { min-width: 860px; }
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .footer-service-links { grid-template-columns: 1fr; }
  .cursor-light { display: none; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  h1 { font-size: clamp(3.8rem, 7.2vw, 6.8rem); }
  .service-panels { grid-template-columns: repeat(3, 1fr); }
  .overview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .material-tabs { grid-template-columns: 220px 1fr; }
  .tab-copy dl { grid-template-columns: 1fr; }
  .masonry-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .brand-copy { font-size: .92rem; }
  .site-header { gap: 8px; }
  .hero { padding-inline: 18px; }
  .section-wrap,
  .editorial-section,
  .page-hero,
  .detail-hero,
  .contact-shell,
  .cinematic-cta,
  .site-footer { width: min(100% - 30px, var(--max)); }
  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(4) { grid-row: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
