/* =========================================================
   CSS CUSTOM PROPERTIES — matching Noa Spa luxury palette
   ========================================================= */
:root {
  --bg:          #faf7f2;
  --fg:          #3e2c1e;
  --primary:     #b8870b;
  --primary-h:   #9a7208;
  --primary-lt:  #fdf3e0;
  --secondary:   #7d8c52;
  --muted:       #edeae3;
  --muted-fg:    #7b6a59;
  --border:      #e3ded6;
  --card:        #ffffff;
  --white:       #ffffff;
  --wa:          #25D366;
  --wa-h:        #20bc5a;
  --radius:      0.75rem;
  --shadow:      0 4px 24px rgba(62,44,30,0.08);
  --shadow-lg:   0 8px 48px rgba(62,44,30,0.12);
  --transition:  all 0.3s ease;
  --container:   1280px;
  --font-body:   'Lato', sans-serif;
  --font-display:'Playfair Display', serif;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
}
input, textarea, select, button { font-family: inherit; }
::selection { background: rgba(184,135,11,0.2); color: var(--primary); }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
@media(min-width:640px)  { .container { padding: 0 1.5rem; } }
@media(min-width:1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: calc(var(--radius) + 4px); }
.rounded-xl { border-radius: calc(var(--radius) + 8px); }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.1em; }
.leading-relaxed { line-height: 1.75; }
.opacity-80 { opacity: 0.8; }
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shrink-0 { flex-shrink: 0; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-32 { padding-bottom: 8rem; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.font-display { font-family: var(--font-display); }
.text-xs  { font-size: 0.75rem; }
.text-sm  { font-size: 0.875rem; }
.text-base{ font-size: 1rem; }
.text-lg  { font-size: 1.125rem; }
.text-xl  { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted-fg); }
.text-fg { color: var(--fg); }

@media(min-width:768px) {
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-2xl { font-size: 1.5rem; }
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: rgba(62,44,30,0.85);
  backdrop-filter: blur(10px);
}
.header.scrolled {
  background: rgb(166 156 138 / 95%);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(62,44,30,0.08);
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  z-index: 50;
}
.logo-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.logo:hover .logo-icon { transform: scale(1.05); }
.logo-icon span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  transition: color 0.3s;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-top: 0.2rem;
}
.desktop-nav { display: none; }
@media(min-width:1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .desktop-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
  }
  .desktop-nav a:hover,
  .desktop-nav a.active { color: var(--white); }
  .nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
  }
  .nav-phone:hover { background: var(--primary); color: var(--white); }
  .nav-book {
    background: var(--primary);
    color: var(--white);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--transition);
  }
  .nav-book:hover { background: var(--primary-h); }
}
.menu-toggle {
  display: flex;
  align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background: none; border: none; cursor: pointer;
  z-index: 50;
}
@media(min-width:1024px) { .menu-toggle { display: none; } }
.menu-icon { width: 1.5rem; height: 1.5rem; }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 50;
  padding: 6rem 1.5rem 2rem;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: 0.5rem;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(227,222,214,0.5);
  color: var(--fg);
  transition: color 0.2s;
}
.mobile-menu a.therapy-link {
  font-size: 1.2rem;
  color: rgba(62,44,30,0.8);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); font-style: italic; }
.mobile-menu-cta { margin-top: 2rem; }
.mobile-menu-cta a {
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--border);
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center; gap: 0.75rem;
  color: var(--fg);
  margin-bottom: 0;
  border-bottom: none;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-radius: 9999px;
}
.btn-primary:hover { background: var(--primary-h); }
.btn-wa {
  background: var(--wa);
  color: var(--white);
  border-radius: 9999px;
}
.btn-wa:hover { background: var(--wa-h); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(62,44,30,0.2);
  color: var(--fg);
  border-radius: 9999px;
}
.btn-outline:hover { background: var(--muted); }
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 9999px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-md { padding: 0.75rem 1.75rem; font-size: 0.9375rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; height: 3.5rem; }
.btn-xl { padding: 1.125rem 3rem; font-size: 1.125rem; height: 3.75rem; }
.btn-full { width: 100%; }
.shadow-btn { box-shadow: 0 4px 16px rgba(184,135,11,0.25); }
.shadow-btn-wa { box-shadow: 0 4px 16px rgba(37,211,102,0.25); }

/* =========================================================
   CARD
   ========================================================= */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body { padding: 2rem; }
.card-sm .card-body { padding: 1.5rem; }

/* =========================================================
   BADGE
   ========================================================= */
.badge {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-primary { background: rgba(184,135,11,0.12); color: var(--primary); }
.badge-white { background: rgba(255,255,255,0.9); color: var(--fg); }

/* =========================================================
   STAR RATING
   ========================================================= */
.stars { display: inline-flex; gap: 2px; }
.stars span { color: #f59e0b; font-size: 1rem; }

/* =========================================================
   STICKY BOTTOM BAR (mobile only)
   ========================================================= */
.sticky-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(62,44,30,0.1);
  height: 4rem;
}
@media(min-width:1024px) { .sticky-bottom { display: none; } }
.sticky-bottom a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg);
  transition: color 0.2s;
  text-decoration: none;
}
.sticky-bottom a:hover { color: var(--primary); }
.sticky-bottom .sbar-wa {
  background: var(--wa);
  color: var(--white);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  flex: 1.4;
  font-size: 0.7rem;
}
.sticky-bottom .sbar-wa:hover { background: var(--wa-h); color: var(--white); }
.sticky-bottom svg { width: 1.25rem; height: 1.25rem; }
.sbar-label { line-height: 1; }

/* =========================================================
   FLOATING DESKTOP BUTTONS (right side)
   ========================================================= */
.float-btns {
  display: none;
}
@media(min-width:1024px) {
  .float-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 40;
  }
  .float-btn {
    display: flex;
    align-items: center; justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
  }
  .float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
  .float-btn-wa { background: var(--wa); color: var(--white); }
  .float-btn-call { background: var(--white); color: var(--fg); border: 1.5px solid var(--border); }
  .float-btn svg { width: 1rem; height: 1rem; }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(62,44,30,0.9) 0%, rgba(62,44,30,0.7) 50%, rgba(62,44,30,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 42rem;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
@media(min-width:768px) { .hero-title { font-size: 4.5rem; } }
.hero-title .accent { color: var(--primary); font-style: italic; font-weight: 400; }
.hero-desc {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}
.hero-ctas { display: flex; flex-direction: column; gap: 1rem; }
@media(min-width:480px) { .hero-ctas { flex-direction: row; flex-wrap: wrap; } }
.hero-meta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}
.meta-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--fg);
  color: var(--white);
  padding: 1.25rem 0;
}
.stats-bar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 3rem; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.75rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; }

/* =========================================================
   CONVERSION BLOCK
   ========================================================= */
.conv-dark { background: var(--fg); color: var(--white); }
.conv-gold  { background: var(--primary); color: var(--white); }
.conv-light { background: var(--muted); color: var(--fg); }
.conv-block { padding: 3rem 1rem; text-align: center; }
.conv-urgency {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.conv-light .conv-urgency { background: rgba(62,44,30,0.08); }
.conv-headline {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media(min-width:768px) { .conv-headline { font-size: 2.5rem; } }
.conv-sub { font-size: 1rem; opacity: 0.8; margin-bottom: 2rem; }
.conv-light .conv-sub { opacity: 0.7; color: var(--muted-fg); }
.conv-btns { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media(min-width:640px) { .conv-btns { flex-direction: row; justify-content: center; } }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width:640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,135,11,0.2);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-cat {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg);
}
.service-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-cat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.service-card:hover .service-card-title { color: var(--primary); }
.service-card-desc { color: var(--muted-fg); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.service-duration {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  background: var(--muted);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}
.service-duration svg { width: 1.125rem; height: 1.125rem; color: var(--primary); flex-shrink: 0; }
.service-card-actions { display: flex; gap: 0.75rem; margin-top: auto; }
.service-card-actions .btn-details {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
  border: 1.5px solid rgba(184,135,11,0.3);
  border-radius: 0.75rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  background: transparent;
}
.service-card:hover .service-card-actions .btn-details { background: rgba(184,135,11,0.05); }
.service-card-actions .btn-book-now {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.service-card-actions .btn-book-now:hover { background: var(--primary-h); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-steps { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width:768px) { .how-steps { grid-template-columns: repeat(4, 1fr); } }
.how-step { text-align: center; }
.how-step-num {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--primary-lt);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.how-step-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.how-step-desc { color: var(--muted-fg); font-size: 0.9375rem; line-height: 1.6; }

/* =========================================================
   REVIEW CARDS
   ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media(min-width:640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
}
.review-stars { color: #f59e0b; font-size: 0.9375rem; }
.review-text { color: var(--muted-fg); font-size: 0.9375rem; line-height: 1.7; flex: 1; }
.review-author { display: flex; justify-content: space-between; align-items: center; }
.review-name { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; }
.review-date { font-size: 0.8125rem; color: var(--muted-fg); }
.review-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9375rem;
}
.av-red    { background: #fee2e2; color: #991b1b; }
.av-blue   { background: #dbeafe; color: #1e40af; }
.av-green  { background: #d1fae5; color: #065f46; }
.av-yellow { background: #fef3c7; color: #92400e; }
.av-purple { background: #ede9fe; color: #4c1d95; }
.av-pink   { background: #fce7f3; color: #831843; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-container {
  background: var(--white);
  border: 1px solid rgba(227,222,214,0.5);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.faq-item { border-bottom: 1px solid rgba(227,222,214,0.5); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question.open { color: var(--primary); }
.faq-icon {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1rem; font-weight: 700; line-height: 1;
}
.faq-question.open .faq-icon { background: var(--primary-lt); color: var(--primary); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0.5rem 1.25rem;
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */
.service-top-bar {
  background: var(--fg);
  color: var(--white);
  padding: 0.75rem 0;
}
.service-top-bar .container {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 0.75rem;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
}
@media(min-width:1024px) {
  .service-hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
}
.service-img-wrap { position: relative; }
.service-img-main {
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.service-img-main img { width: 100%; height: 100%; object-fit: cover; }
.service-img-deco {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 66%; height: 66%;
  background: rgba(184,135,11,0.1);
  border-radius: 1.5rem;
  z-index: 0;
  display: none;
}
@media(min-width:768px) { .service-img-deco { display: block; } }
.service-book-card {
  position: absolute;
  bottom: 1.5rem; left: 1rem; right: 1rem;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(62,44,30,0.15);
  border: 1px solid rgba(255,255,255,0.8);
}
@media(min-width:480px) { .service-book-card { left: 1.5rem; right: auto; max-width: 13rem; } }
.service-book-card .stars { margin-bottom: 0.25rem; }
.service-book-card .stars span { font-size: 0.875rem; }
.service-book-card p { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.75rem; }
.service-content { display: flex; flex-direction: column; }
.service-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.5rem;
}
.service-breadcrumb a { transition: color 0.2s; }
.service-breadcrumb a:hover { color: var(--primary); }
.service-breadcrumb .sep { color: var(--border); }
.service-category-badge {
  display: inline-block;
  background: var(--muted); border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: 1rem;
}
.service-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.15; }
@media(min-width:768px) { .service-title { font-size: 3.25rem; } }
.service-duration-row {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 1.0625rem; font-weight: 500;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 2rem;
}
.service-duration-row svg { color: var(--secondary); width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.service-desc { color: var(--muted-fg); line-height: 1.75; font-size: 1.0625rem; margin-bottom: 2rem; }
.benefits-title { font-size: 1.1875rem; font-weight: 700; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; margin-bottom: 1.25rem; }
.benefits-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.benefit-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--primary); margin-top: 0.1rem; }
.benefit-text { font-size: 1rem; color: var(--fg); }
.inline-cta-box {
  background: rgba(184,135,11,0.06);
  border: 1px solid rgba(184,135,11,0.15);
  border-radius: 1rem;
  padding: 1.25rem;
}
.inline-cta-box p { font-weight: 600; margin-bottom: 0.75rem; }
.inline-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; }
@media(min-width:480px) { .inline-cta-btns { flex-direction: row; } }
.inline-cta-dir {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 2px solid rgba(62,44,30,0.15);
  border-radius: 0.875rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem; font-weight: 700;
  margin-top: 0.5rem;
  transition: var(--transition);
  text-decoration: none; color: var(--fg);
}
.inline-cta-dir:hover { background: var(--muted); }
.who-for-section { background: rgba(237,234,227,0.3); padding: 3rem 0; }
.who-for-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.who-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.proof-strip { background: rgba(237,234,227,0.2); padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.proof-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.proof-label { font-size: 0.8125rem; color: var(--muted-fg); font-weight: 500; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gallery-masonry {
  columns: 1;
  gap: 1.5rem;
}
@media(min-width:640px) { .gallery-masonry { columns: 2; } }
@media(min-width:1024px) { .gallery-masonry { columns: 3; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; border-radius: 1rem; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 1rem;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption-title { color: var(--white); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.gallery-caption-cat { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.gallery-item[data-cat] { transition: opacity 0.3s, transform 0.3s; }
.gallery-item.hidden { display: none; }

/* =========================================================
   LOCATION PAGE
   ========================================================= */
.map-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
@media(min-width:1024px) { .map-grid { grid-template-columns: 1fr 1fr; } }
.map-frame { height: 400px; position: relative; }
@media(min-width:1024px) { .map-frame { height: auto; min-height: 500px; } }
.map-frame iframe { width: 100%; height: 100%; position: absolute; inset: 0; }
.map-info { padding: 2.5rem; background: var(--white); }
@media(min-width:1024px) { .map-info { padding: 3rem 4rem; } }
.map-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.map-info-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(184,135,11,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.map-info-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.map-info-title { font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.25rem; }
.map-info-text { color: var(--muted-fg); font-size: 0.9375rem; }
.map-info-text a { color: var(--primary); font-weight: 700; transition: color 0.2s; }
.map-info-text a:hover { color: var(--primary-h); }
.area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.area-chip {
  background: rgba(184,135,11,0.1);
  color: var(--primary);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media(min-width:1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(184,135,11,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.contact-info-title { font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.25rem; }
.contact-info-sub { color: var(--muted-fg); font-size: 0.875rem; margin-bottom: 0.5rem; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media(min-width:640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--fg); }
.form-input, .form-textarea, .form-select {
  height: 3rem;
  padding: 0 1rem;
  border: 1.5px solid var(--border);
  border-radius: 0.625rem;
  background: rgba(237,234,227,0.3);
  font-size: 0.9375rem;
  color: var(--fg);
  transition: border-color 0.2s;
  width: 100%;
  font-family: var(--font-body);
}
.form-textarea { height: 7.5rem; padding: 0.75rem 1rem; resize: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.form-submit {
  width: 100%; height: 3.5rem;
  background: var(--primary);
  color: var(--white);
  border: none; border-radius: 0.75rem;
  font-size: 1.0625rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-submit:hover { background: var(--primary-h); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #065f46;
  background: #d1fae5;
  border-radius: 0.875rem;
  font-weight: 600;
  font-size: 1.0625rem;
}

/* =========================================================
   REVIEWS PAGE
   ========================================================= */
.reviews-hero { background: var(--fg); color: var(--white); padding: 5rem 0 6rem; position: relative; overflow: hidden; }
.reviews-hero::after {
  content: '';
  position: absolute;
  top: -5rem; right: -5rem;
  width: 16rem; height: 16rem;
  border-radius: 50%;
  background: rgba(184,135,11,0.2);
  filter: blur(48px);
}
.rating-breakdown { background: rgba(237,234,227,0.3); border: 1px solid var(--border); border-radius: 1.5rem; padding: 2rem; }
.rating-bar-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.rating-bar-label { width: 4rem; font-size: 0.875rem; color: #f59e0b; font-weight: 500; }
.rating-bar-track { flex: 1; background: var(--muted); border-radius: 9999px; height: 0.75rem; overflow: hidden; }
.rating-bar-fill { height: 100%; background: #f59e0b; border-radius: 9999px; }
.rating-bar-pct { width: 2.5rem; font-size: 0.8125rem; font-weight: 600; text-align: right; }
.reviews-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media(min-width:1024px) { .reviews-detail-grid { grid-template-columns: 1fr 2fr; } }

/* =========================================================
   PAGE HERO DARK
   ========================================================= */
.page-hero-dark {
  background: var(--fg);
  color: var(--white);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero-dark .container { text-align: center; position: relative; z-index: 1; }
.page-hero-dark h1 { color: var(--white); font-size: 2.5rem; }
@media(min-width:768px) { .page-hero-dark h1 { font-size: 4rem; } }
.page-hero-dark p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 42rem; margin: 1rem auto 0; }

/* =========================================================
   ADS LANDING PAGE
   ========================================================= */
.ads-hero {
  background: var(--fg);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.ads-hero-overlay { position: absolute; inset: 0; z-index: 0; }
.ads-hero-overlay img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.ads-content { position: relative; z-index: 10; color: var(--white); text-align: center; padding: 5rem 1rem; }
.ads-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border-radius: 9999px;
  padding: 0.375rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--fg);
  color: var(--white);
  padding: 4rem 0 6rem;
}
@media(min-width:768px) { .footer { padding: 4rem 0 2.5rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media(min-width:640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-brand-desc { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.75; margin: 1.5rem 0; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  color: var(--white);
}
.footer-social a:hover { background: var(--primary); }
.footer-social a svg { width: 1.25rem; height: 1.25rem; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: inline-block;
  color: var(--white);
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.375rem;
}
.footer-links a::before { content: '›'; color: var(--primary); font-weight: 700; }
.footer-links a:hover { color: var(--primary); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.footer-contact li svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact a:hover { color: var(--white); }
.footer-directions {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-directions:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  align-items: center; text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
}
@media(min-width:768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* =========================================================
   RESPONSIVE GRID HELPERS
   ========================================================= */
@media(min-width:640px) { .sm-flex-row { flex-direction: row; } }
@media(min-width:768px) {
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-col-3  { grid-column: span 3; }
}
@media(min-width:1024px) {
  .lg-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-hidden { display: none; }
  .lg-block  { display: block; }
}

/* =========================================================
   MISC
   ========================================================= */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-pad { padding-top: 5rem; }
.bg-muted-light { background: rgba(237,234,227,0.4); }
.bg-white { background: var(--white); }
.bg-dark  { background: var(--fg); }
.bg-primary-soft { background: rgba(184,135,11,0.06); }

/* Scroll to top button */
.scroll-top {
  position: fixed; bottom: 5.5rem; right: 1rem; z-index: 39;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--fg); color: var(--white);
  border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--primary); transform: translateY(-2px); }
@media(min-width:1024px) { .scroll-top { bottom: 7.5rem; right: 1.5rem; } }

/* =========================================================
   DESKTOP DROPDOWN NAV
   ========================================================= */
.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}
/* Invisible bridge to prevent pointer from losing hover across the margin gap */
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 2rem;
  z-index: 10;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  border-radius: var(--radius);
  padding: 1.5rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  gap: 2.5rem;
  margin-top: 1.25rem;
  border: 1px solid var(--border);
}
/* Small arrow for dropdown */
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent var(--white) transparent;
}
/* Dropdown arrow border overlay */
.dropdown-content::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 9px 9px 9px;
  border-style: solid;
  border-color: transparent transparent var(--border) transparent;
  z-index: -1;
}
.dropdown:hover .dropdown-content {
  display: flex !important;
}
.dropdown-col {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}
.dropdown-col .nav-category {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
}
.dropdown-content a {
  color: var(--fg) !important;
  padding: 0.35rem 0 !important;
  text-decoration: none;
  font-weight: 500 !important;
  font-size: 0.875rem;
  transition: color 0.2s;
  display: inline-block;
}
.dropdown-content a:hover {
  color: var(--primary) !important;
  background: transparent !important;
}

/* =========================================================
   MOBILE ACCORDION NAV
   ========================================================= */
.mobile-accordion {
  border-bottom: 1px solid rgba(227,222,214,0.5);
}
.mobile-accordion-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg);
  text-transform: none;
  font-weight: normal;
}
.mobile-accordion > summary {
  list-style: none; /* Hide default arrow */
  cursor: pointer;
  padding: 0.75rem 0;
  margin: 0;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.mobile-accordion > summary::-webkit-details-marker {
  display: none;
}
.mobile-accordion[open] > summary {
  color: var(--primary);
}
.mobile-accordion-content {
  padding-left: 0.5rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.mobile-accordion-content > a {
  border-bottom: none !important;
  padding: 0.4rem 0 0.4rem 0.5rem !important;
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  color: var(--fg) !important;
  opacity: 0.85;
}
.mobile-accordion-content > a:hover {
  opacity: 1;
  color: var(--primary) !important;
}
.acc-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}
.mobile-accordion[open] .acc-icon {
  transform: rotate(45deg);
}