/* ============================================================
   VVilela Construction — Dark Luxury Design System
   Palette from brand logo: gold gradient on near-black
   ============================================================ */

:root {
  /* Color tokens — LIGHT luxury theme (ivory + gold).
     Dark is reserved for impact moments: hero, CTA band, footer. */
  --bg: #F8F5EF;
  --bg-2: #FFFDFB;
  --surface: #FFFFFF;
  --surface-2: #F5EFE3;
  --gold-1: #B8860B;
  --gold-2: #A9761B;
  --gold-3: #8B6414;
  --gold-grad: linear-gradient(135deg, #D9A93F 0%, #B8860B 48%, #8B6414 100%);
  --gold-grad-bright: linear-gradient(135deg, #F6E27A 0%, #D9A93F 48%, #A9761B 100%);
  --text: #221C12;
  --muted: #6F6552;
  --border: rgba(169, 118, 27, 0.20);
  --border-strong: rgba(169, 118, 27, 0.38);
  --shadow-gold: 0 10px 40px -12px rgba(169, 118, 27, 0.3);
  --shadow-soft: 0 1px 2px rgba(50, 40, 22, 0.06), 0 6px 16px -10px rgba(50, 40, 22, 0.10), 0 14px 44px -18px rgba(50, 40, 22, 0.16);
  --shadow-lift: 0 2px 4px rgba(50, 40, 22, 0.07), 0 24px 50px -18px rgba(50, 40, 22, 0.26), 0 10px 40px -12px rgba(169, 118, 27, 0.28);

  /* Radius scale */
  --r-xs: 3px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 999px;

  /* Dark-scope palette (hero, CTA band, footer, menu, preloader) */
  --dk-bg: #0A0908;
  --dk-bg-2: #100E0B;
  --dk-surface: #16130F;
  --dk-text: #F5F1E8;
  --dk-muted: #B3A995;
  --dk-gold-1: #F6E27A;
  --dk-gold-2: #D9A93F;
  --dk-border: rgba(217, 169, 63, 0.16);
  --dk-border-strong: rgba(217, 169, 63, 0.35);

  /* Type */
  --font-display: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-brand: "Cinzel", Georgia, serif;

  /* Rhythm */
  --container: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 10vw, 7.5rem);

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

/* ---------- Dark scopes: hero, CTA band, footer, overlays ---------- */
.hero, .page-hero, .cta-band, .mobile-menu, .preloader {
  --bg: var(--dk-bg);
  --bg-2: var(--dk-bg-2);
  --surface: var(--dk-surface);
  --text: var(--dk-text);
  --muted: var(--dk-muted);
  --gold-1: var(--dk-gold-1);
  --gold-2: var(--dk-gold-2);
  --border: var(--dk-border);
  --border-strong: var(--dk-border-strong);
  --gold-grad: var(--gold-grad-bright);
  color: var(--text);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a, button, summary { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul[role="list"] { list-style: none; }

::selection { background: rgba(217, 169, 63, 0.45); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #EFE9DD; }
::-webkit-scrollbar-thumb { background: #C9B98F; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-3); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.icon {
  width: 1.25em; height: 1.25em;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Typography helpers ---------- */
.gold-shimmer {
  background: linear-gradient(110deg, #F6E27A 20%, #FFF6C8 38%, #D9A93F 52%, #A9761B 70%, #F6E27A 95%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer { to { background-position: -250% center; } }

.section { padding-block: var(--section-y); position: relative; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); }

.section-kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.2vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.section-title em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

/* Editorial split header: title left, note/action right */
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head-l { max-width: 560px; }
.section-head-note {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.98rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.kick-num {
  display: inline-block;
  margin-right: 0.7rem;
  padding-right: 0.7rem;
  border-right: 1px solid var(--border-strong);
  color: var(--gold-3);
  font-weight: 600;
}
@media (max-width: 700px) {
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .section-head-note { max-width: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  text-indent: 0.06em;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
              background-color 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold-1); outline-offset: 3px; }

.btn-gold {
  background: var(--gold-grad-bright);
  color: #14100A;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 246, 200, 0.5),
              inset 0 -1px 0 rgba(107, 77, 16, 0.3),
              0 1px 2px rgba(20, 16, 10, 0.25),
              0 8px 22px -14px rgba(169, 118, 27, 0.55);
}
.btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-120%);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 246, 200, 0.5),
              inset 0 -1px 0 rgba(107, 77, 16, 0.3),
              var(--shadow-gold);
}
.btn-gold:hover::after { transform: translateX(120%); transition: transform 0.7s var(--ease-out); }
.btn-gold:active {
  transform: translateY(0) scale(0.985);
  transition-duration: 0.09s;
  box-shadow: inset 0 1px 2px rgba(120, 80, 10, 0.35), 0 3px 10px -6px rgba(169, 118, 27, 0.45);
}

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--gold-1);
  background: rgba(217, 169, 63, 0.05);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 2px rgba(20, 16, 10, 0.1);
}
.btn-ghost:hover {
  border-color: var(--gold-2);
  background: rgba(217, 169, 63, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(169, 118, 27, 0.4);
}
.btn-ghost:active {
  transform: translateY(0) scale(0.985);
  transition-duration: 0.09s;
  background: rgba(217, 169, 63, 0.18);
}

.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* Shared focus treatment for text links */
.service-link:focus-visible, .map-link:focus-visible, .nav-link:focus-visible,
.footer-col a:focus-visible, .mobile-link:focus-visible, .contact-list a:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Preloader (shown only when JS is running) ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.6rem;
  transition: opacity 0.6s ease, visibility 0.6s;
}
html.js .preloader { display: flex; }
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-mark { font-family: var(--font-brand); font-size: 4rem; font-weight: 600; line-height: 1; }
.preloader-v {
  display: inline-block;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(18px);
  animation: preV 0.7s var(--ease-out) forwards;
}
.preloader-v.v2 { margin-left: -0.42em; transform: translateY(30px); animation-delay: 0.18s; }
@keyframes preV { to { opacity: 1; transform: translateY(0.12em); } }
.preloader-v.v2 { animation-name: preV2; }
@keyframes preV2 { to { opacity: 1; transform: translateY(0.32em); } }

.preloader-bar {
  width: 150px; height: 2px;
  background: rgba(217, 169, 63, 0.15);
  border-radius: 2px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 100%;
  background: var(--gold-grad);
  transform: translateX(-100%);
  animation: preBar 1s 0.25s var(--ease-out) forwards;
}
@keyframes preBar { to { transform: translateX(0); } }

/* ---------- Top strip ---------- */
.topstrip {
  position: fixed; inset-inline: 0; top: 0; z-index: 101;
  background: var(--dk-bg);
  color: var(--dk-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(217, 169, 63, 0.22);
}
.topstrip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: 36px;
}
.topstrip-rotator { position: relative; overflow: hidden; height: 1.3em; flex: 1; text-align: center; }
.topstrip-rotator span {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  color: var(--dk-gold-1);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em;
  white-space: nowrap;
}
.topstrip-rotator span.on { opacity: 1; transform: none; }
.topstrip-side { white-space: nowrap; }
.topstrip a { color: var(--dk-gold-1); font-weight: 500; transition: color 0.25s; }
.topstrip a:hover { color: #FFF6C8; }
@media (max-width: 700px) {
  .topstrip-side { display: none; }
}

/* ---------- Header ---------- */
.header {
  position: fixed; inset-inline: 0; top: 36px; z-index: 100;
  padding-block: 1.1rem;
  transition: padding 0.35s var(--ease-out), background-color 0.35s, box-shadow 0.35s,
              border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.header {
  /* Over the dark hero image at the top of the page */
  --text: var(--dk-text);
  --muted: var(--dk-muted);
  --gold-1: var(--dk-gold-1);
  --gold-2: var(--dk-gold-2);
  --gold-grad: var(--gold-grad-bright);
}
.header.scrolled {
  padding-block: 0.55rem;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  /* Light bar with dark text once scrolled */
  --text: #221C12;
  --muted: #6F6552;
  --gold-1: #A9761B;
  --gold-2: #A9761B;
  --gold-grad: linear-gradient(135deg, #B8860B 0%, #A9761B 60%, #8B6414 100%);
}

.header-inner { display: flex; align-items: center; gap: 2rem; }

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-brand);
  font-weight: 600; font-size: 1.25rem; letter-spacing: 0.14em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-tag { font-family: var(--font-brand); font-size: 0.58rem; letter-spacing: 0.42em; color: var(--muted); font-weight: 400; }

.nav { display: flex; gap: 1.9rem; margin-left: auto; align-items: center; }

/* Services dropdown */
.nav-item { position: relative; }
.nav-chev {
  width: 0.9em; height: 0.9em;
  margin-left: 0.3rem;
  vertical-align: -0.1em;
  transition: transform 0.25s var(--ease-out);
}
.nav-item:hover .nav-chev, .nav-item:focus-within .nav-chev { transform: rotate(180deg); }
.nav-drop {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: #FFFDFB;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 6px 16px -8px rgba(50, 40, 22, 0.15), 0 24px 50px -18px rgba(50, 40, 22, 0.28);
  padding: 0.55rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  z-index: 20;
}
.nav-drop::before {
  content: "";
  position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav-drop a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem; font-weight: 400;
  letter-spacing: 0.04em;
  color: #221C12;
  transition: background-color 0.2s, color 0.2s, padding-left 0.2s var(--ease-out);
}
.nav-drop a:hover { background: rgba(217, 169, 63, 0.1); color: var(--gold-3); padding-left: 1.1rem; }
.nav-drop a:focus-visible { outline: 2px solid var(--gold-1); outline-offset: -2px; }
.nav-drop-all {
  border-top: 1px solid var(--border);
  margin-top: 0.35rem; padding-top: 0.45rem;
}
.nav-drop-all a { color: var(--gold-3); font-weight: 500; }
.nav-link {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  font-size: 0.86rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 1.2rem; }
.header-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 500; font-size: 0.92rem; color: var(--gold-1);
  transition: color 0.25s;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold-2); }

.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
}
.menu-toggle:focus-visible { outline: 2px solid var(--gold-1); outline-offset: 2px; border-radius: var(--r-sm); }
.menu-toggle:hover span { background: var(--gold-2); }
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold-1); border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s, background-color 0.25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu (card-panel style) ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 9, 8, 0.8);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: block;
  overflow-y: auto;
  padding: 4.6rem 0.8rem 1.2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-panel {
  width: 100%; max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(165deg, #1B1712 0%, #0E0C09 100%);
  border: 1px solid rgba(217, 169, 63, 0.28);
  border-radius: 18px;
  padding: 1.1rem 1rem 1.4rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
  transform: translateY(14px);
  transition: transform 0.35s var(--ease-out);
}
.mobile-menu.open .mobile-panel { transform: none; }

.mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.2rem 0.4rem 1rem;
}
.mm-head span {
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dk-text);
}
.mm-close {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(217, 169, 63, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--dk-text);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s, color 0.25s;
}
.mm-close:hover { background: rgba(217, 169, 63, 0.2); color: var(--dk-gold-1); }
.mm-close:focus-visible { outline: 2px solid var(--dk-gold-1); outline-offset: 2px; }

.mm-list { display: flex; flex-direction: column; gap: 0.6rem; }
.mm-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 169, 63, 0.22);
  color: var(--dk-text);
  font-size: 1.02rem; font-weight: 500;
  text-align: left;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}
.mm-link:hover { background: rgba(217, 169, 63, 0.14); border-color: rgba(217, 169, 63, 0.4); }
.mm-link:active { background: rgba(217, 169, 63, 0.2); }
.mm-link:focus-visible { outline: 2px solid var(--dk-gold-1); outline-offset: 2px; }
.mm-link .icon { transition: transform 0.3s var(--ease-out); }
.mm-acc[aria-expanded="true"] {
  background: var(--gold-grad-bright);
  border-color: transparent;
  color: #14100A;
}
.mm-acc[aria-expanded="true"] .icon { transform: rotate(180deg); }

.mm-sub {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding-left: 1.1rem;
}
.mm-sub[hidden] { display: none; }
.mm-sublink {
  display: block;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 169, 63, 0.16);
  color: rgba(245, 241, 232, 0.9);
  font-size: 0.95rem;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}
.mm-sublink:hover { background: rgba(217, 169, 63, 0.12); color: var(--dk-gold-1); }
.mm-sublink:focus-visible { outline: 2px solid var(--dk-gold-1); outline-offset: 2px; }

.mm-cta { margin-top: 0.5rem; width: 100%; padding: 1rem 1.2rem; font-size: 0.9rem; }
.mm-phone {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.4rem;
  color: var(--dk-gold-1); font-weight: 500;
  padding: 0.6rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-block: 7.5rem 5rem;
}

.hero-bg { position: absolute; inset: 0; z-index: -2; will-change: transform; }
.hero-bg img {
  width: 100%; height: 112%;
  object-fit: cover;
  will-change: transform;
  /* Cinematic Ken Burns motion — slow push-in with a gentle drift */
  animation: kenburns 38s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.14) translate(1.6%, -1.4%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.72) 0%, rgba(10,9,8,0.55) 45%, var(--bg) 100%),
    radial-gradient(ellipse at 25% 40%, rgba(217,169,63,0.14) 0%, transparent 55%);
}

.hero-particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero-content { max-width: 820px; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--dk-text);
  margin-bottom: 1.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--r-pill);
  background: rgba(10, 9, 8, 0.55);
  border: 1px solid rgba(217, 169, 63, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.kicker-line { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-grad-bright); }

.hero-subhead {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dk-gold-1);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6.6vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title span { display: block; }

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(245, 241, 232, 0.85);
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-chips li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245, 241, 232, 0.95);
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  background: rgba(10, 9, 8, 0.5);
  border: 1px solid rgba(217, 169, 63, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-chips .icon { color: var(--gold-2); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.hero-scroll:hover { color: var(--gold-1); }
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gold-2));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.55); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Trust badge strip ---------- */
.badges {
  background: linear-gradient(180deg, #FFFDFB, #F5F0E6);
  border-bottom: 1px solid var(--border);
  padding-block: 1.1rem;
}
.badges-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem 0.9rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.5rem 1.05rem;
  box-shadow: 0 1px 2px rgba(50, 40, 22, 0.06);
}
.badge .icon { color: var(--gold-2); width: 1.05em; height: 1.05em; }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 1.1rem;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 90px; z-index: 1;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--bg-2), transparent); }

.marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-group {
  display: flex; align-items: center; gap: 2.4rem;
  padding-right: 2.4rem;
}
.marquee-group span {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-group .dia { color: var(--gold-3); font-size: 0.6rem; }
/* Two identical groups; shifting exactly one group width = seamless loop */
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { padding-block: clamp(3rem, 7vw, 5rem); background: var(--bg); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.1;
}
.stat-label {
  display: block; margin-top: 0.5rem;
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Services ---------- */
.services { background: var(--bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

/* Featured card: spans two columns, media beside copy */
.service-card.featured { grid-column: span 2; }
@media (min-width: 641px) {
  .service-card.featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
  }
  .service-card.featured .service-media { aspect-ratio: auto; height: 100%; min-height: 280px; }
  .service-card.featured .service-body { padding: 2rem 1.9rem; justify-content: center; }
  .service-card.featured h3 { font-size: 1.55rem; }
}

/* Wide banner card: spans two columns, media on the right */
.service-card.wide { grid-column: span 2; }
@media (min-width: 641px) {
  .service-card.wide {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
  }
  .service-card.wide .service-media { order: 2; aspect-ratio: auto; height: 100%; min-height: 240px; }
  .service-card.wide .service-body { order: 1; padding: 2.2rem; justify-content: center; }
  .service-card.wide h3 { font-size: 1.45rem; }
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s var(--ease-out);
  transition-delay: 0s;
}
.service-card { box-shadow: var(--shadow-soft); }
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lift);
}

.service-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.service-tag {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #221C12;
  background: rgba(255, 253, 251, 0.92);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.85rem;
  box-shadow: 0 4px 14px rgba(20, 16, 10, 0.25);
}
.service-tag::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-grad-bright);
}
.service-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.5), transparent 55%);
}
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  filter: saturate(0.9);
}
.service-card:hover .service-media img { transform: scale(1.07); filter: saturate(1.05); }

.service-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.28rem; font-weight: 600; letter-spacing: 0.03em;
}
.service-body p { color: var(--muted); font-size: 0.97rem; flex: 1; }

.service-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-2);
  transition: color 0.25s;
  margin-top: 0.3rem;
}
.service-link span { transition: transform 0.25s var(--ease-out); }
.service-link:hover { color: var(--gold-1); }
.service-link:hover span { transform: translateX(4px); }

/* Conversion card inside the services grid */
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 1.9rem 1.6rem;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; gap: 0.7rem;
}
.contact-card-kicker {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-2);
}
.contact-card-phone {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
}
.contact-card-phone:hover { color: var(--gold-1); }
.contact-card p { color: var(--muted); font-size: 0.92rem; }
.contact-card .btn { width: 100%; margin-top: 0.3rem; }

/* ---------- Expect band (photo + glass cards) ---------- */
.expect {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 6.5rem);
  background:
    linear-gradient(rgba(24, 18, 10, 0.72), rgba(24, 18, 10, 0.78)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: #F5F1E8;
}
.expect .section-kicker { color: var(--dk-gold-1); }
.expect .section-title { color: #F5F1E8; }
.expect .section-title em { background: var(--gold-grad-bright); -webkit-background-clip: text; background-clip: text; }
.expect .section-sub { color: rgba(245, 241, 232, 0.75); }

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.expect-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), background-color 0.3s, border-color 0.3s;
}
.expect-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 226, 122, 0.4);
}
.expect-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}
.expect-card h3::after {
  content: "";
  display: block;
  width: 30px; height: 1px;
  margin: 0.55rem auto 0;
  background: var(--gold-grad-bright);
  opacity: 0.7;
}
.expect-card p { font-size: 0.88rem; color: rgba(245, 241, 232, 0.78); line-height: 1.55; }
@media (max-width: 900px) { .expect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .expect-grid { grid-template-columns: 1fr; } }

/* ---------- Financing banner ---------- */
.financing-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2.2rem;
  background:
    linear-gradient(135deg, rgba(20, 15, 8, 0.82), rgba(34, 24, 10, 0.72)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: #F5F1E8;
  padding: clamp(2.2rem, 5vw, 3.5rem);
  box-shadow: 0 18px 52px rgba(20, 16, 10, 0.35);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem 2.5rem;
}
.financing-banner-body { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; }
@media (max-width: 800px) { .financing-banner { grid-template-columns: 1fr; } }
.financing-banner-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dk-gold-1);
}
.financing-banner-kicker::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-grad-bright);
}
.financing-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 600; line-height: 1.2;
  max-width: 560px;
}
.financing-banner p { color: rgba(245, 241, 232, 0.82); max-width: 520px; margin-bottom: 0.6rem; }

/* ---------- About / story band ---------- */
.about {
  position: relative;
  padding-block: clamp(4.5rem, 10vw, 7rem);
  background:
    linear-gradient(rgba(16, 12, 6, 0.78), rgba(16, 12, 6, 0.85)),
    url("https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: #F5F1E8;
}
.about-inner { max-width: 720px; }
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.15fr;
  gap: 1.4rem;
  align-items: stretch;
}
.about-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1.9rem 1.7rem;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 0.9rem; line-height: 1.3;
}
.about-card p { color: rgba(245, 241, 232, 0.82); font-size: 0.95rem; margin-bottom: 0.8rem; }
.about-card-brand {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 0.8rem;
}
.about-card-brand img { width: 130px; height: auto; }
.about-card-brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.06em;
}
.about-card-brand span { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245, 241, 232, 0.7); }
@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.about .section-kicker { color: var(--dk-gold-1); }
.about h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
}
.about h2 em { font-style: normal; background: var(--gold-grad-bright); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about p { color: rgba(245, 241, 232, 0.82); margin-bottom: 1rem; max-width: 640px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.4rem 0 1.8rem; }
.about-chips li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(217, 169, 63, 0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.about-chips .icon { color: var(--dk-gold-2); width: 1em; height: 1em; }

/* ---------- Before / After ---------- */
.transformation { background: var(--bg); }

.ba-slider {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 70px -28px rgba(50, 40, 22, 0.4);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-after img, .ba-before img {
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba-before { clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-before img { filter: grayscale(0.9) brightness(0.55) contrast(0.92) sepia(0.25); }

.ba-label {
  position: absolute; top: 1rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-xs);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.ba-label-before { left: 1rem; background: rgba(10, 9, 8, 0.65); color: var(--muted); }
.ba-label-after { right: 1rem; background: rgba(217, 169, 63, 0.9); color: #14100A; }

.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 44px; margin-left: -22px;
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
  will-change: left;
}
.ba-handle:focus-visible { outline: 2px solid var(--gold-1); outline-offset: -2px; }
.ba-handle-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; margin-left: -1px;
  background: var(--gold-grad);
  box-shadow: 0 0 18px rgba(217, 169, 63, 0.7);
}
.ba-handle-knob {
  position: relative; z-index: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-grad-bright);
  color: #14100A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 246, 200, 0.5), inset 0 -1px 0 rgba(107, 77, 16, 0.35), 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s var(--ease-out);
}
.ba-handle:hover .ba-handle-knob { transform: scale(1.07); }
.ba-handle:active .ba-handle-knob { transform: scale(1.12); }

/* ---------- Advantage ---------- */
.advantage { background: var(--bg-2); }

/* Editorial split: sticky intro left, numbered standards right */
.advantage-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.advantage-intro { position: sticky; top: 120px; }
.advantage-intro .section-kicker { text-align: left; }
.advantage-intro .section-title { text-align: left; }
.advantage-intro .section-sub { text-align: left; margin-bottom: 1.8rem; }

.standard-list { list-style: none; }
.standard-list li {
  display: flex; align-items: flex-start; gap: 1.6rem;
  padding-block: 1.7rem;
  border-top: 1px solid var(--border);
}
.standard-list li:last-child { border-bottom: 1px solid var(--border); }
.std-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  min-width: 2.6rem;
  line-height: 1.3;
}
.standard-list h3 {
  font-family: var(--font-display);
  font-size: 1.14rem; font-weight: 600;
  margin-bottom: 0.45rem; letter-spacing: 0.02em;
}
.standard-list p { color: var(--muted); font-size: 0.97rem; }

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.advantage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 1.9rem 1.6rem;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, background-color 0.3s;
}
.advantage-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.advantage-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(217, 169, 63, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
}
.advantage-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 600;
  margin-bottom: 0.6rem; letter-spacing: 0.02em;
}
.advantage-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Process ---------- */
.process { background: var(--bg); }

.process-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  position: relative;
  counter-reset: step;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 34px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-3) 12%, var(--gold-3) 88%, transparent);
  opacity: 0.45;
}

.process-step { position: relative; text-align: center; padding-top: 0.4rem; }
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 1.3rem;
  position: relative; z-index: 1;
  transition: background-color 0.3s, color 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.process-step:hover .process-num {
  background: var(--gold-2);
  color: #14100A;
  transform: scale(1.08);
  box-shadow: var(--shadow-gold);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 0.55rem;
}
.process-step p { color: var(--muted); font-size: 0.94rem; max-width: 260px; margin-inline: auto; }

/* ---------- Financing ---------- */
.financing { background: var(--bg-2); }
.financing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.financing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s var(--ease-out);
}
.financing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lift);
}
.financing-icon {
  width: 62px; height: 62px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: var(--gold-grad-bright);
  box-shadow: inset 0 1px 0 rgba(255, 246, 200, 0.55), inset 0 -1px 0 rgba(107, 77, 16, 0.3);
  color: #14100A;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.financing-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 0.6rem; letter-spacing: 0.02em;
}
.financing-card p { color: var(--muted); font-size: 0.96rem; }

.financing-cta { text-align: center; margin-top: 2.6rem; }
.financing-disclaimer {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) { .financing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---------- Projects ---------- */
.projects { background: var(--bg); }

/* Editorial zig-zag: alternating wide/narrow pairs */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.3rem;
}
.projects-grid .project:nth-child(4n+1),
.projects-grid .project:nth-child(4n) { grid-column: span 7; aspect-ratio: 16 / 9.5; }
.projects-grid .project:nth-child(4n+2),
.projects-grid .project:nth-child(4n+3) { grid-column: span 5; aspect-ratio: 4 / 3; }
.project {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}
.project img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  filter: saturate(0.85) brightness(0.9);
}
.project:hover img { transform: scale(1.08); filter: saturate(1.05) brightness(1); }

.project { box-shadow: var(--shadow-soft); }
.project figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 2.4rem 1.3rem 1.1rem;
  background: linear-gradient(to top, rgba(10,9,8,0.92), transparent);
  font-size: 0.85rem; color: #C9BFAE;
  display: flex; flex-direction: column; gap: 0.1rem;
  transform: translateY(8px); opacity: 0.85;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}
.project:hover figcaption { transform: none; opacity: 1; }
.project figcaption span {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600; color: #FFFFFF;
  letter-spacing: 0.03em;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-2); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

.reviews-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}
.reviews-cta p { color: var(--muted); max-width: 520px; }
@media (max-width: 700px) { .reviews-cta { flex-direction: column; align-items: flex-start; } }

.reviews-carousel { max-width: 780px; margin-inline: auto; }
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow: hidden;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.6rem;
  text-align: left;
  transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lift); }
html.js .review-card {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  visibility: hidden;
}
html.js .review-card.active { opacity: 1; transform: none; visibility: visible; }
/* No-JS fallback: stack all reviews, hide the carousel controls */
html:not(.js) .reviews-track { display: flex; flex-direction: column; gap: 1.2rem; overflow: visible; }
html:not(.js) .reviews-nav { display: none; }

.review-stars {
  color: var(--gold-2);
  letter-spacing: 0.3em;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.review-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.review-card footer { display: flex; flex-direction: column; gap: 0.15rem; }
.review-card cite {
  font-family: var(--font-display);
  font-style: normal; font-weight: 600;
  font-size: 1.02rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.review-card footer span { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.06em; }

.reviews-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.4rem; margin-top: 1.8rem;
}
.reviews-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--gold-1);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}
.reviews-btn:hover { background: var(--gold-2); border-color: var(--gold-2); color: #FFFDFB; transform: scale(1.06); }
.reviews-btn:active { transform: scale(0.94); transition-duration: 0.1s; }
.reviews-btn:focus-visible { outline: 2px solid var(--gold-1); outline-offset: 3px; }

.reviews-dots { display: flex; gap: 0.3rem; }
.reviews-dots button {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  padding: 0;
}
.reviews-dots button::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: var(--r-sm);
  background: rgba(169, 118, 27, 0.38);
  transition: background-color 0.25s, width 0.3s var(--ease-out);
}
.reviews-dots button:hover::before { background: rgba(169, 118, 27, 0.65); }
.reviews-dots button.active::before { background: var(--gold-1); width: 20px; }
.reviews-dots button:focus-visible { outline: 2px solid var(--gold-1); outline-offset: 2px; }

/* ---------- Areas (interactive map) ---------- */
.areas { background: var(--bg); padding-block: clamp(3.5rem, 8vw, 5.5rem); }

.area-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 30px 70px -28px rgba(50, 40, 22, 0.35);
}
.area-card-head {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--gold-grad-bright);
  box-shadow: inset 0 -1px 0 rgba(107, 77, 16, 0.25);
  color: #14100A;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem 1.3rem;
}
.area-card-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 460px;
}

.area-list {
  overflow-y: auto;
  max-height: 460px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.area-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
  padding: 0.85rem 1.3rem;
  text-align: left;
  font-size: 0.95rem; font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background-color 0.25s, color 0.25s, padding-left 0.25s var(--ease-out);
}
.area-item::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-grad);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s var(--ease-out);
}
.area-item:active { background: rgba(217, 169, 63, 0.16); transition-duration: 0.08s; }
.area-item:hover, .area-item.active {
  background: rgba(217, 169, 63, 0.08);
  color: var(--gold-1);
  padding-left: 1.55rem;
}
.area-item:hover::before, .area-item.active::before { transform: scaleY(1); }
.area-item:focus-visible { outline: 2px solid var(--gold-1); outline-offset: -2px; }

.area-item-main {
  background: rgba(217, 169, 63, 0.1);
}
.area-item-main .area-item-name {
  font-family: var(--font-display);
  font-weight: 600; color: var(--gold-2);
  letter-spacing: 0.04em;
}
.area-item-sub { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.06em; }

.area-map {
  min-height: 460px;
  background: var(--bg);
  z-index: 0;
}
/* Leaflet dark-theme touches */
.area-map .leaflet-popup-content-wrapper,
.area-map .leaflet-popup-tip {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.area-map .leaflet-popup-content { font-family: var(--font-body); font-size: 0.92rem; }
.area-map .leaflet-popup-content strong { color: var(--gold-1); font-weight: 600; }
.area-map .leaflet-bar a {
  background: var(--surface-2); color: var(--gold-1); border-color: var(--border-strong);
}
.area-map .leaflet-bar a:hover { background: var(--surface); }
.area-map .leaflet-control-attribution {
  background: rgba(10, 9, 8, 0.75); color: var(--muted);
}
.area-map .leaflet-control-attribution a { color: var(--gold-2); }

@media (max-width: 900px) {
  .area-card-body { grid-template-columns: 1fr; min-height: 0; }
  .area-list {
    max-height: none;
    flex-direction: row; overflow-x: auto; overflow-y: hidden;
    border-right: none; border-bottom: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
  }
  .area-item { border-bottom: none; border-right: 1px solid var(--border); white-space: nowrap; justify-content: center; }
  .area-item:hover, .area-item.active { padding-left: 1.3rem; }
  .area-item::before { display: none; }
  .area-map { min-height: 360px; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-2); }
.faq-container { max-width: 1000px; }
@media (min-width: 901px) {
  .faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; align-items: start; }
  .faq-item { margin-bottom: 0; }
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-lift); }
.faq-item[open] > summary { color: var(--gold-1); }
.faq-item[open] .faq-answer { animation: faqIn 0.4s var(--ease-out); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 500; font-size: 1.02rem;
  cursor: pointer;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-1); background: rgba(217, 169, 63, 0.05); }
.faq-item summary:active { color: var(--gold-2); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold-1); outline-offset: -2px; }

.faq-icon {
  position: relative;
  width: 16px; height: 16px; flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute; inset: 0; margin: auto;
  background: var(--gold-2);
  transition: transform 0.35s var(--ease-out);
}
.faq-icon::before, .faq-icon::after { border-radius: 1px; }
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }

.faq-answer { padding: 0 1.4rem 1.25rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding-block: clamp(4.5rem, 10vw, 7rem);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(246, 226, 122, 0.10), transparent 60%),
    linear-gradient(rgba(10, 9, 8, 0.88), rgba(10, 9, 8, 0.88)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=70") center/cover;
  border-block: 1px solid var(--border);
}
.cta-band-inner { text-align: center; max-width: 680px; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.cta-band p { color: var(--muted); font-size: 1.08rem; margin-bottom: 2rem; }
.cta-band-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-info .section-title { margin-bottom: 1rem; }
.contact-lead { color: var(--muted); margin-bottom: 2.2rem; max-width: 420px; }

.contact-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(217, 169, 63, 0.07);
  color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
}
.contact-list strong {
  display: block;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.contact-list a, .contact-list div > span { font-size: 1.05rem; color: var(--text); }
.contact-list a { transition: color 0.25s; overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--gold-1); }
/* Long unbreakable strings (email) must never force the grid wider */
.contact-list li > div { min-width: 0; }
.contact-grid > * { min-width: 0; }

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-field label {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.req { color: var(--gold-2); }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid rgba(139, 100, 20, 0.32);
  border-radius: var(--r-sm);
  caret-color: var(--gold-2);
  box-shadow: inset 0 1px 2px rgba(50, 40, 22, 0.04);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A9761B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-position: calc(100% - 14px) 50%; background-size: 12px 12px; background-repeat: no-repeat; cursor: pointer; padding-right: 2.4rem; }
.form-field textarea { resize: vertical; min-height: 110px; }

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: rgba(139, 100, 20, 0.5); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-3);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.25), inset 0 1px 2px rgba(50, 40, 22, 0.04);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(179, 169, 149, 0.85); }

/* Honeypot field — visually removed, still submittable by bots */
.honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-consent {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(179, 169, 149, 0.8);
  line-height: 1.5;
}

#formSubmit[disabled] { opacity: 0.7; cursor: not-allowed; }

.form-field.invalid input, .form-field.invalid select { border-color: #E05252; }
.field-error { font-size: 0.82rem; color: #E88; min-height: 0; letter-spacing: 0.02em; }
.field-error:empty { display: none; }

.btn-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(20, 16, 10, 0.35);
  border-top-color: #14100A;
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.contact-form.sending .btn-spinner { display: inline-block; }
.contact-form.sending .btn-label { opacity: 0.75; }
.contact-form.sending #formSubmit { pointer-events: none; }

.form-note {
  text-align: center;
  font-size: 0.83rem; letter-spacing: 0.05em;
  color: var(--muted);
}
.form-status { text-align: center; font-size: 0.95rem; min-height: 1.4em; }
.form-status.ok { color: #8FD694; }
.form-status.err { color: #E88; }

/* ---------- Footer (light, reference style) ---------- */
.footer {
  background: linear-gradient(180deg, #FFFDFB 0%, #F3EEE3 55%, #FFFDFB 100%);
  border-top: 1px solid var(--border);
  padding-top: clamp(3rem, 7vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer-brand img { width: 108px; height: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.footer-brand > p { color: var(--muted); font-size: 0.95rem; max-width: 320px; margin-bottom: 1.2rem; }
.footer-info { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-info li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--muted);
}
.footer-info .icon { color: var(--gold-2); width: 1.05em; height: 1.05em; }
.footer-info strong { color: var(--text); font-weight: 500; }

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1rem;
}
.footer-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.footer-pills a {
  display: inline-block;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.5rem 1.05rem;
  box-shadow: 0 1px 2px rgba(50, 40, 22, 0.06);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.footer-pills a:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -8px rgba(50, 40, 22, 0.2);
}

.footer-actions { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.6rem; }
.footer-cities {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 1rem;
  margin-bottom: 1.6rem;
}
.footer-cities li { font-size: 0.87rem; color: var(--muted); }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.footer-social a:hover { background: var(--gold-2); color: #FFFDFB; transform: translateY(-2px); }
.footer-social a:focus-visible { outline: 2px solid var(--gold-1); outline-offset: 2px; }

.footer-payments {
  border-top: 1px solid var(--border);
  padding-block: 1.2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.4rem;
}
.footer-payments-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-2);
  margin-right: 0.4rem;
}
.footer-payments li {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; color: var(--muted);
}
.footer-payments li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.4rem;
  text-align: center;
  font-size: 0.85rem; color: var(--muted);
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cities { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Mobile floating bar ---------- */
.mobile-bar {
  position: fixed;
  inset-inline: 0; bottom: 0;
  z-index: 80;
  display: none;
  grid-template-columns: auto 1fr;
  gap: 1px;
  background: var(--border-strong);
  border-top: 1px solid var(--border-strong);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar.visible { transform: none; }
.mobile-bar-call, .mobile-bar-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.3rem;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.mobile-bar-call { background: var(--dk-bg-2); color: var(--dk-gold-1); }
.mobile-bar-call:active { background: #1A1611; }
.mobile-bar-cta { background: var(--gold-grad-bright); color: #14100A; box-shadow: inset 0 1px 0 rgba(255, 246, 200, 0.4); }
.mobile-bar-cta:active { filter: brightness(0.92); }

/* ---------- Scroll reveal (only hidden when JS is active) ----------
   Uses a keyframe animation (not transitions) so it never overrides
   an element's own hover/interaction transitions. */
html.js .reveal { opacity: 0; }
html.js .reveal.in {
  opacity: 1;
  animation: reveal-rise var(--dur) var(--ease-out) backwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}
@keyframes reveal-rise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
/* Squeeze zone: keep nav + CTA, drop the phone number from the bar */
@media (max-width: 1320px) and (min-width: 1025px) {
  .header-phone { display: none; }
  .nav { gap: 1.4rem; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions { margin-left: auto; }
  .header-phone span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .header-phone { padding: 0.6rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: 1 / -1; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-split { grid-template-columns: 1fr; }
  .advantage-intro { position: static; }
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
  .process-track::before { display: none; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid .project:nth-child(n) { grid-column: auto; aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-actions .btn { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .services-grid, .advantage-grid, .process-track, .projects-grid { grid-template-columns: 1fr; }
  .service-card.featured, .service-card.wide { grid-column: auto; }
  .projects-grid .project:nth-child(n) { grid-column: auto; aspect-ratio: 4 / 3; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 64px; }
  .hero-scroll { display: none; }
  .ba-slider { aspect-ratio: 4 / 3; }
}

@media (max-width: 380px) {
  .mobile-bar-call, .mobile-bar-cta {
    padding: 0.9rem 0.7rem;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
  }
}

/* Very narrow phones (≤360px): tighten the header lockup */
@media (max-width: 360px) {
  .header-inner { gap: 0.7rem; }
  .header-actions { gap: 0.7rem; }
  .brand { gap: 0.5rem; }
  .brand-name { font-size: 1.05rem; }
  .brand-tag { font-size: 0.5rem; letter-spacing: 0.3em; }
}

/* ---------- Service subpages ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex; align-items: flex-end;
  padding: 9rem 0 3.5rem;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -1; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.75) 0%, rgba(10,9,8,0.55) 50%, var(--bg) 100%);
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.breadcrumb a { color: var(--gold-2); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold-1); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.page-intro { max-width: 720px; }
.page-intro p { color: var(--muted); font-size: 1.08rem; margin-bottom: 1.1rem; }
.page-intro p:first-child { color: var(--text); font-size: 1.18rem; }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}
.include-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--r-md);
  padding: 1.05rem 1.1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.include-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(50, 40, 22, 0.06), 0 12px 28px -14px rgba(50, 40, 22, 0.2);
}
.include-item .icon { color: var(--gold-2); margin-top: 0.1em; }

.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.svc-gallery figure {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.svc-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.svc-gallery figure:hover img { transform: scale(1.06); }

.chip-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem;
  max-width: 760px; margin: 0 auto 1.6rem;
}
.chip-list li {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.88rem; letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--surface);
}
.map-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-2); font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  transition: color 0.25s;
}
.map-link span { transition: transform 0.25s var(--ease-out); }
.map-link:hover { color: var(--gold-1); }
.map-link:hover span { transform: translateX(4px); }

@media (max-width: 1024px) { .includes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .includes-grid { grid-template-columns: 1fr; }
  .svc-gallery { grid-template-columns: 1fr; }
  .page-hero { min-height: 38vh; padding-top: 7.5rem; }
}

/* ---------- Gallery page ---------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.gallery-filter {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.55rem 1.25rem;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s, transform 0.25s var(--ease-out);
}
.gallery-filter:hover { border-color: var(--gold-2); color: var(--gold-1); transform: translateY(-2px); }
.gallery-filter.active { background: var(--gold-grad-bright); color: #14100A; border-color: transparent; font-weight: 600; }
.gallery-filter:focus-visible { outline: 2px solid var(--gold-1); outline-offset: 2px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 2rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.85), transparent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page: wizard form ---------- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (max-width: 1024px) { .contact-page-grid { grid-template-columns: 1fr; } }

.wizard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}
.wizard-progress { margin-bottom: 1.8rem; }
.wizard-progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.6rem;
}
.wizard-progress-bar {
  height: 4px; border-radius: var(--r-pill);
  background: rgba(169, 118, 27, 0.15);
  overflow: hidden;
}
.wizard-progress-bar span {
  display: block; height: 100%;
  width: 25%;
  background: var(--gold-grad-bright);
  border-radius: var(--r-pill);
  transition: width 0.45s var(--ease-out);
}

.wizard-step { display: none; }
.wizard-step.active { display: block; animation: faqIn 0.4s var(--ease-out); }
.wizard-step h2 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  margin-bottom: 1.2rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 560px) { .option-grid { grid-template-columns: 1fr; } }
.option-card {
  position: relative;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(139, 100, 20, 0.32);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-size: 0.95rem; font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.option-card:hover { border-color: var(--gold-2); }
.option-card input {
  position: absolute; opacity: 0; pointer-events: none;
}
.option-card .option-dot {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 2px solid rgba(139, 100, 20, 0.45);
  border-radius: 50%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.option-card:has(input:checked) {
  border-color: var(--gold-2);
  background: rgba(217, 169, 63, 0.1);
  box-shadow: 0 0 0 1px var(--gold-2);
  font-weight: 500;
}
.option-card:has(input:checked) .option-dot {
  border-color: var(--gold-2);
  box-shadow: inset 0 0 0 4px var(--gold-2);
}
.option-card:has(input:focus-visible) { outline: 2px solid var(--gold-1); outline-offset: 2px; }
/* JS fallback for browsers without :has() */
.option-card.checked {
  border-color: var(--gold-2);
  background: rgba(217, 169, 63, 0.1);
  box-shadow: 0 0 0 1px var(--gold-2);
  font-weight: 500;
}
.option-card.checked .option-dot {
  border-color: var(--gold-2);
  box-shadow: inset 0 0 0 4px var(--gold-2);
}
.wizard.sending .btn-spinner { display: inline-block; }
.wizard.sending .btn-label { opacity: 0.75; }

.wizard-error {
  color: #B3261E;
  font-size: 0.88rem;
  min-height: 1.3em;
  margin-bottom: 0.6rem;
}
.wizard-nav {
  display: flex; justify-content: space-between; gap: 1rem;
  margin-top: 0.6rem;
}
.wizard-nav .btn { min-width: 130px; }
.wizard-review {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.4rem;
}
.wizard-review dt {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 0.8rem;
}
.wizard-review dt:first-child { margin-top: 0; }
.wizard-review dd { margin: 0.15rem 0 0; font-size: 0.98rem; }
.wizard-success { text-align: center; padding: 2rem 0.5rem; }
.wizard-success h2 { margin-bottom: 0.6rem; }
.wizard-success p { color: var(--muted); }

/* Talk-now sidebar */
.talk-card {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 1.9rem 1.7rem;
  text-align: center;
  margin-bottom: 1.4rem;
}
.talk-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  margin-bottom: 0.5rem;
}
.talk-card .contact-card-phone { display: block; margin-bottom: 0.5rem; }
.talk-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.talk-card .btn { width: 100%; margin-bottom: 0.6rem; }

.know-list { display: flex; flex-direction: column; gap: 0.8rem; }
.know-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: 0 1px 2px rgba(50, 40, 22, 0.05);
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
}
.know-item .icon { color: var(--gold-2); margin-top: 0.15em; }
.know-item strong { display: block; font-weight: 600; margin-bottom: 0.15rem; }
.know-item span { color: var(--muted); }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s var(--ease-out);
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lift); }
.blog-card-media { aspect-ratio: 16 / 8.5; overflow: hidden; position: relative; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-2);
}
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-2); }
.post-meta time { color: var(--muted); font-weight: 500; }
.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; line-height: 1.3;
}
.blog-card h2 a { transition: color 0.25s; }
.blog-card h2 a:hover { color: var(--gold-1); }
.blog-card p { color: var(--muted); font-size: 0.96rem; flex: 1; }

/* Article page */
.article {
  max-width: 760px;
  margin-inline: auto;
}
.article > p, .article > ul, .article > ol { margin-bottom: 1.15rem; color: #3B342A; font-size: 1.05rem; line-height: 1.75; }
.article > ul, .article > ol { padding-left: 1.4rem; }
.article li { margin-bottom: 0.4rem; }
.article h2 {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 600; line-height: 1.3;
  margin: 2.2rem 0 0.9rem;
}
.article h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  margin: 1.8rem 0 0.7rem;
}
.article strong { font-weight: 600; color: var(--text); }
.article a { color: var(--gold-3); text-decoration: underline; text-underline-offset: 3px; }
.article a:hover { color: var(--gold-1); }
.article-callout {
  background: var(--surface-2);
  border-left: 3px solid var(--gold-2);
  border-radius: var(--r-sm);
  padding: 1.1rem 1.3rem;
  margin: 1.6rem 0;
  color: #3B342A;
}
.article-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.7rem;
  margin: 2.4rem 0 0;
}
.article-cta p { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .preloader { display: none; }
  .hero-particles { display: none; }
  .marquee-track { animation: none; }
}
