/* ===========================================================
   Unique Design — v2 redesign
   Minimal, gallery-style. Clean letter-spaced sans, warm greige.
   Inspired by Lauren Smyth Design / Amber Interiors restraint.
   =========================================================== */

:root {
  /* warm greige palette (default) */
  --bg:         oklch(95.8% 0.007 78);   /* light greige page */
  --bg-soft:    oklch(93.2% 0.009 78);
  --bg-white:   oklch(99.2% 0.002 78);   /* near-white for portfolio */
  --bg-medium:  oklch(89% 0.011 76);     /* medium greige (process / form) */
  --footer-bg:  oklch(43% 0.012 68);     /* dark greige — not too dark */
  --footer-ink: oklch(93% 0.006 78);
  --footer-mut: oklch(76% 0.008 74);
  --footer-hair: oklch(58% 0.01 70);

  --ink:        oklch(31% 0.008 64);     /* warm charcoal */
  --ink-soft:   oklch(43% 0.008 64);
  --ink-mute:   oklch(56% 0.007 66);
  --ink-faint:  oklch(68% 0.006 70);

  --hair:       oklch(84% 0.008 76);
  --hair-soft:  oklch(89% 0.007 76);

  --accent:     oklch(56% 0.04 60);      /* whisper of brass, used rarely */

  /* type */
  --f-display: "Jost", "Hanken Grotesk", system-ui, sans-serif;
  --f-sans:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* tracking */
  --tr-wide:   0.34em;
  --tr-nav:    0.22em;
  --tr-label:  0.26em;

  /* layout */
  --maxw: 1400px;
  --maxw-wide: 1680px;
  --gutter: clamp(22px, 4.5vw, 76px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* cool greige tweak */
[data-warmth="cool"] {
  --bg:        oklch(96% 0.005 235);
  --bg-soft:   oklch(93.4% 0.006 235);
  --bg-medium: oklch(89% 0.007 235);
  --footer-bg: oklch(43% 0.008 240);
  --footer-ink: oklch(93% 0.005 235);
  --footer-mut: oklch(76% 0.006 235);
  --footer-hair: oklch(58% 0.008 240);
  --ink:       oklch(31% 0.007 245);
  --ink-soft:  oklch(43% 0.007 245);
  --ink-mute:  oklch(56% 0.006 245);
  --hair:      oklch(84% 0.006 240);
}

/* neutral greige tweak */
[data-warmth="neutral"] {
  --bg:        oklch(95.5% 0.002 90);
  --bg-soft:   oklch(93% 0.003 90);
  --bg-medium: oklch(89% 0.004 90);
  --footer-bg: oklch(43% 0.004 90);
  --footer-mut: oklch(76% 0.003 90);
  --footer-hair: oklch(58% 0.004 90);
  --hair:      oklch(84% 0.003 90);
}

/* type tweak: Archivo display (more architectural) */
[data-type="archivo"] {
  --f-display: "Archivo", "Jost", sans-serif;
}
/* type tweak: all Hanken (quietest) */
[data-type="hanken"] {
  --f-display: "Hanken Grotesk", system-ui, sans-serif;
}
/* type tweak: Amber Interiors style — editorial high-contrast serif
   display over a clean grotesque body (approximation, free webfonts) */
[data-type="amber"] {
  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-sans:    "Hanken Grotesk", system-ui, sans-serif;
  --tr-wide:   0.18em;
}
[data-type="amber"] .brand,
[data-type="amber"] .footer-brand {
  text-transform: none;
  font-weight: 500;
}
/* type tweak: Lauren Smyth style — refined, airy display (Marcellus)
   over a light geometric sans (approximation, free webfonts) */
[data-type="lauren"] {
  --f-display: "Marcellus", "Jost", serif;
  --f-sans:    "Jost", system-ui, sans-serif;
  --tr-wide:   0.42em;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- type primitives ---------- */
.eyebrow {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.display-1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: 0.005em;
}
.display-2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.display-3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.lede {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--hair);
  transition: padding .35s var(--ease);
}
.site-header__brand-row {
  display: flex;
  justify-content: center;
  padding: clamp(20px, 2.4vw, 30px) var(--gutter) clamp(12px, 1.4vw, 18px);
  transition: padding .35s var(--ease);
}
.brand {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.7vw, 34px);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
  transition: font-size .35s var(--ease);
  padding-left: var(--tr-wide); /* optical centering for trailing track */
}
.site-header__nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter) clamp(14px, 1.5vw, 18px);
  gap: 16px;
}
.site-header.is-scrolled .site-header__brand-row {
  padding-top: clamp(12px, 1.4vw, 16px);
  padding-bottom: clamp(8px, 1vw, 12px);
}
.site-header.is-scrolled .brand {
  font-size: clamp(18px, 2vw, 24px);
}

/* compact header tweak — keep "Unique Design" at full size; just pull the
   nav row up tight so the whole bar is shorter on scroll */
[data-header="compact"] .site-header.is-scrolled .brand {
  font-size: clamp(22px, 2.7vw, 34px);   /* override the standard shrink */
}
[data-header="compact"] .site-header.is-scrolled .site-header__brand-row {
  padding-top: 10px;
  padding-bottom: 2px;
}
[data-header="compact"] .site-header.is-scrolled .site-header__nav-row {
  padding-bottom: 9px;
}

.nav-group { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav-group--left { justify-self: start; }
.nav-group--right { justify-self: end; }
.nav-group--center { justify-self: center; }

.nav-link {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tr-nav);
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { transform: scaleX(1); }

.social-row { display: flex; align-items: center; gap: 14px; }
.social-ico {
  width: 16px; height: 16px;
  color: var(--ink-soft);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.social-ico:hover { color: var(--ink); transform: translateY(-1px); }
.nav-divider {
  width: 1px; height: 13px;
  background: var(--hair);
  margin: 0 2px;
}

/* mobile header */
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tr-nav);
  text-transform: uppercase;
  color: var(--ink);
  padding: 15px 30px;
  border: 1px solid var(--ink);
  background: transparent;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: transparent; color: var(--ink); }
.btn .arrow { width: 15px; height: 8px; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.textlink {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tr-nav);
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity .2s var(--ease);
  display: inline-block;
}
.textlink:hover { opacity: 0.55; }

/* inline 'HERE' link inside body copy */
.inline-link {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity .2s var(--ease);
}
.inline-link:hover { opacity: 0.55; }

/* ---------- reveal (progressive enhancement) ---------- */
.reveal { transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal--init { opacity: 0; transform: translateY(16px); }
.reveal--init.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

.page { opacity: 1; animation: pageIn .5s var(--ease); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal--init { transition: none; opacity: 1; transform: none; }
  .page.entering { animation: none; }
}

/* =========================================================
   HOME
   ========================================================= */
.home {
  padding-top: clamp(40px, 6vw, 96px);
  padding-bottom: clamp(48px, 7vw, 110px);
}
.home__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.home__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 9s ease-out;
}
.home__frame:hover img { transform: scale(1.04); }

/* full-screen edge-to-edge hero (default) */
.home--full {
  padding: 0;
  /* tiny breathing gap on the left/right so the image isn't jammed dead-flush
     to the viewport edge — still feels edge-to-edge (~8px). */
  --feat-inset: 8px;
}
.home--full .home__frame {
  width: calc(100vw - 2 * var(--feat-inset));
  margin-left: calc(50% - 50vw + var(--feat-inset));
  height: calc(100svh - var(--header-h, 132px));
  aspect-ratio: auto;
}
/* tagline (if shown) gets symmetric breathing room; if hidden, image meets footer */
.home--full .home__tagline {
  margin: clamp(48px, 7vw, 96px) auto;
  padding: 0 var(--gutter);
}
.home__caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  gap: 16px;
  flex-wrap: wrap;
}
.home__caption .eyebrow { color: var(--ink-mute); }
.home__tagline {
  text-align: center;
  max-width: 50ch;
  margin: clamp(48px, 7vw, 96px) auto 0;
}
.home__tagline p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0;
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio {
  background: var(--bg-white);
}
.portfolio__intro {
  padding: clamp(44px, 6vw, 92px) 0 clamp(32px, 4vw, 56px);
  text-align: center;
}
.portfolio__intro .eyebrow { display: block; margin-bottom: 20px; }
.portfolio__mission {
  max-width: 60ch;
  margin: 0 auto;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.portfolio__grid-wrap {
  padding: clamp(8px, 2vw, 24px) 0 clamp(56px, 8vw, 120px);
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 36px);
}
.pf-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}
.pf-item__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}
.pf-item__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.3s var(--ease), filter .5s var(--ease);
}
.pf-item:hover .pf-item__media img { transform: scale(1.045); }
.pf-item__media::after {
  content: "";
  position: absolute; inset: 0;
  background: oklch(20% 0.01 60 / 0.12);
  opacity: 0; transition: opacity .35s var(--ease);
}
.pf-item:hover .pf-item__media::after { opacity: 1; }
.pf-item__expand {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--bg-white) 88%, transparent);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  opacity: 0; transform: scale(.85);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.pf-item:hover .pf-item__expand { opacity: 1; transform: scale(1); }
.pf-item__expand svg { width: 15px; height: 15px; color: var(--ink); }
.pf-item__cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  /* small horizontal inset for ONLY the caption row so the label/location
     aren't jammed against the screen edge — images stay full-bleed (the
     section keeps 0 left/right padding above). */
  padding: 0 8px;
}
.pf-item__title {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.pf-item__loc {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

/* portfolio placeholder tile */
.pf-ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--hair-soft);
}
.pf-ph span {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(22% 0.008 64 / 0.92);
  backdrop-filter: blur(6px);
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  animation: lbIn .35s var(--ease) forwards;
}
@keyframes lbIn { to { opacity: 1; } }
.lightbox__stage {
  display: grid;
  place-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(56px, 9vw, 130px) 8px;
  min-height: 0;
}
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 30px 80px oklch(0% 0 0 / 0.4);
  animation: lbImg .45s var(--ease);
}
@keyframes lbImg { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
.lightbox__ph {
  width: min(70vw, 880px);
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  background: var(--bg-soft);
}
.lightbox__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(24px, 5vw, 56px) clamp(24px, 4vw, 40px);
  color: var(--footer-ink);
}
.lightbox__meta { display: flex; flex-direction: column; gap: 4px; }
.lightbox__title {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(96% 0 0);
}
.lightbox__sub {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(78% 0.006 74);
}
.lightbox__count {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: oklch(82% 0.006 74);
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: oklch(92% 0 0);
  transition: opacity .2s var(--ease);
  opacity: 0.7;
}
.lb-btn:hover { opacity: 1; }
.lb-btn svg { width: 26px; height: 26px; }
.lb-prev { left: clamp(10px, 2vw, 32px); }
.lb-next { right: clamp(10px, 2vw, 32px); }
.lb-close {
  position: absolute;
  top: clamp(18px, 3vw, 32px);
  right: clamp(18px, 3vw, 32px);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: oklch(92% 0 0);
  opacity: 0.75;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.lb-close:hover { opacity: 1; transform: rotate(90deg); }
.lb-close svg { width: 22px; height: 22px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-hero {
  padding: clamp(40px, 6vw, 88px) 0 clamp(36px, 4.5vw, 64px);
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0;
}
.contact-hero__sub {
  max-width: 60ch;
  margin: 26px auto 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Leave room for the sticky header when the "here" link jumps to the form,
   so the form heading isn't hidden underneath it. --header-h is the live
   measured header height (set in components.jsx). */
#contact-form, #inquiry-form { scroll-margin-top: calc(var(--header-h, 132px) + 20px); }

/* contact form layout (form lives on the contact page) */
.contact-form-section {
  padding-bottom: clamp(56px, 8vw, 110px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 88px);
  align-items: start;
}
.contact-form-aside {
  position: sticky;
  top: calc(var(--header-h, 132px) + 28px);
  display: grid;
  gap: 28px;
}
.contact-form-aside__media {
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
}
.contact-form-aside__media img { width: 100%; height: 100%; object-fit: cover; }
.contact-aside-block .eyebrow { display: block; margin-bottom: 14px; }
.contact-aside-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.form-done--inline {
  padding: clamp(40px, 6vw, 80px) 0;
  text-align: center;
  border: 1px solid var(--hair);
}
.contact-main {
  padding-bottom: clamp(56px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: stretch;
}
.contact-main__media {
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 420px;
}
.contact-main__media img { width: 100%; height: 100%; object-fit: cover; }
.contact-main__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  max-width: 46ch;
}
.contact-block .eyebrow { display: block; margin-bottom: 16px; }
.contact-block p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}
.contact-block p + p { margin-top: 14px; }
.contact-divider { height: 1px; background: var(--hair); border: 0; margin: 0; }
.contact-detail { display: grid; gap: 4px; }
.contact-detail .k {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-detail .v {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.contact-detail .v a { border-bottom: 1px solid var(--hair); transition: border-color .2s; }
.contact-detail .v a:hover { border-color: var(--ink); }

/* process band */
.process {
  background: var(--bg-medium);
  padding: clamp(56px, 8vw, 116px) 0;
}
.process__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.process__head .eyebrow { display: block; margin-bottom: 18px; }
.process__head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 56px) clamp(32px, 4vw, 72px);
  max-width: 1100px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in oklab, var(--ink) 22%, transparent);
}
.process-step__n {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.process-step__t {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--ink);
}

/* =========================================================
   INQUIRY FORM
   ========================================================= */
.inquire {
  padding: clamp(40px, 6vw, 84px) 0 clamp(56px, 8vw, 110px);
}
.inquire__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.inquire__head .eyebrow { display: block; margin-bottom: 18px; }
.inquire__head h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}
.inquire__head p {
  max-width: 52ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.inquire__layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(36px, 5vw, 88px);
  align-items: start;
}
.inquire__media {
  position: sticky;
  top: 180px;
  display: grid;
  gap: clamp(16px, 2vw, 28px);
}
.inquire__media-tile {
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
}
.inquire__media-tile img { width: 100%; height: 100%; object-fit: cover; }

.form { display: grid; gap: 26px; }
.form-row { display: grid; gap: 26px; grid-template-columns: 1fr 1fr; }
.form-row.single { grid-template-columns: 1fr; }
.form-row.three { grid-template-columns: 1.4fr 1fr 1fr; }

.field { display: grid; gap: 8px; position: relative; }
.field__label {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field__label .req { color: var(--accent); margin-left: 3px; }
.field__input,
.field__select,
.field__textarea {
  font-family: var(--f-sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg-white);
  border: 1px solid var(--hair);
  padding: 14px 16px;
  width: 100%;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.field__input::placeholder,
.field__textarea::placeholder { color: var(--ink-faint); }
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.field__select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'><path d='M1 1l4.5 4.5L10 1' fill='none' stroke='%23766' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
  color: var(--ink);
}
.field__select:invalid { color: var(--ink-faint); }
.field__textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field--error .field__input,
.field--error .field__select,
.field--error .field__textarea { border-color: oklch(56% 0.13 28); }
.field__error {
  position: absolute;
  top: 0; right: 0;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(52% 0.13 28);
}
.form-group-label {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 2px;
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 12px;
}
.form-actions .note { font-size: 13px; color: var(--ink-mute); font-style: italic; max-width: 34ch; }

/* success */
.form-done {
  text-align: center;
  padding: clamp(60px, 9vw, 130px) 0;
}
.form-done__mark {
  width: 56px; height: 56px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 30px;
}
.form-done__mark svg { width: 22px; height: 22px; color: var(--ink); }
.form-done h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}
.form-done p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto; font-size: 17px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: clamp(56px, 7vw, 96px) 0 clamp(34px, 4vw, 50px);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-col h4 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--footer-mut);
  margin: 0 0 22px;
}
/* center column is a query container so the brand can size to ITS width */
.footer-col--mid { text-align: center; container-type: inline-size; }
.footer-brand {
  font-family: var(--f-display);
  font-weight: 400;
  /* size in container units so "UNIQUE DESIGN" shrinks to fill the column on
     one line at any width. cqi tuned to fit the widest type variant
     (lauren, --tr-wide 0.42em → max safe ~7.52cqi) with a margin; max raised
     for large screens. */
  font-size: clamp(8px, 7cqi, 32px);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--footer-ink);
  padding-left: var(--tr-wide); /* optical centering for the trailing track, matches header */
  margin-bottom: 14px;
  line-height: 1;
  white-space: nowrap; /* never wrap — must always be one line, like the header */
}
.footer-tag {
  font-size: 13px;
  line-height: 1.7;
  color: var(--footer-mut);
  max-width: 32ch;
  margin: 0 auto;
}
.footer-nav, .footer-follow { display: grid; gap: 12px; }
.footer-col--right { justify-items: end; }
.footer-col--right h4 { text-align: right; }
.footer-link {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--footer-ink);
  transition: opacity .2s var(--ease);
  width: fit-content;
}
.footer-link:hover { opacity: 0.6; }
.site-footer__bottom {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 26px;
  border-top: 1px solid var(--footer-hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-mut);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .contact-main,
  .contact-form-section,
  .inquire__layout { grid-template-columns: 1fr; }
  .contact-form-aside { position: static; }
  .inquire__media { position: static; order: -1; grid-template-columns: 1fr 1fr; }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: 1fr 1fr; }
  /* Footer keeps its 3 columns at all widths (Navigate | brand | Follow).
     Just tighten the gap; per-column alignment stays as defined in base. */
  .site-footer__inner { gap: 28px; }
}

@media (max-width: 600px) {
  .site-header__nav-row {
    grid-template-columns: auto 1fr;
    row-gap: 0;
  }
  .nav-group--center { display: none; }
  .nav-group--left { gap: 18px; }
  .pf-grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row.three { grid-template-columns: 1fr; }
  .inquire__media { grid-template-columns: 1fr; }
  .home__frame { aspect-ratio: 4 / 5; }
  /* Footer: keep Navigate | UNIQUE DESIGN | Follow as 3 columns, shrunk to fit
     phones down to ~360px. Side columns hug their content; the brand gets the
     middle. */
  .site-footer__inner { grid-template-columns: auto 1fr auto; gap: 14px; }
  .footer-col h4 { margin-bottom: 14px; }
  /* brand sizing/spacing now handled by the container-query rule above so it
     stays one line and matches the header; just tighten the gap here. */
  .footer-brand { margin-bottom: 10px; }
  .footer-tag { font-size: 11px; line-height: 1.55; max-width: 22ch; }
  .footer-link { font-size: 12px; letter-spacing: 0.04em; }
  .footer-nav, .footer-follow { gap: 10px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
