/* ==========================================================================
   Axis Media Works — site stylesheet (editorial redesign, 2026-08)
   Selectors that JavaScript depends on are unchanged: .site-header/.is-scrolled,
   .menu-toggle, .site-nav/.is-open, body.nav-open/.modal-open, .reveal/.is-visible,
   .gallery-collection .gallery-card (+ .gallery-feature/.wide/.tall), .gallery-lightbox*,
   .modal*, .choice-grid, .lead-form, .category-fields.is-active, .form-status.is-error,
   .hp-field, .mobile-start, .work-card, .mini-gallery.
   ========================================================================== */

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/playfair-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/playfair-latin-italic-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/inter-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Ms Madi";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/msmadi-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ivory: #f5f1e9;
  --ivory-2: #ede7db;
  --ivory-3: #e6dfd0;
  --paper: #faf8f3;
  --white: #ffffff;
  --navy: #14284b;
  --navy-deep: #0e1c36;
  --navy-ink: #1a2540;
  --blue: #3a6595;
  --blue-soft: #dbe5f0;
  --gold: #b48447;
  --gold-soft: #d9c39a;
  --gold-line: rgba(180, 132, 71, 0.6);
  --ink: #1c2130;
  --charcoal: #2b3242;
  --muted: #5d6573;
  --line: rgba(20, 40, 75, 0.14);
  --line-strong: rgba(20, 40, 75, 0.28);
  --shadow: 0 30px 70px rgba(20, 30, 50, 0.16);
  --shadow-soft: 0 14px 36px rgba(20, 30, 50, 0.1);
  --radius: 4px;
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --script: "Ms Madi", "Segoe Script", "Brush Script MT", cursive;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open,
body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
input, select, textarea { min-width: 0; }
figure { margin: 0; }
ol, ul { margin: 0; padding: 0; }

.container {
  width: min(var(--container), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
}

.skip-link {
  position: absolute; top: 12px; left: 12px; z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px; border-radius: 3px;
  background: var(--navy); color: #fff; text-decoration: none; font-weight: 600;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- typography ------------------------------------------------- */
h1, h2, h3, h4 { margin: 0; color: var(--navy-ink); font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }
h1 { font-size: clamp(3rem, 6.6vw, 6.4rem); line-height: 0.98; }
h2 { font-size: clamp(2rem, 3.6vw, 3.3rem); line-height: 1.06; }
h3 { font-size: clamp(1.25rem, 1.7vw, 1.6rem); line-height: 1.2; }
h4 { font-family: var(--sans); font-weight: 600; font-size: 1rem; }
p { margin: 0 0 1em; color: var(--charcoal); }
p:last-child { margin-bottom: 0; }
em, .ital { font-style: italic; }
.serif { font-family: var(--serif); }
.script { font-family: var(--script); font-weight: 400; line-height: 1; letter-spacing: 0; }
.caps { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; font-weight: 600; }
.lead { color: var(--charcoal); font-size: clamp(1.05rem, 1.35vw, 1.2rem); line-height: 1.7; max-width: 34em; }
.muted { color: var(--muted); }
strong { font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.5;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.rule::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.7; }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy); text-decoration: none; font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.text-link .arrow { transition: transform 0.25s var(--ease-out); }
.text-link:hover .arrow, .text-link:focus-visible .arrow { transform: translateX(5px); }
.text-link.underline span:first-child { border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.arrow { display: inline-block; font-family: var(--sans); }
.arrow-icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- buttons ---------------------------------------------------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 0 26px;
  border: 1px solid var(--navy); border-radius: 3px;
  background: var(--navy); color: #fff;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; line-height: 1;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s var(--ease-out), box-shadow 0.22s ease;
}
.button:hover, .button:focus-visible { background: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(14, 28, 54, 0.22); }
.button .arrow { transition: transform 0.25s var(--ease-out); }
.button:hover .arrow { transform: translateX(4px); }
.button-secondary { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--navy); color: #fff; }
.button-light { background: #fff; color: var(--navy); border-color: #fff; }
.button-light:hover { background: var(--ivory-2); }

.play-link {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--navy); text-decoration: none;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
}
.play-link .ring {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.play-link .ring svg { width: 12px; height: 12px; fill: var(--navy); margin-left: 2px; }
.play-link:hover .ring { background: var(--navy); border-color: var(--navy); }
.play-link:hover .ring svg { fill: #fff; }
.play-link span:last-child { border-bottom: 1px solid var(--gold); padding-bottom: 3px; }

.circle-cta {
  position: relative; display: grid; place-items: center; align-content: center; gap: 10px;
  width: 168px; height: 168px; padding: 20px;
  border-radius: 50%; border: 0;
  background: var(--navy); color: #fff; text-align: center; text-decoration: none;
  font-family: var(--sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1.5;
  cursor: pointer; box-shadow: 0 24px 50px rgba(14, 28, 54, 0.28);
  transition: transform 0.35s var(--ease-out), background 0.25s ease;
}
.circle-cta svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.4; }
.circle-cta::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.28); }
.circle-cta:hover, .circle-cta:focus-visible { transform: scale(1.04); background: var(--navy-deep); }

/* ---------- header ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(245, 241, 233, 0);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(245, 241, 233, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-shell {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  min-height: 92px;
  width: min(1360px, calc(100% - 2 * clamp(20px, 4vw, 56px)));
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-ink); text-decoration: none; }
.brand img { width: 40px; height: 40px; }
.brand-word { display: grid; line-height: 1; }
.brand-axis { font-family: var(--sans); font-weight: 600; font-size: 1.28rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--navy-ink); }
.brand-sub { margin-top: 5px; font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(14px, 2.2vw, 34px); }
.site-nav a {
  position: relative; display: inline-flex; align-items: center; min-height: 40px;
  color: var(--charcoal); text-decoration: none; font-size: 0.86rem; font-weight: 500; letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 1px;
  background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform 0.28s var(--ease-out);
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.current { color: var(--navy); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.current::after { transform: scaleX(1); }
.site-nav a.current { font-weight: 600; }
.site-nav .nav-cta { display: none; }
.header-cta { min-height: 46px; padding: 0 22px; font-size: 0.7rem; }

.menu-toggle {
  display: none; width: 46px; height: 46px; place-content: center; gap: 6px;
  border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 1.5px; background: var(--navy); transition: transform 0.22s ease, opacity 0.22s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- decorative primitives -------------------------------------- */
.rail-text {
  position: absolute; left: 0; top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  color: var(--muted); font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 500;
}
.rail-text .dot { display: inline-block; margin: 0 14px; color: var(--gold); }
.hairline { border: 0; border-top: 1px solid var(--line); margin: 0; }
.gold-rule { width: 64px; height: 1px; background: var(--gold); }
.curve { display: block; width: 100%; height: clamp(40px, 7vw, 110px); }
.curve path { fill: currentColor; }
.stamp { position: relative; width: 116px; height: 116px; }
.stamp svg { width: 100%; height: 100%; animation: spin 40s linear infinite; }
.stamp text { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; fill: var(--charcoal); font-weight: 500; }
.stamp img { position: absolute; left: 50%; top: 50%; width: 42px; height: 42px; transform: translate(-50%, -50%); }
@keyframes spin { to { transform: rotate(360deg); } }
.underline-stroke { position: absolute; left: 0; right: 0; bottom: -0.14em; height: 0.28em; width: 100%; pointer-events: none; }
.underline-stroke path { fill: none; stroke: var(--gold); stroke-width: 3.2; stroke-linecap: round; }
.doodle-arrow { width: 84px; height: 34px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--navy); color: var(--navy); font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  background: var(--paper);
}
.icon-line { width: 26px; height: 26px; stroke: var(--navy); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }

/* photograph boxes: the element wrapping <img> is what clips (showcase measures it) */
.ph { position: relative; overflow: hidden; background: var(--ivory-3); min-width: 0; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease-out); }
.ph:hover img { transform: scale(1.035); }
.ph.rot-l { transform: rotate(-1.6deg); }
.ph.rot-r { transform: rotate(1.4deg); }
.ph.arch { border-radius: 999px 999px 4px 4px; }
.ph.round { border-radius: 50%; }
.ph.frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35); }

.section { padding: clamp(64px, 8vw, 128px) 0; }
.section-tight { padding: clamp(40px, 5vw, 80px) 0; }

/* ---------- HOME: hero ------------------------------------------------- */
.page-home main { overflow: clip; }
.home-hero {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory) 100%);
  padding: clamp(24px, 3vw, 44px) 0 clamp(72px, 8vw, 132px);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
  align-items: center; gap: clamp(28px, 3vw, 56px);
  width: min(1360px, calc(100% - 2 * clamp(20px, 4vw, 56px)));
  margin: 0 auto;
}
.hero-copy { position: relative; padding: clamp(10px, 3vw, 40px) 0 0 clamp(28px, 4vw, 64px); }
.hero-copy .rail-text { left: 0; top: 36%; }
.hero-copy .eyebrow { display: block; margin-bottom: 26px; line-height: 1.7; }
.hero-title { font-size: clamp(3.4rem, 5.9vw, 5.9rem); line-height: 0.98; color: var(--navy-ink); }
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .made { position: relative; display: inline-block; font-style: italic; color: var(--navy); font-weight: 400; padding-right: 0.08em; }
.hero-title .made .underline-stroke { bottom: -0.2em; }
.hero-copy .lead { margin: 30px 0 0; max-width: 26em; font-size: clamp(0.98rem, 1.15vw, 1.08rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 36px; }
.hero-stamp { position: absolute; left: clamp(-34px, -2.4vw, -8px); bottom: -150px; opacity: 0.9; }

.hero-stage {
  --lean: 46px; --pgap: 12px;
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 1fr 1.02fr;
  grid-template-rows: 1fr 1fr;
  height: clamp(400px, 39vw, 580px);
  padding-left: var(--lean);
  margin-right: calc(-1 * clamp(20px, 4vw, 56px));
}
.hero-panel {
  position: relative; display: block; overflow: hidden; color: #fff; text-decoration: none;
  clip-path: polygon(var(--lean) 0, 100% 0, calc(100% - var(--lean)) 100%, 0 100%);
  background: var(--ivory-3);
}
.hero-panel .ph { position: absolute; inset: 0; }
.hero-panel .ph img { transition: transform 1.2s var(--ease-out); }
.hero-panel:hover .ph img { transform: scale(1.05); }
.hero-panel::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 52%;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0) 0%, rgba(10, 18, 34, 0.55) 100%);
  pointer-events: none;
}
.hero-panel .caption { position: absolute; left: calc(var(--lean) * 0.55 + 20px); bottom: 26px; z-index: 2; display: grid; gap: 6px; }
.hero-panel .caption .script { font-size: clamp(1.9rem, 2.6vw, 2.7rem); color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35); }
.hero-panel .caption .caps { font-size: 0.66rem; letter-spacing: 0.24em; color: rgba(255, 255, 255, 0.92); }
.hero-panel:nth-child(1) { grid-column: 1; grid-row: 1 / 3; margin-left: calc(-1 * var(--lean)); }
.hero-panel:nth-child(2) { grid-column: 2; grid-row: 1; margin-left: calc(var(--pgap) - var(--lean)); margin-bottom: calc(var(--pgap) / 2); margin-right: 22px; }
.hero-panel:nth-child(3) { grid-column: 2; grid-row: 2; margin-left: calc(var(--pgap) - var(--lean) + 30px); margin-top: calc(var(--pgap) / 2); margin-right: -30px; z-index: 2; }
.hero-panel:nth-child(4) { grid-column: 3; grid-row: 1 / 3; margin-left: calc(var(--pgap) - var(--lean)); }
.hero-panel:nth-child(2) .caption, .hero-panel:nth-child(3) .caption { bottom: 20px; }
.hero-panel:nth-child(3) .caption { left: calc(var(--lean) * 0.55 + 20px + 30px); }
.hero-panel:nth-child(4) .caption { left: calc(var(--lean) * 0.55 + 20px); }
.hero-panel:nth-child(4) .caption { left: auto; right: calc(var(--lean) * 0.5 + 24px); text-align: right; justify-items: end; }
.hero-panel:nth-child(4) .caption { right: auto; left: calc(var(--lean) * 0.55 + 20px); text-align: left; justify-items: start; }
.hero-panel:nth-child(4) { margin-right: calc(-1 * var(--lean) * 0.6); }

/* ---------- HOME: band with process + recent work ---------------------- */
.home-band { position: relative; background: var(--ivory-2); color: var(--ivory-2); margin-top: -1px; }
.home-band .curve-top { position: absolute; left: 0; right: 0; bottom: 100%; color: var(--ivory-2); }
.band-grid {
  display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 90px); align-items: start;
  padding: clamp(28px, 4vw, 64px) 0 clamp(60px, 7vw, 100px);
  color: var(--ink);
}
.process-head { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(20px, 3vw, 44px); align-items: start; }
.process-title { font-size: clamp(1.7rem, 2.3vw, 2.15rem); line-height: 1.15; max-width: 7.5em; }
.process-title .script { display: block; font-size: clamp(2.2rem, 3vw, 2.9rem); color: var(--navy); margin-top: 0.1em; }
.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; list-style: none; counter-reset: step; }
.process li { position: relative; display: grid; justify-items: center; text-align: center; gap: 12px; padding: 0 6px; }
.process li .step-num { position: relative; z-index: 1; }
.process li:not(:last-child)::before {
  content: ""; position: absolute; top: 23px; left: calc(50% + 30px); right: calc(-50% + 30px);
  border-top: 1.5px dotted rgba(20, 40, 75, 0.35);
}
.process .icon-line { margin-top: 4px; }
.process strong { font-size: 0.86rem; color: var(--navy-ink); font-weight: 600; margin-top: -2px; }
.process p { font-size: 0.78rem; line-height: 1.5; color: var(--muted); max-width: 15em; }
.recent { display: grid; gap: 14px; align-content: start; }
.recent h2 { font-size: clamp(1.7rem, 2.3vw, 2.15rem); }
.recent .text-link { margin-top: 2px; }
.recent-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 14px; align-items: end; }
.recent-strip .ph { aspect-ratio: 1.05; }
.recent-strip .ph:nth-child(1) { aspect-ratio: 1.15; }
.recent-strip .ph:nth-child(2) { aspect-ratio: 0.9; }
.recent-strip .ph:nth-child(3) { aspect-ratio: 1.05; margin-bottom: 12px; }
.recent-strip .ph:nth-child(4) { aspect-ratio: 0.95; }

/* ---------- HOME: index + collage -------------------------------------- */
.home-index { position: relative; padding: clamp(80px, 9vw, 150px) 0 clamp(60px, 7vw, 120px); background: var(--ivory); }
.index-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 110px); align-items: start; }
.index-copy { position: sticky; top: 120px; }
.index-copy h2 { max-width: 12em; margin-bottom: 26px; }
.index-list { list-style: none; border-top: 1px solid var(--line); margin-top: 34px; }
.index-list li { border-bottom: 1px solid var(--line); }
.index-list a {
  display: grid; grid-template-columns: 44px minmax(0, 1fr) 40px; gap: 18px; align-items: baseline;
  padding: 22px 0; color: inherit; text-decoration: none;
  transition: padding-left 0.35s var(--ease-out);
}
.index-list a:hover, .index-list a:focus-visible { padding-left: 8px; }
.index-list .num { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); font-weight: 600; }
.index-list h3 { font-size: clamp(1.4rem, 1.9vw, 1.85rem); transition: color 0.2s ease; }
.index-list a:hover h3 { color: var(--blue); }
.index-list p { margin: 6px 0 0; font-size: 0.9rem; color: var(--muted); max-width: 30em; }
.index-list .go { justify-self: end; color: var(--navy); transition: transform 0.35s var(--ease-out); }
.index-list a:hover .go { transform: translateX(6px); }
.collage {
  position: relative;
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: clamp(28px, 3.9vw, 58px);
  gap: 0;
}
.collage .ph { box-shadow: var(--shadow-soft); }
.collage .c1 { grid-column: 1 / 8; grid-row: 1 / 10; z-index: 1; }
.collage .c2 { grid-column: 8 / 13; grid-row: 2 / 6; z-index: 2; margin-left: 12px; }
.collage .c3 { grid-column: 7 / 13; grid-row: 7 / 11; z-index: 3; margin-left: -10px; }
.collage .c4 { grid-column: 2 / 6; grid-row: 10 / 15; z-index: 4; margin-top: -14px; margin-right: 12px; }
.collage .c5 { grid-column: 6 / 12; grid-row: 12 / 16; z-index: 2; margin-left: 12px; }
.collage .note { position: absolute; right: 2%; top: -58px; display: grid; gap: 2px; text-align: right; z-index: 5; }
.collage .note .script { font-size: 1.9rem; color: var(--navy); }
.collage .note .caps { font-size: 0.6rem; color: var(--muted); }

/* ---------- HOME: closing band ----------------------------------------- */
.home-close { position: relative; background: var(--ivory-2); color: var(--ivory-2); padding-bottom: 0; }
.home-close .curve-top { position: absolute; left: 0; right: 0; bottom: 100%; color: var(--ivory-2); }
.close-grid {
  position: relative; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  gap: clamp(28px, 4vw, 60px); align-items: center; color: var(--ink);
  padding: clamp(24px, 3vw, 40px) 0 clamp(64px, 6vw, 96px);
}
.close-photo { position: relative; }
.close-photo .ph { aspect-ratio: 0.9; border-radius: 0 340px 340px 0; margin-left: calc(-1 * var(--gutter)); box-shadow: var(--shadow); }
.close-photo .stamp { position: absolute; left: 4%; bottom: -34px; }
.close-copy { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.close-copy h2 { font-size: clamp(2rem, 3vw, 2.9rem); padding-right: clamp(20px, 3vw, 44px); border-right: 1px solid var(--line-strong); }
.close-copy h2 .ital { display: block; color: var(--navy); }
.close-copy p { font-size: 0.95rem; max-width: 26em; }
.close-action { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-top: 12px; }
.close-action .script { font-size: clamp(1.9rem, 2.4vw, 2.5rem); color: var(--navy); line-height: 1.05; }
.close-action .hint { display: flex; align-items: center; gap: 18px; }
.close-action .doodle-arrow { transform: rotate(-8deg); }

/* ---------- FOOTER ----------------------------------------------------- */
.site-footer { position: relative; background: var(--navy); color: rgba(255, 255, 255, 0.86); }
.footer-shell { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); gap: 32px; padding: 52px 0 40px; }
.footer-shell .brand { color: #fff; }
.footer-shell .brand-axis, .footer-shell .brand-sub { color: #fff; }
.footer-shell p { margin: 18px 0 0; max-width: 30em; color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }
.footer-shell nav, .footer-contact { display: grid; gap: 10px; align-content: start; }
.footer-shell nav a, .footer-contact a { color: rgba(255, 255, 255, 0.86); text-decoration: none; font-size: 0.86rem; transition: color 0.2s ease; }
.footer-shell nav a:hover, .footer-contact a:hover { color: var(--gold-soft); }
.footer-label { display: block; margin-bottom: 8px; font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.footer-contact small { color: rgba(255, 255, 255, 0.55); font-size: 0.78rem; margin-top: 8px; }
.footer-strip { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.footer-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 30px; padding: 18px 0; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); }
.footer-strip .dot { color: var(--gold-soft); margin: 0 10px; }

/* ---------- SERVICE / CATEGORY PAGES ----------------------------------- */
.svc-hero { position: relative; padding: clamp(24px, 3vw, 44px) 0 clamp(48px, 5vw, 80px); background: linear-gradient(180deg, var(--paper), var(--ivory)); }
.svc-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.svc-hero-copy { position: relative; padding-left: clamp(24px, 3vw, 56px); }
.svc-hero-copy .rail-text { top: 46%; }
.svc-hero h1 { font-size: clamp(2.8rem, 5.4vw, 5.2rem); line-height: 1; max-width: 9.5em; }
.svc-hero h1 .ital { color: var(--navy); }
.svc-hero .lead { margin-top: 26px; }
.svc-hero .hero-actions { margin-top: 30px; }
.price-note { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; padding: 12px 0; border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); font-weight: 600; }
.price-note + p { margin-top: 12px; font-size: 0.86rem; color: var(--muted); max-width: 30em; }
.svc-hero-media { position: relative; }
.svc-hero-media .ph { aspect-ratio: 1.15; box-shadow: var(--shadow); }
.svc-hero-media .lean { clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%); box-shadow: none; }
.svc-hero-media .tag { position: absolute; z-index: 2; display: grid; gap: 4px; }
.svc-hero-media .tag .script { font-size: clamp(2rem, 3vw, 3rem); color: #fff; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35); }
.svc-hero-media .tag .caps { color: rgba(255, 255, 255, 0.92); font-size: 0.64rem; }
.svc-hero-media .tag.on-photo { left: 10%; bottom: 8%; }
.svc-hero-media .tag.beside { left: auto; right: -10px; bottom: -74px; }
.svc-hero-media .tag.beside .script { color: var(--navy); text-shadow: none; }
.svc-hero-media .tag.beside .caps { color: var(--muted); }
.svc-hero-media .frame-offset { position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--gold-line); pointer-events: none; }
.svc-hero-media .shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10, 18, 34, 0.5)); pointer-events: none; }
.svc-hero-media .arch { aspect-ratio: 0.92; width: 94%; margin-left: auto; }
.svc-hero-media .sweep { aspect-ratio: 1.05; border-radius: 0 260px 0 260px; width: 94%; }
.svc-hero-media .disc { position: absolute; width: 38%; aspect-ratio: 1; border-radius: 50%; left: -6%; bottom: -8%; box-shadow: var(--shadow); z-index: 2; }

.explain { position: relative; padding-top: clamp(40px, 5vw, 84px); }
.explain-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 100px); align-items: center; }
.explain-copy h2 { max-width: 12em; margin-bottom: 20px; }
.explain-copy p { max-width: 32em; }
.trio { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: clamp(26px, 3.6vw, 54px); }
.trio .ph { box-shadow: var(--shadow-soft); }
.trio .t1 { grid-column: 1 / 9; grid-row: 1 / 8; z-index: 1; }
.trio .t2 { grid-column: 8 / 13; grid-row: 3 / 8; z-index: 2; margin-left: 14px; }
.trio .t3 { grid-column: 3 / 9; grid-row: 8 / 12; z-index: 3; margin-top: -30px; }
.trio.energetic .t1 { grid-column: 1 / 8; grid-row: 1 / 9; clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); }
.trio.energetic .t2 { grid-column: 7 / 13; grid-row: 1 / 6; margin-left: -6px; margin-top: 30px; }
.trio.energetic .t3 { grid-column: 6 / 12; grid-row: 7 / 12; margin-top: 0; }
.trio.calm .t1 { grid-column: 1 / 8; grid-row: 1 / 9; border-radius: 4px; }
.trio.calm .t2 { grid-column: 8 / 13; grid-row: 2 / 7; border-radius: 999px 999px 4px 4px; }
.trio.calm .t3 { grid-column: 4 / 10; grid-row: 8 / 12; margin-top: -20px; }
.trio.precise .t1 { grid-column: 1 / 8; grid-row: 1 / 8; }
.trio.precise .t2 { grid-column: 8 / 13; grid-row: 1 / 5; margin-left: 12px; }
.trio.precise .t3 { grid-column: 8 / 13; grid-row: 6 / 10; margin-left: 12px; margin-top: 12px; }
.trio.wild .t1 { grid-column: 1 / 7; grid-row: 1 / 9; border-radius: 50%; aspect-ratio: 1; align-self: start; }
.trio.wild .t2 { grid-column: 6 / 13; grid-row: 3 / 9; margin-left: -20px; z-index: 0; }
.trio.wild .t3 { grid-column: 4 / 9; grid-row: 8 / 13; margin-top: -10px; z-index: 3; }
.trio.wild .t1 { z-index: 2; }

.options { position: relative; padding: clamp(48px, 6vw, 96px) 0 0; }
.options-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 60px); align-items: end; margin-bottom: clamp(28px, 4vw, 48px); }
.options-list { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0; padding: 0; list-style: none; }
.options-list li, .options-list .tag { position: relative; display: inline-flex; align-items: center; gap: 12px; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--charcoal); font-weight: 500; }
.options-list li::before, .options-list .tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.ribbon { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 1fr) minmax(0, 0.9fr); gap: 14px; align-items: end; margin-top: clamp(28px, 4vw, 44px); }
.ribbon .ph { aspect-ratio: 0.8; }
.ribbon .ph:nth-child(1) { aspect-ratio: 0.95; }
.ribbon .ph:nth-child(2) { aspect-ratio: 0.7; margin-bottom: 28px; }
.ribbon .ph:nth-child(3) { aspect-ratio: 0.8; }
.ribbon .ph:nth-child(4) { aspect-ratio: 0.72; margin-bottom: 44px; }
.ribbon.even { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; }
.ribbon.even .ph, .ribbon.even .ph:nth-child(n) { aspect-ratio: 0.8; margin: 0; }
.ribbon.stagger .ph:nth-child(1) { margin-bottom: 40px; }
.ribbon.stagger .ph:nth-child(3) { margin-bottom: 60px; }
.ribbon.stagger .ph:nth-child(4) { margin-bottom: 0; }
.ribbon.stagger .ph:nth-child(2) { margin-bottom: 0; }

.steps-band { position: relative; margin-top: clamp(64px, 8vw, 120px); background: var(--ivory-2); color: var(--ivory-2); }
.steps-band .curve-top { position: absolute; left: 0; right: 0; bottom: 100%; color: var(--ivory-2); }
.steps-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr); gap: clamp(28px, 5vw, 80px); align-items: start; padding: clamp(28px, 4vw, 56px) 0 clamp(56px, 6vw, 96px); color: var(--ink); }
.steps-grid h2 { max-width: 11em; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; list-style: none; }
.steps li { position: relative; display: grid; gap: 14px; align-content: start; }
.steps li:not(:last-child)::before { content: ""; position: absolute; top: 23px; left: 60px; right: -10px; border-top: 1.5px dotted rgba(20, 40, 75, 0.35); }
.steps h3 { font-family: var(--sans); font-size: 0.92rem; font-weight: 600; color: var(--navy-ink); }
.steps p { font-size: 0.86rem; color: var(--muted); max-width: 22em; }

.faq { padding: clamp(56px, 7vw, 110px) 0 0; }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.faq-list { display: grid; border-top: 1px solid var(--line); }
.faq-item { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: 20px 40px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: clamp(1.15rem, 1.5vw, 1.4rem); }
.faq-item p { font-size: 0.92rem; color: var(--charcoal); }

.svc-close { position: relative; margin-top: clamp(64px, 8vw, 120px); background: var(--ivory-2); color: var(--ivory-2); }
.svc-close .curve-top { position: absolute; left: 0; right: 0; bottom: 100%; color: var(--ivory-2); }
.svc-close-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) auto; gap: clamp(28px, 5vw, 80px); align-items: center; padding: clamp(24px, 3vw, 44px) 0 clamp(64px, 6vw, 96px); color: var(--ink); }
.svc-close h2 { max-width: 15em; font-size: clamp(1.9rem, 3vw, 2.9rem); }
.svc-close .script { display: block; margin-top: 14px; font-size: clamp(1.9rem, 2.4vw, 2.5rem); color: var(--navy); }

/* page-specific accents */
.page-event .svc-hero { background: linear-gradient(180deg, var(--paper), var(--ivory)); }
.page-event .rail-text, .page-business .rail-text, .page-personal .rail-text, .page-creative .rail-text { color: var(--muted); }
.page-creative .svc-hero-copy { padding-left: clamp(24px, 3vw, 56px); }
.page-creative .svc-hero h1 { font-size: clamp(2.6rem, 4.9vw, 4.7rem); }
.vert-word { position: absolute; right: -14px; top: 10%; writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 5rem); color: rgba(20, 40, 75, 0.08); pointer-events: none; letter-spacing: 0.04em; }

/* ---------- GALLERY ---------------------------------------------------- */
.gallery-hero { position: relative; padding: clamp(24px, 3vw, 44px) 0 clamp(36px, 4vw, 60px); background: linear-gradient(180deg, var(--paper), var(--ivory)); }
.gallery-intro { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(28px, 5vw, 80px); align-items: end; }
.gallery-intro .rail-text { top: 50%; }
.gallery-intro h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
.gallery-intro h1 .ital { color: var(--navy); }
.gallery-intro .lead { padding-bottom: 12px; }
.gallery-intro .count { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.gallery-collection { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: clamp(44px, 5vw, 72px); grid-auto-flow: dense; gap: 14px; }
.gallery-card { position: relative; overflow: hidden; margin: 0; background: var(--ivory-3); cursor: zoom-in; grid-column: span 4; grid-row: span 5; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.gallery-card:hover img { transform: scale(1.03); }
.gallery-card:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.gallery-card.gallery-feature { grid-column: span 8; grid-row: span 10; }
.gallery-card.wide { grid-column: span 8; grid-row: span 5; }
.gallery-card.tall { grid-column: span 4; grid-row: span 10; }
.gallery-card::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0); transition: box-shadow 0.4s ease; pointer-events: none; }
.gallery-card:hover::after { box-shadow: inset 0 0 0 6px rgba(245, 241, 233, 0.9); }
.gallery-close { margin-top: clamp(64px, 8vw, 120px); }

/* ---------- WORK ------------------------------------------------------- */
.work-hero { position: relative; padding: clamp(24px, 3vw, 44px) 0 clamp(36px, 4vw, 70px); background: linear-gradient(180deg, var(--paper), var(--ivory)); }
.work-intro { position: relative; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: end; }
.work-intro h1 { font-size: clamp(2.4rem, 4.2vw, 4.2rem); line-height: 1.02; }
.work-intro h1 .ital { color: var(--navy); }
.work-band { position: relative; padding: clamp(56px, 7vw, 110px) 0 0; }
.work-band + .work-band { border-top: 1px solid var(--line); margin-top: clamp(56px, 7vw, 110px); }
.category-section { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.5fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.work-band:nth-of-type(even) .category-section { grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.85fr); }
.work-band:nth-of-type(even) .category-copy { order: 2; }
.category-copy { position: sticky; top: 120px; }
.category-copy .big-num { display: block; font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1; color: rgba(20, 40, 75, 0.12); margin-bottom: 8px; }
.category-copy h2 { max-width: 11em; margin-bottom: 18px; }
.category-copy p { max-width: 28em; }
.category-copy .options-list { margin: 22px 0 26px; }
.work-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: clamp(26px, 3.6vw, 56px); }
.work-card { position: relative; overflow: hidden; margin: 0; background: var(--ivory-3); box-shadow: var(--shadow-soft); }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.work-card:hover img { transform: scale(1.03); }
.work-gallery .w1 { grid-column: 1 / 8; grid-row: 1 / 9; z-index: 1; }
.work-gallery .w2 { grid-column: 8 / 13; grid-row: 1 / 6; margin-left: 12px; z-index: 2; }
.work-gallery .w3 { grid-column: 9 / 13; grid-row: 6 / 10; margin-left: 12px; margin-top: 12px; z-index: 2; }
.work-gallery .w4 { grid-column: 1 / 6; grid-row: 9 / 14; margin-top: 12px; z-index: 3; }
.work-gallery .w5 { grid-column: 5 / 10; grid-row: 10 / 14; margin-left: 12px; margin-top: 12px; z-index: 4; }
.work-band.alt .work-gallery .w1 { grid-column: 6 / 13; }
.work-band.alt .work-gallery .w2 { grid-column: 1 / 6; margin-left: 0; margin-right: 12px; }
.work-band.alt .work-gallery .w3 { grid-column: 1 / 5; margin-left: 0; margin-right: 12px; }
.work-band.alt .work-gallery .w4 { grid-column: 8 / 13; }
.work-band.alt .work-gallery .w5 { grid-column: 3 / 8; margin-left: 0; margin-right: 12px; }
.about-band { position: relative; margin-top: clamp(64px, 8vw, 120px); background: var(--ivory-2); color: var(--ivory-2); }
.about-band .curve-top { position: absolute; left: 0; right: 0; bottom: 100%; color: var(--ivory-2); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: start; padding: clamp(28px, 4vw, 56px) 0 clamp(56px, 6vw, 96px); color: var(--ink); }
.about-grid h2 { max-width: 12em; }
.about-grid p { max-width: 32em; }

/* ---------- MOBILE START BAR ------------------------------------------- */
.mobile-start { position: fixed; right: 14px; bottom: 14px; left: 14px; z-index: 75; display: none; }
.mobile-start .button { width: 100%; box-shadow: 0 16px 34px rgba(14, 28, 54, 0.3); }

/* ---------- MODAL / FORM ----------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: 20px; }
.modal.is-open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(14, 28, 54, 0.66); backdrop-filter: blur(4px); }
.modal-panel {
  position: relative; z-index: 1; width: min(940px, 100%); max-height: min(88vh, 900px); overflow: auto;
  padding: clamp(24px, 4vw, 44px); background: var(--paper); box-shadow: var(--shadow); border-radius: 4px;
}
.modal-panel h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 4px 0 12px; }
.modal-panel > .modal-step > p, .modal-step-active > p { max-width: 40em; }
.modal-close {
  position: absolute; top: 16px; right: 16px; min-height: 38px; padding: 0 14px;
  border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; color: var(--navy);
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; cursor: pointer;
}
.modal-close:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.modal-step { display: none; }
.modal-step-active { display: block; }
.choice-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 26px; }
.choice-grid button, .back-button {
  border: 1px solid var(--line-strong); border-radius: 3px; background: transparent; color: var(--navy-ink); cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.choice-grid button { min-height: 116px; padding: 16px; text-align: left; font-family: var(--serif); font-size: 1.15rem; line-height: 1.2; display: grid; align-content: end; }
.choice-grid button:hover, .choice-grid button:focus-visible { background: var(--navy); color: #fff; border-color: var(--navy); }
.form-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.back-button { min-height: 38px; padding: 0 14px; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.back-button:hover { background: var(--navy); color: #fff; }
.selected-category { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 1.2rem; }
.lead-form label { display: grid; gap: 7px; color: var(--charcoal); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.02em; }
.form-grid, .category-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.category-fields { display: none; margin-top: 16px; }
.category-fields.is-active { display: grid; }
.full, .details-label { grid-column: 1 / -1; }
.details-label { margin-top: 16px; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; border: 1px solid var(--line-strong); border-radius: 3px; padding: 12px 13px; background: #fff; color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(20, 40, 75, 0.12); }
.lead-form textarea { resize: vertical; }
.direct-contact { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 20px 0; }
.direct-contact a { color: var(--navy); font-weight: 500; font-size: 0.9rem; }
.form-status { min-height: 24px; margin-bottom: 12px; color: var(--navy); font-weight: 500; }
.form-status.is-error { color: #a1332a; }
.privacy-note { margin: 14px 0 0; font-size: 0.82rem; color: var(--muted); }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- LIGHTBOX --------------------------------------------------- */
.gallery-lightbox { position: fixed; inset: 0; z-index: 220; display: none; place-items: center; padding: clamp(14px, 3vw, 34px); }
.gallery-lightbox.is-open { display: grid; }
.gallery-lightbox-backdrop { position: absolute; inset: 0; border: 0; background: rgba(10, 16, 28, 0.9); cursor: zoom-out; }
.gallery-lightbox-panel { position: relative; z-index: 1; display: grid; max-width: min(96vw, 1500px); max-height: 92vh; gap: 12px; }
.gallery-lightbox img { max-width: min(96vw, 1500px); max-height: 86vh; object-fit: contain; box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45); }
.gallery-lightbox-close { justify-self: end; min-height: 40px; border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 999px; padding: 0 16px; background: transparent; color: #fff; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; cursor: pointer; }
.gallery-lightbox-close:hover { background: #fff; color: var(--navy); }

/* ---------- MOTION ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.22s; }
.reveal.d3 { transition-delay: 0.34s; }
.mask-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease-out); }
.mask-reveal.is-visible, .is-visible .mask-reveal { clip-path: inset(0 0 0 0); }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal, .mask-reveal { opacity: 1; transform: none; clip-path: none; }
  .stamp svg { animation: none; }
}

/* ---------- RESPONSIVE ------------------------------------------------- */
@media (max-width: 1180px) {
  .header-shell { grid-template-columns: auto auto; justify-content: space-between; min-height: 80px; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; order: 3; }
  .site-nav {
    position: fixed; inset: 0; z-index: 90; display: none; flex-direction: column; justify-content: center; align-items: flex-start; gap: 6px;
    padding: 100px clamp(28px, 8vw, 72px) 60px; background: var(--ivory);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-family: var(--serif); font-size: clamp(1.9rem, 5vw, 2.6rem); min-height: 0; padding: 8px 0; color: var(--navy-ink); }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { display: inline-flex; margin-top: 26px; }
  body.nav-open .site-header { background: var(--ivory); }
  body.nav-open .menu-toggle { position: relative; z-index: 95; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { padding-left: 28px; }
  .hero-copy .rail-text { top: 52%; }
  .hero-stamp { display: none; }
  .hero-stage { --lean: 40px; height: clamp(360px, 46vw, 540px); margin-right: calc(-1 * clamp(20px, 4vw, 56px)); }
  .hero-panel .caption { right: 26px; }
  .band-grid { grid-template-columns: 1fr; }
  .process-head { grid-template-columns: 1fr; }
  .recent-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .index-grid { grid-template-columns: 1fr; }
  .index-copy { position: static; }
  .close-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr); }
  .close-copy { grid-template-columns: 1fr; }
  .close-copy h2 { border-right: 0; padding-right: 0; }
}

@media (max-width: 960px) {
  .header-shell { min-height: 76px; }
  .hero-copy .rail-text { top: 32%; }
  .hero-stage { --lean: 30px; --pgap: 10px; height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; padding-left: var(--lean); margin-right: 0; }
  .hero-panel:nth-child(1) { grid-column: 1; grid-row: 1; aspect-ratio: 0.82; margin-left: calc(-1 * var(--lean)); }
  .hero-panel:nth-child(2) { grid-column: 2; grid-row: 1; aspect-ratio: 0.82; margin: 0 0 0 calc(var(--pgap) - var(--lean)); }
  .hero-panel:nth-child(3) { grid-column: 1; grid-row: 2; aspect-ratio: 1.2; margin: var(--pgap) 0 0 calc(-1 * var(--lean)); }
  .hero-panel:nth-child(4) { grid-column: 2; grid-row: 2; aspect-ratio: 1.2; margin: var(--pgap) 0 0 calc(var(--pgap) - var(--lean)); }
  .hero-panel .caption, .hero-panel:nth-child(3) .caption, .hero-panel:nth-child(4) .caption { left: calc(var(--lean) * 0.55 + 16px); bottom: 16px; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
  .process li:nth-child(2)::before { display: none; }
  .collage { grid-auto-rows: clamp(24px, 4.2vw, 44px); }
  .close-grid { grid-template-columns: 1fr; }
  .close-photo .ph { aspect-ratio: 1.3; margin-left: 0; border-radius: 4px; }
  .close-photo .stamp { display: none; }
  .footer-shell { grid-template-columns: 1fr 1fr; }
  .svc-hero-grid, .explain-grid, .options-head, .steps-grid, .faq-grid, .gallery-intro, .work-intro, .category-section, .work-band:nth-of-type(even) .category-section, .about-grid { grid-template-columns: 1fr; }
  .work-band:nth-of-type(even) .category-copy { order: 0; }
  .category-copy { position: static; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps li:not(:last-child)::before { display: none; }
  .svc-close-grid { grid-template-columns: 1fr; justify-items: start; }
  .gallery-collection { grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: clamp(40px, 6.4vw, 70px); gap: 12px; }
  .gallery-card, .gallery-card.tall { grid-column: span 6; grid-row: span 5; }
  .gallery-card.tall { grid-row: span 8; }
  .gallery-card.gallery-feature, .gallery-card.wide { grid-column: span 12; grid-row: span 8; }
  .gallery-card.wide { grid-row: span 6; }
  .vert-word { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-title { font-size: clamp(2.9rem, 14vw, 4rem); }
  .hero-copy { padding-left: 0; padding-top: 6px; }
  .hero-copy .rail-text { display: none; }
  .hero-copy .eyebrow { margin-bottom: 18px; }
  .hero-actions { gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-stage { --lean: 22px; --pgap: 8px; }
  .hero-panel .caption .script { font-size: 1.7rem; }
  .hero-panel .caption .caps { font-size: 0.58rem; }
  .home-hero { padding-bottom: 64px; }
  .process { grid-template-columns: 1fr 1fr; }
  .process p { font-size: 0.78rem; }
  .recent-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .recent-strip .ph:nth-child(n) { margin: 0; aspect-ratio: 0.85; }
  .index-list a { grid-template-columns: 34px minmax(0, 1fr) 30px; gap: 12px; padding: 18px 0; }
  .collage, .trio, .work-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: auto; gap: 10px; }
  .collage .ph, .trio .ph, .work-gallery .work-card { grid-column: auto !important; grid-row: auto !important; margin: 0 !important; aspect-ratio: 1; transform: none; clip-path: none; border-radius: 0; }
  .collage .c1, .trio .t1, .work-gallery .w1 { grid-column: 1 / -1 !important; aspect-ratio: 1.3; }
  .collage .note { display: none; }
  .hero-panel .caption { right: 12px; }
  .hero-panel .caption .caps { letter-spacing: 0.14em; line-height: 1.35; }
  .close-action { flex-direction: column; align-items: flex-start; }
  .footer-shell { grid-template-columns: 1fr; gap: 26px; padding: 40px 0 30px; }
  .footer-strip .container { flex-direction: column; gap: 6px; padding-bottom: 96px; }
  .site-footer { padding-bottom: 0; }
  .mobile-start { display: block; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .choice-grid button { min-height: 84px; font-size: 1.05rem; }
  .form-grid, .category-fields { grid-template-columns: 1fr; }
  .modal { padding: 10px; }
  .modal-panel { max-height: 92vh; }
  .svc-hero-copy { padding-left: 0; }
  .svc-hero-copy .rail-text { display: none; }
  .svc-hero-media .frame-offset { inset: 14px -10px -10px 14px; }
  .svc-hero-media .disc { display: none; }
  .svc-hero-media .arch { width: 100%; }
  .ribbon { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ribbon .ph:nth-child(n), .ribbon.stagger .ph:nth-child(n) { margin: 0; aspect-ratio: 0.85; }
  .faq-item { grid-template-columns: 1fr; gap: 8px; }
  .gallery-collection { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 11vw; gap: 10px; }
  .gallery-card, .gallery-card.wide, .gallery-card.tall { grid-column: span 1; grid-row: span 4; }
  .gallery-card.tall { grid-row: span 6; }
  .gallery-card.gallery-feature, .gallery-card.wide { grid-column: span 2; grid-row: span 6; }
  .gallery-card.wide { grid-row: span 4; }
  .circle-cta { width: 148px; height: 148px; }
}
