/* =========================================================================
   Henson-McAlister — Master Picture Framers & Conservators
   Design system + page styles
   ========================================================================= */

:root {
  /* Ground + ink — warm, never pure */
  --ink:        #14110D;   /* primary near-black, warm charcoal */
  --ink-2:      #1B1712;   /* raised panel */
  --ink-3:      #221D17;   /* card / hover */
  --ivory:      #F1EADB;   /* warm ivory breather */
  --ivory-2:    #E7DDC9;   /* ivory shade */
  --paper:      #FBF7EE;   /* brightest warm white */

  /* Metal accent — brushed brass, muted gold */
  --brass:      #B99362;
  --brass-soft: #C9A878;
  --brass-deep: #8C6E45;

  /* Text roles on dark */
  --on-dark:        #EFE7D7;
  --on-dark-muted:  rgba(239, 231, 215, 0.62);
  --on-dark-faint:  rgba(239, 231, 215, 0.40);
  --line-dark:      rgba(239, 231, 215, 0.14);
  --line-dark-soft: rgba(239, 231, 215, 0.08);

  /* Text roles on ivory */
  --on-light:        #211C15;
  --on-light-muted:  rgba(33, 28, 21, 0.64);
  --on-light-faint:  rgba(33, 28, 21, 0.42);
  --line-light:      rgba(33, 28, 21, 0.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1340px;
  --gutter: clamp(22px, 5vw, 84px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; text-wrap: pretty; }

/* ---- typographic primitives --------------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.005em;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.005em;
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
}
.lede {
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  font-weight: 350;
}
.serif-italic { font-style: italic; }

/* ---- layout helpers ------------------------------------------------------ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(86px, 12vw, 168px); position: relative; }
.section--light { background: var(--ivory); color: var(--on-light); }
.section--ink   { background: var(--ink); }
.section--panel { background: var(--ink-2); }

.section--light .eyebrow { color: var(--brass-deep); }

/* ---- buttons ------------------------------------------------------------- */
.btn {
  --bg: var(--brass);
  --fg: #1a140c;
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  padding: 1.05em 2.1em;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 1px;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
}
.btn:hover { background: transparent; color: var(--brass-soft); border-color: var(--brass); }
.btn .arrow { transition: transform .5s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--line-dark);
}
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-soft); }

.section--light .btn--ghost { color: var(--on-light); border-color: var(--line-light); }
.section--light .btn--ghost:hover { color: var(--brass-deep); border-color: var(--brass-deep); }

.link-underline {
  position: relative;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding-bottom: 4px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0.0); transform-origin: left;
  transition: transform .55s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(18px, 2.4vw, 30px) var(--gutter);
  transition: background .6s var(--ease), padding .6s var(--ease), border-color .6s var(--ease), backdrop-filter .6s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18, 15, 11, 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line-dark);
  padding-block: clamp(13px, 1.6vw, 18px);
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: 4px; z-index: 2; }
.brand__name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: 0.02em;
  color: var(--on-dark);
}
.brand__name b { font-weight: 500; }
.brand__logo { width: clamp(150px, 16vw, 188px); height: auto; display: block; transition: width .6s var(--ease); }
.nav.scrolled .brand__logo { width: clamp(128px, 13vw, 156px); }
.footer__logo { width: clamp(264px, 32vw, 360px); height: auto; display: block; }
@media (max-width: 600px) { .brand__logo { width: 142px; } }
.brand__tag {
  font-size: 9.5px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--brass); font-weight: 600;
}
.nav__links { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 40px); }
.nav__links a {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-dark-muted); font-weight: 500;
  transition: color .4s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--on-dark); }
.nav__links .btn { padding: 0.85em 1.6em; }

.nav__toggle {
  display: none;
  flex-direction: column; gap: 6px; justify-content: center;
  width: 44px; height: 44px; background: none; border: none; z-index: 90;
}
.nav__toggle span {
  display: block; width: 26px; height: 1.5px; background: var(--on-dark);
  transition: transform .45s var(--ease), opacity .3s var(--ease);
  margin-left: auto;
}
.nav__toggle span:nth-child(2) { width: 20px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 85;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform .7s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.2rem);
  color: var(--on-dark); padding: 0.18em 0;
  border-bottom: 1px solid var(--line-dark-soft);
  display: flex; align-items: baseline; gap: 0.5em;
}
.mobile-menu a span { font-family: var(--sans); font-size: 12px; color: var(--brass); letter-spacing: 0.2em; }
.mobile-menu__foot { margin-top: clamp(28px, 5vw, 48px); color: var(--on-dark-muted); font-size: 14px; line-height: 2; }
.mobile-menu__foot a { font-family: var(--sans); font-size: 14px; display: inline; border: 0; padding: 0; color: var(--brass-soft); }
body.menu-open { overflow: hidden; }

.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 26px; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; }
.hero__media image-slot { width: 100%; height: 100%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top, rgba(18,15,11,0.94) 0%, rgba(18,15,11,0.45) 38%, rgba(18,15,11,0.30) 62%, rgba(18,15,11,0.62) 100%),
    linear-gradient(to right, rgba(18,15,11,0.55), rgba(18,15,11,0.05) 60%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; width: 100%; padding-bottom: clamp(64px, 9vw, 130px); }
.hero__inner .wrap { display: grid; gap: clamp(26px, 3vw, 40px); }
.hero__head { max-width: 17ch; }
.hero h1 { font-size: clamp(2.9rem, 6.6vw, 6.1rem); }
.hero h1 em { color: var(--brass-soft); }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 3vw, 40px); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__estd { color: var(--on-dark-faint); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }

.scroll-cue {
  position: absolute; bottom: 26px; right: var(--gutter); z-index: 4;
  display: flex; align-items: center; gap: 12px;
  color: var(--on-dark-faint); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
}
.scroll-cue .bar { width: 1px; height: 46px; background: linear-gradient(var(--brass), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content:""; position:absolute; top:-46px; left:0; width:1px; height:46px; background: var(--brass-soft); animation: cue 2.6s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); } 60%,100% { transform: translateY(92px); } }

/* marquee strip under hero */
.strip {
  border-block: 1px solid var(--line-dark);
  background: var(--ink-2);
  overflow: hidden;
}
.strip__track {
  display: flex; gap: 0; align-items: center;
  white-space: nowrap;
  animation: marq 38s linear infinite;
  will-change: transform;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__item {
  display: inline-flex; align-items: center; gap: 1.4em;
  padding: 18px clamp(26px, 4vw, 52px);
  font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.6rem); font-style: italic;
  color: var(--on-dark-muted);
}
.strip__item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brass); font-style: normal; }
@keyframes marq { to { transform: translateX(-50%); } }

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .12s; }
.reveal[data-d="2"] { transition-delay: .24s; }
.reveal[data-d="3"] { transition-delay: .36s; }
.reveal[data-d="4"] { transition-delay: .48s; }
.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--ease); }
.reveal-img.in { clip-path: inset(0 0 0 0); }

/* =========================================================================
   HERITAGE / ABOUT
   ========================================================================= */
.heritage__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.heritage__media { position: relative; }
.heritage__media image-slot { width: 100%; aspect-ratio: 4 / 5; }
.heritage__badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--ink); color: var(--on-dark);
  width: clamp(130px, 14vw, 168px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-content: center; text-align: center; gap: 2px;
  border: 1px solid var(--brass-deep);
}
.heritage__badge .yr { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.7rem); color: var(--brass-soft); line-height: 1; }
.heritage__badge .lb { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--on-dark-muted); }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,30px); margin-top: clamp(34px, 4vw, 50px); }
.value { border-top: 1px solid var(--line-light); padding-top: 18px; }
.value .n { font-family: var(--serif); font-size: 13px; color: var(--brass-deep); letter-spacing: 0.04em; }
.value h4 { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.7rem); margin-top: 6px; }
.value p { font-size: 14.5px; color: var(--on-light-muted); margin-top: 8px; line-height: 1.6; }

/* The Commission / process — four considered steps */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 34px); margin-top: clamp(38px, 4.5vw, 58px); }
.process .value { margin: 0; }
@media (max-width: 860px) { .process { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; gap: 0; } .process .value { border-top: 1px solid var(--line-light); padding-block: 18px; } }

.pull {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.32;
  color: var(--on-light); max-width: 22ch;
}
.pull b { font-style: normal; font-weight: 500; color: var(--brass-deep); }

/* =========================================================================
   SERVICES
   ========================================================================= */
.svc-head { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 56ch; margin-bottom: clamp(50px, 6vw, 80px); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.svc {
  background: var(--ink); padding: clamp(30px, 3.4vw, 46px);
  display: flex; flex-direction: column; min-height: 460px;
  transition: background .6s var(--ease);
}
.svc:hover { background: var(--ink-3); }
.svc__no { font-family: var(--serif); font-size: 14px; color: var(--brass); letter-spacing: 0.1em; }
.svc__media { margin: 22px 0 26px; }
.svc__media image-slot { width: 100%; aspect-ratio: 3 / 2; }
.svc h3 { font-family: var(--serif); font-size: clamp(1.7rem, 2.4vw, 2.15rem); line-height: 1.08; }
.svc p { color: var(--on-dark-muted); font-size: 15px; margin-top: 14px; }
.svc__foot { margin-top: auto; padding-top: 26px; }

/* =========================================================================
   CONSERVATION — full bleed editorial
   ========================================================================= */
.conserve { position: relative; padding: 0; overflow: hidden; }
.conserve__bg { position: absolute; inset: 0; z-index: 0; }
.conserve__bg image-slot { width: 100%; height: 100%; }
.conserve__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(105deg, rgba(18,15,11,0.96) 0%, rgba(18,15,11,0.82) 42%, rgba(18,15,11,0.42) 100%); }
.conserve__inner { position: relative; z-index: 2; padding-block: clamp(96px, 13vw, 180px); }
.conserve__col { max-width: 60ch; }
.conserve__disc {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px); margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line-dark); padding-top: clamp(28px, 3vw, 40px);
}
.disc h4 { font-family: var(--serif); font-size: clamp(1.3rem, 1.9vw, 1.65rem); color: var(--on-dark); }
.disc .k { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); }
.disc p { font-size: 14px; color: var(--on-dark-muted); margin-top: 10px; line-height: 1.6; }

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(40px, 5vw, 64px); }
.gallery__head .h2 { max-width: 16ch; }
.grid-asym { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.gfig { position: relative; overflow: hidden; background: var(--ink-2); }
.gfig image-slot { width: 100%; height: 100%; }
/* asymmetric spans */
.gfig.a { grid-column: span 7; aspect-ratio: 4 / 3; }
.gfig.b { grid-column: span 5; aspect-ratio: 3 / 4; }
.gfig.c { grid-column: span 4; aspect-ratio: 3 / 4; }
.gfig.d { grid-column: span 4; aspect-ratio: 1 / 1; margin-top: 14%; }
.gfig.e { grid-column: span 4; aspect-ratio: 3 / 4; }
.gfig.f { grid-column: span 5; aspect-ratio: 4 / 3; }
.gfig.g { grid-column: span 7; aspect-ratio: 16 / 10; }

.gfig__shield { position: absolute; inset: 0; z-index: 5; } /* swallows right-click/drag */
.gfig__wm {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  display: grid; place-items: center;
}
.gfig__wm span {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.35rem);
  color: rgba(241, 234, 219, 0.42);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  transform: rotate(-22deg);
  user-select: none;
}
.gfig__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; pointer-events: none;
  padding: 30% 18px 16px; display: flex; justify-content: space-between; align-items: flex-end; gap: 10px;
  background: linear-gradient(to top, rgba(12,10,7,0.78), transparent);
  opacity: 0; transition: opacity .5s var(--ease);
}
.gfig:hover .gfig__cap { opacity: 1; }
.gfig__cap .t { font-family: var(--serif); font-size: 1.05rem; color: var(--on-dark); }
.gfig__cap .m { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-soft); }

.gallery__note {
  margin-top: clamp(30px, 4vw, 48px); padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: var(--on-dark-faint); letter-spacing: 0.02em;
}
.gallery__note .lock { display: inline-flex; align-items: center; gap: 9px; color: var(--on-dark-muted); }

/* =========================================================================
   CREDENTIALS / STATS
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); margin-top: clamp(44px,5vw,66px); }
.stat { background: var(--ink); padding: clamp(28px, 3vw, 44px) clamp(22px,2.5vw,34px); }
.stat .v { font-family: var(--serif); font-size: clamp(2.6rem, 4.4vw, 3.9rem); line-height: 1; color: var(--brass-soft); letter-spacing: -0.01em; }
.stat .l { margin-top: 12px; font-size: 12.5px; color: var(--on-dark-muted); letter-spacing: 0.02em; line-height: 1.5; }

.creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px,2vw,26px); margin-top: clamp(34px,4vw,52px); }
.cred { border: 1px solid var(--line-dark); padding: clamp(26px,3vw,38px); display: flex; gap: 22px; align-items: flex-start; transition: border-color .5s var(--ease); }
.cred:hover { border-color: var(--brass-deep); }
.cred__seal { flex: none; width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--brass-deep); display: grid; place-content: center; color: var(--brass-soft); font-family: var(--serif); font-size: 1.5rem; }
.cred h4 { font-family: var(--serif); font-size: clamp(1.3rem,2vw,1.7rem); }
.cred p { color: var(--on-dark-muted); font-size: 14px; margin-top: 8px; }

/* =========================================================================
   CLIENTELE
   ========================================================================= */
.clientele { text-align: center; }
.clientele .quote { font-family: var(--serif); font-size: clamp(1.9rem, 4.2vw, 3.2rem); line-height: 1.22; max-width: 20ch; margin: 0 auto; letter-spacing: -0.005em; }
.clientele .quote em { color: var(--brass-soft); }
.clientele .who { margin-top: clamp(28px,3vw,40px); }
.client-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 4vw, 60px); margin-top: clamp(40px,5vw,60px); color: var(--on-dark-muted); }
.client-row span { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 88px); }
.contact__info dl { margin: 0; }
.contact__info .row { padding: 20px 0; border-top: 1px solid var(--line-light); display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: baseline; }
.contact__info .row:first-child { border-top: 0; padding-top: 0; }
.contact__info dt { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }
.contact__info dd { margin: 0; font-size: 16px; color: var(--on-light); line-height: 1.6; }
.contact__info dd a:hover { color: var(--brass-deep); }
.map { margin-top: clamp(26px,3vw,38px); border: 1px solid var(--line-light); aspect-ratio: 16 / 9; filter: grayscale(1) contrast(0.92) sepia(0.12); transition: filter .6s var(--ease); }
.map:hover { filter: grayscale(0.2) contrast(1) sepia(0); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* form */
.form { background: var(--paper); border: 1px solid var(--line-light); padding: clamp(28px, 3.4vw, 46px); }
.form__title { font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.form__sub { color: var(--on-light-muted); font-size: 14.5px; margin-top: 8px; }
.field { margin-top: 22px; position: relative; }
.field label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-light-muted); font-weight: 600; margin-bottom: 9px; }
.field label .req { color: var(--brass-deep); }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-light);
  padding: 11px 2px; font-family: var(--sans); font-size: 16px; color: var(--on-light);
  transition: border-color .4s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--brass-deep); }
.field input::placeholder, .field textarea::placeholder { color: var(--on-light-faint); }
.field.invalid input, .field.invalid textarea { border-bottom-color: #9b3b2f; }
.field .err { color: #9b3b2f; font-size: 12px; margin-top: 7px; display: none; letter-spacing: 0.01em; }
.field.invalid .err { display: block; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.4vw,30px); }
.form__actions { margin-top: 30px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form .btn { border-radius: 1px; }
.form__ok {
  display: none; margin-top: 18px; padding: 16px 18px; border: 1px solid var(--brass-deep);
  background: rgba(185, 147, 98, 0.1); color: var(--on-light); font-size: 14.5px; align-items: center; gap: 12px;
}
.form__ok.show { display: flex; }
.form__fine { font-size: 12px; color: var(--on-light-faint); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink); border-top: 1px solid var(--line-dark); padding-block: clamp(58px, 7vw, 92px) 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px,4vw,60px); }
.footer__brand .brand__name { font-size: clamp(26px, 2.6vw, 34px); }
.footer__brand p { color: var(--on-dark-muted); font-size: 14.5px; margin-top: 18px; max-width: 36ch; }
.footer__col h5 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; font-weight: 600; }
.footer__col a, .footer__col p { display: block; color: var(--on-dark-muted); font-size: 14.5px; padding: 5px 0; transition: color .35s var(--ease); }
.footer__col a:hover { color: var(--on-dark); }
.footer__bottom { margin-top: clamp(44px,5vw,68px); padding-top: 26px; border-top: 1px solid var(--line-dark-soft); display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; align-items: center; }
.footer__bottom p, .footer__bottom a { color: var(--on-dark-faint); font-size: 12.5px; letter-spacing: 0.02em; }
.footer__bottom a:hover { color: var(--brass-soft); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .heritage__grid { grid-template-columns: 1fr; gap: 48px; }
  .heritage__media { order: -1; max-width: 520px; }
  .contact__grid { grid-template-columns: 1fr; }
  .conserve__disc { gap: 22px; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc { min-height: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .creds { grid-template-columns: 1fr; }
  .conserve__disc { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 0; }
  .value { border-top: 1px solid var(--line-light); padding-block: 18px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .grid-asym { grid-template-columns: repeat(2, 1fr); }
  .gfig.a, .gfig.b, .gfig.c, .gfig.d, .gfig.e, .gfig.f, .gfig.g { grid-column: span 1; aspect-ratio: 3 / 4; margin-top: 0; }
  .gfig.a, .gfig.g { grid-column: span 2; aspect-ratio: 4 / 3; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .contact__info .row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 480px) {
  .grid-asym { grid-template-columns: 1fr; }
  .gfig.a, .gfig.g { grid-column: span 1; }
}

/* =========================================================================
   LUXURY MOBILE REFINEMENTS
   ========================================================================= */
/* Touch devices have no hover — keep gallery captions present and legible. */
@media (hover: none) {
  .gfig__cap { opacity: 1; padding-top: 44%; }
}

@media (max-width: 760px) {
  /* Large serif should read composed, not loose, on a narrow screen. */
  .display, .h2 { letter-spacing: -0.012em; }
  .hero h1 { font-size: clamp(2.55rem, 11.5vw, 4.4rem); line-height: 1.05; }
  .hero__head { max-width: 15ch; }
  /* Deliberate vertical rhythm. */
  .section { padding-block: clamp(74px, 17vw, 116px); }
  /* CTAs: full-width, generous tap targets. */
  .hero__cta { width: 100%; gap: 12px; }
  .hero__cta .btn, .hero__cta .btn--ghost { flex: 1 1 100%; justify-content: center; padding-block: 1.18em; }
  .form__actions { flex-direction: column-reverse; align-items: stretch; }
  .form__actions .btn { width: 100%; justify-content: center; padding-block: 1.18em; }
  .form__fine { text-align: center; }
  /* Keep the brand line from wrapping. */
  .brand__tag { letter-spacing: 0.26em; }
}

@media (max-width: 480px) {
  .hero__meta { gap: 16px; }
  .gfig__cap { padding: 40% 14px 14px; }
  .gfig__cap .t { font-size: 0.98rem; }
  .mobile-menu a { font-size: clamp(1.9rem, 12vw, 2.7rem); }
}
