/* =====================================================================
   APNA TRAVEL GURU — STYLES
   Design tokens live at the top. Change a value here and it updates
   everywhere it's used.
   ===================================================================== */

:root {
  /* ---- Color: warm ivory ground, deep dusk-blue for trust, marigold
     orange for the spiritual/festival thread running through every
     package. WhatsApp green kept as-is since it's a recognized utility
     color, not a brand choice. ---- */
  --color-bg: #ffffff;
  --color-surface: #fbf7f1;      /* warm ivory card background */
  --color-surface-alt: #f4ede0;  /* deeper ivory for contrast blocks */
  --color-navy: #14304d;         /* primary — trust, dusk sky */
  --color-navy-dark: #0c2036;
  --color-marigold: #d9711c;     /* accent — garlands, festival warmth */
  --color-marigold-light: #f2a65a;
  --color-ink: #22262b;          /* body text */
  --color-slate: #5b6472;        /* secondary text */
  --color-line: #e8e1d4;         /* hairline borders on ivory */
  --color-whatsapp: #25d366;
  --color-star: #e0a52c;

  /* ---- Type ---- */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Layout ---- */
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 4px 20px rgba(20, 48, 77, 0.08);
  --shadow-card-hover: 0 10px 32px rgba(20, 48, 77, 0.14);
  --container: 1160px;
  --header-h: 72px;
}

/* ---------------------------------------------------------------------
   RESET & BASE
   --------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2.5px solid var(--color-marigold);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section--tight { padding: 48px 0; }

.section--alt {
  background: var(--color-surface);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-marigold);
  display: block;
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 40px);
  color: var(--color-navy);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--color-slate);
  font-size: 16.5px;
  max-width: 560px;
  margin-bottom: 40px;
}

.section-head--center { text-align: center; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------------
   SIGNATURE DIVIDER — a garland motif: a slim rule strung with
   alternating marigold / navy "beads", echoing the temple garlands
   that run through every package on this site.
   --------------------------------------------------------------------- */
.garland-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 0;
}
.garland-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-marigold);
}
.garland-divider span:nth-child(3n) { background: var(--color-navy); }
.garland-divider::before,
.garland-divider::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--color-line);
}

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--color-marigold);
  color: #fff;
  box-shadow: 0 6px 18px rgba(217, 113, 28, 0.32);
}
.btn--primary:hover { background: #c4630f; }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

.btn--navy {
  background: var(--color-navy);
  color: #fff;
}
.btn--navy:hover { background: var(--color-navy-dark); }

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn--whatsapp:hover { background: #1fb457; }

.btn--full { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }

/* ---------------------------------------------------------------------
   HEADER
   --------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
  transition: background 0.2s ease;
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--color-navy);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-navy);
  color: var(--color-marigold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.nav-desktop {
  display: none;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-ink);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

@media (min-width: 860px) {
  .nav-desktop { display: flex; }
}

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-navy) 0%, #1c3f63 55%, var(--color-navy-dark) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: luminosity;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,32,54,0.35) 0%, rgba(12,32,54,0.55) 55%, rgba(12,32,54,0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 64px 0 48px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-marigold-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 780px;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-marigold-light);
}

.hero p {
  font-size: clamp(15.5px, 2vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-ctas .btn ion,
.hero-ctas .icon { font-size: 18px; }

/* trust badge strip */
.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}
@media (min-width: 700px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.9);
}
.trust-item .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(242,166,90,0.2);
  color: var(--color-marigold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.trust-item strong { color: #fff; font-weight: 700; }

/* ---------------------------------------------------------------------
   ABOUT
   --------------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 20px;
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-navy);
}
.stat-card .label {
  font-size: 13px;
  color: var(--color-slate);
  margin-top: 2px;
}

.about-body p { color: var(--color-slate); margin-bottom: 16px; font-size: 16px; }

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--color-navy), #2a5580);
  box-shadow: var(--shadow-card);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------------
   PACKAGE CARDS
   --------------------------------------------------------------------- */
.package-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .package-grid { grid-template-columns: repeat(3, 1fr); }
}

.package-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.package-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }

.package-media {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--color-surface-alt), var(--color-surface));
}
.package-media img { width: 100%; height: 100%; object-fit: cover; }
.package-media .icon-badge {
  position: absolute;
  top: 14px; left: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
.package-media .price-badge {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--color-navy);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}
.package-media .price-badge span {
  color: var(--color-marigold-light);
  font-weight: 700;
}

.package-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.package-body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.package-body .subtitle {
  font-size: 13.5px;
  color: var(--color-slate);
  margin-bottom: 16px;
}
.package-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--color-slate);
}
.package-meta span { display: flex; align-items: center; gap: 6px; }

.package-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}
.package-actions .btn { flex: 1; }

/* ---------------------------------------------------------------------
   MODAL — package details
   --------------------------------------------------------------------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(12,32,54,0.55);
  backdrop-filter: blur(3px);
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
@media (min-width: 780px) {
  .modal-overlay { align-items: center; padding: 24px; }
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }

.modal {
  background: #fff;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 22px 22px 0 0;
  transform: translateY(24px);
  transition: transform 0.25s ease;
}
@media (min-width: 780px) {
  .modal { border-radius: var(--radius-lg); }
}
.modal-overlay.is-open .modal { transform: translateY(0); }

.modal-hero {
  position: relative;
  aspect-ratio: 16/8;
  background: linear-gradient(150deg, var(--color-navy), #2a5580);
}
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--color-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.modal-body { padding: 26px; }
.modal-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.modal-body .subtitle { color: var(--color-slate); margin-bottom: 18px; font-size: 14.5px; }

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.highlight-list li {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--color-navy);
  font-weight: 500;
}

/* reel row */
.reel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.reel-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-navy);
}
.reel-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.reel-card .play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.05) 60%);
}
.reel-card .play-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--color-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.reel-card .platform-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
}

/* tier tabs */
.tier-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-line);
}
.tier-tab {
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-slate);
  border-bottom: 2.5px solid transparent;
  margin-right: 18px;
}
.tier-tab.is-active {
  color: var(--color-navy);
  border-bottom-color: var(--color-marigold);
}

.plan-block {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 14px;
}
.plan-block-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.plan-block-head h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  color: var(--color-navy);
}
.price-pair { display: flex; gap: 18px; }
.price-pair div { font-size: 12.5px; color: var(--color-slate); }
.price-pair strong { display: block; font-size: 16px; color: var(--color-navy); font-family: var(--font-display); }

.detail-grid {
  display: grid;
  gap: 14px;
  margin-top: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .detail-grid { grid-template-columns: 1fr 1fr; }
}
.detail-block h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-marigold);
  font-weight: 700;
  margin-bottom: 8px;
}
.detail-block ul li {
  font-size: 13.5px;
  color: var(--color-ink);
  padding: 4px 0 4px 16px;
  position: relative;
}
.detail-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-marigold);
}
.detail-block.exclusions ul li::before { background: var(--color-slate); }

.modal-cta-bar {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--color-line);
  padding: 16px 26px;
  display: flex;
  gap: 12px;
  margin: 24px -26px -26px;
}

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.review-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.review-stars { color: var(--color-star); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: var(--color-ink); font-size: 14.5px; margin-bottom: 20px; }
.review-person { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-surface-alt);
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-person strong { font-size: 14px; color: var(--color-navy); display: block; }
.review-person span { font-size: 12.5px; color: var(--color-slate); }

/* ---------------------------------------------------------------------
   SOCIAL PROOF BAND
   --------------------------------------------------------------------- */
.social-band {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  display: grid;
  gap: 28px;
  text-align: center;
}
@media (min-width: 760px) {
  .social-band { grid-template-columns: repeat(3, 1fr); text-align: left; align-items: center; }
}
.social-band .num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--color-marigold-light);
}
.social-band .label { font-size: 13.5px; color: rgba(255,255,255,0.75); }
.social-links { display: flex; gap: 10px; justify-content: center; }
@media (min-width: 760px) { .social-links { justify-content: flex-end; } }
.social-icon-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: background 0.15s ease;
}
.social-icon-btn:hover { background: rgba(255,255,255,0.22); }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 16px;
}
.contact-row .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-marigold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 14.5px; color: var(--color-navy); }
.contact-row span { font-size: 13.5px; color: var(--color-slate); }

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 300px; border: 0; }

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 0 26px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .brand { color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: 13.5px; max-width: 320px; }
.footer-col h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; }
.footer-col a:hover { color: var(--color-marigold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 12.5px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

/* ---------------------------------------------------------------------
   FLOATING ACTION BUTTONS
   --------------------------------------------------------------------- */
.fab-stack {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.06); }
.fab--whatsapp { background: var(--color-whatsapp); }
.fab--call { background: var(--color-navy); }

/* ---------------------------------------------------------------------
   MOBILE NAV DRAWER (simple)
   --------------------------------------------------------------------- */
.menu-toggle {
  display: flex;
  width: 40px; height: 40px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--color-navy);
  background: var(--color-surface);
}
@media (min-width: 860px) { .menu-toggle { display: none; } }

.nav-drawer {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  padding: 10px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.18s ease;
  z-index: 199;
}
.nav-drawer.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-drawer a { padding: 12px 4px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--color-line); }

/* ---------------------------------------------------------------------
   UTILITIES
   --------------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
