/* =====================================================================
   Highland Park Wallpaper Hanger — style.css
   Design language: "The Highland Line" — editorial grotesque type,
   warm plaster surfaces, deep bordeaux accent, architectural linework.
   Type: Bricolage Grotesque (display) + Libre Franklin (body).
   All colour pairs contrast-checked (WCAG AA). No CSS feature used that
   isn't broadly supported; scroll-reveal is progressive enhancement.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:          #F4F0E9;   /* warm plaster */
  --surface:     #FBF8F3;   /* cream */
  --panel:       #EBE4D8;   /* warm sand panel */
  --ink:         #211C1A;   /* near-black heading */
  --body:        #413A36;   /* body text */
  --muted:       #6A625B;   /* labels, captions */
  --accent:      #7A2E38;   /* deep bordeaux */
  --accent-hover:#65252E;
  --accent-rose: #E1A6AC;   /* accent on dark, large only */
  --brass:       #A98A54;   /* decorative hairlines / large numerals ONLY */
  --brass-lite:  #C4A063;   /* brass on dark, large only */
  --brass-text:  #6F5528;   /* brass used as small text (AA-safe) */
  --dark:        #241A1B;   /* bordeaux-charcoal band */
  --dark-deep:   #1C1614;   /* footer */
  --on-dark:     #F0E9E2;
  --on-dark-mut: #C6B8AC;
  --rule:        #DAD2C6;   /* decorative hairline (not a control border) */
  --rule-dark:   #443537;
  --line:        #8C837A;   /* control border 3.51:1 */
  --error:       #A3282C;

  --ff-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --ff-body:    'Libre Franklin', system-ui, -apple-system, Arial, sans-serif;

  --shell: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3.25rem);
  --sp: clamp(4.5rem, 9vw, 8rem);   /* vertical section rhythm */
  --radius: 3px;                      /* restrained, not pill/SaaS */
  --shadow-sm: 0 1px 2px rgba(33,28,26,.05), 0 6px 20px -12px rgba(33,28,26,.18);
  --shadow-md: 0 24px 60px -30px rgba(33,28,26,.42);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.72;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: var(--radius);
  transition: top .2s var(--ease); font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--ff-display); color: var(--ink); line-height: 1.06; font-weight: 600; letter-spacing: -.015em; }
h2 { font-size: clamp(2rem, 1.3rem + 2.9vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 1.05rem + 1vw, 1.7rem); letter-spacing: -.01em; }
p { max-width: 66ch; }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sp); position: relative; }

/* Eyebrow / kicker with architectural tick */
.eyebrow {
  font-family: var(--ff-body);
  font-size: .74rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--brass);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.section-head { max-width: 62ch; }
.section-head .lede { margin-top: 1.1rem; color: var(--body); font-size: 1.08rem; }
.section-head h2 { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: .95rem 1.6rem; border-radius: var(--radius); border: 1.5px solid transparent;
  text-decoration: none; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(33,28,26,.04); transform: translateY(-2px); }
.btn--light { background: var(--surface); color: var(--ink); border-color: var(--surface); }
.btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline-light { background: transparent; color: var(--on-dark); border-color: rgba(240,233,226,.4); }
.btn--outline-light:hover { border-color: var(--on-dark); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,240,233,.82);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(244,240,233,.96);
  border-bottom-color: var(--rule);
  box-shadow: 0 8px 30px -22px rgba(33,28,26,.5);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; height: 74px; }

/* Wordmark / logo */
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; color: var(--ink); }
.brand__sub { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); list-style: none; }
.nav__links a {
  font-size: .93rem; font-weight: 500; color: var(--body); text-decoration: none; letter-spacing: .01em;
  position: relative; padding-block: .4rem;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--accent);
  transition: width .28s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="true"]::after { width: 100%; }
.nav__links a[aria-current="true"] { color: var(--ink); }

.nav__cta { display: flex; align-items: center; gap: .9rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: .95rem;
}
.nav__phone svg { width: 16px; height: 16px; color: var(--accent); }
.nav__phone span { border-bottom: 1.5px solid transparent; transition: border-color .25s var(--ease); }
.nav__phone:hover span { border-color: var(--accent); }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--rule); background: var(--surface);
  border-radius: var(--radius); position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 1.8px; background: var(--ink);
  transform: translate(-50%,-50%); transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span::before { transform: translate(-50%,-7px); }
.nav__toggle span::after  { transform: translate(-50%,7px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%,0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translate(-50%,0) rotate(-45deg); }

/* =====================================================================
   Hero — full-bleed cover photo + solid plaster content panel (no
   headline over photo; a scrim guarantees the caption chip stays legible)
   ===================================================================== */
.hero { position: relative; background: var(--panel); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.02fr 1.1fr; align-items: stretch;
  min-height: min(88vh, 780px);
}
.hero__panel {
  padding: clamp(2.4rem, 5vw, 4.6rem) clamp(1.5rem, 4vw, 3.4rem) clamp(2.4rem, 5vw, 4.2rem) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg); position: relative; z-index: 2;
}
.hero__panel-inner { max-width: 33rem; margin-left: auto; }
.hero h1 {
  font-size: clamp(2.5rem, 1.2rem + 5vw, 4.5rem); font-weight: 600; margin-top: 1.4rem; color: var(--ink);
}
.hero h1 .accentword { font-style: italic; font-weight: 500; color: var(--accent); }
.hero__lede { margin-top: 1.5rem; font-size: clamp(1.02rem,.98rem + .3vw,1.16rem); color: var(--body); }
.hero__actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__trust {
  margin-top: 2.1rem; padding-top: 1.6rem; border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; color: var(--muted); font-size: .86rem;
}
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust svg { width: 16px; height: 16px; color: var(--brass-text); flex: none; }

.hero__media { position: relative; z-index: 1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(36,26,27,.28) 0%, rgba(36,26,27,0) 34%, rgba(36,26,27,0) 70%, rgba(36,26,27,.34) 100%);
}
.hero__caption {
  position: absolute; right: clamp(1rem,2.4vw,2rem); bottom: clamp(1rem,2.4vw,1.8rem); z-index: 3;
  color: #fff; font-size: .78rem; letter-spacing: .04em;
  background: rgba(28,22,20,.62); backdrop-filter: blur(2px);
  padding: .5rem .85rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.14);
  max-width: 15rem;
}
/* measurement tick rail — subtle architectural motif down the panel edge */
.hero__rail { position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--rule); z-index: 3; }
.hero__rail::before {
  content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 6px;
  background-image: repeating-linear-gradient(to bottom, var(--brass) 0 1px, transparent 1px 22px);
  opacity: .55;
}

/* =====================================================================
   Intro / value proposition — editorial asymmetric split
   ===================================================================== */
.intro__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,4rem); }
.intro__lead h2 { margin-top: 1rem; }
.intro__statement {
  font-family: var(--ff-display); font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.35rem); line-height: 1.24; color: var(--ink);
  max-width: 20ch;
}
.intro__body { margin-top: 1.5rem; display: grid; gap: 1.1rem; }
.intro__figs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,2.5vw,1.6rem); align-items: end; }
.intro__fig { position: relative; }
.intro__fig img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.intro__fig--a { aspect-ratio: 5/6; }
.intro__fig--a img { height: 100%; object-fit: cover; border-radius: var(--radius); }
.intro__fig--b { transform: translateY(-14%); }
.intro__fig--b img { aspect-ratio: 4/3; object-fit: cover; }
.intro__figcap {
  margin-top: .7rem; font-size: .78rem; color: var(--muted); letter-spacing: .02em;
  display: flex; align-items: baseline; gap: .5rem;
}
.intro__figcap b { font-family: var(--ff-display); color: var(--brass-text); font-weight: 700; }

@media (min-width: 860px) {
  .intro__grid { grid-template-columns: 1fr 1.05fr; align-items: center; }
}

/* Marker list (used in intro + why) */
.marklist { list-style: none; display: grid; gap: .5rem; margin-top: 1.4rem; }
.marklist li { position: relative; padding-left: 1.6rem; }
.marklist li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px;
  border: 1.5px solid var(--accent); transform: rotate(45deg);
}

/* =====================================================================
   Services — editorial hairline rows (index numerals), not cards
   ===================================================================== */
.services { background: var(--surface); }
.services__list { margin-top: clamp(2rem,4vw,3rem); border-top: 1px solid var(--rule); }
.svc {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem,4vw,3rem);
  padding: clamp(1.5rem,3vw,2.3rem) 0; border-bottom: 1px solid var(--rule);
  align-items: baseline; transition: background .3s var(--ease);
}
.svc__num {
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.4rem,1rem+1.4vw,2rem);
  color: var(--brass); line-height: 1; min-width: 2.4ch;
}
.svc__body { display: grid; grid-template-columns: 1fr; gap: .5rem; }
.svc h3 { color: var(--ink); }
.svc p { color: var(--body); max-width: 70ch; }
@media (min-width: 780px) {
  .svc { grid-template-columns: auto minmax(14ch, 20ch) 1fr; }
  .svc__body { grid-column: 3; }
  .svc h3 { grid-column: 2; grid-row: 1; }
  .svc__body { grid-row: 1; }
}
.svc:hover { background: var(--panel); }
.svc:hover .svc__num { color: var(--accent); }

/* full-bleed image divider band */
.imgband { position: relative; overflow: hidden; }
.imgband img { width: 100%; height: clamp(220px, 34vw, 420px); object-fit: cover; }
.imgband__cap {
  position: absolute; left: var(--gutter); bottom: clamp(1rem,3vw,2rem);
  background: var(--surface); color: var(--ink); padding: 1rem 1.3rem; border-radius: var(--radius);
  max-width: 26rem; box-shadow: var(--shadow-md); border-left: 3px solid var(--accent);
}
.imgband__cap p { font-size: .92rem; color: var(--body); margin: 0; }
.imgband__cap .eyebrow { margin-bottom: .4rem; }

/* =====================================================================
   Why / craftsmanship — dark bordeaux-charcoal band
   ===================================================================== */
.why { background: var(--dark); color: var(--on-dark); }
.why h2 { color: var(--on-dark); }
.why .eyebrow { color: var(--on-dark-mut); }
.why .eyebrow::before { background: var(--brass-lite); }
.why__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (min-width: 900px) { .why__grid { grid-template-columns: 1.05fr .95fr; } }
.why__lede { color: var(--on-dark-mut); margin-top: 1.1rem; }
.why__points { list-style: none; display: grid; gap: 1.35rem; margin-top: 2rem; }
.why__points li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.why__points svg { width: 22px; height: 22px; color: var(--brass-lite); flex: none; margin-top: 3px; }
.why__points b { font-family: var(--ff-display); color: var(--on-dark); font-weight: 600; display: block; margin-bottom: .1rem; letter-spacing: -.01em; }
.why__points span { color: var(--on-dark-mut); font-size: .95rem; }
.why__figure { position: relative; }
.why__figure img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); }
.why__figure figcaption {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(28,22,20,.72);
  color: var(--on-dark); font-size: .76rem; padding: .5rem .8rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
}
.why__frame { position: relative; padding: 12px; }
.why__frame::before { content:""; position:absolute; inset:0; border:1px solid var(--rule-dark); border-radius: var(--radius); }

/* =====================================================================
   Process — vertical editorial timeline
   ===================================================================== */
.process__grid { margin-top: clamp(2rem,4vw,3rem); display: grid; gap: 0; position: relative; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.2rem,4vw,2.6rem);
  padding: clamp(1.5rem,3vw,2.2rem) 0; position: relative;
}
.step:not(:last-child) { border-bottom: 1px solid var(--rule); }
.step__num {
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem,1.2rem+2.6vw,3.4rem);
  color: var(--ink); line-height: .9; position: relative; min-width: 3ch;
}
.step__num sup { font-size: .4em; color: var(--brass); font-weight: 700; vertical-align: super; margin-left: .1em; }
.step__body h3 { margin-bottom: .5rem; }
.step__body p { color: var(--body); max-width: 60ch; }
@media (min-width: 720px) {
  .step { grid-template-columns: 5rem minmax(16ch,22ch) 1fr; align-items: baseline; }
  .step__body { display: contents; }
  .step__body h3 { grid-column: 2; }
  .step__body p { grid-column: 3; }
}

/* =====================================================================
   Gallery — masonry (CSS columns) with hairline frames + lightbox
   ===================================================================== */
.gallery { background: var(--surface); }
.gallery__grid { margin-top: clamp(2rem,4vw,3rem); columns: 3 260px; column-gap: clamp(.9rem,2vw,1.4rem); }
.gtile {
  break-inside: avoid; margin-bottom: clamp(.9rem,2vw,1.4rem); position: relative;
  border: 0; padding: 0; background: none; width: 100%; display: block; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.gtile img { width: 100%; transition: transform .6s var(--ease), filter .4s var(--ease); }
.gtile::after {
  content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(33,28,26,.06);
  border-radius: var(--radius); pointer-events: none;
}
.gtile__meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; gap: .6rem; padding: 1.4rem .9rem .8rem;
  background: linear-gradient(to top, rgba(28,22,20,.78), rgba(28,22,20,0));
  color: #fff; opacity: 0; transform: translateY(6px); transition: opacity .35s var(--ease), transform .35s var(--ease);
  text-align: left;
}
.gtile__idx { font-family: var(--ff-display); font-weight: 700; color: var(--brass-lite); font-size: .82rem; }
.gtile__cap { font-size: .82rem; letter-spacing: .01em; }
.gtile:hover img { transform: scale(1.04); }
.gtile:hover .gtile__meta, .gtile:focus-visible .gtile__meta { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none; place-items: center;
  background: rgba(20,15,14,.9); padding: clamp(1rem,4vw,3rem);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.lightbox__cap { color: var(--on-dark-mut); text-align: center; margin-top: .9rem; font-size: .85rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25);
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem;
  transition: background .2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: clamp(.6rem,3vw,2rem); }
.lightbox__nav--next { right: clamp(.6rem,3vw,2rem); }

/* =====================================================================
   About
   ===================================================================== */
.about__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (min-width: 880px) { .about__grid { grid-template-columns: .95fr 1.05fr; } }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 6/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about__media .tag {
  position: absolute; left: -12px; bottom: 22px; background: var(--accent); color: #fff;
  padding: .8rem 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.about__media .tag b { font-family: var(--ff-display); display: block; font-size: 1.05rem; font-weight: 600; }
.about__media .tag span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; opacity: .85; }
.about__body p { margin-top: 1.1rem; }
.about__sign { margin-top: 1.6rem; font-family: var(--ff-display); font-style: italic; color: var(--ink); font-size: 1.2rem; }
.about__sign span { display: block; font-family: var(--ff-body); font-style: normal; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* =====================================================================
   Service area
   ===================================================================== */
.area { background: var(--panel); }
.area__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem,4vw,3rem); align-items: center; }
@media (min-width: 820px) { .area__grid { grid-template-columns: 1fr 1fr; } }
.area__chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.area__chips span {
  font-size: .86rem; color: var(--body); background: var(--surface); border: 1px solid var(--rule);
  padding: .45rem .9rem; border-radius: 999px;
}
.area__note { margin-top: 1.2rem; font-size: .9rem; color: var(--muted); }

/* =====================================================================
   CTA band — full-bleed image + solid scrim
   ===================================================================== */
.ctaband { position: relative; color: #fff; text-align: center; overflow: hidden; }
.ctaband__bg { position: absolute; inset: 0; z-index: 0; }
.ctaband__bg img { width: 100%; height: 100%; object-fit: cover; }
.ctaband::before { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(28,22,20,.82), rgba(28,22,20,.72)); }
.ctaband .shell { position: relative; z-index: 2; }
.ctaband h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.ctaband p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 1.1rem auto 0; }
.ctaband__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.ctaband .eyebrow { color: rgba(255,255,255,.82); justify-content: center; }
.ctaband .eyebrow::before { background: var(--brass-lite); }

/* =====================================================================
   Contact + form
   ===================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem,3vw,2.4rem); }
@media (min-width: 900px) { .contact__grid { grid-template-columns: .82fr 1.18fr; align-items: start; } }

.contact__info { background: var(--dark); color: var(--on-dark); border-radius: var(--radius); padding: clamp(1.8rem,3vw,2.6rem); }
.contact__info h2 { color: var(--on-dark); font-size: clamp(1.6rem,1.2rem+1.4vw,2.2rem); }
.contact__info .eyebrow { color: var(--on-dark-mut); }
.contact__info .eyebrow::before { background: var(--brass-lite); }
.contact__info p { color: var(--on-dark-mut); margin-top: 1rem; font-size: .96rem; }
.contact__rows { list-style: none; display: grid; gap: 1.15rem; margin-top: 1.8rem; }
.contact__rows li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.contact__rows svg { width: 20px; height: 20px; color: var(--brass-lite); margin-top: 3px; flex: none; }
.contact__rows a, .contact__rows address { color: var(--on-dark); text-decoration: none; font-style: normal; line-height: 1.5; }
.contact__rows a:hover { color: var(--accent-rose); }
.contact__rows small { display: block; color: var(--on-dark-mut); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .15rem; }

.form-card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.6rem); box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: clamp(1.3rem,1.05rem+1vw,1.7rem); }
.form-card > p { color: var(--muted); margin-top: .5rem; font-size: .94rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.6rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.field label .req { color: var(--accent); }
.field input, .field textarea {
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: .8rem .9rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #9a9188; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(122,46,56,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-actions .btn { flex: none; }
.form-fineprint { font-size: .8rem; color: var(--muted); max-width: 40ch; }
.form-success {
  display: none; background: #EAF3EC; border: 1px solid #B8D8BF; color: #1F5130;
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.form-success h3 { color: #1F5130; font-size: 1.3rem; }
.form-success p { color: #2C6A40; margin-top: .5rem; }
/* no-JS server fallback message injected by send.php */
.form-note { margin-top: 1rem; font-size: .86rem; }

/* =====================================================================
   Location / map
   ===================================================================== */
.map__wrap { margin-top: clamp(1.6rem,3vw,2.4rem); position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--rule); }
.map__frame { display: block; width: 100%; height: clamp(300px, 44vw, 460px); border: 0; position: relative; z-index: 1; background: var(--panel); }
.map__fallback {
  position: absolute; inset: 0; z-index: 0; display: grid; place-content: center; text-align: center; gap: .8rem;
  padding: 2rem; color: var(--muted); background: var(--panel);
}
.map__fallback svg { width: 34px; height: 34px; margin-inline: auto; color: var(--brass-text); }
.map__bar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-top: 1.2rem; }
.map__bar address { font-style: normal; color: var(--body); }
.map__bar address b { font-family: var(--ff-display); color: var(--ink); font-weight: 600; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--dark-deep); color: var(--on-dark-mut); padding-block: clamp(3rem,5vw,4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; } }
.footer__brand .brand__name { color: var(--on-dark); }
.footer__brand .brand__sub { color: var(--on-dark-mut); }
.footer__brand p { margin-top: 1.1rem; font-size: .92rem; max-width: 34ch; }
.footer h4 { color: var(--on-dark); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--ff-body); font-weight: 600; margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: .6rem; }
.footer a { color: var(--on-dark-mut); text-decoration: none; font-size: .92rem; }
.footer a:hover { color: var(--on-dark); }
.footer__contact address { font-style: normal; line-height: 1.7; font-size: .92rem; }
.footer__contact a { display: inline-block; }
.footer__bottom {
  margin-top: 2.8rem; padding-top: 1.5rem; border-top: 1px solid var(--rule-dark);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: .82rem; color: var(--on-dark-mut);
}
.footer__bottom a { color: var(--on-dark-mut); }
.footer__mark { width: 30px; height: 30px; }

/* =====================================================================
   Scroll reveal — progressive enhancement.
   Visible by default; only hidden once <html class="enh"> is set by JS
   AND the visitor has no reduced-motion preference.
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .enh .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .enh .reveal.is-in { opacity: 1; transform: none; }
  .enh .reveal--d1 { transition-delay: .08s; }
  .enh .reveal--d2 { transition-delay: .16s; }
  .enh .reveal--d3 { transition-delay: .24s; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header, .nav__toggle, .lightbox, .ctaband__bg { display: none !important; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { min-height: 300px; order: -1; }
  .hero__media img { height: 100%; max-height: 52vh; }
  .hero__rail { display: none; }
  .hero__panel-inner { margin-left: 0; max-width: none; }
}
@media (max-width: 860px) {
  .nav__links, .nav__phone, .nav__cta .btn--primary { display: none; }
  .nav__toggle { display: grid; place-items: center; }
  .nav {
    position: relative;
  }
  /* Fade-in-place overlay (no off-canvas translate — avoids horizontal
     overflow that a translateX(100%) fixed panel would add to scrollWidth). */
  .mobile-menu {
    position: fixed; inset: 74px 0 0; z-index: 90; background: var(--bg);
    opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none;
    transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s var(--ease);
    display: flex; flex-direction: column; padding: var(--gutter); gap: .3rem; overflow-y: auto;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .mobile-menu a { font-family: var(--ff-display); font-size: 1.5rem; color: var(--ink); text-decoration: none; padding: .85rem 0; border-bottom: 1px solid var(--rule); }
  .mobile-menu a:last-of-type { border-bottom: 0; }
  .mobile-menu .btn { margin-top: 1.2rem; }
  .mobile-menu .mm-phone { margin-top: .4rem; display: inline-flex; align-items: center; gap: .5rem; color: var(--accent); font-weight: 600; text-decoration: none; }
}
@media (min-width: 861px) { .mobile-menu { display: none; } }

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .intro__figs { grid-template-columns: 1fr; }
  .intro__fig--b { transform: none; }
  .gallery__grid { columns: 2 150px; }
  .hero__actions .btn { flex: 1 1 auto; }
}
@media (max-width: 400px) {
  .gallery__grid { columns: 1; }
}
