/* ==========================================================================
   Advanced Aesthetics · Components
   ========================================================================== */

/* ----------------------------- BUTTONS ----------------------------- */
.btn {
  --btn-pad-y: 16px; --btn-pad-x: clamp(20px, 4vw, 30px);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  min-height: 48px;
  max-width: 100%; white-space: normal; overflow-wrap: break-word; text-align: center;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  will-change: transform;
}
.btn-primary {
  background: var(--aa-gold); color: var(--aa-forest);
  box-shadow: 0 0 0 1px rgba(200,169,104,0.0);
}
.btn-primary:hover {
  background: #D8BB7E;
  box-shadow: 0 10px 34px -12px rgba(200,169,104,0.65);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid rgba(200,169,104,0.5); color: var(--fg);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-lg { --btn-pad-y: 19px; --btn-pad-x: 38px; font-size: 13px; min-height: 56px; }
.btn .ico { width: 16px; height: 16px; }

/* magnetic wrapper keeps button centered while we translate it */
.magnetic { display: inline-block; max-width: 100%; will-change: transform; }

/* text link with gold underline draw */
.link-draw {
  position: relative; color: var(--fg); font-weight: 600;
  font-family: var(--font-accent); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 12px;
}
.link-draw::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform var(--dur-fast) var(--ease-out);
}
.link-draw:hover::after { transform: scaleX(1); }

/* ----------------------------- HEADER ----------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: transform 0.45s var(--ease-out), background-color 0.4s var(--ease-soft),
              backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13, 12, 10, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--rule-2);
}
.site-header.nav-hidden { transform: translateY(-100%); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 24px;
}
.brand-logo img { height: 46px; width: auto; transition: opacity var(--dur-fast) ease; }
.brand-logo:hover img { opacity: 0.86; }

.nav-primary { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-family: var(--font-accent); font-weight: 500;
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--aa-cream); opacity: 0.86;
  transition: opacity var(--dur-fast) ease, color var(--dur-fast) ease;
}
.nav-link:hover, .nav-item:hover .nav-link { opacity: 1; color: var(--aa-gold); }
.nav-link[aria-current="page"] { color: var(--aa-gold); opacity: 1; }
.nav-link .chev { width: 11px; height: 11px; transition: transform var(--dur-fast) ease; }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }

/* mega menu */
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(620px, 88vw);
  background: rgba(20, 18, 16, 0.96);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 22px; opacity: 0; visibility: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px;
}
.nav-item:hover .mega, .nav-item:focus-within .mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-feature {
  border-radius: var(--radius); overflow: hidden; position: relative;
  min-height: 200px; display: flex; align-items: flex-end;
  background: var(--aa-forest-2);
}
.mega-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.mega-feature .cap {
  position: relative; padding: 18px; z-index: 1;
  background: linear-gradient(0deg, rgba(13,12,10,0.92), transparent);
  width: 100%;
}
.mega-feature .cap h4 { font-family: var(--font-display); font-size: 22px; color: var(--aa-cream); }
.mega-feature .cap p { font-size: 13px; color: var(--ink-2); margin-top: 4px; }
.mega-links { display: flex; flex-direction: column; gap: 6px; }
.mega-link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 16px; border-radius: 12px;
  border: 1px solid transparent;
  transition: background-color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.mega-link:hover { background: var(--aa-card); border-color: var(--rule); }
.mega-link .ml-t { font-family: var(--font-display); font-size: 19px; color: var(--aa-cream); }
.mega-link .ml-n { font-family: var(--font-accent); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aa-gold); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--aa-forest);
  display: flex; flex-direction: column;
  padding: 96px var(--gutter) 40px;
  transform: translateY(-100%); transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .mm-link {
  font-family: var(--font-display); font-size: clamp(30px, 9vw, 46px);
  color: var(--aa-cream); padding: 12px 0; border-bottom: 1px solid var(--rule-2);
  display: flex; justify-content: space-between; align-items: baseline;
}
.mobile-menu .mm-link .mm-n { font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.14em; color: var(--aa-gold); text-transform: uppercase; }
.mobile-menu .mm-sub { padding-left: 16px; }
.mobile-menu .mm-sub .mm-link { font-size: clamp(22px, 6vw, 30px); color: var(--ink-2); }
.mobile-menu .mm-foot { margin-top: auto; padding-top: 28px; }

/* ----------------------------- FOOTER ----------------------------- */
.site-footer {
  background: var(--aa-forest-2);
  border-top: 1px solid var(--rule);
  padding-block: clamp(56px, 8vw, 96px) 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.1fr; gap: clamp(28px, 4vw, 48px);
}
.footer-brand img.footer-logo { width: min(60%, 172px); height: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 14.5px; color: var(--ink-2); max-width: 34ch; }
.footer-col h5 {
  font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--aa-gold); margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; color: var(--ink-2); font-size: 14.5px; padding: 5px 0; transition: color var(--dur-fast) ease; }
.footer-col a:hover { color: var(--aa-gold); }
.footer-news form { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.footer-trust {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--rule-2);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.footer-trust .ft {
  font-size: 12.5px; color: var(--ink-muted); line-height: 1.6;
}
.footer-trust .ft strong { color: var(--ink-2); font-weight: 600; }
.footer-bar {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--rule-2);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-muted);
}
.footer-bar a { color: var(--ink-muted); }
.footer-bar a:hover { color: var(--aa-gold); }
.pom-sig {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-accent); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px;
  color: var(--ink-muted); transition: color var(--dur-fast) ease;
}
.pom-sig img { height: 32px; width: auto; display: block; opacity: 0.95; transition: opacity var(--dur-fast) ease; }
.pom-sig:hover { color: var(--aa-gold); }
.pom-sig:hover img { opacity: 1; }

/* ----------------------------- CARDS ----------------------------- */
.card {
  background: var(--bg-card); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 32px);
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}
.card:hover {
  transform: translateY(-4px); border-color: var(--accent);
  box-shadow: 0 24px 60px -34px rgba(0,0,0,0.7);
}
.card .card-k { font-family: var(--font-accent); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--fg-2); }
.card-num { font-family: var(--font-display); font-size: 40px; color: var(--accent); line-height: 1; }

/* pillar (left bar) */
.pillar { position: relative; padding-left: 22px; }
.pillar::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
}

/* quote */
.quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px); line-height: 1.28; color: var(--fg);
  letter-spacing: -0.01em;
}
.quote em { color: var(--accent); }
.quote .by { display: block; margin-top: 18px; font-family: var(--font-accent); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted); }

/* review card (testimonial wall) */
.card.review { display: flex; flex-direction: column; }
.rev-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--accent); }
.rev-stars svg { width: 15px; height: 15px; display: block; }
.card.review p { flex: 1 1 auto; font-size: 15.5px; line-height: 1.6; color: var(--fg-2); }
.rev-by { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--hairline); }
.rev-by .nm { display: block; font-family: var(--font-accent); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg); }
.rev-by .mt { display: block; margin-top: 4px; font-size: 12px; color: var(--fg-muted); }

/* ----------------------------- EDITORIAL IMAGE FRAME ----------------------------- */
/* luminous portrait hung on the forest wall, gold hairline + clip reveal */
.frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--aa-forest-2);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.85);
}
.frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 1px solid rgba(200,169,104,0.28); pointer-events: none;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-tall { aspect-ratio: 4 / 5; }
.frame-portrait { aspect-ratio: 3 / 4; }
.frame-wide { aspect-ratio: 16 / 10; }
.frame-cap {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  font-family: var(--font-accent); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--aa-cream);
  background: rgba(13,12,10,0.7); backdrop-filter: blur(6px);
  padding: 7px 12px; border-radius: var(--radius-pill); border: 1px solid var(--rule);
}

/* editorial asymmetric 12-col grid */
.editorial { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(18px, 3vw, 36px); align-items: center; }
.col-7 { grid-column: span 7; } .col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; } .col-8 { grid-column: span 8; } .col-4 { grid-column: span 4; }
/* min-width:0 lets columns shrink below a long word's min-content (prevents overflow) */
.col-7,.col-5,.col-6,.col-8,.col-4 { min-width: 0; }
.grid > * { min-width: 0; }
@media (max-width: 880px) {
  .editorial { grid-template-columns: 1fr; }
  .col-7,.col-5,.col-6,.col-8,.col-4 { grid-column: 1 / -1; }
}

/* tag pills */
/* "Who finds their way here" segment cards: sized to their content so the button sits
   right under the text (not pushed to the bottom), cards centered in the pinned view,
   and a tight gap into the testimonials below. */
[aria-label="Who finds their way here"] { padding-bottom: clamp(16px, 2vh, 32px); }
[aria-label="Who finds their way here"] .pin-panel { width: clamp(300px, 46vw, 500px); display: flex; align-items: center; }
[aria-label="Who finds their way here"] .pin-panel > .card { height: auto; justify-content: flex-start; }
/* mobile: the full-height pin (kept on phones by design) leaves the small desktop cards
   floating with a big gap. On phones let the card fill the pinned height with its content
   centered, so the space reads intentional and the button still sits under the text. */
@media (max-width: 700px) {
  [aria-label="Who finds their way here"] { padding-top: clamp(52px, 8vh, 74px); padding-bottom: clamp(16px, 3vh, 28px); }
  [aria-label="Who finds their way here"] .pin-head { margin-bottom: clamp(10px, 1.6vh, 18px); }
  [aria-label="Who finds their way here"] .pin-panel { align-items: stretch; }
  [aria-label="Who finds their way here"] .pin-panel > .card { height: 100%; justify-content: center; padding: clamp(24px, 6vw, 30px); }
}

/* clickable "craft" photo -> gallery, with a hover-reveal caption */
.craft-link { display: block; position: relative; cursor: pointer; }
.craft-link img { transition: transform 0.7s var(--ease-out), filter 0.5s ease; }
.craft-link .craft-cue {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(16px, 3vw, 26px);
  font-family: var(--font-accent); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--aa-cream);
  background: linear-gradient(to top, rgba(10,10,11,0.74) 0%, rgba(10,10,11,0.35) 50%, transparent 100%);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
  pointer-events: none;
}
.craft-link:hover img, .craft-link:focus-visible img { transform: scale(1.045); filter: brightness(0.82); }
.craft-link:hover .craft-cue, .craft-link:focus-visible .craft-cue { opacity: 1; transform: translateY(0); }
/* touch devices have no hover: keep the cue gently visible so the tap is discoverable */
@media (hover: none) {
  .craft-link .craft-cue { opacity: 0.92; transform: none; }
}

.pillrow { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  font-family: var(--font-accent); font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  background: #191712; border: 1px solid var(--hairline);
  border-radius: var(--radius-pill); padding: 9px 15px;
}

/* stat */
.stat .n { font-family: var(--font-display); font-size: clamp(40px, 6vw, 70px); color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.stat .l { font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin-top: 10px; }

/* ----------------------------- PIN + HORIZONTAL ----------------------------- */
/* Section is a fixed-height flex column: head in flow, rail fills the rest, cards
   sized to 100% of the rail so they always fit the viewport (no cut-off). */
.pin-section { position: relative; }
/* Section is one screen tall; head in flow, rail fills the rest, cards = 100% of the
   rail so they're BIG (fill the screen) yet never cut off. Pin runs on all widths. */
[data-pin-horizontal] {
  height: 100vh; height: 100svh; min-height: 560px; max-height: 1120px; overflow: hidden;
  display: flex; flex-direction: column;
  padding-top: clamp(86px, 11vh, 122px);
  padding-bottom: clamp(34px, 5vh, 72px);
}
.pin-head {
  flex: 0 0 auto; position: static;
  padding: 0 var(--gutter); margin: 0 0 clamp(12px, 2vh, 26px);
  z-index: 2;
}
.pin-viewport {
  flex: 1 1 auto; min-height: 0; position: relative; height: auto;
  display: flex; align-items: stretch; overflow: hidden;
}
.pin-track { display: flex; align-items: stretch; gap: clamp(18px, 2.4vw, 34px); padding-inline: var(--gutter); height: 100%; will-change: transform; }
.pin-panel { flex: 0 0 auto; width: clamp(320px, 60vw, 580px); height: 100%; }
.pin-progress { display: none; }

/* editorial card used inside pins — big, image-forward, text in a clean panel */
.ed-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 100%; display: flex; align-items: flex-end; }
.ed-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.ed-card:hover img { transform: scale(1.04); }
.ed-card::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 66%; z-index: 1;
  background: linear-gradient(0deg, rgba(8,7,6,0.96) 0%, rgba(8,7,6,0.86) 26%, rgba(8,7,6,0.34) 64%, transparent 100%);
}
.ed-card .ed-body { position: relative; z-index: 2; padding: clamp(26px, 2.6vw, 42px); width: 100%; }
.ed-card .ed-k { display: block; font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aa-gold); }
.ed-card .ed-t { display: block; font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); line-height: 1.04; color: var(--aa-cream); margin: 10px 0 9px; }
.ed-card .ed-p { display: block; font-size: clamp(14.5px, 1.05vw, 16px); line-height: 1.55; color: var(--ink-2); max-width: 36ch; }
.ed-card .ed-price { display: inline-block; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--rule); font-family: var(--font-accent); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aa-gold); }
/* text panels inside a pin fill the rail height too */
.pin-panel > .card { height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 3vw, 44px); }

/* contact map — framed, dark-filtered so it sits in the black/gold palette */
.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hairline); box-shadow: 0 24px 60px -34px rgba(0,0,0,0.72); }
.map-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(200,169,104,0.14); border-radius: inherit; }
.map-frame iframe { display: block; width: 100%; height: clamp(300px, 44vh, 460px); border: 0; filter: invert(0.92) grayscale(1) brightness(0.92) contrast(0.9); }

/* consult (first) sits slightly taller than botox/filler — it comes before anything else */
.pin-panel.svc-tall { height: 100%; }
.pin-panel.svc-short { height: 88%; align-self: center; }

/* phone: keep the big full-height pin, just a touch wider relative to the screen */
@media (max-width: 700px) {
  .pin-panel { width: min(84vw, 380px); }
  .ed-card .ed-t { font-size: clamp(27px, 8vw, 34px); }
}

/* fallback when the pin cannot run (reduced motion / no GSAP): stack cards vertically */
@media (prefers-reduced-motion: reduce) {
  [data-pin-horizontal] { height: auto; min-height: 0; max-height: none; display: block; overflow: visible; padding-block: var(--section-y); }
  [data-pin-horizontal] .pin-viewport { display: block; overflow: visible; height: auto; }
  [data-pin-horizontal] .pin-track { flex-direction: column; transform: none !important; height: auto; gap: 18px; }
  [data-pin-horizontal] .pin-panel { width: 100%; height: auto; align-self: stretch; }
  [data-pin-horizontal] .ed-card, [data-pin-horizontal] .pin-panel > .card { height: clamp(420px, 66vh, 560px); }
  [data-pin-horizontal] .pin-panel.svc-tall .ed-card { height: clamp(470px, 74vh, 620px); }
}

/* ----------------------------- SCRUB (process / gallery) ----------------------------- */
.scrub-section { position: relative; }
.scrub-pin { height: 100vh; min-height: 620px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(20px, 4vw, 60px); overflow: hidden; }
.scrub-stage { position: relative; height: min(74vh, 640px); border-radius: var(--radius-lg); overflow: hidden; background: var(--aa-forest-2); }
.scrub-frame { position: absolute; inset: 0; opacity: 0; }
.scrub-frame img { width: 100%; height: 100%; object-fit: cover; }
.scrub-frame .ovl { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,6,0.7), transparent 60%); }
.scrub-steps { display: flex; flex-direction: column; gap: 8px; }
.scrub-step { padding: 18px 0; opacity: 0.32; transition: opacity 0.4s ease; border-top: 1px solid var(--rule-2); }
.scrub-step.active { opacity: 1; }
.scrub-step .ss-n { font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.16em; color: var(--accent); text-transform: uppercase; }
.scrub-step h3 { margin: 8px 0 6px; }
.scrub-step p { font-size: 15px; }
@media (max-width: 880px) {
  .scrub-pin { grid-template-columns: 1fr; height: auto; min-height: 0; display: block; }
  .scrub-stage { height: 56vh; margin-bottom: 24px; position: sticky; top: 90px; }
  .scrub-steps { gap: 0; }
}

/* ----------------------------- FAQ / ACCORDION ----------------------------- */
.accordion { border-top: 1px solid var(--hairline-2); }
.acc-item { border-bottom: 1px solid var(--hairline-2); }
.acc-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 0; font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 27px); color: var(--fg);
}
.acc-q .acc-ico { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.acc-q .acc-ico::before, .acc-q .acc-ico::after { content: ""; position: absolute; background: var(--accent); transition: transform var(--dur-fast) var(--ease-out); }
.acc-q .acc-ico::before { top: 10px; left: 0; width: 22px; height: 2px; }
.acc-q .acc-ico::after  { left: 10px; top: 0; width: 2px; height: 22px; }
.acc-item.open .acc-ico::after { transform: scaleY(0); }
.acc-a { overflow: hidden; height: 0; transition: height 0.4s var(--ease-out); }
.acc-a .acc-inner { padding: 0 0 28px; max-width: 70ch; }
.acc-a p { color: var(--fg-2); }

/* ----------------------------- FORMS ----------------------------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }
.input, .textarea, .footer-news input {
  background: rgba(244,236,224,0.04); border: 1px solid var(--hairline);
  border-radius: 10px; padding: 14px 16px; color: var(--fg); font-family: var(--font-body); font-size: 15px;
  transition: border-color var(--dur-fast) ease, background-color var(--dur-fast) ease; width: 100%;
}
.input:focus, .textarea:focus, .footer-news input:focus { outline: none; border-color: var(--accent); background: rgba(244,236,224,0.06); }
.textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--fg-muted); }

/* coming-soon panel — soft launch, for backend-dependent features not built yet */
.coming-soon { text-align: center; padding: clamp(26px, 4vw, 40px); border: 1px dashed var(--hairline); border-radius: var(--radius); background: rgba(200,169,104,0.04); }
.coming-soon .cs-tag { display: inline-block; font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 6px 14px; margin-bottom: 16px; }
.coming-soon .cs-title { font-family: var(--font-display); font-size: clamp(21px, 2.8vw, 28px); line-height: 1.1; color: var(--fg); margin-bottom: 10px; }
.coming-soon .cs-sub { color: var(--fg-2); font-size: 15px; max-width: 42ch; margin-inline: auto; }

/* scaffolding flag (loud) — for placeholder/demo data per POM standard */
.flag-scaffold {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-accent); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #E6C98A; background: rgba(196,98,44,0.14); border: 1px dashed rgba(200,169,104,0.5);
  border-radius: var(--radius-pill); padding: 6px 12px;
}

/* ----------------------------- HEADER MOBILE ----------------------------- */
@media (max-width: 1040px) {
  .nav-primary, .header-cta .btn { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: var(--radius-pill); border: 1px solid var(--rule);
    color: var(--aa-cream);
  }
  .nav-toggle .bars { position: relative; width: 22px; height: 14px; }
  .nav-toggle .bars span { position: absolute; left: 0; width: 100%; height: 1.6px; background: currentColor; transition: transform 0.3s var(--ease-out), opacity 0.3s ease; }
  .nav-toggle .bars span:nth-child(1) { top: 0; }
  .nav-toggle .bars span:nth-child(2) { top: 6px; }
  .nav-toggle .bars span:nth-child(3) { top: 12px; }
  body.menu-open .nav-toggle .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .nav-toggle .bars span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
@media (min-width: 1041px) { .mobile-menu { display: none; } }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ----------------------------- FULL-BLEED SPLIT HERO ----------------------------- */
.hero-split {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
/* image bleeds to the top (under the transparent header), right edge, and bottom */
.hero-split-media {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 52%; z-index: 0;
}
.hero-split-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
/* fade the image's left edge into the page ground so the copy stays readable */
.hero-split-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  /* left edge-blend (keeps off her face) + a soft smokey dissolve into the section below */
  background:
    linear-gradient(90deg, var(--aa-forest) 0%, rgba(10,10,11,0.5) 7%, transparent 22%),
    linear-gradient(0deg, var(--aa-forest) 0%, rgba(10,10,11,0.5) 10%, transparent 32%);
}
.hero-split-inner { position: relative; z-index: 1; width: 100%; }
.hero-split-content {
  max-width: 600px;
  padding-block: clamp(100px, 12vh, 140px) clamp(28px, 5vh, 56px);
}
.hero-split-content .row { margin-top: 26px !important; }
.hero-split-content .pillrow { margin-top: 24px !important; }
/* stack on tablet/mobile: image banner on top, copy below */
@media (max-width: 960px) {
  .hero-split { display: block; min-height: 0; }
  .hero-split-media { position: relative; width: 100%; height: clamp(360px, 64vh, 560px); }
  .hero-split-media img { object-position: 50% 30%; }
  .hero-split-media::after { background: linear-gradient(0deg, var(--aa-forest) 2%, rgba(13,12,10,0.15) 34%, transparent 60%); }
  .hero-split-content { max-width: none; padding-block: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 28px); }
}
/* shorter hero for interior pages */
.hero-split.hero-compact { min-height: 82vh; min-height: 82svh; }
@media (max-width: 960px) { .hero-split.hero-compact { min-height: 0; } }

/* about hero — show the ENTIRE figure on desktop, centered, never cropped */
.hero-figure .hero-split-media { width: 62%; }
.hero-figure .hero-split-media img { object-fit: cover; object-position: 48% 44%; }
/* left fade blends brick into the text side; a soft top fade lets it bleed cleanly under the nav */
.hero-figure .hero-split-media::after {
  display: block;
  background:
    linear-gradient(90deg, var(--aa-forest) 0%, rgba(10,10,11,0.5) 9%, transparent 30%),
    linear-gradient(180deg, rgba(10,10,11,0.45) 0%, transparent 16%),
    linear-gradient(0deg, var(--aa-forest) 0%, rgba(10,10,11,0.5) 9%, transparent 28%);
}
@media (max-width: 960px) {
  .hero-figure .hero-split-media { width: 100%; }
  .hero-figure .hero-split-media img { object-fit: cover; object-position: 50% 20%; }
}

/* smokey section transition — a soft haze straddling the boundary, never a hard line */
.section.surface-forest-2::before,
.section.gold-sep-top::before {
  content: ""; position: absolute; top: -80px; left: 0; right: 0; height: 160px;
  pointer-events: none; z-index: 0;
  background: radial-gradient(62% 130% at 50% 0%, rgba(232,224,208,0.038), transparent 72%);
}

/* home philosophy stat row — 4 across, each contained so numbers never collide */
.stats-row { grid-template-columns: repeat(4, 1fr); align-items: start; }
.stats-row .stat .n { font-size: clamp(30px, 3.1vw, 44px); }
.stats-row .stat .l { display: block; font-size: 10.5px; margin-top: 6px; line-height: 1.4; }
@media (max-width: 640px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* slate concrete texture — hero of services / process / faq / contact only.
   image lives at /photos/slate-hero.jpg. The texture dissolves gradually into the
   page-ground black at the bottom: no gold, no line, no hard edge, just a soft fade
   that blends seamlessly into the next black section. */
.hero-slate {
  position: relative;
  min-height: clamp(460px, 60vh, 680px);
  background-color: var(--aa-forest);
  background-image:
    linear-gradient(to bottom,
      transparent 34%,
      rgba(10,10,11,0.18) 56%,
      rgba(10,10,11,0.48) 76%,
      rgba(10,10,11,0.82) 90%,
      var(--aa-forest) 100%),
    linear-gradient(rgba(11,11,12,0.36), rgba(11,11,12,0.5)),
    url("/photos/slate-hero.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

/* ----------------------------- UNIFORM GALLERY GRID ----------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 24px); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }