/* ==========================================================================
   Black Label Construction — Core Design System
   Luxury black & gold. Mobile-first, accessible, fast.
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
  /* Brand */
  --ink:        #0B0B0E;
  --ink-800:    #111116;
  --ink-700:    #17161D;
  --ink-600:    #1E1D25;
  --ink-500:    #26252F;

  --paper:      #F6F4EF;
  --paper-2:    #FFFFFF;
  --paper-3:    #EFEBE2;

  --gold:       #C9A44C;
  --gold-1:     #E7C977;
  --gold-2:     #9C7B2E;
  --gold-grad:  linear-gradient(135deg, #F3DD9A 0%, #C9A44C 46%, #9C7B2E 100%);

  /* Text */
  --on-dark:        #F4F2EC;
  --on-dark-muted:  #B4B0A8;
  --on-dark-faint:  #86837C;
  --on-light:       #16151A;
  --on-light-muted: #565149;

  /* Lines */
  --hair-dark:  rgba(255,255,255,0.08);
  --hair-gold:  rgba(201,164,76,0.28);
  --hair-light: rgba(20,20,26,0.10);

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  /* Shadow */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.14);
  --shadow-md: 0 18px 48px rgba(0,0,0,0.28);
  --shadow-gold: 0 10px 30px rgba(201,164,76,0.22);

  --header-h: 84px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-sans);
  color: var(--on-light);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ----- Typography ----- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.28rem); font-family: var(--font-sans); font-weight: 700; letter-spacing: 0; }
p { text-wrap: pretty; }

.display { font-family: var(--font-display); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-2);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: 0.8; }
.on-dark .eyebrow, .eyebrow--light { color: var(--gold-1); }
.gold-text {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--on-light-muted); max-width: 60ch; }
.on-dark .lede { color: var(--on-dark-muted); }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 820px; }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.on-dark { background: var(--ink); color: var(--on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--on-dark); }
.bg-ink-800 { background: var(--ink-800); }
.bg-paper-2 { background: var(--paper-2); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1rem; }

.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split-media { order: -1; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }

/* ----- Buttons ----- */
.btn {
  --btn-bg: var(--gold); --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 0.95rem 1.7rem; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--gold { background: var(--gold-grad); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,164,76,0.34); }
.btn--dark { background: var(--ink); color: var(--on-dark); }
.btn--dark:hover { transform: translateY(-2px); background: var(--ink-700); }
.btn--outline { background: transparent; color: currentColor; border-color: var(--hair-gold); }
.btn--outline:hover { border-color: var(--gold); background: rgba(201,164,76,0.08); transform: translateY(-2px); }
.on-dark .btn--outline { color: var(--on-dark); border-color: rgba(244,242,236,0.28); }
.on-dark .btn--outline:hover { border-color: var(--gold); color: var(--gold-1); }
.btn--ghost { background: transparent; padding-inline: 0.4rem; color: currentColor; }
.btn--ghost::after { content: ""; position: absolute; left: 0.4rem; right: 0.4rem; bottom: 0.55rem; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.btn--ghost:hover::after { transform: scaleX(1); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ----- Header / Nav ----- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color 0.4s var(--ease), height 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.is-scrolled, .site-header.is-solid {
  background: rgba(11,11,14,0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  height: 68px; border-bottom-color: var(--hair-dark);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--on-dark); }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: 0.02em; color: var(--on-dark); }
.brand__tag { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a.nav__link, .nav__dropdown > button {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.6rem 0.85rem; font-size: 0.92rem; font-weight: 500; color: var(--on-dark-muted);
  background: none; border: 0; cursor: pointer; border-radius: var(--radius);
  transition: color 0.3s var(--ease);
}
.nav a.nav__link:hover, .nav__dropdown > button:hover, .nav a.nav__link[aria-current="page"] { color: var(--on-dark); }
.nav a.nav__link[aria-current="page"] { color: var(--gold-1); }
.nav__dropdown { position: relative; }
.nav__dropdown > button svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.nav__dropdown[data-open="true"] > button svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: var(--ink-800); border: 1px solid var(--hair-dark); border-radius: var(--radius-lg);
  padding: 0.5rem; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.nav__dropdown[data-open="true"] .nav__menu, .nav__dropdown:hover .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a { display: block; padding: 0.7rem 0.9rem; border-radius: var(--radius); color: var(--on-dark-muted); transition: background 0.25s, color 0.25s; }
.nav__menu a strong { display: block; color: var(--on-dark); font-weight: 600; font-size: 0.95rem; }
.nav__menu a span { font-size: 0.8rem; color: var(--on-dark-faint); }
.nav__menu a:hover { background: rgba(201,164,76,0.1); }
.nav__menu a:hover strong { color: var(--gold-1); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--on-dark); font-weight: 600; font-size: 0.92rem; }
.header-phone svg { width: 16px; height: 16px; color: var(--gold); }
.header-phone span small { display: block; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 500; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 1px solid var(--hair-dark); border-radius: var(--radius); cursor: pointer; }
.nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--on-dark); transition: background 0.2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--on-dark); transition: transform 0.3s var(--ease), top 0.3s var(--ease); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--ink); color: var(--on-dark);
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.45s var(--ease); visibility: hidden;
}
body.menu-open .mobile-nav { transform: translateX(0); visibility: visible; }
.mobile-nav a, .mobile-nav details > summary { display: block; padding: 0.95rem 0; font-size: 1.2rem; font-family: var(--font-display); border-bottom: 1px solid var(--hair-dark); color: var(--on-dark); cursor: pointer; }
.mobile-nav details > summary { list-style: none; display: flex; justify-content: space-between; align-items: center; }
.mobile-nav details > summary::-webkit-details-marker { display: none; }
.mobile-nav details[open] > summary { color: var(--gold-1); }
.mobile-nav details .sub a { font-family: var(--font-sans); font-size: 1rem; padding: 0.7rem 0 0.7rem 1rem; color: var(--on-dark-muted); border-bottom: none; }
.mobile-nav .mobile-cta-group { margin-top: 1.6rem; display: grid; gap: 0.8rem; }
.mobile-nav .mobile-contact { margin-top: 1.6rem; color: var(--on-dark-muted); font-size: 0.95rem; }
.mobile-nav .mobile-contact a { display: inline; padding: 0; border: 0; font-family: var(--font-sans); font-size: 1rem; color: var(--gold-1); }

/* ----- Hero ----- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--ink); color: var(--on-dark); overflow: hidden; padding-top: var(--header-h); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,14,0.96) 0%, rgba(11,11,14,0.78) 42%, rgba(11,11,14,0.42) 100%), linear-gradient(0deg, rgba(11,11,14,0.9) 0%, rgba(11,11,14,0.1) 45%); }
.hero__inner { position: relative; z-index: 2; padding-block: clamp(3rem, 8vw, 6rem); max-width: 760px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .gold-text { display: inline; }
.hero__lede { font-size: clamp(1.08rem, 1.9vw, 1.35rem); color: var(--on-dark-muted); margin-bottom: 2.2rem; max-width: 56ch; }
.hero .btn-row { margin-bottom: 2.6rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); padding-top: 2rem; border-top: 1px solid var(--hair-dark); }
.hero__badges { position: absolute; right: var(--gutter); bottom: 2rem; z-index: 2; display: flex; gap: 0.8rem; }
@media (max-width: 1080px) { .hero__badges { display: none; } }

.stat { }
.stat__num { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 700; line-height: 1; color: var(--gold-1); }
.stat__num .plus, .stat__num .suffix { color: var(--gold); }
.stat__label { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark-faint); margin-top: 0.5rem; }
.on-light .stat__num { color: var(--gold-2); }
.on-light .stat__label { color: var(--on-light-muted); }

/* ----- Trust bar ----- */
.trustbar { background: var(--ink-800); border-block: 1px solid var(--hair-dark); }
.trustbar__row { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 1rem 0; padding-block: 1.4rem; }
.trust-item { flex: 1 1 0; min-width: 180px; display: flex; align-items: center; justify-content: center; text-align: center; gap: 0.6rem; padding-inline: 1.1rem; color: var(--on-dark-muted); font-size: 0.9rem; font-weight: 500; line-height: 1.3; }
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
@media (min-width: 1100px) { .trust-item:not(:last-child) { border-right: 1px solid var(--hair-dark); } }

/* ----- Cards ----- */
.card { background: var(--paper-2); border: 1px solid var(--hair-light); border-radius: var(--radius-lg); padding: clamp(1.5rem, 2.6vw, 2.1rem); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--hair-gold); }
.on-dark .card { background: var(--ink-700); border-color: var(--hair-dark); }
.on-dark .card:hover { border-color: var(--hair-gold); }
.card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,164,76,0.12); color: var(--gold-2); margin-bottom: 1.25rem; }
.on-dark .card__icon { color: var(--gold-1); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--on-light-muted); font-size: 0.98rem; }
.on-dark .card p { color: var(--on-dark-muted); }
.card__link { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.92rem; color: var(--gold-2); }
.on-dark .card__link { color: var(--gold-1); }
.card__link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* numbered feature */
.numbered { position: relative; padding-left: 0; }
.numbered__n { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); opacity: 0.5; line-height: 1; margin-bottom: 0.9rem; }

/* ----- Project cards ----- */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
@media (max-width: 900px) { .projects { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects { grid-template-columns: 1fr; } }
.project { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; display: block; background: var(--ink-700); }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.project:hover img { transform: scale(1.06); }
.project__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; background: linear-gradient(0deg, rgba(11,11,14,0.9) 0%, rgba(11,11,14,0.1) 55%, transparent 100%); }
.project__cat { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-1); margin-bottom: 0.35rem; }
.project__title { font-family: var(--font-display); font-size: 1.25rem; color: var(--on-dark); font-weight: 700; }
.project__meta { font-size: 0.85rem; color: var(--on-dark-muted); margin-top: 0.3rem; }
.project--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (max-width: 600px) { .project--wide { grid-column: span 1; aspect-ratio: 4/3; } }

/* ----- Media frame ----- */
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.media-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--hair-gold); border-radius: var(--radius-lg); pointer-events: none; }
.media-frame img { width: 100%; }
.media-badge { position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2; background: rgba(11,11,14,0.82); backdrop-filter: blur(8px); border: 1px solid var(--hair-gold); border-radius: var(--radius); padding: 0.7rem 1.1rem; color: var(--on-dark); }
.media-badge strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-1); }
.media-badge span { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-muted); }

/* ----- Process steps ----- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding: 1.8rem 0; border-top: 1px solid var(--hair-light); }
.on-dark .step { border-top-color: var(--hair-dark); }
.step:last-child { border-bottom: 1px solid var(--hair-light); }
.on-dark .step:last-child { border-bottom-color: var(--hair-dark); }
.step__n { counter-increment: step; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-2); width: 58px; height: 58px; border: 1px solid var(--hair-gold); border-radius: 50%; display: grid; place-items: center; flex: none; }
.on-dark .step__n { color: var(--gold-1); }
.step__n::before { content: "0" counter(step); }
.step h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.step p { color: var(--on-light-muted); margin: 0; }
.on-dark .step p { color: var(--on-dark-muted); }

/* ----- Stat band ----- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 760px) { .statband { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; } }
.statband.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 620px) { .statband.cols-3 { grid-template-columns: 1fr; gap: 2.5rem 1rem; } }

/* ----- Accordion (FAQ) ----- */
.accordion { border-top: 1px solid var(--hair-light); }
.on-dark .accordion { border-top-color: var(--hair-dark); }
.acc { border-bottom: 1px solid var(--hair-light); }
.on-dark .acc { border-bottom-color: var(--hair-dark); }
.acc__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; text-align: left; padding: 1.5rem 0; background: none; border: 0; cursor: pointer; font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--on-light); font-weight: 700; }
.on-dark .acc__btn { color: var(--on-dark); }
.acc__icon { flex: none; width: 34px; height: 34px; border: 1px solid var(--hair-gold); border-radius: 50%; position: relative; transition: background 0.3s; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gold); }
.acc__icon::before { width: 12px; height: 2px; }
.acc__icon::after { width: 2px; height: 12px; transition: transform 0.3s var(--ease); }
.acc[data-open="true"] .acc__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.acc[data-open="true"] .acc__icon { background: rgba(201,164,76,0.14); }
.acc__panel { overflow: hidden; height: 0; transition: height 0.4s var(--ease); }
.acc__panel-inner { padding-bottom: 1.6rem; color: var(--on-light-muted); max-width: 68ch; }
.on-dark .acc__panel-inner { color: var(--on-dark-muted); }

/* ----- CTA band ----- */
.cta-band { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 0%, rgba(201,164,76,0.18), transparent 60%); }
.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--on-dark-muted); max-width: 56ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }
.cta-reassure { margin-top: 1.6rem; font-size: 0.88rem; color: var(--on-dark-faint); display: inline-flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; justify-content: center; }
.cta-reassure span { display: inline-flex; align-items: center; gap: 0.4rem; }
.cta-reassure svg { width: 15px; height: 15px; color: var(--gold); }

/* ----- Badges / pills ----- */
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.95rem; border: 1px solid var(--hair-gold); border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--gold-2); background: rgba(201,164,76,0.06); }
.on-dark .badge { color: var(--gold-1); }
.badge svg { width: 15px; height: 15px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ----- Checklist ----- */
.checklist { display: grid; gap: 0.9rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start; color: var(--on-light-muted); }
.on-dark .checklist li { color: var(--on-dark-muted); }
.checklist li strong { color: var(--on-light); font-weight: 600; }
.on-dark .checklist li strong { color: var(--on-dark); }
.checklist .tick { width: 24px; height: 24px; flex: none; border-radius: 50%; background: rgba(201,164,76,0.14); color: var(--gold-2); display: grid; place-items: center; margin-top: 2px; }
.on-dark .checklist .tick { color: var(--gold-1); }
.checklist .tick svg { width: 13px; height: 13px; }
.checklist--2col { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .checklist--2col { grid-template-columns: 1fr; } }

/* ----- Testimonials ----- */
.quote-card { background: var(--paper-2); border: 1px solid var(--hair-light); border-radius: var(--radius-lg); padding: clamp(1.6rem, 2.6vw, 2.3rem); height: 100%; display: flex; flex-direction: column; }
.on-dark .quote-card { background: var(--ink-700); border-color: var(--hair-dark); }
.quote-card .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1.1rem; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.08rem; line-height: 1.6; color: var(--on-light); margin-bottom: 1.4rem; flex: 1; }
.on-dark .quote-card blockquote { color: var(--on-dark); }
.quote-card blockquote::before { content: "\201C"; font-family: var(--font-display); color: var(--gold); font-size: 2.4rem; line-height: 0; vertical-align: -0.35em; margin-right: 0.1em; }
.quote-author { display: flex; align-items: center; gap: 0.9rem; }
.quote-author .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad); color: var(--ink); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); flex: none; }
.quote-author strong { display: block; font-size: 0.98rem; }
.quote-author span { font-size: 0.84rem; color: var(--on-light-muted); }
.on-dark .quote-author span { color: var(--on-dark-muted); }

/* ----- Page header (interior) ----- */
.page-hero { position: relative; background: var(--ink); color: var(--on-dark); padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)); padding-bottom: clamp(2.5rem, 6vw, 5rem); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 85% 10%, rgba(201,164,76,0.16), transparent 55%); }
.page-hero__grid { position: absolute; inset: 0; opacity: 0.5; background-image: linear-gradient(var(--hair-dark) 1px, transparent 1px), linear-gradient(90deg, var(--hair-dark) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent); -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-block: 1rem 1.1rem; max-width: 18ch; }
.page-hero .lede { color: var(--on-dark-muted); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: var(--on-dark-faint); }
.breadcrumb a { color: var(--on-dark-muted); } .breadcrumb a:hover { color: var(--gold-1); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.6; }

/* ----- Forms ----- */
.form { display: grid; gap: 1.2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.86rem; font-weight: 600; letter-spacing: 0.01em; }
.field .req { color: var(--gold-2); }
.on-dark .field .req { color: var(--gold-1); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.9rem 1.05rem; background: var(--paper-2); border: 1px solid var(--hair-light); border-radius: var(--radius);
  font-size: 1rem; color: var(--on-light); transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.on-dark .field input, .on-dark .field select, .on-dark .field textarea { background: var(--ink-600); border-color: var(--hair-dark); color: var(--on-dark); }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,164,76,0.16); }
.field input::placeholder, .field textarea::placeholder { color: #9a968e; }
.on-dark .field input::placeholder, .on-dark .field textarea::placeholder { color: var(--on-dark-faint); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23C9A44C' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.05rem center; background-size: 12px; padding-right: 2.6rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0492f; box-shadow: 0 0 0 3px rgba(192,73,47,0.14); }
.field__error { font-size: 0.8rem; color: #c0492f; display: none; }
.field.invalid .field__error { display: block; }
.on-dark .field__error, .on-dark .field.invalid .field__error { color: #e88a72; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.86rem; color: var(--on-light-muted); }
.on-dark .form-consent { color: var(--on-dark-muted); }
.form-consent input { width: 20px; height: 20px; accent-color: var(--gold-2); margin-top: 2px; flex: none; }
.form-note { font-size: 0.84rem; color: var(--on-light-muted); }
.on-dark .form-note { color: var(--on-dark-muted); }
.form-status { display: none; padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.95rem; }
.form-status.success { display: block; background: rgba(56,142,60,0.12); border: 1px solid rgba(56,142,60,0.4); color: #2f7a34; }
.on-dark .form-status.success { color: #9fd7a3; }
.form-status.error { display: block; background: rgba(192,73,47,0.12); border: 1px solid rgba(192,73,47,0.4); color: #b0402a; }

.fieldset-legend { font-size: 0.86rem; font-weight: 600; margin-bottom: 0.6rem; }
.choice-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: inline-flex; padding: 0.65rem 1.1rem; border: 1px solid var(--hair-light); border-radius: 100px; font-size: 0.9rem; cursor: pointer; transition: all 0.25s; }
.on-dark .choice span { border-color: var(--hair-dark); }
.choice input:checked + span { border-color: var(--gold); background: rgba(201,164,76,0.12); color: var(--gold-2); font-weight: 600; }
.on-dark .choice input:checked + span { color: var(--gold-1); }
.choice input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ----- Info list / contact ----- */
.info-list { display: grid; gap: 1.4rem; }
.info-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.info-item .ic { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,164,76,0.12); color: var(--gold-2); display: grid; place-items: center; flex: none; }
.on-dark .info-item .ic { color: var(--gold-1); }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { margin-bottom: 0.2rem; }
.info-item p, .info-item a { color: var(--on-light-muted); }
.on-dark .info-item p, .on-dark .info-item a { color: var(--on-dark-muted); }
.info-item a:hover { color: var(--gold-2); }
.on-dark .info-item a:hover { color: var(--gold-1); }

/* ----- Footer ----- */
.site-footer { background: var(--ink); color: var(--on-dark-muted); padding-top: clamp(3.5rem, 7vw, 5.5rem); border-top: 1px solid var(--hair-dark); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; margin-bottom: 1.4rem; }
.footer-col h4 { color: var(--on-dark); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { display: grid; gap: 0.75rem; }
.footer-col a { font-size: 0.95rem; color: var(--on-dark-muted); transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-1); }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-bar { border-top: 1px solid var(--hair-dark); padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.84rem; color: var(--on-dark-faint); }
.footer-bar a:hover { color: var(--gold-1); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ----- Sticky mobile action bar ----- */
.mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair-dark); box-shadow: 0 -8px 24px rgba(0,0,0,0.3); }
.mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; font-weight: 600; font-size: 0.92rem; }
.mobile-actions a svg { width: 17px; height: 17px; }
.mobile-actions .ma-call { background: var(--ink-800); color: var(--on-dark); }
.mobile-actions .ma-quote { background: var(--gold-grad); color: var(--ink); }
@media (max-width: 1080px) { .mobile-actions { display: grid; } body { padding-bottom: 58px; } }

/* ----- Logo strip / awards ----- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); }
.logo-strip .lg { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--on-dark-muted); font-family: var(--font-display); font-size: 1.05rem; opacity: 0.85; }
.logo-strip .lg svg { width: 30px; height: 30px; color: var(--gold); }

/* ----- Reveal animation ----- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ----- Utilities ----- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.6rem; } .mb-2 { margin-bottom: 1.2rem; } .mb-3 { margin-bottom: 2rem; }
.muted { color: var(--on-light-muted); } .on-dark .muted { color: var(--on-dark-muted); }
.maxw-60 { max-width: 60ch; } .mx-auto { margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.gold-rule { width: 64px; height: 3px; background: var(--gold-grad); border: 0; border-radius: 2px; }
.divider { border: 0; border-top: 1px solid var(--hair-light); }
.on-dark .divider { border-top-color: var(--hair-dark); }
.skip-link { position: absolute; left: 1rem; top: -60px; z-index: 200; background: var(--gold); color: var(--ink); padding: 0.7rem 1.1rem; border-radius: var(--radius); font-weight: 600; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }

/* ----- Portfolio filter bar ----- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.filter-btn { padding: 0.6rem 1.2rem; border: 1px solid var(--hair-light); background: transparent; border-radius: 100px; font-size: 0.9rem; font-weight: 500; color: var(--on-light-muted); cursor: pointer; transition: all 0.25s var(--ease); }
.on-dark .filter-btn { border-color: var(--hair-dark); color: var(--on-dark-muted); }
.filter-btn:hover { border-color: var(--gold); color: var(--on-light); }
.on-dark .filter-btn:hover { color: var(--on-dark); }
.filter-btn.is-active { background: var(--gold-grad); color: var(--ink); border-color: transparent; font-weight: 600; }

/* ----- Feature list (alternating) ----- */
.feature-list { display: grid; gap: clamp(3rem, 6vw, 5rem); }

/* ----- Map / service area ----- */
.area-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hair-dark); background: var(--ink-800); }
.area-cols { columns: 2; column-gap: 2.5rem; }
@media (max-width: 560px) { .area-cols { columns: 1; } }
.area-cols li { break-inside: avoid; padding: 0.5rem 0; display: flex; gap: 0.6rem; align-items: center; color: var(--on-light-muted); }
.on-dark .area-cols li { color: var(--on-dark-muted); }
.area-cols li svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* ----- Big number KPI on light ----- */
.on-light { background: var(--paper); color: var(--on-light); }

/* ----- Compact card/label headings (keep visual size after semantic h4->h3 promotion) ----- */
.card-h { font-family: var(--font-sans); font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.28rem); letter-spacing: 0; line-height: 1.25; margin-bottom: 0.6rem; }
.footer-col__title { color: var(--on-dark); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 600; }
.info-item__title { font-family: var(--font-sans); font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.2; margin-bottom: 0.2rem; }
