/* ============================================================
   YER Renovations — DARK variant (v2)
   Design language: premium dark SaaS — Linear / Vercel / Stripe.
   Near-black slate canvas, single gold accent, hairline borders,
   precise depth, staggered entrance motion, tactile micro-states.
   ============================================================ */

:root {
  /* --- Surfaces (near-black slate, layered by elevation) --- */
  --bg:        #08090C;   /* deepest — base sections + footer */
  --bg-alt:    #11151D;   /* lighter "panel" sections — tonal rhythm */
  --bg-band:   #0E141E;   /* accent band base (under the gold glow) */
  --surface:   #0F1218;   /* cards on deep sections */
  --surface-alt: #1A212B; /* cards/panels on the lighter sections */
  --surface-2: #14181F;   /* raised / hover */
  --surface-3: #1A1F27;   /* inputs, chips */

  /* --- Hairlines & dividers (light on dark) --- */
  --line:        rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.12);
  --line-hover:  rgba(217, 187, 107, 0.45);

  /* --- Text --- */
  --text:    #ECEEF2;   /* primary, softened white */
  --text-2:  #AEB4BE;   /* secondary */
  --text-3:  #7B828D;   /* muted */
  --text-4:  #565C66;   /* faint / captions */

  /* --- Accent (brand gold, lifted for dark legibility) --- */
  --gold:       #D9BB6B;
  --gold-bright:#E7CE86;
  --gold-deep:  #B7973F;
  --gold-soft:  rgba(217, 187, 107, 0.12);
  --gold-line:  rgba(217, 187, 107, 0.30);
  --gold-glow:  rgba(217, 187, 107, 0.18);

  --font-head: 'Bodoni Moda', serif;
  --font-body: 'Inter', sans-serif;

  --container: 1160px;

  /* --- Depth: dark UIs read depth from light borders + soft glow, not heavy shadow --- */
  --shadow-sm:   0 1px 0 rgba(255,255,255,0.04) inset, 0 2px 8px rgba(0,0,0,0.4);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.05) inset, 0 20px 50px -20px rgba(0,0,0,0.75);
  --shadow-cta:  0 8px 26px -8px rgba(217, 187, 107, 0.5);
  --shadow-pop:  0 30px 80px -24px rgba(0,0,0,0.9);

  /* --- Motion --- */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);   /* expressive ease-out */
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t: 0.24s;
  --t-slow: 0.6s;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01", "cv11"; /* Inter: tweaked letterforms for a sharper, modern read */
  /* Subtle directional glow so the page never reads as flat black */
  background-image:
    radial-gradient(900px 520px at 78% -8%, rgba(217, 187, 107, 0.07), transparent 60%),
    radial-gradient(800px 600px at 0% 0%, rgba(80, 110, 150, 0.05), transparent 55%);
  background-attachment: fixed;
}

img { max-width: 100%; }

[hidden] { display: none !important; }

::selection { background: var(--gold); color: #0A0A0A; }

a { color: inherit; }

h1, h2, h3 { text-wrap: pretty; }
p { text-wrap: pretty; }

/* Global focus ring — precise, accessible, on-brand */
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--gold-line);
  border-radius: 8px;
}

.accent {
  color: var(--gold);
  background: linear-gradient(92deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stars { color: var(--gold); letter-spacing: 1px; }
.stars--lg { font-size: 22px; letter-spacing: 3px; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section { position: relative; background: var(--bg); }
.section > .container { padding-top: 104px; padding-bottom: 104px; }
.section--alt { background: var(--bg-alt); }
.section--bordered { border-top: 1px solid var(--line); }

/* Accent band — replaces the light site's "navy" sections; glows softly */
.section--navy {
  background:
    radial-gradient(700px 420px at 50% 0%, var(--gold-glow), transparent 65%),
    var(--bg-band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Hairline separators between stacked sections for that crisp SaaS rhythm */
.section + .section { border-top: 1px solid var(--line); }

/* ---------- Section tonal rhythm ----------
   The lighter "panel" sections (--alt) and the accent band (--navy) sit
   distinctly above the deep base sections, so the page reads layered, not
   uniformly black. Elevated surfaces on them step up one more shade + a
   slightly brighter hairline so cards still lift. */
.section--alt { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035); }
.section--alt .feature,
.section--alt .card,
.section--alt .quick-card,
.section--alt .review,
.section--alt .form-card,
.section--alt .call-card,
.section--navy .review {
  background: var(--surface-alt);
  border-color: var(--line-strong);
}

/* ---------- Headings ---------- */
.h2 {
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -1.2px;
}
.h2--white { color: #fff; }

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.section-head { margin-bottom: 52px; }
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-head__main { display: flex; flex-direction: column; gap: 14px; max-width: 580px; }
.section-head__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-3);
  margin: 0;
  max-width: 380px;
}
.section-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.section-head__sub--center { max-width: 600px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 11px;
  padding: 12px 22px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              background var(--t) var(--ease), border-color var(--t) var(--ease),
              filter var(--t) var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.985); }

/* Primary — gold gradient with a gloss sweep on hover */
.btn--primary {
  overflow: hidden;
  background: linear-gradient(135deg, #E7CE86 0%, var(--gold) 48%, var(--gold-deep) 100%);
  color: #1A1407;
  box-shadow: 0 6px 20px -8px rgba(217, 187, 107, 0.6);
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary::after {
  content: "";
  position: absolute; top: 0; left: -85%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta); filter: brightness(1.04); }
.btn--primary:hover::after { left: 135%; }

.btn--lg { font-size: 17px; padding: 16px 30px; border-radius: 13px; }

/* Ghost — hairline on dark, fills subtly on hover */
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: var(--line-hover); transform: translateY(-2px); }

/* Secondary "navy" button → dark glass on the dark theme */
.btn--navy {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line-strong);
  padding: 15px 24px;
  border-radius: 12px;
  font-size: 16px;
}
.btn--navy:hover { background: var(--gold); color: #1A1407; border-color: transparent; transform: translateY(-2px); }
.btn--block { width: 100%; }

.btn--ghost-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
}
.btn--ghost-dark:hover { border-color: var(--line-hover); color: var(--gold-bright); transform: translateY(-2px); }

/* ---------- Badges & chips ---------- */
.badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.badge--hero {
  position: relative;
  overflow: hidden;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  color: var(--gold-bright);
}
.badge--hero::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(231, 206, 134, 0.5), transparent);
  transform: skewX(-20deg);
  animation: gold-shimmer 5s ease-in-out infinite;
}
@keyframes gold-shimmer {
  0%, 55% { left: -120%; }
  100% { left: 170%; }
}
.badge--solid {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1A1407;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease);
}
.chip:hover { border-color: var(--gold-line); color: var(--gold-bright); transform: translateY(-1px); }

/* ---------- Top bar ---------- */
.topbar {
  background: #060708;
  color: var(--text-3);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar__left { display: flex; align-items: center; gap: 8px; }
.topbar__phone { color: var(--text); text-decoration: none; font-weight: 600; white-space: nowrap; transition: color var(--t-fast) var(--ease); }
.topbar__phone:hover { color: var(--gold); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__logo { height: 38px; width: auto; display: block; }
.brand__logo--footer { height: 46px; }

.nav__links { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 600; }
.nav__links > a:not(.btn) {
  position: relative;
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -7px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--text); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }
.nav__links a[aria-current="page"]:not(.btn) { color: var(--gold); }
.nav__links a[aria-current="page"]:not(.btn)::after { transform: scaleX(1); }

/* Theme toggle pill (light ⇄ dark variant switch) */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  color: var(--text-2);
  text-decoration: none;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease), background var(--t) var(--ease);
}
.theme-toggle:hover { border-color: var(--gold-line); color: var(--gold-bright); background: var(--gold-soft); }
.theme-toggle svg { width: 15px; height: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.32;
  filter: grayscale(0.2) contrast(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at 75% 18%, rgba(217, 187, 107, 0.10), transparent 60%),
    linear-gradient(90deg, var(--bg) 8%, rgba(8,9,12,0.72) 48%, rgba(8,9,12,0.45) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 38%);
}
/* faint precision grid for that data-forward fintech feel */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(680px 420px at 70% 30%, #000 0%, transparent 75%);
          mask-image: radial-gradient(680px 420px at 70% 30%, #000 0%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.hero__container { position: relative; width: 100%; padding-top: 104px; padding-bottom: 104px; }
.hero__content { max-width: 640px; display: flex; flex-direction: column; gap: 24px; }
.hero__title {
  font-family: var(--font-head);
  font-size: 60px; line-height: 1.04; font-weight: 700;
  color: #fff; margin: 0; letter-spacing: -2px;
}
.hero__sub { font-size: 19px; line-height: 1.6; color: var(--text-2); margin: 0; max-width: 524px; }
.hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 14px 22px; margin-top: 8px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-2); font-size: 14.5px; font-weight: 600;
}

/* ---------- Feature band (exterior / about) ---------- */
.feature {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  box-shadow: var(--shadow-card);
}
.feature__body { padding: 60px; display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.feature__title {
  font-family: var(--font-head);
  font-size: 40px; line-height: 1.1; font-weight: 700;
  color: #fff; margin: 0; letter-spacing: -1.2px;
}
.feature__text { font-size: 16.5px; line-height: 1.7; color: var(--text-2); margin: 0; }
.feature__actions { display: flex; align-items: center; gap: 16px; margin-top: 6px; flex-wrap: wrap; }
.feature__note { color: var(--text-3); font-size: 14px; font-weight: 600; }
.feature__media { position: relative; min-height: 480px; background: var(--surface-2); }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* glassy top-left highlight */
.feature__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 32%);
  pointer-events: none;
  z-index: 2;
}

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-hover);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--gold-soft), 0 24px 60px -28px var(--gold-glow);
}
.card__media { position: relative; overflow: hidden; }
.card__img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform var(--t-slow) var(--ease); }
.card:hover .card__img { transform: scale(1.05); }
.card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; }
.card__title {
  font-family: var(--font-head);
  font-size: 21px; font-weight: 700; color: var(--text);
  margin: 0; letter-spacing: -0.3px;
}
.card__text { font-size: 15px; line-height: 1.62; color: var(--text-3); margin: 0; }
/* sheen sweep on hover */
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 38%, rgba(255,255,255,0.06) 50%, transparent 62%);
  transform: translateX(-110%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.card:hover::after { transform: translateX(110%); }

/* ---------- Quick / value cards ---------- */
.quick-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.quick-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.quick-card:hover { transform: translateY(-5px); border-color: var(--line-hover); box-shadow: var(--shadow-card); }
.quick-card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  transition: background var(--t) var(--ease), transform 0.4s var(--ease);
}
.quick-card__icon svg { width: 28px; height: 28px; display: block; transition: transform 0.4s var(--ease); }
.quick-card:hover .quick-card__icon { background: rgba(217,187,107,0.18); transform: translateY(-2px) rotate(-3deg); }
.quick-card:hover .quick-card__icon svg { transform: scale(1.1) rotate(3deg); }
.quick-card__title { font-family: var(--font-head); font-size: 16.5px; font-weight: 700; color: var(--text); margin: 0; }
.quick-card__text { font-size: 13.5px; line-height: 1.55; color: var(--text-3); margin: 0; }

/* Icon stroke colors in the dark theme (HTML uses #18222B / #C3A24C) */
.quick-card__icon svg [stroke="#18222B"] { stroke: var(--text-2); }
.quick-card__icon svg [stroke="#C3A24C"] { stroke: var(--gold); }
.quick-card__icon svg [fill="#C3A24C"] { fill: var(--gold); }
.quick-card__icon svg [fill="#18222B"] { fill: var(--text-2); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 215px;
  gap: 16px;
}
.gallery__tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 0;
  font: inherit;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.gallery__tile:hover { border-color: var(--line-hover); box-shadow: var(--shadow-card); }
.gallery__tile--feature { grid-column: span 2; grid-row: span 2; }
.gallery__tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--t-slow) var(--ease);
}
.gallery__tile:hover img { transform: scale(1.05); }
.gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 44px 20px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.82) 100%);
  color: #fff; font-size: 14px; font-weight: 700;
  text-align: left;
  pointer-events: none;
}
.gallery__tile--feature .gallery__caption { font-size: 15px; }

/* ---------- Before & After ---------- */
.ba-grid { column-count: 3; column-gap: 20px; }
.ba-card {
  display: block; width: 100%;
  margin: 0 0 20px; padding: 0;
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.ba-card img { display: block; width: 100%; height: auto; }
.ba-card:hover { transform: translateY(-5px); border-color: var(--line-hover); box-shadow: var(--shadow-card); }
.ba-card.is-hidden { display: none; }
.ba-more { display: flex; justify-content: center; margin-top: 36px; }
.ba-more.is-done { display: none; }

/* ---------- Reviews ---------- */
.reviews__rating { display: flex; align-items: center; gap: 10px; }
.reviews__rating-text { color: var(--text-2); font-size: 15px; font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.review:hover { transform: translateY(-4px); border-color: var(--line-hover); box-shadow: var(--shadow-card); }
.review .stars { font-size: 17px; letter-spacing: 2px; }
.review__quote { font-size: 15.5px; line-height: 1.68; color: var(--text-2); margin: 0; }
.review__footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-3); border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold); font-size: 15px;
  flex-shrink: 0;
}
.review__person { display: flex; flex-direction: column; }
.review__name { font-weight: 700; color: var(--text); font-size: 14.5px; }
.review__meta { color: var(--text-4); font-size: 13px; }

/* ---------- Videos ---------- */
.videos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.link-accent {
  color: var(--gold);
  font-size: 15px; font-weight: 700; letter-spacing: 0.3px;
  text-decoration: none; white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.link-accent:hover { color: var(--gold-bright); }

/* ---------- CTA band ---------- */
.cta-band { display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.cta-band .h2 { max-width: 760px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__left { display: flex; flex-direction: column; gap: 22px; }
.contact__left .h2 { font-size: 44px; line-height: 1.06; }
.contact__lead { font-size: 17px; line-height: 1.65; color: var(--text-3); margin: 0; max-width: 440px; }
.call-card {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 380px;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.call-card:hover { transform: translateY(-3px); border-color: var(--line-hover); box-shadow: var(--shadow-card); }
.call-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.call-card__icon svg path { fill: #1A1407 !important; }
.call-card__text { display: flex; flex-direction: column; gap: 2px; }
.call-card__label { font-size: 13px; color: var(--text-4); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.call-card__number { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; }
.contact__details { display: flex; flex-direction: column; gap: 6px; font-size: 15.5px; color: var(--text-3); }
.contact__details strong { color: var(--text); }
.contact__details a { color: var(--text-2); text-decoration: none; transition: color var(--t-fast) var(--ease); }
.contact__details a:hover { color: var(--gold); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-card form { display: flex; flex-direction: column; gap: 16px; }
.form-card__title { font-family: var(--font-head); font-size: 23px; font-weight: 700; color: var(--text); margin: 0; letter-spacing: -0.3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card input,
.form-card textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  outline: none;
  color: var(--text);
  background: #0A0C10;
  width: 100%;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.form-card textarea { resize: vertical; }
.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--gold-line);
  box-shadow: 0 0 0 3px var(--gold-soft);
  background: #0C0E13;
}
.form-card input::placeholder,
.form-card textarea::placeholder { color: var(--text-4); }
.form-card__note { font-size: 13px; color: var(--text-4); text-align: center; }
.form-card input.invalid,
.form-card textarea.invalid { border-color: #C9554A; box-shadow: 0 0 0 3px rgba(201, 85, 74, 0.14); }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-error {
  margin: 0;
  font-size: 13.5px;
  color: #E89A90;
  background: rgba(201, 85, 74, 0.10);
  border: 1px solid rgba(201, 85, 74, 0.35);
  border-radius: 11px;
  padding: 10px 14px;
  text-align: center;
}
.form-error a { color: #F0B4AB; font-weight: 700; }

.form-success { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding: 48px 12px; }
.form-success__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
}
.form-success__icon svg path { stroke: #1A1407 !important; }
.form-success__title { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--text); margin: 0; }
.form-success__text { font-size: 15.5px; color: var(--text-3); margin: 0; }
.form-success__text a { color: var(--gold); font-weight: 700; text-decoration: none; }

/* ---------- Footer ---------- */
.footer { background: #060708; color: var(--text-3); border-top: 1px solid var(--line); }
.footer .container { padding-top: 72px; padding-bottom: 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__blurb { font-size: 14.5px; line-height: 1.65; margin: 0; max-width: 320px; color: var(--text-3); }
.footer__rating { color: var(--text-3); font-size: 14px; }
.footer__rating .stars { letter-spacing: 1.5px; font-size: 14px; margin-right: 4px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; }
.footer__col > a { color: var(--text-3); text-decoration: none; transition: color var(--t-fast) var(--ease); }
.footer__col > a:hover { color: var(--gold); }
.footer__heading { color: var(--text); font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.footer__phone { color: var(--text) !important; font-weight: 700; font-size: 17px; }
.footer__social { display: flex; gap: 14px; margin-top: 6px; font-size: 13.5px; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; font-size: 13px; color: var(--text-4);
  gap: 16px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(4, 5, 7, 0.92);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px; padding: 48px;
  cursor: zoom-out;
  animation: lb-fade var(--t) var(--ease);
}
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 92%; max-height: 76vh; border-radius: 14px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-pop);
  animation: lb-pop var(--t-slow) var(--ease);
}
@keyframes lb-pop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.lightbox__caption { color: #fff; font-size: 16px; font-weight: 700; }
.lightbox__hint { color: var(--text-3); font-size: 13px; }

/* ============================================================
   Motion — entrance reveals (fade up + in, staggered)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Thin gold streak under centered eyebrows */
.section-head--center .eyebrow { position: relative; padding-bottom: 14px; }
.section-head--center .eyebrow::after {
  content: "";
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   Skeleton loaders — intentional loading, not spinners
   Images fade in over a shimmering placeholder once decoded.
   ============================================================ */
.fx-media { position: relative; background: var(--surface-2); overflow: hidden; }
.fx-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    var(--surface-2) 20%,
    var(--surface-3) 38%,
    var(--surface-2) 56%);
  background-size: 220% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
  z-index: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.fx-media.is-loaded::before { opacity: 0; animation: none; }
@keyframes skeleton { 0% { background-position: 160% 0; } 100% { background-position: -60% 0; } }
.fx-img { position: relative; z-index: 1; opacity: 0; transition: opacity var(--t-slow) var(--ease); }
.fx-media.is-loaded .fx-img { opacity: 1; }

/* Unifying dark image treatment — pulls every photo into the charcoal/warm
   palette so brighter construction shots don't break the theme. */
.fx-img { filter: saturate(0.9) brightness(0.88) contrast(1.03); }
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0) 34%, rgba(8, 9, 12, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .fx-img { opacity: 1; transition: none; }
  .fx-media::before { animation: none; opacity: 0; }
  .card:hover, .quick-card:hover, .ba-card:hover, .review:hover,
  .gallery__tile:hover, .call-card:hover, .btn:hover, .chip:hover { transform: none; }
  .card:hover .card__img, .gallery__tile:hover img { transform: none; }
  .badge--hero::after { animation: none; }
  .card::after, .btn--primary::after { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .h2 { font-size: 36px; }
  .hero__title { font-size: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .ba-grid { column-count: 2; }
  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 320px; order: -1; }
  .feature__body { padding: 44px; }
}

/* ---------- Hamburger ---------- */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  background: none; border: none;
  cursor: pointer; border-radius: 8px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    background: rgba(8, 9, 12, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-pop);
    z-index: 100;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a:not(.btn) {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: var(--text);
  }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__links > a:not(.btn):last-of-type { border-bottom: none; }
  .theme-toggle { margin-top: 14px; justify-content: center; }
  .nav__cta { margin-top: 10px; text-align: center; }
  .section > .container { padding-top: 76px; padding-bottom: 76px; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 42px; }
  .hero__sub { font-size: 17px; }
  .topbar__left span:last-child { display: none; }
}

@media (max-width: 600px) {
  .h2 { font-size: 30px; }
  .contact__left .h2 { font-size: 34px; }
  .feature__title { font-size: 30px; }
  .feature__body { padding: 32px 26px; }
  .hero__title { font-size: 36px; letter-spacing: -1.2px; }
  .hero { min-height: 580px; }
  .brand__logo { height: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { column-count: 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__tile--feature { grid-column: span 2; grid-row: span 2; }
  .btn--lg { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   Demo bar (client preview / launch CTA)
   ============================================================ */
.demo-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(8, 9, 12, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-top: 1px solid var(--gold-line);
  color: var(--text);
  box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.55);
}
.demo-bar__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 56px;
}
.demo-bar__text { margin: 0; font-size: 15px; font-weight: 500; color: var(--text-2); }
.demo-bar__text strong { font-weight: 700; color: var(--text); }
.demo-bar__badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #1A1407; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  padding: 3px 9px; border-radius: 999px;
  margin-right: 10px; vertical-align: middle;
}
.demo-bar .btn { white-space: nowrap; flex-shrink: 0; }
.demo-bar__close {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-3);
  font-size: 24px; line-height: 1; cursor: pointer;
  padding: 4px 8px; border-radius: 8px;
  transition: color var(--t-fast) var(--ease);
}
.demo-bar__close:hover { color: var(--text); }
.demo-bar.is-dismissed { display: none; }

body.has-demo-bar { padding-bottom: 60px; }

@media (max-width: 600px) {
  .demo-bar__inner { flex-direction: column; gap: 10px; padding: 12px 44px; text-align: center; }
  .demo-bar__text { font-size: 13.5px; }
  .demo-bar .btn { width: 100%; }
  body.has-demo-bar { padding-bottom: 132px; }
}

/* Bodoni Moda headline tuning — thinner headlines, smaller subs, premium */
.hero__title, .h2, .feature__title { font-weight: 500; letter-spacing: 0; }
.card__title, .quick-card__title, .form-card__title, .form-success__title, .call-card__number { font-weight: 600; letter-spacing: 0; }
.hero__sub { font-size: 17px; }
.section-head__sub { font-size: 15px; }
