/* style.css — Golden Pools Luxury Design System */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7rem);

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;
  --space-32: 8rem;

  --color-bg:         #0A0A0A;
  --color-surface:    #111111;
  --color-surface-2:  #1A1A1A;
  --color-surface-3:  #222222;
  --color-divider:    rgba(201, 168, 76, 0.15);
  --color-border:     rgba(255, 255, 255, 0.08);
  --color-text:       #F5F0E8;
  --color-text-muted: #A09882;
  --color-text-faint: #6B6560;
  --color-gold:       #C9A84C;
  --color-gold-hover: #D4B65E;
  --color-gold-active:#B8982F;
  --color-gold-dim:   rgba(201, 168, 76, 0.12);
  --color-gold-glow:  rgba(201, 168, 76, 0.25);
  --color-success:    #4CAF50;
  --color-error:      #E53935;

  --radius-sm: 0.25rem; --radius-md: 0.375rem; --radius-lg: 0.5rem;
  --radius-xl: 0.75rem; --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1240px;
  --container-narrow: 780px;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-hover); }
html { scrollbar-width: thin; scrollbar-color: var(--color-gold) var(--color-bg); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: rgba(201, 168, 76, 0.35); color: #F5F0E8; }
::-moz-selection { background: rgba(201, 168, 76, 0.35); color: #F5F0E8; }

/* ============================================================
   BODY & TYPOGRAPHY
   ============================================================ */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

.display-xl { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; line-height: 1.1; }
.display-hero { font-family: var(--font-display); font-size: var(--text-hero); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-6); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: clamp(var(--space-16), 8vw, var(--space-32)) 0; }

.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

/* ============================================================
   GOLD RULES / DIVIDERS
   ============================================================ */
.gold-rule { padding: 0 var(--space-6); }
.gold-rule hr { border: none; height: 1px; background: linear-gradient(90deg, transparent, var(--color-gold) 20%, var(--color-gold) 80%, transparent); opacity: 0.2; }
.gold-divider { width: 60px; height: 1px; background: var(--color-gold); margin-bottom: var(--space-6); }
.gold-divider--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header--scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--color-divider);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: var(--space-3);
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.logo-text span { color: var(--color-gold); }

/* Desktop Nav */
.nav-desktop {
  display: flex; align-items: center; gap: var(--space-6);
  font-size: var(--text-sm); font-weight: 500;
}
.nav-desktop > a {
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
  padding: var(--space-2) 0;
}
.nav-desktop > a:hover { color: var(--color-text); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  color: var(--color-text-muted);
  font-size: var(--text-sm); font-weight: 500;
  padding: var(--space-2) 0;
  transition: color var(--transition-interactive);
}
.nav-dropdown-trigger:hover { color: var(--color-text); }
.nav-dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.2s; }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 200px; padding: var(--space-3) 0;
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.nav-dropdown-menu--wide { min-width: 540px; display: flex; flex-wrap: wrap; gap: 0; padding: var(--space-4); }
.nav-dropdown-menu--wide .nav-dropdown-region { flex: 0 0 calc(33.333% - var(--space-2)); min-width: 150px; margin-bottom: var(--space-3); }
.nav-dropdown-region-label {
  display: block; padding: var(--space-1) var(--space-3) var(--space-2);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold); opacity: 0.85;
}
.nav-dropdown-menu--wide a { display: block; padding: var(--space-1) var(--space-3); }
.nav-dropdown-view-all {
  flex: 0 0 100%; border-top: 1px solid var(--color-divider);
  margin-top: var(--space-2); padding-top: var(--space-3) !important;
  color: var(--color-gold) !important; font-weight: 600;
  font-size: var(--text-sm);
}
.nav-dropdown-view-all:hover { color: var(--color-gold-light) !important; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu a {
  display: block; padding: var(--space-2) var(--space-5);
  color: var(--color-text-muted); font-size: var(--text-sm);
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.nav-dropdown-menu a:hover {
  background: var(--color-gold-dim); color: var(--color-gold);
}

/* CTA Button */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.65rem 1.5rem;
  font-size: var(--text-sm); font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive), color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive), border-color var(--transition-interactive);
  white-space: nowrap;
}
.btn-gold {
  position: relative;
  background: linear-gradient(135deg, #E8D48B 0%, #C9A84C 40%, #A07C2E 100%);
  background-size: 200% 200%;
  color: #0A0A0A;
  border: 1px solid rgba(232, 212, 139, 0.5);
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow: hidden;
  z-index: 1;
  animation: btn-shimmer 4s ease infinite;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, #E8D48B, #C9A84C, #A07C2E, #C9A84C, #E8D48B);
  background-size: 300% 300%;
  border-radius: inherit;
  z-index: -2;
  opacity: 0;
  animation: btn-glow-rotate 3s linear infinite;
  transition: opacity 0.4s ease;
}
.btn-gold::after {
  content: '';
  position: absolute; top: 0; left: -100%; 
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  z-index: 1;
  transition: left 0.6s ease;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #F0DFA0 0%, #D4B45A 40%, #B8922E 100%);
  background-size: 200% 200%;
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.45), 0 0 60px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
  border-color: rgba(232, 212, 139, 0.8);
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover::after { left: 120%; }
.btn-gold:active { transform: translateY(0); box-shadow: 0 2px 15px rgba(201, 168, 76, 0.3); }
@keyframes btn-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes btn-glow-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-lg {
  padding: 0.85rem 2.2rem;
  font-size: var(--text-base);
}

.btn-outline {
  background: transparent; 
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}
.btn-outline::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-outline:hover {
  color: #0A0A0A !important;
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}
.btn-outline:hover::after { opacity: 1; }
.btn-outline:active { transform: translateY(0); }
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.btn-lg { padding: 0.85rem 2rem; font-size: var(--text-sm); }

/* Hamburger */
.nav-toggle {
  display: none; width: 28px; height: 28px;
  position: relative; z-index: 110;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 100%; height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute; left: 0;
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { content: ''; top: -8px; }
.nav-toggle span::after { content: ''; top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: #0A0A0A;
  padding: var(--space-6) var(--space-6) calc(var(--space-6) + 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.nav-mobile.is-open { 
  transform: translateX(0); 
  opacity: 1; 
  pointer-events: auto;
}
.nav-mobile a {
  display: block; padding: var(--space-3) 0;
  font-size: var(--text-lg); color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-interactive);
}
.nav-mobile a:hover { color: var(--color-gold); }
.nav-mobile-group { margin-bottom: var(--space-4); }
.nav-mobile-label {
  display: block; font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-gold); margin-bottom: var(--space-2);
}
.nav-mobile-group a { font-size: var(--text-base); padding: var(--space-2) var(--space-4); }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { align-items: center; }
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.7) 30%,
    rgba(10,10,10,0.75) 60%,
    rgba(10,10,10,0.95) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: var(--space-20) var(--space-4) var(--space-10);
  max-width: 780px;
  width: 100%;
}
.hero-label { color: var(--color-text-muted); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.hero-title em {
  font-style: italic; color: var(--color-gold);
}
.hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 540px; margin: 0 auto var(--space-5);
  line-height: 1.6;
}
.hero-ctas {
  display: flex; gap: var(--space-4);
  justify-content: center; flex-wrap: wrap;
}

/* Golden Badge */
.golden-badge {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-full);
  background: rgba(10, 10, 10, 0.6);
  margin-bottom: var(--space-4);
  animation: badge-shimmer 3s ease-in-out infinite;
}
.golden-badge span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
}
@keyframes badge-shimmer {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.15); }
  50% { box-shadow: 0 0 25px rgba(201, 168, 76, 0.35), 0 0 60px rgba(201, 168, 76, 0.1); }
}

/* ============================================================
   PAGE HERO (Interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(8rem, 12vw, 14rem) 0 clamp(3rem, 5vw, 5rem);
  overflow: hidden;
  min-height: 380px;
  display: flex; align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-size: var(--text-xs); color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.page-hero .breadcrumb a { color: var(--color-text-muted); transition: color var(--transition-interactive); }
.page-hero .breadcrumb a:hover { color: var(--color-gold); }
.page-hero .breadcrumb .sep { margin: 0 0.5em; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.1;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--color-gold); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-10) 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number, .stat-number-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
}
.stat-item > span:first-child {
  display: inline-flex; align-items: baseline;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: flex-end;
  border: 1px solid var(--color-border);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  border-color: var(--color-gold-glow);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}
.service-card-img {
  position: absolute; inset: 0;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
}
.service-card-content {
  position: relative; z-index: 1;
  padding: var(--space-8);
}
.service-card-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.service-card-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.card-arrow {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: letter-spacing 0.3s ease;
}
.service-card:hover .card-arrow { letter-spacing: 0.12em; }

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

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}
.why-item {
  display: flex; gap: var(--space-5);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.why-item:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.06);
}
.why-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--color-gold-dim);
}
.why-icon svg { width: 22px; height: 22px; color: var(--color-gold); }
.why-item h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); font-family: var(--font-display); }
.why-item p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6); align-items: stretch;
}
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.price-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.08);
  transform: translateY(-4px);
}
.price-card--popular {
  border-color: var(--color-gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, var(--color-surface) 100%);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-gold); color: #0A0A0A;
  font-size: var(--text-xs); font-weight: 700;
  padding: 0.3rem 1rem; border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}
.price-tier {
  font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-gold); margin-bottom: var(--space-3);
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}
.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}
.price-amount span { font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 400; }
.price-warranty {
  font-size: var(--text-sm); color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.price-features { text-align: left; }
.price-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
  padding-left: 1.4em;
  position: relative;
}
.price-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--color-gold); font-weight: 700;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* Pricing Table */
.pricing-table {
  width: 100%; border-collapse: collapse;
  margin: var(--space-8) 0;
}
.pricing-table th, .pricing-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.pricing-table th {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--color-gold);
}
.pricing-table td { font-size: var(--text-sm); color: var(--color-text-muted); }
.pricing-table tr:hover td { background: var(--color-gold-dim); }
.pricing-table .table-price {
  font-family: var(--font-display); font-size: var(--text-lg);
  color: var(--color-text); font-weight: 600;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  text-align: center;
  background: var(--color-surface);
  overflow: hidden;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}
.cta-banner p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 500px; margin: 0 auto var(--space-8);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8) var(--space-6);
  margin-bottom: var(--space-12);
}
.footer-brand p {
  font-size: var(--text-sm); color: var(--color-text-muted);
  margin-top: var(--space-4); line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.footer-links li { margin-bottom: var(--space-2); }
.footer-links a {
  font-size: var(--text-sm); color: var(--color-text-muted);
  transition: color var(--transition-interactive);
}
.footer-links a:hover { color: var(--color-gold); }
.footer-contact-item {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-gold); }
.footer-contact-item a { transition: color var(--transition-interactive); }
.footer-contact-item a:hover { color: var(--color-gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs); color: var(--color-text-faint);
}
.footer-licenses { letter-spacing: 0.05em; }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-2); text-align: center; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE BAR
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: var(--space-2); padding: var(--space-3);
  font-size: var(--text-sm); font-weight: 600;
  transition: background var(--transition-interactive);
}
.mobile-bar a:hover { background: var(--color-gold-dim); }
.mobile-bar svg { width: 18px; height: 18px; }
.bar-text { color: var(--color-text-muted); border-right: 1px solid var(--color-border); }
.bar-call { color: var(--color-gold); }
@media (max-width: 700px) {
  .mobile-bar { display: flex; }
  .site-footer { padding-bottom: calc(var(--space-8) + 60px); }
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-section { padding: clamp(var(--space-12), 6vw, var(--space-24)) 0; }
.content-section + .content-section { padding-top: 0; }

/* Two-column layout */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-12); align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
@media (max-width: 800px) {
  .two-col, .two-col--reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* Generic grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Info cards */
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.info-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.05);
}
.info-card h3 {
  font-family: var(--font-display); font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.info-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }

/* Image with reveal */
.img-reveal {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.img-reveal img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.img-reveal:hover img { transform: scale(1.03); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex; gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 0.4rem 1.2rem;
  font-size: var(--text-xs); font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-interactive);
}
.gallery-filter:hover { border-color: var(--color-gold); color: var(--color-gold); }
.gallery-filter.active {
  background: var(--color-gold); color: #0A0A0A;
  border-color: var(--color-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-4);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border);
  transition: border-color 0.4s ease;
}
.gallery-item:hover { border-color: var(--color-gold-glow); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: var(--space-5); }
.form-group label {
  display: block; font-size: var(--text-sm); font-weight: 500;
  color: var(--color-text-muted); margin-bottom: var(--space-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-dim);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input[type="file"] {
  padding: 0.5rem;
  background: transparent;
}
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

/* ============================================================
   ESTIMATE WIZARD
   ============================================================ */
.wizard-container {
  max-width: 800px; margin: 0 auto;
}
.wizard-progress {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-10);
  position: relative;
}
.wizard-progress-bar {
  position: absolute; top: 50%; left: 0; right: 0;
  height: 2px; background: var(--color-border);
  transform: translateY(-50%);
  z-index: 0;
}
.wizard-progress-fill {
  height: 100%; background: var(--color-gold);
  transition: width 0.5s var(--ease-out);
  width: 25%;
}
.wizard-step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700;
  color: var(--color-text-faint);
  position: relative; z-index: 1;
  transition: all 0.3s ease;
}
.wizard-step-dot.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
}
.wizard-step-dot.completed {
  background: var(--color-gold); border-color: var(--color-gold);
  color: #0A0A0A;
}

.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeInUp 0.4s var(--ease-out); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Option cards */
.wizard-option-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.wizard-option-card {
  background: var(--color-surface-2);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.wizard-option-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}
.wizard-option-card.selected {
  border-color: var(--color-gold);
  background: var(--color-gold-dim);
}
.wizard-option-icon { font-size: 2.5rem; margin-bottom: var(--space-3); }
.wizard-option-card h3 { font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: var(--space-2); }
.wizard-option-card .price {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700;
  color: var(--color-gold); margin-top: var(--space-2);
}
.wizard-option-card .price-note {
  font-size: var(--text-xs); color: var(--color-text-faint);
}
.wizard-option-badge {
  position: absolute; top: -10px; right: var(--space-4);
  background: var(--color-gold); color: #0A0A0A;
  font-size: 0.65rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.05em;
}

.wizard-finish-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-3);
}

/* Feature checkboxes */
.wizard-features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.wizard-feature-card {
  display: flex; align-items: center; gap: var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.wizard-feature-card:has(input:checked) {
  border-color: var(--color-gold);
  background: var(--color-gold-dim);
}
.wizard-feature-card input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 18px; height: 18px;
}
.wizard-feature-card .feature-info { flex: 1; }
.wizard-feature-card .feature-name { font-weight: 500; font-size: var(--text-sm); }
.wizard-feature-card .feature-price { color: var(--color-gold); font-size: var(--text-xs); font-weight: 600; }

.wizard-running-total {
  text-align: center; padding: var(--space-6);
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.wizard-running-total .total-label { font-size: var(--text-sm); color: var(--color-text-muted); }
.wizard-running-total .total-amount {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 700; color: var(--color-gold);
}

/* Summary */
.estimate-summary {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6); margin-bottom: var(--space-6);
}
.estimate-summary p { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-2); }
.estimate-summary strong { color: var(--color-text); }

@media (max-width: 600px) {
  .wizard-option-grid, .wizard-features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICE MATCH
   ============================================================ */
.price-match-section {
  background: var(--color-surface);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
}
.price-match-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.price-match-badge {
  display: inline-flex; align-items: center;
  padding: 0.4rem 1rem;
  background: var(--color-gold); color: #0A0A0A;
  font-size: var(--text-xs); font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.trust-signals {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  margin: var(--space-6) 0;
}
.trust-signal {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); color: var(--color-text-muted);
}
.trust-signal::before {
  content: '✓';
  color: var(--color-gold); font-weight: 700;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-6);
}
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.blog-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.06);
  transform: translateY(-2px);
}
.blog-card-img {
  aspect-ratio: 16/9; overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: var(--space-5) var(--space-6); }
.blog-card-meta {
  display: flex; align-items: center; gap: var(--space-4);
  font-size: var(--text-xs); color: var(--color-text-faint);
  margin-bottom: var(--space-3);
}
.blog-card-tag {
  background: var(--color-gold-dim);
  color: var(--color-gold);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.blog-card-body h3 {
  font-family: var(--font-display); font-size: var(--text-lg);
  margin-bottom: var(--space-3); line-height: 1.3;
}
.blog-card-body p {
  font-size: var(--text-sm); color: var(--color-text-muted);
  line-height: 1.6; margin-bottom: var(--space-4);
}
.blog-card .read-more {
  font-size: var(--text-xs); color: var(--color-gold); font-weight: 600;
  letter-spacing: 0.05em;
}

/* Blog Article */
.article-header { margin-bottom: var(--space-10); }
.article-meta {
  display: flex; gap: var(--space-4); flex-wrap: wrap;
  font-size: var(--text-xs); color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.article-content { max-width: var(--container-narrow); }
.article-content h2 {
  font-family: var(--font-display); font-size: var(--text-xl);
  margin: var(--space-10) 0 var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}
.article-content h3 {
  font-size: var(--text-lg);
  margin: var(--space-8) 0 var(--space-3);
}
.article-content p {
  font-size: var(--text-base); color: var(--color-text-muted);
  line-height: 1.75; margin-bottom: var(--space-5);
}
.article-content ul, .article-content ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}
.article-content li {
  font-size: var(--text-base); color: var(--color-text-muted);
  line-height: 1.75; margin-bottom: var(--space-2);
  list-style: disc;
}
.article-content ol li { list-style: decimal; }
.article-content strong { color: var(--color-text); }

.related-posts { margin-top: var(--space-16); }
.related-posts h2 {
  font-family: var(--font-display); font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

/* ============================================================
   REFERRAL
   ============================================================ */
.reward-tier {
  display: flex; align-items: center; gap: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  transition: border-color 0.3s ease;
}
.reward-tier:hover { border-color: rgba(201, 168, 76, 0.25); }
.reward-amount {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; color: var(--color-gold);
  white-space: nowrap;
}
.reward-desc { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============================================================
   LOCATION PAGES
   ============================================================ */
.city-services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.city-service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color 0.4s ease;
}
.city-service-card:hover { border-color: rgba(201, 168, 76, 0.2); }
.city-service-card h3 {
  font-family: var(--font-display); font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.city-service-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }

.nearby-cities {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-top: var(--space-6);
}
.nearby-cities a {
  padding: 0.4rem 1rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); color: var(--color-text-muted);
  transition: all var(--transition-interactive);
}
.nearby-cities a:hover {
  border-color: var(--color-gold); color: var(--color-gold);
}

/* ============================================================
   ADA ACCESSIBILITY WIDGET
   ============================================================ */
.ada-widget {
  position: fixed; bottom: 80px; left: 20px; z-index: 200;
}
@media (min-width: 701px) { .ada-widget { bottom: 20px; } }

.ada-trigger {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #1565C0;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ada-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(21, 101, 192, 0.5);
}
.ada-trigger svg { width: 24px; height: 24px; }

.ada-panel {
  position: absolute; bottom: 60px; left: 0;
  width: 320px; max-height: 70vh;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.ada-panel.open { display: flex; animation: fadeInUp 0.3s var(--ease-out); }

.ada-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
}
.ada-panel-header h3 { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; }
.ada-close { font-size: 1.5rem; color: var(--color-text-muted); line-height: 1; }

.ada-panel-body {
  overflow-y: auto; padding: var(--space-4) var(--space-5);
  flex: 1;
}
.ada-section { margin-bottom: var(--space-5); }
.ada-section h4 {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.ada-profiles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}
.ada-profile-btn {
  padding: 0.4rem 0.6rem;
  font-size: 0.7rem; font-weight: 500;
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  transition: all var(--transition-interactive);
}
.ada-profile-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.ada-profile-btn.active { background: var(--color-gold-dim); border-color: var(--color-gold); color: var(--color-gold); }

.ada-control {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-2) 0;
  font-size: var(--text-xs); color: var(--color-text-muted);
}
.ada-control label { display: flex; align-items: center; gap: var(--space-2); cursor: pointer; }
.ada-control input[type="checkbox"] { accent-color: var(--color-gold); }
.ada-adj-btns { display: flex; gap: var(--space-2); }
.ada-adj-btns button {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  color: var(--color-text); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-interactive);
}
.ada-adj-btns button:hover { border-color: var(--color-gold); color: var(--color-gold); }

.ada-reset-btn {
  width: 100%; padding: 0.6rem;
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: var(--text-xs); font-weight: 600;
  margin: var(--space-4) 0;
  transition: all var(--transition-interactive);
}
.ada-reset-btn:hover { border-color: var(--color-error); color: var(--color-error); }

.ada-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.65rem; color: var(--color-text-faint);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}
.ada-wcag-badge {
  background: #1565C0; color: #fff;
  padding: 0.15rem 0.5rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.6rem;
}

.ada-reading-guide {
  display: none;
  position: fixed; left: 0; right: 0;
  height: 40px; z-index: 9999;
  pointer-events: none;
  background: rgba(201, 168, 76, 0.1);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.ada-big-cursor, .ada-big-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 2L5 28L12 21L19 28L23 24L16 17L25 17Z' fill='%23C9A84C' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E") 5 2, auto !important; }

/* ============================================================
   ANIMATIONS / REVEALS
   ============================================================ */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible, .reveal-up.is-visible {
  opacity: 1; transform: translateY(0);
}

/* Magnetic button hover */
.magnetic-btn {
  transition: background var(--transition-interactive), color var(--transition-interactive), box-shadow var(--transition-interactive), transform 0.15s ease;
}

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */
@media (max-width: 600px) {
  .hero-content { padding: var(--space-24) var(--space-2) var(--space-12); }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-cta { width: 100%; }
  .page-hero h1 { font-size: var(--text-2xl); }
}

/* ============================================================
   UTILITY
   ============================================================ */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


/* Finest brushstroke underline — Picasso style */
.finest-underline {
  position: relative;
  display: inline-block;
}
.finest-underline svg.brush-stroke {
  position: absolute;
  bottom: -6px;
  left: -4%;
  width: 108%;
  height: 24px;
  overflow: visible;
  pointer-events: none;
}
.finest-underline svg.brush-stroke path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}
.finest-underline.is-visible svg.brush-stroke path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* The thick brushstroke fill — trails behind the leading stroke */
.finest-underline svg.brush-stroke .brush-fill {
  stroke-width: 10;
  stroke: rgba(201, 168, 76, 0.2);
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}
.finest-underline.is-visible svg.brush-stroke .brush-fill {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s;
}
/* The thin expressive leading line */
.finest-underline svg.brush-stroke .brush-line {
  stroke-width: 3.5;
  stroke: url(#brush-gold-grad);
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}
.finest-underline.is-visible svg.brush-stroke .brush-line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* Nav CTA override — ensure legibility at small size */
.nav-desktop .btn-gold {
  background: var(--color-gold);
  background-image: none;
  animation: none;
  color: #0A0A0A;
  font-weight: 700;
  font-size: var(--text-xs);
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--color-gold);
  letter-spacing: 0.04em;
  text-shadow: none;
}
.nav-desktop .btn-gold::before,
.nav-desktop .btn-gold::after { display: none; }
.nav-desktop .btn-gold:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  color: #0A0A0A;
}


/* ADA panel mobile positioning fix */
@media (max-width: 700px) {
  .ada-panel {
    position: fixed;
    bottom: auto;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    z-index: 1000;
  }
}

/* ADA big cursor */
.ada-big-cursor, .ada-big-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M6 2l18 14H14l6 14-4 2-6-14L2 24z' fill='%23C9A84C' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E") 6 2, auto !important;
}

/* ADA reading guide */
.ada-reading-guide {
  position: fixed;
  left: 0; right: 0;
  height: 40px;
  background: rgba(201, 168, 76, 0.08);
  border-top: 2px solid rgba(201, 168, 76, 0.3);
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
  pointer-events: none;
  z-index: 9999;
  display: none;
}


/* ============================================================
   MOBILE HERO — Full viewport with bg image visible, CTAs above fold
   ============================================================ */
@media (max-width: 700px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-content {
    padding: calc(72px + var(--space-2)) var(--space-4) var(--space-6) !important;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
  }
  .hero-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem) !important;
    line-height: 1.15 !important;
    margin-bottom: var(--space-2) !important;
  }
  .hero-sub {
    font-size: 0.8rem !important;
    margin-bottom: var(--space-3) !important;
    line-height: 1.45 !important;
  }
  .hero .section-label, .hero-label {
    font-size: 0.55rem !important;
    margin-bottom: var(--space-1) !important;
  }
  .golden-badge {
    padding: 0.3rem 0.8rem !important;
    font-size: 0.5rem !important;
    margin-bottom: var(--space-2) !important;
  }
  .hero-ctas {
    gap: var(--space-2) !important;
  }
  .hero-ctas .btn-cta {
    width: 100%;
    padding: 0.65rem 1rem !important;
    font-size: 0.8rem !important;
  }
  .hero-trust {
    gap: var(--space-3);
    margin-top: var(--space-3);
    padding-top: var(--space-2);
  }
  .hero-trust-item { font-size: 0.6rem; }
  .hero-phone { font-size: 0.7rem; margin-top: var(--space-1); }
}


/* ============================================================
   HERO TRUST BAR — Social proof strip below CTAs
   ============================================================ */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust-item svg {
  width: 16px; height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.hero-trust-item strong {
  color: var(--color-gold);
  font-weight: 700;
}

/* Phone number in hero for instant trust */
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
  margin-top: var(--space-3);
  letter-spacing: 0.03em;
  opacity: 0.8;
  transition: opacity var(--transition-interactive);
}
.hero-phone:hover { opacity: 1; }
.hero-phone svg { width: 14px; height: 14px; }

/* Desktop refinements */
@media (min-width: 1024px) {
  .hero-content {
    padding: calc(72px + var(--space-6)) var(--space-4) var(--space-6);
  }
  .hero-trust { gap: var(--space-8); }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-faint);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease infinite;
}
.scroll-hint svg { width: 20px; height: 20px; opacity: 0.5; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 700px) { .scroll-hint { display: none; } }


/* ============================================================
   GSAP FALLBACK — Content visible by default, animated only if GSAP loads
   ============================================================ */
.hero-content > * {
  opacity: 1;
  transform: none;
}

/* If no JS/GSAP, reveal everything */
.no-js .reveal, .no-js .reveal-up {
  opacity: 1;
  transform: none;
}

/* Ensure hero never gets stuck invisible */
@keyframes force-visible {
  to { opacity: 1; transform: none; }
}
.hero-content > * {
  animation: force-visible 0.01s 3s forwards;
}
