/* =================================================================
   {{BUSINESS_NAME}} — custom site design system. Hand-built, no framework.

   ▸ RETHEME HERE (this :root block is the whole skin).
     Everything below is structure/layout/animation and rarely changes.
     To tailor the site to THIS business, derive these tokens from its
     brand/logo colors + the vibe of the inspiration sites provided:
       --ink*   = base background ramp (darkest → panel)
       --bone*  = primary text on the base
       --muted* = secondary/label text
       --accent ramp (here "gold") = the brand's signature color
       --line*  = hairline dividers (tint of the text color)
       --f-*    = the type system (see THEME RECIPES in references/playbook.md)
     Defaults below = the proven "dark luxe / brass-gold" theme. For warm-classic,
     clean-light, or bold-modern industries, swap this block per the playbook.
     NOTE: a few surface rules (body grain, hero/cta gradients) assume a dark
     base — if you go light, also flip those (the playbook lists exactly which).
   ================================================================= */

/* ---------- Tokens — AXWRAPS theme: dark show-floor + vinyl-orange ---------- */
:root {
  --ink:        #0B0C0E;   /* page background (darkest)         */
  --ink-2:      #121417;   /* raised band background            */
  --ink-3:      #1A1D22;   /* card / cell background            */
  --panel:      #121417;
  --panel-2:    #1A1D22;
  --bone:       #F4F2ED;   /* primary text                      */
  --bone-dim:   #C9C7C0;   /* body text                         */
  --muted:      #8A8E96;   /* labels / secondary                */
  --muted-2:    #5F636B;

  /* --- ACCENT = vinyl-orange (keeps the --gold-* names used across the system) --- */
  --gold:       #FF5A1F;
  --gold-soft:  #FF8552;
  --gold-deep:  #C8410F;
  --gold-grad:  linear-gradient(135deg, #FF8552 0%, #FF5A1F 55%, #C8410F 100%);

  --line:        rgba(244,242,237,.10);
  --line-strong: rgba(244,242,237,.20);

  --shadow:     0 30px 80px -30px rgba(0,0,0,.9);
  --shadow-sm:  0 14px 40px -18px rgba(0,0,0,.85);

  --maxw: 1220px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);

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

  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-label:   "Space Grotesk", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.65;
  font-size: 1.0625rem;
  letter-spacing: .003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

/* film grain + vignette over everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity: .035; mix-blend-mode: overlay;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); position: relative; z-index: 2; }
.center { text-align: center; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.solo::before { display: none; }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3 { font-family: var(--f-display); font-weight: 700; line-height: 1.04; letter-spacing: -.01em; }
h2.title { font-size: clamp(2.1rem, 5.2vw, 4rem); font-weight: 600; }
h2.title em, h1 em, .gold-em { font-style: normal; color: var(--gold); font-weight: 700; }
.lead { color: var(--bone-dim); font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 56ch; }
.dim { color: var(--muted); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head.center { display: flex; flex-direction: column; align-items: center; }
.section-head.center .lead { margin-top: 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .16em;
  font-weight: 500; font-size: .82rem;
  padding: 1.05rem 1.9rem;
  background: var(--gold-grad); color: #1a1408;
  border: 1px solid transparent;
  border-radius: 2px;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), filter .3s var(--ease);
  box-shadow: 0 12px 34px -14px rgba(200,164,92,.7);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -14px rgba(200,164,92,.8); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 17px; height: 17px; }

.btn-ghost {
  background: transparent; color: var(--bone);
  border: 1px solid var(--line-strong); box-shadow: none;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(200,164,92,.06); filter: none; }

.btn-sm { padding: .72rem 1.25rem; font-size: .74rem; }

/* ---------- Top bar ---------- */
.topbar {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .22em;
  font-size: .68rem; color: var(--muted);
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 30;
  background: var(--ink-2);
}
.topbar a { color: var(--bone-dim); transition: color .3s; }
.topbar a:hover { color: var(--gold); }
.topbar .status { display: inline-flex; align-items: center; gap: .5rem; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
.topbar .dot.open { background: #6fbf73; box-shadow: 0 0 10px 1px rgba(111,191,115,.6); }
.topbar .dot.closed { background: #c75c5c; }
.topbar .right { display: flex; gap: 1.6rem; align-items: center; }
@media (max-width: 720px) { .topbar .hide-sm { display: none; } .topbar { letter-spacing: .14em; } }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 1.15rem; transition: padding .4s var(--ease); }
.header.scrolled .nav { padding-block: .8rem; }

/* real die-cut logo */
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand-logo { height: 48px; width: auto; display: block; transition: height .4s var(--ease); filter: drop-shadow(0 6px 16px rgba(0,0,0,.5)); }
.header.scrolled .brand-logo { height: 40px; }
.footer .brand { margin-bottom: 1.4rem; }
.footer .brand-logo { height: 70px; filter: none; }
@media (max-width: 600px) { .brand-logo { height: 42px; } }

/* legacy wordmark (kept for reference / fallback) */
.brand-text { display: inline-flex; flex-direction: column; line-height: 1; gap: .28rem; }
.brand .name {
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  font-size: 1.5rem; letter-spacing: .01em; color: var(--bone);
}
.brand .name b { color: var(--gold); font-weight: 700; }
.brand .sub {
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .52em;
  font-size: .58rem; color: var(--muted); padding-left: .15em;
}

.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .18em;
  font-size: .82rem; color: var(--bone-dim); position: relative; padding: .3rem 0;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 2px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--bone); margin: 4px auto; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu .btn { display: inline-flex; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 39;
  background: var(--ink-2);
  display: flex; flex-direction: column; justify-content: flex-start; gap: 1.15rem;
  padding: 6rem var(--gutter) calc(96px + env(safe-area-inset-bottom));
  overflow-y: auto;
  transform: translateY(-100%); transition: transform .55s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--f-display); font-size: clamp(1.7rem,7vw,2.5rem); color: var(--bone);
  border-bottom: 1px solid var(--line); padding-bottom: .55rem;
}
.mobile-menu a em { font-style: italic; color: var(--gold); }
.mobile-menu .mm-actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; z-index: 2; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.05) brightness(.62); transform: scale(1.08); animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.08) translateY(0); } to { transform: scale(1.18) translateY(-2%); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 55%, rgba(10,10,11,.96) 100%),
    linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.25) 30%, rgba(10,10,11,.92) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3.5rem, 9vh, 7rem); padding-top: 7rem; }
.hero .eyebrow { margin-bottom: 1.6rem; }
.hero h1 {
  font-size: clamp(3.1rem, 9.5vw, 8.2rem);
  font-weight: 800; letter-spacing: -.02em; line-height: .92;
  text-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.hero h1 em { display: block; font-weight: 500; }
.hero .sub { margin-top: 1.8rem; max-width: 44ch; font-size: clamp(1.05rem,1.7vw,1.28rem); color: var(--bone-dim); }
.hero .hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero .meta-row {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--line);
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .2em; font-size: .76rem; color: var(--muted);
}
.hero .meta-row b { color: var(--bone); font-weight: 500; }
.hero .meta-row .stars { color: var(--gold); letter-spacing: .1em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 3;
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .35em; font-size: .6rem; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.3); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }
@media (max-width: 600px){ .scroll-cue{ display:none; } }

/* ---------- Brand marquee ---------- */
.marquee-band { border-block: 1px solid var(--line); background: var(--ink-2); padding-block: 2.2rem; position: relative; z-index: 2; overflow: hidden; }
.marquee-label { text-align: center; font-family: var(--f-label); text-transform: uppercase; letter-spacing: .4em; font-size: .66rem; color: var(--muted-2); margin-bottom: 1.6rem; }
.marquee { display: flex; gap: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; flex-shrink: 0; animation: scroll-x 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.brandmark {
  flex-shrink: 0; padding-inline: clamp(1.6rem, 3.5vw, 3rem);
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .14em;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem); font-weight: 500;
  color: var(--bone-dim); opacity: .55; white-space: nowrap;
  transition: color .35s, opacity .35s; display: inline-flex; align-items: baseline; gap: .15em;
}
.brandmark:hover { color: var(--gold-soft); opacity: 1; }
.brandmark .plus { color: var(--gold); font-weight: 600; }
.brandmark .num { color: var(--gold); font-weight: 600; }
.brandmark.script { font-family: var(--f-display); font-style: italic; text-transform: none; letter-spacing: 0; font-size: clamp(1.2rem,2vw,1.7rem); font-weight: 600; }
.brandmark .pro { font-size: .62em; color: var(--gold); letter-spacing: .2em; align-self: center; }

/* ---------- Intro / About ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split.rev { grid-template-columns: .95fr 1.05fr; }
@media (max-width: 880px){ .split, .split.rev { grid-template-columns: 1fr; gap: 3rem; } }

.figure { position: relative; }
.figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow); }
.figure.wide img { aspect-ratio: 5/4; }
.figure .frame { position: absolute; inset: 14px; border: 1px solid var(--gold); border-radius: 3px; pointer-events: none; opacity: .6; mix-blend-mode: screen; }
.figure .tag {
  position: absolute; left: -1px; bottom: 28px; background: var(--ink); color: var(--gold);
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .28em; font-size: .66rem;
  padding: .7rem 1.2rem; border: 1px solid var(--line-strong); border-left: 2px solid var(--gold);
}

.about-copy p + p { margin-top: 1.2rem; }
.about-copy .title { margin-bottom: 1.6rem; }
.rule { width: 60px; height: 2px; background: var(--gold-grad); margin: 1.8rem 0; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3.5rem; }
.stat { background: var(--ink); padding: 1.8rem 1.4rem; text-align: center; }
.stat .num { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--bone); line-height: 1; }
.stat .num b { color: var(--gold); }
.stat .cap { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .22em; font-size: .64rem; color: var(--muted); margin-top: .7rem; }
@media (max-width: 620px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- Services ---------- */
.services { background: var(--ink-2); border-block: 1px solid var(--line); }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 6vw, 5rem); }
@media (max-width: 760px){ .svc-grid { grid-template-columns: 1fr; } }
.svc {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 1rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line);
  position: relative;
}
.svc .svc-main { min-width: 0; }
.svc h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.4rem; transition: color .3s; }
.svc:hover h3 { color: var(--gold-soft); }
.svc p { color: var(--muted); font-size: .92rem; margin-top: .25rem; }
.svc .price { font-family: var(--f-label); font-size: 1.3rem; color: var(--gold); white-space: nowrap; letter-spacing: .02em; }
.svc .price small { font-size: .62rem; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; display: block; text-align: right; }
.svc-note { margin-top: 2.6rem; font-size: .86rem; color: var(--muted); display: flex; align-items: center; gap: .8rem; }
.svc-note .ic { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 13vw; gap: 14px; }
.gcell { position: relative; overflow: hidden; border-radius: 3px; cursor: pointer; background: var(--ink-3); }
.gcell img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .6s; filter: grayscale(.15) brightness(.92); }
.gcell:hover img { transform: scale(1.07); filter: grayscale(0) brightness(1); }
.gcell::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,9,.7));
  opacity: 0; transition: opacity .5s;
}
.gcell:hover::after { opacity: 1; }
.gcell .glabel {
  position: absolute; left: 1rem; bottom: .9rem; z-index: 2;
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .22em; font-size: .66rem; color: var(--bone);
  opacity: 0; transform: translateY(8px); transition: .5s var(--ease);
}
.gcell:hover .glabel { opacity: 1; transform: translateY(0); }
.gcell .badge-real {
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .14em; font-size: .56rem;
  color: var(--gold-soft); border: 1px solid var(--gold); padding: .25rem .5rem; border-radius: 2px;
  background: rgba(10,10,11,.55); backdrop-filter: blur(4px);
}
/* layout spans */
.g1 { grid-column: span 5; grid-row: span 2; }
.g2 { grid-column: span 4; grid-row: span 2; }
.g3 { grid-column: span 3; grid-row: span 2; }
.g4 { grid-column: span 4; grid-row: span 2; }
.g5 { grid-column: span 5; grid-row: span 2; }
.g6 { grid-column: span 3; grid-row: span 2; }
@media (max-width: 760px){
  .gallery-grid { grid-auto-rows: 38vw; gap: 10px; }
  .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: span 6; grid-row: span 1; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90; background: rgba(6,6,7,.96);
  display: flex; align-items: center; justify-content: center; padding: clamp(1rem,5vw,4rem);
  opacity: 0; visibility: hidden; transition: opacity .4s; backdrop-filter: blur(6px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 84vh; width: auto; border-radius: 3px; box-shadow: var(--shadow); }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--bone); font-size: 1.4rem; display: grid; place-items: center; transition: .3s; background: rgba(10,10,11,.4); }
.lb-btn:hover { border-color: var(--gold); color: var(--gold); }
.lb-prev { left: clamp(.6rem,3vw,2.5rem); }
.lb-next { right: clamp(.6rem,3vw,2.5rem); }
.lb-close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); transform: none; }

/* ---------- Team ---------- */
.team { position: relative; overflow: hidden; }
.team-photo { position: relative; border-radius: 3px; overflow: hidden; box-shadow: var(--shadow); }
.team-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center 38%; filter: brightness(.92) contrast(1.03); }
.team-photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(8,8,9,.85)); }
.team-photo .caption { position: absolute; left: clamp(1.2rem,3vw,2.5rem); bottom: clamp(1.2rem,3vw,2.2rem); z-index: 2; max-width: 30ch; }
.team-photo .caption .k { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .26em; font-size: .66rem; color: var(--gold); }
.team-photo .caption h3 { font-size: clamp(1.6rem,3.5vw,2.4rem); margin-top: .5rem; font-weight: 600; }
.chairs { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.chairs .chip { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--bone-dim); border: 1px solid var(--line); padding: .6rem 1rem; border-radius: 2px; transition: .3s; }
.chairs .chip:hover { border-color: var(--gold); color: var(--gold-soft); }
.chairs .chip b { color: var(--gold); font-weight: 500; }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink-2); border-block: 1px solid var(--line); position: relative; }
.rev-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.rating-badge { display: flex; align-items: center; gap: 1.1rem; }
.rating-badge .big { font-family: var(--f-display); font-size: 3.4rem; line-height: 1; color: var(--gold); }
.rating-badge .meta { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--muted); }
.rating-badge .stars { color: var(--gold); font-size: 1rem; letter-spacing: .15em; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 880px){ .rev-grid { grid-template-columns: 1fr; } }
.rev-card { background: var(--ink); border: 1px solid var(--line); border-radius: 3px; padding: 2rem 1.8rem; position: relative; transition: border-color .4s, transform .4s var(--ease); }
.rev-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.rev-card .quote-mark { font-family: var(--f-display); font-size: 4rem; line-height: .6; color: var(--gold); opacity: .35; }
.rev-card .stars { color: var(--gold); letter-spacing: .14em; font-size: .9rem; margin: .4rem 0 1rem; }
.rev-card p { color: var(--bone-dim); font-size: 1rem; }
.rev-card .who { margin-top: 1.5rem; display: flex; align-items: center; gap: .8rem; }
.rev-card .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-grad); color: #1a1408; display: grid; place-items: center; font-family: var(--f-label); font-weight: 600; }
.rev-card .who .nm { font-weight: 600; font-size: .92rem; }
.rev-card .who .src { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .14em; font-size: .6rem; color: var(--muted); }

/* ---------- Visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: stretch; }
@media (max-width: 880px){ .visit-grid { grid-template-columns: 1fr; } }
.hours-list li { display: flex; justify-content: space-between; padding: .95rem 0; border-bottom: 1px solid var(--line); font-family: var(--f-label); text-transform: uppercase; letter-spacing: .12em; font-size: .9rem; }
.hours-list li .d { color: var(--bone-dim); }
.hours-list li .t { color: var(--bone); }
.hours-list li.today { color: var(--gold); }
.hours-list li.today .d, .hours-list li.today .t { color: var(--gold-soft); }
.hours-list li.closed .t { color: var(--muted-2); }
.amenities { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.amenities .am { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; color: var(--muted); border: 1px solid var(--line); padding: .5rem .85rem; border-radius: 2px; display: inline-flex; gap: .5rem; align-items: center; }
.amenities .am .ic { width: 14px; height: 14px; color: var(--gold); }
.visit-addr { margin: 1.4rem 0 2rem; }
.visit-addr .a { font-family: var(--f-display); font-size: 1.5rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
/* self-contained location panel (no external embed = always renders) */
.map-card {
  position: relative; overflow: hidden; border-radius: 3px;
  border: 1px solid var(--line-strong); min-height: 340px; height: 100%;
  background: radial-gradient(120% 100% at 50% 0%, #16161c 0%, #0c0c0f 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1.4rem; padding: 2.5rem;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.map-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.map-streets {
  position: absolute; inset: -20%; opacity: .5; pointer-events: none;
  background:
    repeating-linear-gradient(58deg, transparent 0 38px, rgba(244,239,230,.05) 38px 39px),
    repeating-linear-gradient(-32deg, transparent 0 54px, rgba(244,239,230,.045) 54px 55px),
    repeating-linear-gradient(58deg, transparent 0 150px, rgba(200,164,92,.10) 150px 152px),
    repeating-linear-gradient(-32deg, transparent 0 180px, rgba(200,164,92,.07) 180px 182px);
  animation: drift 40s linear infinite;
}
@keyframes drift { from { transform: translate(0,0); } to { transform: translate(-55px,34px); } }
.map-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(40% 40% at 50% 42%, rgba(200,164,92,.16), transparent 70%); }
.map-pin {
  position: relative; z-index: 2; width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  background: rgba(200,164,92,.10); border: 1px solid rgba(200,164,92,.4);
}
.map-pin svg { width: 30px; height: 30px; }
.map-pin::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid var(--gold); animation: ping 2.6s var(--ease) infinite; opacity: 0;
}
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.9); opacity: 0; } }
.map-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .55rem; }
.map-k { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .32em; font-size: .66rem; color: var(--gold); }
.map-a { font-family: var(--f-display); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--bone); line-height: 1.1; }
.map-cta { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--f-label); text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; color: var(--bone-dim); margin-top: .6rem; transition: color .3s; }
.map-card:hover .map-cta { color: var(--gold-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4) brightness(.4); }
.cta-band .cta-bg::after { content:""; position:absolute; inset:0; background: radial-gradient(80% 120% at 50% 0%, rgba(10,10,11,.4), rgba(10,10,11,.92)); }
.cta-band .inner { position: relative; z-index: 2; padding-block: clamp(5rem, 11vw, 9rem); }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 700; }
.cta-band h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
.cta-band .lead { margin: 1.4rem auto 2.6rem; }
.cta-band .hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-block: clamp(3.5rem,7vw,5rem) 2rem; position: relative; z-index: 2; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
@media (max-width: 760px){ .foot-grid { grid-template-columns: 1fr; gap: 2.4rem; } }
.footer .brand { margin-bottom: 1.2rem; }
.footer .ftxt { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.foot-col h4 { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .24em; font-size: .72rem; color: var(--gold); margin-bottom: 1.2rem; font-weight: 500; }
.foot-col a, .foot-col li { color: var(--bone-dim); font-size: .94rem; padding: .3rem 0; display: block; transition: color .3s; }
.foot-col a:hover { color: var(--gold); }
.socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: .3s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.socials .ic { width: 18px; height: 18px; }
.foot-bottom { margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; font-size: .8rem; color: var(--muted-2); }
.foot-bottom .credit { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; }
.foot-bottom .credit a { color: var(--muted); transition: color .3s; }
.foot-bottom .credit a:hover { color: var(--gold); }

/* ---------- Mobile sticky action bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: rgba(12,12,15,.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: .25rem; justify-content: center;
  padding: .7rem .4rem calc(.7rem + env(safe-area-inset-bottom));
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; color: var(--bone-dim);
}
.mobile-bar a .ic { width: 20px; height: 20px; color: var(--gold); }
.mobile-bar a:active { background: rgba(200,164,92,.08); }
.mobile-bar a.book { background: var(--gold-grad); color: #1a1408; }
.mobile-bar a.book .ic { color: #1a1408; }
.mobile-bar a + a { border-left: 1px solid var(--line); }
@media (max-width: 860px){ .mobile-bar { display: grid; } body { padding-bottom: 64px; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* fade-up for grouped children */
[data-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(2) { transition-delay: .07s; }
[data-stagger].in > *:nth-child(3) { transition-delay: .14s; }
[data-stagger].in > *:nth-child(4) { transition-delay: .21s; }
[data-stagger].in > *:nth-child(5) { transition-delay: .28s; }
[data-stagger].in > *:nth-child(6) { transition-delay: .35s; }
[data-stagger].in > *:nth-child(7) { transition-delay: .42s; }
[data-stagger].in > *:nth-child(8) { transition-delay: .49s; }

/* =================================================================
   AXWRAPS — bespoke components & overrides (cascade wins over base)
   ================================================================= */

/* Pill CTAs (modern wrap-shop signature) */
.btn { border-radius: 999px; letter-spacing: .14em; }
.btn-sm { border-radius: 999px; }

/* Let the WORK carry the color — kill the grayscale/dim from the luxe base */
.hero-bg img { filter: contrast(1.06) brightness(.62) saturate(1.08); }
.gcell img { filter: brightness(.96) saturate(1.04); }
.gcell:hover img { filter: brightness(1.04) saturate(1.1); }
.figure img { filter: saturate(1.05); }

/* ---- Custom AXWRAPS wordmark (nav + footer) ---- */
.brand-wm {
  font-family: var(--f-display); font-weight: 700; font-size: 1.4rem;
  letter-spacing: .18em; color: var(--bone); display: inline-flex; align-items: center;
  line-height: 1; white-space: nowrap; transition: font-size .4s var(--ease);
}
.header.scrolled .brand-wm { font-size: 1.22rem; }
.brand-wm .x { color: var(--gold); position: relative; }
.brand-wm .x::after {            /* diagonal "knife cut" / weed line through the X */
  content: ""; position: absolute; left: -2px; right: -2px; top: 48%; height: 2px;
  background: var(--ink); transform: rotate(-22deg);
}
.footer .brand-wm { font-size: clamp(2.4rem, 7vw, 4.2rem); letter-spacing: .2em; color: var(--bone); }
.footer .brand-wm .x::after { height: 3px; background: var(--ink-2); }

/* ---- Hero spotlight: a raking "squeegee" light that follows the cursor ---- */
.hero-spot {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  transition: opacity .6s var(--ease);
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 40%),
              rgba(255,133,82,.22), rgba(255,90,31,.08) 40%, transparent 65%);
  mix-blend-mode: screen;
}
.hero:hover .hero-spot { opacity: 1; }

/* ---- Service ticker (reuses .marquee*; words instead of brands) ---- */
.brandmark .dot { color: var(--gold); margin: 0 .15em; }
.marquee-band.tick .brandmark { opacity: .7; }

/* ---- Trust strip ---- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem; padding-block: 1.6rem; }
.trust-strip .ti { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .2em; font-size: .74rem; color: var(--muted); display: inline-flex; align-items: center; gap: .6rem; }
.trust-strip .ti b { color: var(--bone); font-weight: 600; }
.trust-strip .ti .d { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ---- Featured work: full-bleed case tiles ---- */
.featured { display: grid; gap: 16px; }
.feat {
  position: relative; overflow: hidden; border-radius: 4px; cursor: pointer;
  min-height: 340px; display: flex; align-items: flex-end; background: var(--ink-3);
}
.feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.feat:hover img { transform: scale(1.05); }
.feat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(8,8,9,.9)); }
.feat-body { position: relative; z-index: 2; padding: clamp(1.4rem, 3vw, 2.4rem); }
.feat-body .k { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .26em; font-size: .66rem; color: var(--gold); }
.feat-body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: .5rem 0 .4rem; }
.feat-body p { color: var(--bone-dim); font-size: .95rem; max-width: 46ch; }
.feat-lg { grid-column: span 2; min-height: 460px; }
@media (min-width: 861px){ .featured { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px){ .feat-lg { grid-column: auto; min-height: 320px; } }

/* ---- Gallery filter bar ---- */
.filterbar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .16em; font-size: .74rem;
  color: var(--bone-dim); padding: .6rem 1.1rem; border: 1px solid var(--line); border-radius: 999px;
  transition: .3s var(--ease);
}
.filter-btn:hover { border-color: var(--line-strong); color: var(--bone); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #1a0f08; }
.gcell.hide { display: none; }
.gcell .gtag {            /* finish/spec tag */
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .14em; font-size: .56rem;
  color: var(--bone); background: rgba(11,12,14,.6); border: 1px solid var(--line-strong);
  padding: .25rem .55rem; border-radius: 999px; backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(-6px); transition: .45s var(--ease);
}
.gcell:hover .gtag { opacity: 1; transform: none; }

/* ---- Numbered editorial cards (services) ---- */
.numgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 980px){ .numgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .numgrid { grid-template-columns: 1fr; } }
.numcard { background: var(--ink); padding: 2rem 1.6rem; transition: background .4s var(--ease); position: relative; }
.numcard:hover { background: var(--ink-3); }
.numcard .no { font-family: var(--f-label); font-size: .8rem; letter-spacing: .2em; color: var(--gold); }
.numcard h3 { font-size: 1.2rem; margin: 1rem 0 .5rem; font-weight: 600; }
.numcard p { color: var(--muted); font-size: .9rem; }

/* ---- Process steps ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem,3vw,2.5rem); counter-reset: step; }
@media (max-width: 760px){ .process-grid { grid-template-columns: 1fr 1fr; } }
.pstep { position: relative; }
.pstep .pno { font-family: var(--f-display); font-size: 2.6rem; font-weight: 700; color: var(--ink-3); -webkit-text-stroke: 1px var(--line-strong); line-height: 1; }
.pstep h3 { font-size: 1.15rem; margin: .8rem 0 .5rem; }
.pstep p { color: var(--muted); font-size: .9rem; }
.pstep .prule { height: 2px; width: 0; background: var(--gold-grad); margin-top: 1rem; transition: width 1s var(--ease) .2s; }
.pstep.in .prule, [data-stagger].in .pstep .prule { width: 42px; }

/* ---- Quote form ---- */
.quote-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
@media (max-width: 880px){ .quote-wrap { grid-template-columns: 1fr; } }
.qform { display: grid; gap: 1rem; }
.qform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px){ .qform .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .16em; font-size: .66rem; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: .96rem; color: var(--bone);
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 4px; padding: .85rem 1rem;
  transition: border-color .3s; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field select { appearance: none; cursor: pointer; }
.filewrap { border: 1px dashed var(--line-strong); border-radius: 4px; padding: 1rem; text-align: center; color: var(--muted); font-size: .85rem; cursor: pointer; transition: .3s; }
.filewrap:hover { border-color: var(--gold); color: var(--bone-dim); }
.filewrap input { display: none; }
.qsuccess { display: none; background: rgba(255,90,31,.08); border: 1px solid var(--gold); border-radius: 4px; padding: 1.2rem 1.4rem; color: var(--bone); }
.qsuccess.show { display: block; }
.qside .lead { margin-bottom: 1.6rem; }
.qside .qcall { font-family: var(--f-display); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--bone); }
.qside .qcall a:hover { color: var(--gold); }

/* two-up testimonials */
.rev-grid.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 760px){ .rev-grid.two { grid-template-columns: 1fr; } }
