/*
 * B I L A A L   S A D E E R
 * Premium Wedding Photographer · Mauritius
 * Design System v2 — 2026
 * Ultra-Minimalist Editorial · Mobile First
 */

/* ── DESIGN TOKENS ── */
:root {
  --color-bg:          #ffffff;
  --color-surface:     #fafaf8;
  --color-text:        #0d0d0d;
  --color-text-2:      #555555;
  --color-text-muted:  #767676;
  --color-border:      #e8e8e8;
  --color-border-2:    #c8c8c8;
  --color-accent:      #0e6c65;
  --color-gold:        #b8966a;
  --color-white:       #ffffff;
  --color-black:       #0d0d0d;

  /* Legacy aliases — kept for backward compat with hotel pages */
  --text-color:        #0d0d0d;
  --bg-color:          #ffffff;
  --border-color:      #e8e8e8;
  --accent-color:      #0d0d0d;
  --hover-bg:          #fafaf8;
  --transition:        all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:  cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 3px;
  --radius-md: 8px;

  --shadow-card:     0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-elevated: 0 8px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0;
}

h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; }

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
  contain: layout style;
}

/* ── NAVIGATION ── */
.nav-header {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: fixed;           /* fixed = always visible, never collapses on mobile */
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;       /* solid white — no transparency issues on any browser */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;             /* above all page content; lightbox (9000) correctly sits above nav when open */
  border-bottom: 1px solid var(--color-border, #e8e8e8);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

/* Compensate for fixed nav — push page content below it */
body { padding-top: 64px; }

.logo {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #0d0d0d;            /* explicit dark — no CSS var dependency */
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
  /* removed min-height: 64px — caused height conflict on mobile */
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: opacity 200ms var(--ease-std);
}

.nav-menu a:hover { opacity: 0.45; }

.dropdown { position: relative; display: inline-block; }

.dropdown-content {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  min-width: 190px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms var(--ease-std), transform 250ms var(--ease-expo), visibility 200ms;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 150ms;
  opacity: 1;
}

.dropdown-content a:hover { background: var(--color-surface); opacity: 1; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-text);
  line-height: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

/* ── HERO — Light Animated (home / about / contact / regions) ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 64px;
  overflow: hidden;
}

/* Animated ocean-ambient gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 80% 60% at 15% 90%, rgba(14,108,101,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 85% 10%, rgba(184,150,106,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 55% 55%, rgba(14,108,101,0.03) 0%, transparent 65%);
  animation: ocean-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes ocean-drift {
  0%   { opacity: 0.5; transform: scale(1)    translateY(0);     }
  50%  { opacity: 1;   transform: scale(1.06) translateY(-15px); }
  100% { opacity: 0.65;transform: scale(1.03) translateY(8px);   }
}

/* Content sits above animated gradient */
.hero > .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--color-text);
}

.hero .h2-Header {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-2);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.hero-locations {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 8px 0 0;
}

.micro-copy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  letter-spacing: 0.03em;
  display: block;
}

/* Staggered entrance animation for hero children */
.hero-animate > * {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-reveal 0.9s var(--ease-expo) forwards;
}
.hero-animate > *:nth-child(1) { animation-delay: 0.05s; }
.hero-animate > *:nth-child(2) { animation-delay: 0.18s; }
.hero-animate > *:nth-child(3) { animation-delay: 0.30s; }
.hero-animate > *:nth-child(4) { animation-delay: 0.43s; }
.hero-animate > *:nth-child(5) { animation-delay: 0.55s; }
.hero-animate > *:nth-child(6) { animation-delay: 0.67s; }

@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; opacity: 0.5; }
  .hero-animate > * { animation: none; opacity: 1; transform: none; }
  @keyframes wa-pulse { from, to { box-shadow: 0 4px 20px rgba(37,211,102,0.45); } }
}

/* ── HERO OVERLAY SYSTEM (image-based hero — hotel pages) ── */
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.20) 52%, rgba(0,0,0,0.04) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: 3rem;
}

.hero__content h1,
.hero__content .h2-Header { color: #ffffff; }
.hero__content h1 { text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero__content .h2-Header { opacity: 0.88; }
.hero__content .cta { background: #ffffff; color: #000000; border-color: #ffffff; }
.hero__content .cta:hover { background: transparent; color: #ffffff; border-color: #ffffff; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 14px 40px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs a { text-decoration: none; color: var(--color-text-muted); transition: color 200ms; }
.breadcrumbs a:hover { color: var(--color-text); }
.breadcrumbs span { margin: 0 8px; opacity: 0.35; }

/* ── SECTIONS ── */
.section {
  margin: 100px 0;
  text-align: center;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section p {
  max-width: 680px;
  margin: 12px auto;
  font-size: 1rem;
  color: var(--color-text-2);
  line-height: 1.75;
}

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8b6914;
  margin-bottom: 14px;
}

/* ── BUTTONS / CTAs ── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin: 10px 6px;
  padding: 0 32px;
  height: 52px;

  border: 1.5px solid var(--color-black);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-black);
  text-decoration: none;
  cursor: pointer;

  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  min-width: 200px;

  transition: background 230ms var(--ease-std), color 230ms var(--ease-std), border-color 230ms var(--ease-std), transform 150ms;
}

.cta:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-1px);
}

.cta:active { transform: translateY(0); }

/* WhatsApp CTA — teal, primary conversion action */
.cta--whatsapp {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

.cta--whatsapp:hover {
  background: #0a5550;
  border-color: #0a5550;
  color: #ffffff;
}

/* Primary filled black */
.cta--primary {
  background: var(--color-black);
  color: var(--color-white);
}

.cta--primary:hover {
  background: #333333;
  border-color: #333333;
  color: var(--color-white);
}

/* PayPal */
.cta--paypal {
  background: #003087;
  color: #fff;
  border-color: #003087;
}
.cta--paypal:hover {
  background: #002060;
  border-color: #002060;
  color: #fff;
}

/* PeachPayments */
.cta--peach {
  background: #00b0a0;
  color: #fff;
  border-color: #00b0a0;
}
.cta--peach:hover {
  background: #009688;
  border-color: #009688;
  color: #fff;
}
.cta--peach[data-pending] {
  opacity: 0.52;
  cursor: not-allowed;
  pointer-events: none;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-note {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-top: 10px;
  text-align: center;
}

/* ── TRUST ROW ── */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-2);
}

.trust-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ── PORTFOLIO GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.image-wrapper {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f0f0ee;
  border-radius: var(--radius-sm);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-expo);
}

.image-wrapper:hover img { transform: scale(1.06); }

/* ── TWO-COLUMN GRID ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}

/* ── FACTS LIST ── */
.facts-list { list-style: none; padding: 0; margin: 0 0 28px; }

.facts-list dt {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: 18px;
}

.facts-list dd { margin: 4px 0 0; font-weight: 600; font-size: 0.875rem; }

/* ── FEATURE GRID ── */
.feature-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 200ms, box-shadow 200ms;
  text-align: left;
}

.feature-item:hover {
  border-color: var(--color-border-2);
  box-shadow: var(--shadow-card);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.feature-item p { font-size: 0.8125rem; color: var(--color-text-2); margin: 0; line-height: 1.65; }

/* ── PRICING CARD ── */
.pricing-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 560px;
  margin: 40px auto;
  text-align: left;
}

.pricing-from {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.pricing-tiers { list-style: none; padding: 0; margin: 0 0 24px; border-top: 1px solid var(--color-border); }

.pricing-tiers li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-2);
}

.tier-price { font-weight: 600; font-size: 1rem; color: var(--color-text); }

.pricing-includes { list-style: none; padding: 0; margin: 0 0 28px; }

.pricing-includes li {
  padding: 7px 0 7px 24px;
  font-size: 0.8125rem;
  color: var(--color-text-2);
  position: relative;
  line-height: 1.5;
}

.pricing-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }

.pricing-note { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 20px; text-align: center; }
.price-currency { font-size: 1.5rem; }

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--color-text);
  transition: color 200ms;
}

.faq-question:hover { color: var(--color-accent); }

.faq-question::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  color: var(--color-text-muted);
  transition: transform 250ms var(--ease-expo), color 200ms;
}

.faq-question[aria-expanded="true"] { color: var(--color-accent); }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); color: var(--color-accent); }

.faq-answer {
  padding: 4px 0 20px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text-2);
  max-width: 700px;
}

/* ── LINK GRID ── */
.link-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.link-card {
  display: block;
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color 200ms, background 200ms, transform 150ms;
  cursor: pointer;
}

.link-card:hover {
  border-color: var(--color-text);
  background: var(--color-surface);
  transform: translateY(-1px);
}

/* ── SOCIAL SECTION ── */
.social-section {
  text-align: center;
  padding: 56px 24px;
  border-top: 1px solid var(--color-border);
}

.social-section .eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  display: block;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 200ms, background 200ms;
}

.social-link:hover { border-color: var(--color-text); background: var(--color-surface); }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 64px 24px 40px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--color-white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 260px;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 16px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a { font-size: 0.8125rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 200ms; }
.footer-col ul a:hover { color: var(--color-white); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.32); margin: 0; }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 200ms var(--ease-expo), box-shadow 200ms;
  animation: wa-pulse 3.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}

.wa-float svg { width: 28px; height: 28px; fill: #ffffff; flex-shrink: 0; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ── REVIEW CARD ── */
.review-card {
  border-left: 2px solid var(--color-gold);
  padding: 20px 24px;
  margin-bottom: 20px;
  background: var(--color-surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: left;
}

.review-card .stars {
  color: #e8b84b;
  margin-bottom: 10px;
  font-size: 0.875rem;
  letter-spacing: 2px;
}

/* ── MAP ── */
.map-container {
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter 500ms, opacity 500ms;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 40px;
}

.map-container:hover { filter: grayscale(0); opacity: 1; }
.map-container iframe { display: block; border: none; }

/* ── UTILS ── */
.p12 { font-size: 0.75rem; color: var(--color-text-muted); }
.p14 { font-size: 0.875rem; color: var(--color-text-2); }

/* ── MOBILE / RESPONSIVE ── */
@media (max-width: 768px) {
  /* ── Mobile nav-header ── */
  .nav-header {
    padding: 0 20px;
    height: 60px;
  }

  body { padding-top: 60px; }

  .logo { font-size: 1rem; }

  /* Hamburger: force visible on ALL mobile browsers */
  .menu-toggle {
    display: -webkit-flex !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px;
    height: 44px;
    color: #0d0d0d !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Nav overlay slides down from top */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    min-height: 0;
    background: #ffffff;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.16,1,0.3,1);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
    overflow-y: auto;
    border-top: 1px solid #e8e8e8;
  }

  .nav-menu.active {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }

  .nav-menu a { font-size: 1.1rem; letter-spacing: 0.08em; }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 8px 0 0;
    background: none;
    border-radius: 0;
    min-width: 0;
  }

  .dropdown-content a { text-align: center; padding: 6px 0; color: var(--color-text-muted); font-size: 0.875rem; }

  .hero { min-height: 80vh; padding: 60px 20px 48px; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }

  .section { margin: 72px 0; }
  .grid { grid-template-columns: 1fr; gap: 12px; }
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr; }

  .cta { min-width: 0; width: 100%; max-width: 340px; }
  .cta-group { flex-direction: column; align-items: center; }

  .trust-row { gap: 16px; padding: 18px 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .breadcrumbs { padding: 12px 20px; }

  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}
