/* ============================================================
   Cleaning Lendel VIP — Global Stylesheet v2
   Design: White / Black / Gold (#C9A84C) | Pills | 1600px
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Variables ---------- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C06A;
  --gold-dark:   #A8873A;
  --gold-muted:  rgba(201,168,76,0.12);
  --black:       #111111;
  --gray-dark:   #2E2E2E;
  --gray-mid:    #6B6B6B;
  --gray-light:  #F6F6F4;
  --white:       #FFFFFF;
  --border:      #E4E4E0;
  --shadow-sm:   0 1px 6px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --radius:      12px;
  --radius-lg:   20px;
  --pill:        100px;
  --font-head:   'Outfit', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.25s var(--ease);
  --max-width:   1600px;
}

/* ---------- Config-ready fade ---------- */
[data-contact], [data-price] { transition: opacity 0.3s ease; }
body:not(.cfg-ready) [data-contact],
body:not(.cfg-ready) [data-price] { opacity: 0; }
body.cfg-ready [data-contact],
body.cfg-ready [data-price] { opacity: 1; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; }
h1 { font-size: clamp(2.4rem, 4.8vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.08rem; font-weight: 700; }
p  { color: var(--gray-dark); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- Section ---------- */
.section { padding: 96px 0; }
.section--gray { background: var(--gray-light); }
.section--dark { background: var(--black); }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label { display: block; margin-bottom: 14px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--gray-mid); font-size: 1.1rem; line-height: 1.7; }
.gold-line { width: 40px; height: 2px; background: var(--gold); margin: 18px auto; }

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--pill);
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Buttons (Pills) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary { background: transparent; color: var(--white); border-color: transparent; position: relative; z-index: 0; overflow: hidden; }
.btn-primary:hover { background: transparent; border-color: transparent; transform: translateY(-1px); }
.btn-dark { background: transparent; color: var(--white); border-color: transparent; position: relative; z-index: 0; overflow: hidden; }
.btn-dark:hover { background: transparent; border-color: transparent; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: rgba(0,0,0,0.35); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.3);
}
.card-body { padding: 28px 32px 32px; }

/* Card image slot */
.card-image {
  height: 224px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
  flex-shrink: 0;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}
.card-image img.loaded { opacity: 1; }
.card:hover .card-image img { transform: scale(1.07); }
.card-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}
.card-image-placeholder.hidden { opacity: 0; pointer-events: none; }
.card-image-placeholder-inner {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.18);
  letter-spacing: -0.02em;
}

/* ---------- Grid Utilities ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img { height: 56px; width: auto; display: none; }
/* Hide text logo instantly when cached logo exists (prevents flash) */
html.has-logo .nav-logo-text { display: none; }
html.has-logo .nav-logo-img { display: block; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.nav-logo-text span { color: var(--gold); }
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--gray-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 10001;
}
.nav-hamburger span { display: none; }

/* SVG icon inside the button */
.nav-hamburger .hbg-svg {
  width: 38px; height: 38px;
  display: block;
  transition: transform 0.5s ease-in-out;
  stroke: var(--black);
}
.nav-hamburger.open .hbg-svg {
  transform: rotate(-45deg);
  stroke: var(--white);
}
/* Morphing top path */
.nav-hamburger .hbg-svg .hbg-top {
  stroke-dasharray: 12 63;
  stroke-dashoffset: 0;
  transition: stroke-dasharray 0.5s ease-in-out, stroke-dashoffset 0.5s ease-in-out;
}
.nav-hamburger.open .hbg-svg .hbg-top {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

/* Full-screen mobile overlay */
@keyframes menuLinkIn {
  0%   { opacity: 0; transform: translateY(32px) scale(0.96); filter: blur(4px); }
  60%  { opacity: 1; filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}
.nav-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white);
  padding: 90px 48px 80px;
  transform: translateX(100%);
  transition: transform 0.44s cubic-bezier(0.65, 0.01, 0.05, 0.99);
  pointer-events: none;
  overflow: hidden;
}
/* Subtle gold line at top */
.nav-mobile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.2) 100%);
}
/* Decorative large number in background */
.nav-mobile::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(201,168,76,0.04);
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateX(0);
  pointer-events: auto;
}
/* Close button inside menu */
.nav-mobile-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--black);
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.nav-mobile-close:hover { opacity: 1; transform: rotate(90deg); }
.nav-mobile-close svg { width: 22px; height: 22px; }
/* Large animated nav links */
.nav-mobile > a {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 8vw, 2.8rem);
  font-weight: 700;
  color: rgba(17,17,17,0.35);
  padding: 9px 0;
  text-align: left;
  width: 100%;
  letter-spacing: -0.03em;
  line-height: 1.1;
  transition: color 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: block;
  opacity: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile > a:last-of-type { border-bottom: none; }
/* Staggered entrance */
.nav-mobile.open > a {
  animation: menuLinkIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.nav-mobile.open > a:nth-child(2) { animation-delay: 0.06s; }
.nav-mobile.open > a:nth-child(3) { animation-delay: 0.12s; }
.nav-mobile.open > a:nth-child(4) { animation-delay: 0.18s; }
.nav-mobile.open > a:nth-child(5) { animation-delay: 0.24s; }
.nav-mobile.open > a:nth-child(6) { animation-delay: 0.30s; }
.nav-mobile > a:hover,
.nav-mobile > a.active { color: var(--black); transform: translateX(8px); }
.nav-mobile > a:hover::after {
  content: '→';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
}
/* Contact links — gold accent */
.nav-mobile-contact {
  display: none;
  flex-direction: column;
  width: 100%;
  margin-top: 48px;
}
.nav-mobile-contact a {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 8vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1.1;
  padding: 9px 0;
  text-align: left;
  width: 100%;
  display: block;
  position: relative;
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  border-radius: 0;
  background: none;
  opacity: 0;
  transition: color 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-contact a:last-child { border-bottom: none; }
.nav-mobile.open .nav-mobile-contact a {
  animation: menuLinkIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
}
.nav-mobile-contact a:hover,
.nav-mobile-contact a:active { color: var(--gold-dark); transform: translateX(8px); }
.nav-mobile-contact a:hover::after {
  content: '→';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
}
.nav-mobile-contact svg { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--black);
  display: flex;
  align-items: center;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 70%; height: 130%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0 72px;
  width: 100%;
}
.hero-text h1 { color: var(--white); margin-bottom: 20px; max-width: 780px; }
.hero-text h1 em { color: var(--gold); font-style: normal; }
.hero-desc {
  color: rgba(255,255,255,0.52);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px 13px 18px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--pill);
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all var(--transition);
}
.hero-phone-pill:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
}
.hero-phone-pill svg { flex-shrink: 0; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Hero visual (right side) */
.hero-visual { position: relative; z-index: 1; }
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.hero-card + .hero-card { margin-top: 14px; }
.hero-card-featured { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.06); }
.hero-card-title { font-family: var(--font-head); font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.hero-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.38); margin-bottom: 18px; }
.hero-card-price { font-family: var(--font-head); font-size: 2.4rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 4px; }
.hero-card-price small { font-size: 0.88rem; font-family: var(--font-body); color: rgba(255,255,255,0.32); font-weight: 400; }
.hero-card-list { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.hero-card-list li { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: rgba(255,255,255,0.52); }
.hero-card-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.hero-row .hero-card { margin-top: 0; }
.hero-card-sm-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.hero-card-sm-val { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-bar {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
@media (max-width: 768px) {
  .marquee-bar {
    -webkit-mask: none;
    mask: none;
  }
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 34s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  padding: 0 36px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
}
.marquee-item::after {
  content: '✦';
  font-size: 0.55rem;
  color: rgba(255,255,255,0.6);
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card .card-body { padding: 24px 28px 28px; }
.service-card .card-tag { margin-bottom: 8px; }
.service-card h3 { margin-bottom: 10px; }
.service-card .card-desc { font-size: 0.875rem; color: var(--gray-mid); margin-bottom: 20px; line-height: 1.65; }
.service-check-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.service-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--gray-dark); line-height: 1.45; }
.service-check-list li .check-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-top: 28px; }
.why-text .label { margin-bottom: 14px; }
.why-text h2 { margin-bottom: 18px; }
.why-text .why-desc { color: var(--gray-mid); margin-bottom: 40px; font-size: 1rem; line-height: 1.75; }
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.feature-item h4 { margin-bottom: 4px; }
.feature-item p { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.6; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card.dark { background: var(--black); border-color: var(--black); }
.stat-number { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 10px; }
.stat-card.dark .stat-number { color: var(--gold); }
.stat-label { font-size: 0.74rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4; }
.stat-card.dark .stat-label { color: rgba(255,255,255,0.32); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.25); }
.testimonial-quote {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-head); font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: 0.1; user-select: none;
}
.stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-card > p { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: var(--white); flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.author-info span { font-size: 0.78rem; color: var(--gray-mid); }

/* ── New Reviews Carousel ── */
.reviews-carousel-wrap { position: relative; }
.reviews-track {
  min-height: 200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) { .reviews-track { grid-template-columns: repeat(2, 1fr); } }
.rv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.rv-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.3); }
.rv-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.rv-quote {
  font-family: var(--font-head);
  font-size: 4.5rem; line-height: 1;
  color: var(--gold); opacity: 0.12;
  user-select: none; line-height: 0.8;
}
.rv-stars { display: flex; gap: 2px; }
.rv-star { font-size: 0.9rem; color: #ddd; }
.rv-star--on { color: var(--gold); }
.rv-text {
  font-size: 0.9rem; color: var(--gray-dark);
  line-height: 1.75; flex: 1; margin-bottom: 24px;
}
.rv-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.rv-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; color: var(--white); flex-shrink: 0;
}
.rv-author-info strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.rv-author-info span { font-size: 0.75rem; color: var(--gray-mid); }

/* Nav (desktop pagination) */
.reviews-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.reviews-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.18s; color: var(--black);
}
.reviews-nav-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.reviews-dots { display: flex; gap: 8px; align-items: center; }
.rv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: rgba(201,168,76,0.25);
  transition: all 0.25s;
}
.rv-dot--on { background: var(--gold); transform: scale(1.25); }

/* ── Mobile: native horizontal swipe ── */
.rv-scroll-dots {
  display: none; justify-content: center; gap: 6px;
  margin-top: 16px;
}
.rv-scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(201,168,76,0.25); border: none; padding: 0;
  transition: all 0.3s;
}
.rv-scroll-dot--on { background: var(--gold); transform: scale(1.4); }

@media (max-width: 679px) {
  .reviews-carousel-wrap { overflow: visible; }
  .reviews-track {
    display: flex;
    gap: 16px;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 4px 0 20px;
    scrollbar-width: none;
    -webkit-user-select: none; user-select: none;
  }
  .reviews-track::-webkit-scrollbar { display: none; }
  .reviews-track .rv-card {
    flex: 0 0 85vw;
    max-width: 85vw;
    scroll-snap-align: center;
  }
  .reviews-nav { display: none !important; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--black);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.50); font-size: 1.05rem; margin-bottom: 44px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 44px 48px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--gray-dark); margin-bottom: 7px; }
input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%; padding: 13px 20px;
  border: 1.5px solid var(--border); border-radius: var(--pill);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--black);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none; appearance: none;
}
textarea {
  width: 100%; padding: 14px 20px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--black);
  background: var(--white); resize: vertical; min-height: 130px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none; appearance: none;
}
select {
  width: 100%; padding: 13px 44px 13px 20px;
  border: 1.5px solid var(--border); border-radius: var(--pill);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--black);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  cursor: pointer; outline: none;
  -webkit-appearance: none; appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
input.error, .form-accordion.error { border-color: #e53e3e; }

/* ── Form Accordion Dropdown ── */
.form-accordion {
  position: relative;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-accordion:hover { border-color: rgba(201,168,76,0.4); }
.form-accordion.open {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-accordion.error { border-color: #e53e3e; }
.form-accordion-trigger {
  width: 100%; padding: 13px 20px;
  border: none; border-radius: inherit;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-mid);
  background: transparent; cursor: pointer; outline: none;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  text-align: left;
}
.form-accordion.has-value .form-accordion-trigger { color: var(--black); }
.form-accordion-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray-mid);
}
.form-accordion.open .form-accordion-chevron { transform: rotate(180deg); }
.form-accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1.5px solid var(--border);
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  -webkit-user-select: none; user-select: none;
}
.form-accordion.open .form-accordion-panel {
  max-height: 320px;
  opacity: 1;
  border-top-color: rgba(201,168,76,0.25);
}
.form-accordion-option {
  width: 100%;
  padding: 12px 20px;
  border: none; background: none;
  font-family: var(--font-body); font-size: 0.88rem; color: var(--black);
  cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 10px;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.form-accordion-option svg { color: var(--gray-mid); flex-shrink: 0; transition: color 0.15s; }
.form-accordion-option:hover { background: rgba(201,168,76,0.07); }
.form-accordion-option:hover svg { color: var(--gold); }
.form-accordion-option.selected { background: rgba(201,168,76,0.1); font-weight: 600; }
.form-accordion-option.selected svg { color: var(--gold); }
.form-accordion-option:last-child { border-radius: 0; }
.form-note { font-size: 0.78rem; color: var(--gray-mid); margin-top: 14px; text-align: center; }
.form-note a { color: var(--gold); }
.form-success, .form-error { padding: 14px 20px; border-radius: var(--pill); font-size: 0.875rem; margin-top: 16px; display: none; }
.form-success { background: #f0fdf4; border: 1.5px solid #86efac; color: #166534; }
.form-error   { background: #fef2f2; border: 1.5px solid #fca5a5; color: #991b1b; }
.form-success.show, .form-error.show { display: block; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 96px 0 72px;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at right center, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .label { display: block; margin-bottom: 14px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.52); font-size: 1.05rem; max-width: 580px; line-height: 1.75; }
.page-hero-image { position: absolute; inset: 0; overflow: hidden; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s var(--ease), transform 0.7s var(--ease); }
.page-hero-image img.loaded { opacity: 0.18; }
.page-hero:hover .page-hero-image img { transform: scale(1.04); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-desc { color: var(--gray-mid); margin-bottom: 36px; font-size: 1rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--black); stroke-width: 1.75; stroke-linecap: round; }
.contact-detail strong { display: block; font-size: 0.875rem; margin-bottom: 3px; }
.contact-detail a, .contact-detail span { font-size: 0.875rem; color: var(--gray-mid); }
.contact-detail a:hover { color: var(--gold); }
.phone-hero {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 16px;
}
.phone-hero-label { font-size: 0.72rem; color: rgba(255,255,255,0.32); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.phone-hero-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--white); }

/* Schedule */
.schedule-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.schedule-header { background: var(--gray-light); padding: 12px 20px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); }
.schedule-grid { display: flex; flex-direction: column; }
.schedule-day {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
}
.schedule-day:last-child { border-bottom: none; }
.schedule-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.schedule-day.available .schedule-dot { background: #22c55e; }
.schedule-day.half .schedule-dot { background: var(--gold); }
.schedule-day.closed .schedule-dot { background: var(--border); }
.schedule-day-name { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; color: var(--gray-mid); min-width: 36px; }
.schedule-day.available .schedule-day-name,
.schedule-day.half .schedule-day-name { color: var(--black); }
.schedule-day-time { font-size: 0.82rem; color: var(--gray-mid); margin-left: auto; }
.schedule-day.closed .schedule-day-time { color: var(--border); }
.schedule-day-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--pill);
  margin-left: 8px;
}
.schedule-day.available .schedule-day-badge { background: #dcfce7; color: #16a34a; }
.schedule-day.half .schedule-day-badge { background: #fef9ec; color: #92702a; }
.schedule-day.closed .schedule-day-badge { background: var(--gray-light); color: var(--gray-mid); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px 36px;
  background: var(--white); position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.popular { border-color: var(--gold); }
.popular-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 18px; border-radius: var(--pill); white-space: nowrap;
}
.pricing-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.pricing-desc { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 28px; line-height: 1.6; }
.pricing-from { font-size: 0.72rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.pricing-amount { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 4px; }
.pricing-per { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 32px; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--gray-dark); }
.pricing-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.pricing-features li.no { color: var(--gray-mid); }
.pricing-features li.no svg path { stroke: var(--border); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: rgba(201,168,76,0.35); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font-body); font-size: 0.925rem; font-weight: 500; color: var(--black);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.faq-icon svg { width: 10px; height: 10px; fill: none; stroke: var(--gray-mid); stroke-width: 2.5; transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.875rem; color: var(--gray-mid); line-height: 1.75; }

/* ============================================================
   PROCESS STEPS — modern large-number design
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Dashed connector line at number level */
.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(201,168,76,0.4) 0, rgba(201,168,76,0.4) 6px,
    transparent 6px, transparent 18px
  );
  pointer-events: none;
}
.process-step {
  text-align: center;
  padding: 0 24px 0;
  position: relative;
}
/* Large outlined step number */
.step-num {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,168,76,0.4);
  display: block;
  margin: 0 auto 20px;
  width: auto; height: auto;
  border: none; background: transparent; border-radius: 0;
  position: relative; z-index: 1;
  transition: -webkit-text-stroke-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}
.process-step:hover .step-num {
  -webkit-text-stroke-color: rgba(201,168,76,0.85);
  opacity: 1;
}
/* Small dot accent */
.process-step::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.process-step:hover::after { opacity: 1; }
.process-step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.process-step p { font-size: 0.92rem; color: var(--gray-mid); line-height: 1.65; max-width: 210px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand .nav-logo-text small { color: rgba(255,255,255,0.28); }
.footer-brand p { font-size: 0.845rem; color: rgba(255,255,255,0.32); line-height: 1.75; margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: 0.845rem; color: rgba(255,255,255,0.38); margin-bottom: 11px; transition: color var(--transition); line-height: 1.5; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { color: rgba(255,255,255,0.28); transition: color var(--transition); font-size: 0.78rem; }
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   CONTACT QUICK STRIP
   ============================================================ */
.contact-quick-strip {
  background: var(--black);
  padding: 28px 0;
}
.contact-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-quick-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.contact-quick-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-quick-info { flex: 1; min-width: 0; }
.contact-quick-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 5px;
}
.contact-quick-value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   DISCOUNT STRIP (pricing page)
   ============================================================ */
.discount-strip {
  margin-top: 48px;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}
.discount-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.discount-strip-label {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}
.discount-strip-items {
  display: flex;
  align-items: center;
  gap: 24px;
}
.discount-item { text-align: center; }
.discount-pct {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.discount-freq {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.discount-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   VALUE ICON (about page)
   ============================================================ */
.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ============================================================
   CONTAINER NARROW
   ============================================================ */
.container--narrow { max-width: 760px; }

/* ============================================================
   LEGAL
   ============================================================ */
.legal-content { max-width: 780px; margin: 0 auto; padding: 64px 48px 96px; }
.legal-content h2 { font-size: 1.3rem; margin: 44px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--gray-dark); line-height: 1.85; margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; }
.legal-content ul li { list-style: disc; }
.legal-meta { background: var(--gray-light); border-radius: var(--radius); padding: 16px 24px; margin-bottom: 44px; font-size: 0.845rem; color: var(--gray-mid); }

/* ============================================================
   ADMIN (images.html)
   ============================================================ */
.admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.admin-slot { border: 1.5px dashed var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.admin-slot.filled { border-color: rgba(201,168,76,0.4); border-style: solid; }
.admin-slot-preview { height: 150px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.admin-slot-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-no-img { font-size: 0.8rem; color: var(--gray-mid); text-align: center; }
.admin-slot-info { padding: 16px 20px; }
.admin-slot-key { font-size: 0.7rem; font-family: monospace; background: var(--gray-light); padding: 3px 8px; border-radius: 4px; color: var(--gray-dark); display: inline-block; margin-bottom: 8px; }
.admin-slot-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.admin-slot-size { font-size: 0.75rem; color: var(--gray-mid); margin-bottom: 6px; }
.admin-slot-path { font-size: 0.78rem; color: var(--gray-mid); font-family: monospace; word-break: break-all; }
.status-set { color: #166534; font-size: 0.75rem; font-weight: 600; }
.status-empty { color: var(--gray-mid); font-size: 0.75rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; }
.divider     { border: none; border-top: 1px solid var(--border); }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.animate { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — 768px (hamburger menu trigger)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .container { padding: 0 36px; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — 960px (tablet)
   ============================================================ */
@media (max-width: 960px) {
  .container { padding: 0 28px; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  /* Hero */
  .hero-inner { grid-template-columns: 1fr; padding: 64px 0; }
  .hero-visual { display: flex; margin-top: 16px; }
  .hero-desc { font-size: 1rem; max-width: 100%; }
  .hero-stats { gap: 32px; }
  /* Grids */
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  /* Layout */
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .process-grid::before { display: none; }
  .step-num { font-size: 4.5rem; }
  .process-step::after { margin-bottom: 12px; }
  .admin-grid { grid-template-columns: repeat(2, 1fr); }
  /* schedule is now flex column — no breakpoint override needed */
  .contact-quick-grid { grid-template-columns: 1fr; }
  .discount-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  /* Page hero inner pages */
  .page-hero { padding: 72px 0 56px; }
  /* Cards */
  .card-image { height: 200px; }
}

/* ============================================================
   RESPONSIVE — 600px (mobile)
   ============================================================ */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 36px; }
  /* Mobile menu — adjust for small screens */
  .nav-mobile { padding: 100px 32px 64px; }
  /* Hero */
  .hero-inner { padding: 48px 0 52px; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-trust { gap: 10px 16px; margin-top: 20px; margin-bottom: 24px; }
  .trust-item { font-size: 0.78rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding-top: 24px; margin-top: 24px; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn, .hero-actions .hero-phone-pill { width: 100%; justify-content: center; box-sizing: border-box; }
  .hero-phone-pill { font-size: 0.85rem; }
  /* Page hero (inner pages) */
  .page-hero { padding: 56px 0 40px; }
  .page-hero h1 { margin-bottom: 14px; }
  .page-hero p { font-size: 0.95rem; }
  /* Cards */
  .card-image { height: 180px; }
  .card-body { padding: 20px 22px 24px; }
  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Process */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .step-num { font-size: 3.5rem; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
  /* CTA */
  .cta-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .cta-actions .btn { width: 100%; justify-content: center; box-sizing: border-box; }
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  /* Forms */
  .legal-content { padding: 40px 20px 60px; }
  .form-card { padding: 24px 20px; }
  /* Contact */
  .phone-hero { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-quick-card { flex-wrap: wrap; }
  .contact-quick-value { font-size: 0.9rem; }
  /* Misc */
  .discount-strip { padding: 20px; }
  .discount-strip-items { gap: 16px; }
  .admin-grid { grid-template-columns: 1fr; }
  /* schedule flex — no override needed */
  .pricing-grid { max-width: 100%; }
  /* Why grid stats on mobile */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .stat-number { font-size: 1.5rem; }
  /* Service page check list */
  .check-grid { grid-template-columns: 1fr; }
  .page-hero-actions { margin-top: 20px; }
}

/* ============================================================
   HERO BACKGROUND IMAGE
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.hero-bg img.loaded { opacity: 0.22; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.82) 0%, rgba(17,17,17,0.5) 100%);
}
.hero .hero-inner { position: relative; z-index: 1; }

/* ============================================================
   HERO TRUST BADGES
   ============================================================ */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   HERO HORIZONTAL ACCORDION (right column)
   ============================================================ */
.hero-visual {
  display: flex;
  align-items: stretch;
}
.hero-hacc {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 480px;
  width: 100%;
}
.hero-hacc-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex: 0.5;
  min-width: 56px;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.hero-hacc-panel.active {
  flex: 4;
}
/* Background image */
.hacc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-hacc-panel.active .hacc-img {
  transform: scale(1.05);
}
/* Dark overlay — two layers to avoid gradient/solid flash */
.hacc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28); /* lighter base — image stays visible */
  transition: opacity 0.5s ease;
}
/* Bottom gradient for text readability — fades in on active/hover */
.hacc-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.0) 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-hacc-panel.active .hacc-overlay::after { opacity: 1; }
.hero-hacc:hover .hero-hacc-panel:hover .hacc-overlay::after { opacity: 1; }
/* Label — rotated 90° when inactive, slides down + fades on active */
.hacc-label {
  position: absolute;
  z-index: 2;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg) translateY(0);
  color: rgba(255,255,255,0.78);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.hero-hacc-panel.active .hacc-label {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg) translateY(16px);
}
/* Body — slides up from bottom on active panel */
.hacc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.hero-hacc-panel.active .hacc-body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.18s;
}
.hacc-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.hacc-sub {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.hacc-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--pill);
  padding: 9px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.hero-hacc-panel:hover .hacc-cta {
  background: #b8942a;
  transform: translateX(2px);
}

/* CSS-driven hover state — desktop only (≥961px).
   Wrapping in min-width prevents these from firing on touch/mobile. */
@media (min-width: 961px) {
  .hero-hacc:hover .hero-hacc-panel.active { flex: 0.5; }
  .hero-hacc:hover .hero-hacc-panel.active .hacc-img { transform: none; }
  .hero-hacc:hover .hero-hacc-panel.active .hacc-overlay::after { opacity: 0; }
  .hero-hacc:hover .hero-hacc-panel.active .hacc-label { opacity: 1; transform: translateX(-50%) rotate(90deg) translateY(0); }
  .hero-hacc:hover .hero-hacc-panel.active .hacc-body { opacity: 0; transform: translateY(20px); pointer-events: none; transition-delay: 0s; }
  .hero-hacc:hover .hero-hacc-panel:hover { flex: 4; }
  .hero-hacc:hover .hero-hacc-panel:hover .hacc-img { transform: scale(1.05); }
  .hero-hacc:hover .hero-hacc-panel:hover .hacc-overlay::after { opacity: 1; }
  .hero-hacc:hover .hero-hacc-panel:hover .hacc-label { opacity: 0; transform: translateX(-50%) rotate(90deg) translateY(16px); }
  .hero-hacc:hover .hero-hacc-panel:hover .hacc-body { opacity: 1; transform: translateY(0); pointer-events: auto; transition-delay: 0.18s; }
}

/* ============================================================
   HERO ACCORDION — MOBILE vertical stack (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  .hero-hacc {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  /* Use height (not flex, not max-height) so animation is reliable */
  .hero-hacc-panel {
    flex: none !important;
    min-width: unset;
    width: 100%;
    height: 64px;
    min-height: unset;
    max-height: none;
    border-radius: 16px;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  }

  .hero-hacc-panel.active {
    height: 280px;
  }

  /* Label: horizontal in the collapsed bar, no rotation */
  .hacc-label {
    bottom: auto;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    opacity: 1;
    transition: opacity 0.15s ease;
  }
  .hero-hacc-panel.active .hacc-label { opacity: 0; }

  /* Body at bottom of expanded panel */
  .hacc-body {
    top: auto;
    bottom: 0;
    padding: 22px 20px 20px;
    transition: opacity 0.25s ease 0.18s, transform 0.25s ease 0.18s;
  }
  .hacc-title { font-size: 1.05rem; margin-bottom: 6px; }
  .hacc-sub   { font-size: 0.8rem;  margin-bottom: 14px; }

  .hero-hacc-panel.active .hacc-overlay::after { opacity: 1; }
  .hero-hacc-panel.active .hacc-body {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ============================================================
   CARD PRICE (service option cards)
   ============================================================ */
.card-price {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  padding-top: 4px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }
.gallery-section.gallery-empty .gallery-item { cursor: default; pointer-events: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-light);
  cursor: pointer;
}

.gallery-item.has-media { cursor: pointer; }
.gallery-item:not(.has-media) { cursor: default; pointer-events: none; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.gallery-img.loaded { opacity: 1; }
.gallery-item.has-media:hover .gallery-img { transform: scale(1.06); }

/* Placeholder tile shown when no image set */
.gallery-placeholder-tile {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    var(--gray-light) 0px,
    var(--gray-light) 10px,
    #EDEDEA 10px,
    #EDEDEA 20px
  );
}
.gallery-item.has-media .gallery-placeholder-tile { display: none; }

/* Overlay with expand icon */
.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,17,17,0.45);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  border-radius: var(--radius);
}
.gallery-item.has-media:hover .gallery-hover-overlay { opacity: 1; }

/* Video play badge */
.gallery-item.is-video .gallery-hover-overlay::before {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 0;
}
.gallery-item.is-video .gallery-hover-overlay svg {
  position: relative;
  z-index: 1;
  display: none;
}
.gallery-item.is-video .gallery-hover-overlay::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 4px;
  z-index: 1;
}
.gallery-item.is-video:not(.has-media) { display: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

.lb-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 48px;
}

.lb-media {
  max-width: min(90vw, 1200px);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-media img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
  display: block;
}
.lb-media iframe {
  width: min(90vw, 960px);
  height: min(54vw, 540px);
  border: none;
  border-radius: var(--radius);
  display: block;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,0.22); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }

.lb-count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* ============================================================
   GALLERY RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lb-wrap { padding: 20px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-trust { gap: 14px; }
  .trust-item { font-size: 0.78rem; }
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.sitemap-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.sitemap-group:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.07); }
.sitemap-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--gray-light);
}
.sitemap-group-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--black);
}
.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-links li {
  border-bottom: 1px solid var(--border);
}
.sitemap-links li:last-child { border-bottom: none; }
.sitemap-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  text-decoration: none;
  color: inherit;
  gap: 16px;
  transition: background var(--transition);
}
.sitemap-links a:hover { background: rgba(201,168,76,0.04); }
.sitemap-links a:hover .sitemap-link-title { color: var(--gold); }
.sitemap-link-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  transition: color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.sitemap-link-desc {
  font-size: 0.83rem;
  color: var(--gray-mid);
  text-align: right;
}
.sitemap-cta {
  text-align: center;
  padding: 48px 0 16px;
  border-top: 1px solid var(--border);
}
.sitemap-cta p {
  font-size: 1rem;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .sitemap-links a { flex-direction: column; align-items: flex-start; gap: 4px; }
  .sitemap-link-desc { text-align: left; }
  .sitemap-group-header { padding: 18px 20px; }
  .sitemap-links a { padding: 16px 20px; }
}

/* ============================================================
   SERVICE AREA — dynamic orb block
   ============================================================ */
.service-area-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-top: 16px;
}
.service-area-map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-orb {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  animation: area-pulse 3s ease-in-out infinite;
}
.area-orb-ring--1 { width: 100%; height: 100%; animation-delay: 0s; }
.area-orb-ring--2 { width: 72%; height: 72%; animation-delay: 0.6s; border-color: rgba(201,168,76,0.35); }
.area-orb-ring--3 { width: 44%; height: 44%; animation-delay: 1.2s; border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.04); }
@keyframes area-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.04); opacity: 1; }
}
.area-orb-center {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(201,168,76,0.15), 0 8px 32px rgba(201,168,76,0.3);
}
.area-orb-center svg { stroke: #fff; }
.area-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}
.area-pin--vancouver   { bottom: 10%; left: 18%; flex-direction: row-reverse; }
.area-pin--battleground{ top: 10%; left: 52%; }
.area-pin--woodland    { top: 8%;  left: 28%; flex-direction: row-reverse; }
.area-pin--lacenter    { top: 24%; left: 16%; flex-direction: row-reverse; }
.area-pin--camas       { top: 50%; left: 72%; }
.area-pin--washougal   { top: 64%; left: 68%; }
.area-pin--ridgefield  { top: 34%; left: 16%; flex-direction: row-reverse; }
.area-pin--kelso       { top: 4%;  left: 16%; flex-direction: row-reverse; }
.area-pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(201,168,76,0.5);
  flex-shrink: 0;
  animation: dot-blink 2s ease-in-out infinite;
}
.area-pin--battleground .area-pin-dot { animation-delay: 0.3s; }
.area-pin--woodland     .area-pin-dot { animation-delay: 0.6s; }
.area-pin--lacenter     .area-pin-dot { animation-delay: 0.9s; }
.area-pin--camas        .area-pin-dot { animation-delay: 1.2s; }
.area-pin--washougal    .area-pin-dot { animation-delay: 1.5s; }
.area-pin--portland     .area-pin-dot { animation-delay: 1.8s; }
.area-pin--ridgefield   .area-pin-dot { animation-delay: 0.5s; }
.area-pin--kelso        .area-pin-dot { animation-delay: 0.8s; }
@keyframes dot-blink {
  0%, 100% { box-shadow: 0 2px 8px rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 2px 20px rgba(201,168,76,0.9); }
}
.area-pin-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--black);
  background: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.area-radius-label {
  position: absolute;
  bottom: 6%;
  right: 8%;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}
.service-area-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.area-city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.area-city-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(201,168,76,0.4);
}
.area-city-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.area-city-badge--or { color: #5b8fc7; background: rgba(91,143,199,0.1); }
.area-city-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.area-city-card p  { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.6; margin-bottom: 14px; }
.area-city-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 0;
  margin: 0;
}
.area-city-list li {
  font-size: 0.78rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}
.area-city-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
.area-cta-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-mid);
  padding: 0 4px;
}
.area-cta-note svg { flex-shrink: 0; }
.area-cta-note a { color: var(--gold); font-weight: 600; text-decoration: none; }
.area-cta-note a:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .service-area-layout { grid-template-columns: 1fr; gap: 40px; }
  .area-orb { width: 280px; height: 280px; }
}
@media (max-width: 480px) {
  .area-orb { width: 280px; height: 280px; }
  .area-city-card { padding: 20px; }
}

/* ============================================================
   HOW IT WORKS — new card-based step design
   ============================================================ */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}
.hiw-step {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
/* Connector line drawn from icon center to next step */
.hiw-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px; /* half of 64px icon */
  left: calc(50% + 32px); /* right edge of icon */
  right: calc(-50% + 32px); /* left edge of next icon */
  height: 1.5px;
  background: linear-gradient(90deg, rgba(201,168,76,0.5) 0%, rgba(201,168,76,0.15) 100%);
  pointer-events: none;
}
.hiw-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.hiw-step:hover .hiw-icon-wrap {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.05);
}
.hiw-icon-wrap--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.hiw-icon-wrap--gold svg { stroke: #fff; }
.hiw-step:hover .hiw-icon-wrap--gold {
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
}
.hiw-step-num {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 8px;
  transition: opacity var(--transition);
}
.hiw-step:hover .hiw-step-num { opacity: 1; }
.hiw-step-num--gold { opacity: 1; }
.hiw-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.hiw-step p  { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.65; max-width: 190px; }
@media (max-width: 860px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .hiw-step:nth-child(2)::after { display: none; }
  .hiw-step:not(:last-child)::after {
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
  }
}
@media (max-width: 520px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 36px; }
  .hiw-step::after { display: none; }
}

/* ============================================================
   SHIMMER BUTTON — exact port of React ShimmerButton
   JS injects: .btn-spark-container > .btn-spark > .btn-spark-inner
               + .btn-highlight + .btn-backdrop
   ============================================================ */
@keyframes shimmer-slide {
  to { transform: translate(calc(100cqw - 100%), 0); }
}
@keyframes spin-around {
  0%         { transform: rotate(0deg); }
  15%, 35%   { transform: rotate(90deg); }
  65%, 85%   { transform: rotate(270deg); }
  100%       { transform: rotate(360deg); }
}

.btn-primary {
  --shimmer-bg: var(--gold);
  background: var(--shimmer-bg);
  border-width: 1px;
  border-color: transparent;
  color: var(--white);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.btn-primary:hover {
  --shimmer-bg: var(--black);
  background: var(--shimmer-bg);
  border-color: transparent;
  transform: translateY(-1px);
}
.btn-dark {
  --shimmer-bg: var(--black);
  background: var(--shimmer-bg);
  border: none;
  color: var(--white);
  position: relative;
  z-index: 0;
  overflow: hidden;
  clip-path: inset(0 round var(--pill));
}
.btn-dark:hover {
  --shimmer-bg: #222;
  background: var(--shimmer-bg);
  border-color: transparent;
  transform: translateY(-1px);
}
.btn-primary:active,
.btn-dark:active { transform: translateY(1px); }

/* Spark container — container-type:size lets children use cqh/cqw */
.btn-spark-container {
  position: absolute;
  inset: 0;
  overflow: visible;
  container-type: size;
  z-index: -30;
  filter: blur(2px);
  pointer-events: none;
}
/* Spark — square = button height, slides left↔right */
.btn-spark {
  position: absolute;
  inset: 0;
  height: 100cqh;
  aspect-ratio: 1;
  animation: shimmer-slide 3s ease-in-out infinite alternate;
}
/* Spark inner — large conic-gradient that spins */
.btn-spark-inner {
  position: absolute;
  inset: -100%;
  width: auto;
  background: conic-gradient(
    from 225deg,
    transparent 0,
    #ffffff 90deg,
    transparent 90deg
  );
  animation: spin-around 6s linear infinite;
}
/* Highlight — hidden */
.btn-highlight { display: none; }

/* Backdrop — covers interior, leaving border ring where spark shows */
.btn-backdrop {
  position: absolute;
  z-index: -20;
  inset: 2px;
  border-radius: var(--pill);
  background: var(--shimmer-bg, var(--gold));
  transition: background var(--transition);
  pointer-events: none;
}
/* Dark button: hide spark completely, no bleed */
.btn-dark .btn-spark-container { display: none; }
.btn-dark .btn-backdrop { inset: 0; }

/* ============================================================
   BUSINESS CARD SECTION
   ============================================================ */
.bc-section {
  background: #0c0e13;
  padding: 80px 0;
}

.bc-wrap {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.bc-card {
  position: relative;
  width: 100%;
  max-width: 780px;
  background: #0f1117;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.5),
    0 24px 64px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(201,168,76,0.12);
}

.bc-bar {
  grid-column: 1 / -1;
  height: 4px;
  background: linear-gradient(90deg, #a07830 0%, #C9A84C 40%, #e8c96a 60%, #C9A84C 100%);
}
.bc-bar--bottom {
  background: linear-gradient(90deg, #C9A84C 0%, #a07830 50%, #C9A84C 100%);
  opacity: 0.6;
}

.bc-left {
  grid-column: 1;
  grid-row: 2;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bc-divider {
  grid-column: 2;
  grid-row: 2;
  background: rgba(201,168,76,0.15);
  width: 1px;
}

.bc-right {
  grid-column: 3;
  grid-row: 2;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
}

/* Brand */
.bc-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 14px;
}
.bc-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #f0ece4;
  letter-spacing: 0.06em;
}
.bc-vip {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #C9A84C;
  letter-spacing: 0.14em;
  margin-top: -4px;
}

.bc-tagline {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(201,168,76,0.55);
  line-height: 1.5;
  margin-bottom: 18px;
}

.bc-rule {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,0.2);
  margin-bottom: 20px;
}

/* Contacts */
.bc-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.bc-contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bc-contacts svg {
  width: 14px;
  height: 14px;
  color: #C9A84C;
  flex-shrink: 0;
  opacity: 0.8;
}
.bc-contacts a,
.bc-contacts span {
  font-size: 0.82rem;
  color: rgba(240,236,228,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.bc-contacts a:hover { color: #C9A84C; }

/* Services */
.bc-services-head {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 16px;
}

.bc-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.bc-services li {
  font-size: 0.83rem;
  color: rgba(240,236,228,0.72);
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bc-services li::before {
  content: '';
  width: 3px;
  height: 16px;
  background: #C9A84C;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.7;
}
.bc-services li:last-child { border-bottom: none; }

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 11px 28px;
  background: #C9A84C;
  color: #0f1117;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.18s, transform 0.18s;
  align-self: flex-start;
}
.bc-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* Responsive */
@media (max-width: 620px) {
  .bc-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .bc-bar { grid-column: 1; }
  .bc-left { grid-column: 1; grid-row: 2; padding: 28px 24px 24px; }
  .bc-divider {
    grid-column: 1; grid-row: 3;
    width: 100%; height: 1px;
  }
  .bc-right { grid-column: 1; grid-row: 4; padding: 24px 24px 28px; }
  .bc-bar--bottom { grid-column: 1; grid-row: 5; }
  .bc-section { padding: 56px 0; }
}
