/* Fancy Pet Salon V3 -- Venus Gilded Paw */
/* Colors & Variables */
:root {
  --cream: #FFF8F5;
  --warm-white: #FFFDF7;
  --blush: #F2DFD0;
  --peach: #FFF1E7;
  --rose: #C5963A;
  --terracotta: #7C5800;
  --deep-brown: #231A11;
  --rich-brown: #4F4537;
  --soft-gold: #F2BE5E;
  --gold: #C5963A;
  --sage: #AA9B8E;
  --charcoal: #2A2118;
  --warm-gray: #817565;
  --light-warm: #F5F3EE;
  --lavender-mist: #FFDEA8;
  --accent-blue: #7C5800;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

img { max-width: 100%; height: auto; display: block; }

/* Hero/standalone images - constrain and polish */
.container > div > img,
.container > section > div > img,
[class*="-visual"] img,
[class*="-hero"] img:not(.nav-logo img) {
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(42,33,24,0.08);
  margin: 24px auto;
  display: block;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--cream);
  color: var(--deep-brown);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--deep-brown);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }

p { margin-bottom: 1rem; color: var(--rich-brown); }

a { color: var(--terracotta); text-decoration: none; transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
a:hover { color: var(--rose); }

em { font-style: italic; color: var(--terracotta); }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation - matches homepage exactly */
.v2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,248,245,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197,150,58,0.08);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2-nav.scrolled { box-shadow: 0 8px 40px rgba(42,33,24,0.06); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.v2-nav .container {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: #7C5800;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--terracotta); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--rich-brown);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--terracotta); }
.has-dropdown > a::after { content: '▾'; margin-left: 4px; font-size: 0.7em; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(42,33,24,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  list-style: none;
  padding: 12px 0;
  z-index: 1000;
  border: 1px solid rgba(197,150,58,0.06);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--deep-brown);
  font-size: 0.9rem;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
  margin: 0 8px;
}
.dropdown li a:hover {
  background: var(--peach);
  color: var(--terracotta);
}
.dropdown-wide {
  columns: 2;
  min-width: 400px;
}
.dropdown-wide li {
  break-inside: avoid;
}
.nav-cta {
  background: linear-gradient(135deg, #7C5800 0%, #C5963A 100%) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 16px rgba(124,88,0,0.15);
}
.nav-cta:hover { background: linear-gradient(135deg, #8A6400 0%, #D4A548 100%) !important; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,88,0,0.25); }
.lang-switch {
  background: var(--peach) !important;
  color: #7C5800 !important;
  padding: 8px 16px !important;
  border-radius: 20px;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 1px solid rgba(197,150,58,0.12) !important;
}



/* Page Header */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #FFF8F5 0%, #FFF1E7 50%, #F2DFD0 100%);
  text-align: center;
}

.page-hero .section-label {
  display: inline-block;
  background: rgba(255,241,231,0.8);
  padding: 8px 22px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7C5800;
  margin-bottom: 20px;
  border: 1px solid rgba(197,150,58,0.12);
  box-shadow: 0 2px 8px rgba(42,33,24,0.04);
}

.page-hero h1 {
  max-width: 800px;
  margin: 0 auto 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Sections */
.content-section {
  padding: 80px 0;
}

.content-section.alt-bg {
  background: var(--warm-white);
}

.content-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(42,33,24,0.07);
  margin: 24px 0;
}

.content-wrap h2 {
  margin-top: 48px;
  margin-bottom: 20px;
}

.content-wrap h2:first-child {
  margin-top: 0;
}

.content-wrap p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.content-wrap ul, .content-wrap ol {
  margin: 20px 0 20px 24px;
}

.content-wrap li {
  margin-bottom: 12px;
  color: var(--rich-brown);
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, #FFF1E7 0%, #FFDEA8 30%, #F2DFD0 100%);
  border-radius: 16px;
  padding: 32px 32px;
  margin: 32px 0;
  border: 1px solid rgba(197,150,58,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 24px rgba(42,33,24,0.05);
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--deep-brown);
}

.info-box p {
  margin-bottom: 0;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(197,150,58,0.06);
  box-shadow: 0 4px 20px rgba(42,33,24,0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(42,33,24,0.08), 0 8px 16px rgba(42,33,24,0.04);
}

.feature-card:active {
  transform: translateY(-2px) scale(0.98);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 0;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #7C5800 0%, #C5963A 100%);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(124,88,0,0.12);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8A6400 0%, #D4A548 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(124,88,0,0.22);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--deep-brown);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #C5963A;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #7C5800 0%, #C5963A 100%);
  border-color: #C5963A;
  color: #fff;
  box-shadow: 0 8px 24px rgba(124,88,0,0.15);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--peach) 50%, var(--lavender-mist) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.v2-footer {
  background: var(--charcoal);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col a:hover { color: #F2BE5E; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 12px;
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(42,33,24,0.04);
  transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  box-shadow: 0 8px 28px rgba(42,33,24,0.07);
}

.faq-question {
  padding: 22px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #C5963A;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
  font-weight: 600;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  padding: 0 28px 24px;
  max-height: 500px;
}

/* Tables */
.v2-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(42,33,24,0.06);
  margin: 32px 0;
}

.v2-table thead {
  background: linear-gradient(135deg, #7C5800, #C5963A);
  color: #fff;
}

.v2-table th {
  padding: 18px 24px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.v2-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(197,150,58,0.06);
  font-size: 0.95rem;
}

.v2-table tbody tr:nth-child(odd) {
  background: rgba(255,248,245,0.5);
}

.v2-table tbody tr:hover {
  background: rgba(255,241,231,0.5);
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-init {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-init.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Language Switcher */
.lang-switch {
  background: var(--peach) !important;
  color: #7C5800 !important;
  padding: 8px 16px !important;
  border-radius: 20px;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 1px solid rgba(197,150,58,0.12) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-switch:hover {
  background: var(--blush) !important;
  box-shadow: 0 4px 12px rgba(42,33,24,0.06) !important;
}

@media (max-width: 900px) {
  .dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(255,241,231,0.5);
    border-radius: 12px;
    margin-top: 8px;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    border: none;
  }
  .has-dropdown.dropdown-open .dropdown {
    visibility: visible;
    max-height: 800px;
  }
  .dropdown-wide {
    columns: 1;
    min-width: 0;
  }
  .has-dropdown > a {
    padding: 14px 0;
    display: block;
  }
  .has-dropdown > a::after {
    float: right;
  }
  .dropdown li a {
    padding: 14px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(197,150,58,0.06);
    margin: 0;
    border-radius: 0;
  }
  .dropdown li:last-child a {
    border-bottom: none;
  }
}

/* Gallery Styles */
.gallery-section {
  padding: 3rem 0;
}
.gallery-section:nth-child(even) {
  background: var(--cream);
}
.gallery-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--deep-brown);
  text-align: center;
  margin-bottom: 0.5rem;
}
.gallery-section .section-desc {
  text-align: center;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.gallery-grid.single {
  max-width: 600px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(42,33,24,0.07);
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(197,150,58,0.06);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(42,33,24,0.1), 0 0 0 1px rgba(197,150,58,0.12);
}
.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
}
.gallery-item .caption {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  color: var(--deep-brown);
}
.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}
.gallery-cta a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-cta a:hover {
  color: var(--rose);
}

/* Reviews Page */
.reviews-header {
  text-align: center;
  margin-bottom: 32px;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.rating-stars {
  font-size: 1.8rem;
  color: #F2BE5E;
  letter-spacing: 2px;
}

.rating-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--deep-brown);
}

.rating-text strong {
  font-size: 1.4rem;
}

.reviews-header > p {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

.review-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.review-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid transparent;
}

.review-links a.google {
  background: #fff;
  color: var(--deep-brown);
  border-color: rgba(197,150,58,0.12);
  box-shadow: 0 4px 16px rgba(42,33,24,0.04);
}

.review-links a.google:hover {
  border-color: var(--soft-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,150,58,0.15);
}

.review-links a.facebook {
  background: #fff;
  color: var(--deep-brown);
  border-color: rgba(197,150,58,0.12);
  box-shadow: 0 4px 16px rgba(42,33,24,0.04);
}

.review-links a.facebook:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,88,0,0.15);
}

.review-links a.leave {
  background: linear-gradient(135deg, #7C5800 0%, #C5963A 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(124,88,0,0.12);
}

.review-links a.leave:hover {
  background: linear-gradient(135deg, #8A6400 0%, #D4A548 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,88,0,0.22);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: none;
  box-shadow: 0 8px 28px rgba(42,33,24,0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(42,33,24,0.08), 0 4px 12px rgba(42,33,24,0.04);
}

.review-card .stars {
  color: #F2BE5E;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--rich-brown);
  flex: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card .author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #4F4537;
  margin-bottom: 4px;
}

.review-card .source {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--warm-gray);
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-links {
    flex-direction: column;
    align-items: center;
  }
  .review-links a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* HAMBURGER FIX - at end to override everything */
.mobile-toggle {
  display: none !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 10px !important;
  flex-shrink: 0 !important;
  width: 45px !important;
  min-width: 45px !important;
}
.mobile-toggle div {
  width: 25px !important;
  height: 3px !important;
  background-color: #231A11 !important;
  margin: 5px 0 !important;
  display: block !important;
  border-radius: 2px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .mobile-toggle {
    display: block !important;
    flex-shrink: 0 !important;
    z-index: 1000 !important;
  }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFF8F5;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 20px 40px -10px rgba(42,33,24,0.1);
    z-index: 999;
    list-style: none;
    border-bottom: 1px solid rgba(197,150,58,0.08);
  }
  .nav-links.open > li {
    position: relative;
  }
  .nav-links.open .dropdown {
    display: none;
    position: static;
    background: rgba(255,241,231,0.5);
    box-shadow: none;
    padding: 8px 0 8px 16px;
    margin-top: 8px;
    border-radius: 12px;
  }
  .nav-links.open .has-dropdown.dropdown-open .dropdown {
    display: block;
  }
  .has-dropdown > a::after {
    content: ' ▾';
  }
}

/* CTA section uses light bg — buttons use default dark text styling */
}

/* Gilded Divider Utility */
.gilded-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #C5963A, transparent);
  margin: 40px 0;
}
