/* =============================================================
   MARGI DANCE ACADEMY · styles.css   (Kathak · Indian classical)
   -------------------------------------------------------------
   Design language: "stage & spotlight". Warm cream sections
   alternate with deep-maroon "stage" bands; brand saffron from
   the logo; theatrical display type; cards + marquee + count-up.
   Re-theme from the :root variables below.
   ============================================================= */

/* ---------- Palette (from the Margi logo + flyers) ---------- */
:root {
  --paper:    #fdf7ec;   /* warm cream */
  --paper-2:  #f6ecd7;   /* recessed surface */
  --paper-3:  #efe0c4;   /* deeper tint */
  --ink:      #2a1207;   /* warm near-black */
  --muted:    #755741;   /* secondary text */
  --faint:    #9d8168;   /* tertiary text */
  --line:     #2a12071a; /* hairline */
  --line-2:   #2a120736; /* stronger rule */

  --saffron:  #d1650f;   /* primary brand (logo orange) */
  --marigold: #e79a25;   /* warm highlight */
  --maroon:   #7a1f2b;   /* deep secondary */
  --olive:    #6f7d33;   /* logo trail green (sparing) */

  --stage:    #180f0b;   /* dark band background */
  --stage-2:  #241610;   /* dark card surface */
  --stage-3:  #32211a;   /* dark hairline base */
  --on-stage: #f7ecd8;   /* text on dark */
  --on-stage-muted: #c6ab8f;
  --on-stage-line:  #f7ecd820;

  --maxw: 1200px;
  --gutter: 40px;
  --serif: 'DM Serif Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Mukta', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
}

/* ---------- Dark theme (whole-site, optional — delete with the toggle) ---------- */
:root[data-theme="dark"] {
  --paper:   #140c08;
  --paper-2: #1e130d;
  --paper-3: #271910;
  --ink:     #f7ecd8;
  --muted:   #c6ab8f;
  --faint:   #93785f;
  --line:    #f7ecd815;
  --line-2:  #f7ecd82e;
  --saffron: #ef8a2a;
  --marigold:#f2a838;
  --maroon:  #c76b58;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
html:not(.has-js) { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: italic; }
h1, h2, h3, h4 { font-weight: 400; line-height: 1.02; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
::selection { background: var(--saffron); color: #fff; }
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; }

/* Uppercase micro-label */
.eyebrow, .nav__links a, .classcard__tag, .stat__label, .ccard__k,
.sched__row--head span, .footer__nav a, .hero__scroll span, .marquee {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line-2); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.nav__logo { height: 40px; width: auto; }
.nav__links { display: flex; gap: 26px; }
.nav__links a { color: var(--muted); position: relative; padding: 4px 0; transition: color 0.22s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: var(--saffron); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--line-2); border-radius: 8px; background: transparent; cursor: pointer;
  transition: border-color 0.22s var(--ease), color 0.22s, background 0.22s;
}
.icon-btn:hover { border-color: var(--saffron); color: var(--saffron); }
.menu-toggle { display: none; }
.theme-icon-dark { display: none; }
:root[data-theme="dark"] .theme-icon-light { display: none; }
:root[data-theme="dark"] .theme-icon-dark { display: inline; }

/* ---------- Buttons (sweep-fill hover) ---------- */
.btn {
  --btn-fg: #fff; --btn-bg: var(--saffron); --btn-sweep: var(--maroon);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; overflow: hidden;
  font-family: var(--sans); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--btn-fg); background: var(--btn-bg); border: 1px solid var(--btn-bg); cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
  z-index: 0;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--btn-sweep);
  transform: translateY(101%); transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { border-color: var(--btn-sweep); }
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 10px 20px; font-size: 0.72rem; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--on-stage); --btn-sweep: var(--on-stage); border-color: #f7ecd855; }
.btn--ghost:hover { color: var(--stage); }
/* Ghost button on light backgrounds */
.section:not(.section--stage) .btn--ghost { --btn-fg: var(--ink); --btn-sweep: var(--ink); border-color: var(--line-2); }
.section:not(.section--stage) .btn--ghost:hover { color: var(--paper); }

/* ---------- Hero (dark stage) ---------- */
.hero {
  position: relative; background: var(--stage); color: var(--on-stage);
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 90px; overflow: hidden;
}
.hero__spot {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at var(--mx, 62%) var(--my, 28%), color-mix(in srgb, var(--saffron) 34%, transparent), transparent 70%),
    radial-gradient(45% 40% at 85% 90%, color-mix(in srgb, var(--maroon) 40%, transparent), transparent 72%);
  transition: background-position 0.2s linear;
}
.hero__inner { position: relative; z-index: 1; }
.hero__kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--marigold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; font-weight: 600; margin-bottom: 26px; }
.hero__kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 4px color-mix(in srgb, var(--saffron) 22%, transparent); }
.hero__title { font-family: var(--serif); font-size: clamp(2.9rem, 7.2vw, 6.4rem); line-height: 1.02; letter-spacing: -0.01em; max-width: 16ch; }
.hero__title em { color: var(--marigold); font-style: italic; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero__title .line > span { display: block; will-change: transform; }
.hero__lede { margin-top: 30px; max-width: 54ch; color: var(--on-stage-muted); font-size: 1.15rem; line-height: 1.7; }
.hero__cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero__stats { list-style: none; display: flex; gap: 48px; flex-wrap: wrap; margin-top: 64px; padding-top: 30px; border-top: 1px solid var(--on-stage-line); }
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 2.9rem); color: var(--on-stage); line-height: 1; }
.stat__label { color: var(--on-stage-muted); }
.hero__scroll { position: absolute; left: 50%; transform: translateX(-50%); bottom: 26px; z-index: 1; display: inline-flex; flex-direction: column; align-items: center; gap: 8px; color: var(--on-stage-muted); }
.hero__scroll span { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.68rem; font-weight: 600; }
.hero__scroll svg { animation: nudge 1.9s var(--ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(4px); opacity: 1; } }

/* ---------- Marquee ribbon ---------- */
.marquee { background: var(--saffron); color: #fff; overflow: hidden; white-space: nowrap; padding: 16px 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 26px; padding-left: 26px; animation: scrollx 26s linear infinite; }
.marquee__track span { font-family: var(--serif); text-transform: none; letter-spacing: 0; font-size: 1.5rem; }
.marquee__dot { opacity: 0.6; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Section scaffolding ---------- */
.section { padding: 110px 0; }
.section--stage { background: var(--stage); color: var(--on-stage); }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--saffron); }
.eyebrow__bar { width: 26px; height: 1.5px; background: var(--saffron); display: inline-block; }
.eyebrow--light { color: var(--marigold); }
.eyebrow--light .eyebrow__bar { background: var(--marigold); }

.sec-head { max-width: 62ch; margin-bottom: 56px; }
.sec-head__title { font-family: var(--serif); font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; margin-top: 18px; }
.sec-head__sub { color: var(--muted); font-size: 1.1rem; margin-top: 16px; max-width: 56ch; }

.band-head { max-width: 60ch; margin-bottom: 54px; }
.band-head__title { font-family: var(--serif); font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-top: 18px; letter-spacing: -0.01em; }
.band-head__sub { color: var(--on-stage-muted); font-size: 1.1rem; margin-top: 16px; }
.band-head--center { margin: 0 auto 54px; text-align: center; }
.band-head--center .eyebrow { justify-content: center; }

/* ---------- About (lede grid) ---------- */
.lede-grid { display: grid; grid-template-columns: 0.4fr 1fr; gap: 56px; }
.lede { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.18; letter-spacing: -0.01em; }
.lede em { color: var(--saffron); }
.prose { margin-top: 34px; }
.prose p { color: var(--muted); font-size: 1.1rem; line-height: 1.75; max-width: 62ch; }
.prose p + p { margin-top: 18px; }
.prose--light p { color: var(--on-stage-muted); }

/* ---------- The Art of Kathak (dark cards) ---------- */
.artgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.artcard {
  background: var(--stage-2); border: 1px solid var(--stage-3); border-radius: var(--radius);
  padding: 30px 26px 34px; position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.artcard::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--saffron), var(--marigold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.artcard:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--saffron) 45%, transparent); }
.artcard:hover::before { transform: scaleX(1); }
.artcard__idx { font-family: var(--serif); font-size: 1.6rem; color: var(--marigold); display: block; margin-bottom: 18px; }
.artcard__title { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 10px; }
.artcard p { color: var(--on-stage-muted); font-size: 0.98rem; line-height: 1.6; }
.artcard em { color: var(--marigold); }

/* ---------- Classes (light cards) ---------- */
.classgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.classcard {
  display: flex; flex-direction: column; background: var(--paper-2);
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.classcard:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--saffron) 50%, transparent); box-shadow: 0 18px 40px -24px rgba(42,18,7,0.5); }
.classcard--accent { background: linear-gradient(180deg, color-mix(in srgb, var(--marigold) 16%, var(--paper-2)), var(--paper-2)); }
.classcard__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.classcard__title { font-family: var(--serif); font-size: 1.65rem; }
.classcard__tag { flex: none; color: var(--maroon); border: 1px solid color-mix(in srgb, var(--maroon) 35%, transparent); border-radius: 999px; padding: 4px 12px; }
.classcard__desc { color: var(--muted); font-size: 1.02rem; margin-bottom: 22px; }
.classcard__facts { list-style: none; margin-bottom: 24px; }
.classcard__facts li { display: flex; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 0.98rem; color: var(--ink); }
.classcard__facts li span { flex: 0 0 56px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; font-weight: 600; padding-top: 3px; }
.classcard__link { margin-top: auto; align-self: flex-start; color: var(--saffron); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.classcard__link span { transition: transform 0.25s var(--ease); }
.classcard__link:hover span { transform: translateX(5px); }
.classes__note { margin-top: 30px; color: var(--muted); font-size: 1rem; }

/* ---------- Schedule + locations ---------- */
.sched { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.sched__table { border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; }
.sched__row { display: grid; grid-template-columns: 1fr 1.4fr 1.1fr 1fr; gap: 16px; padding: 18px 22px; border-top: 1px solid var(--line); align-items: center; }
.sched__row:first-child { border-top: none; }
.sched__row--head { background: var(--paper-2); color: var(--faint); }
.sched__row:not(.sched__row--head) span:nth-child(2) { font-family: var(--serif); font-size: 1.2rem; }
.sched__row:not(.sched__row--head) { transition: background 0.2s var(--ease); }
.sched__row:not(.sched__row--head):hover { background: var(--paper-2); }
.sched__locations { display: flex; flex-direction: column; gap: 16px; }
.loc { border: 1px solid var(--line-2); border-radius: var(--radius); padding: 24px; background: var(--paper-2); }
.loc__name { font-family: var(--serif); font-size: 1.5rem; color: var(--maroon); margin-bottom: 10px; }
.loc__addr { color: var(--muted); font-size: 1rem; margin-bottom: 14px; }
.loc__map { color: var(--saffron); font-weight: 700; font-size: 0.95rem; }
.loc__map:hover { text-decoration: underline; }

/* ---------- Teacher (dark, split) ---------- */
.teacher { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.teacher__ph, .teacher__img { border-radius: var(--radius); border: 1px solid var(--stage-3); overflow: hidden; aspect-ratio: 4/5; }
.teacher__ph { background: var(--stage-2); display: grid; place-items: center; }
.teacher__ph img { width: 68%; opacity: 0.9; }
.teacher__img { width: 100%; height: 100%; object-fit: cover; }
.teacher__name { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 16px 0 8px; }
.teacher__role { color: var(--marigold); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 8px; }
.teacher__text .prose { margin-bottom: 32px; }

/* ---------- Voices / testimonials ---------- */
.voices { columns: 3; column-gap: 22px; }
.voice { break-inside: avoid; margin-bottom: 22px; background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 28px; }
.voice--tall { background: linear-gradient(180deg, color-mix(in srgb, var(--saffron) 12%, var(--paper-2)), var(--paper-2)); }
.voice blockquote { font-family: var(--serif); font-size: 1.15rem; line-height: 1.45; color: var(--ink); position: relative; }
.voice--tall blockquote { font-size: 1.32rem; }
.voice figcaption { margin-top: 18px; font-weight: 700; color: var(--maroon); }
.voice figcaption span { display: block; font-weight: 500; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; margin-top: 3px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.tile { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-2); background: var(--paper-3); }
.tile--wide { grid-column: span 2; }
.tile__ph { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--muted); background: repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 12px, var(--paper-3) 12px, var(--paper-3) 24px); }
.tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tile:hover .tile__img { transform: scale(1.06); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: start; }
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ccard { display: flex; flex-direction: column; gap: 4px; padding: 24px; border-radius: var(--radius); background: var(--stage-2); border: 1px solid var(--stage-3); transition: transform 0.3s var(--ease), border-color 0.3s; }
a.ccard:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--saffron) 45%, transparent); }
.ccard__k { color: var(--marigold); }
.ccard__v { font-family: var(--serif); font-size: 1.35rem; color: var(--on-stage); }
.ccard__v2 { color: var(--on-stage-muted); font-size: 0.98rem; }
.ccard--static { grid-column: 1 / -1; }

.contact__form-title { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 18px; }
.contact__form iframe { width: 100%; border: 1px solid var(--stage-3); border-radius: var(--radius); background: #fff; }
.form-placeholder { border: 1px dashed #f7ecd83a; border-radius: var(--radius); background: var(--stage-2); padding: 40px 32px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.form-placeholder strong { font-family: var(--serif); font-size: 1.3rem; color: var(--on-stage); font-weight: 400; }
.form-placeholder p { color: var(--on-stage-muted); max-width: 46ch; }
.form-placeholder code { font-family: ui-monospace, Menlo, monospace; font-size: 0.85em; background: var(--stage-3); padding: 1px 6px; border-radius: 4px; }

/* ---------- Footer ---------- */
.footer { background: #0f0906; color: var(--on-stage); padding: 60px 0 40px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 40px; align-items: start; }
.footer__logo { height: 54px; margin-bottom: 16px; }
.footer__tag { color: var(--on-stage-muted); font-size: 0.95rem; max-width: 40ch; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { color: var(--on-stage-muted); transition: color 0.2s var(--ease); }
.footer__nav a:hover { color: var(--marigold); }
.footer__meta { display: flex; flex-direction: column; gap: 10px; text-align: right; color: var(--on-stage-muted); font-size: 0.92rem; }
.footer__top { color: var(--on-stage); font-weight: 600; }
.footer__top:hover { color: var(--marigold); }

/* ---------- Reveal base states (JS only) ---------- */
.has-js [data-reveal] { opacity: 0; transform: translateY(28px); }
.has-js [data-hero] { opacity: 0; transform: translateY(20px); }
/* Hide the title with opacity (NOT a transform) so GSAP can fully own the line offset. */
.has-js .hero__title { opacity: 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .has-js [data-reveal], .has-js [data-hero] { opacity: 1 !important; transform: none !important; }
  .has-js .hero__title { opacity: 1 !important; }
  .has-js .hero__title .line > span { transform: none !important; }
  .marquee__track { animation: none; }
  .hero__scroll svg { animation: none; }
  .tile:hover .tile__img { transform: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .artgrid { grid-template-columns: 1fr 1fr; }
  .voices { columns: 2; }
  .nav__links { gap: 18px; }
}
@media (max-width: 860px) {
  :root { --gutter: 26px; }
  .section { padding: 84px 0; }
  .lede-grid { grid-template-columns: 1fr; gap: 24px; }
  .classgrid { grid-template-columns: 1fr; }
  .sched { grid-template-columns: 1fr; gap: 26px; }
  .teacher { grid-template-columns: 1fr; gap: 32px; }
  .teacher__ph { aspect-ratio: 16/10; max-width: 420px; }
  .contact { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .footer__meta { text-align: left; }
  .hero__stats { gap: 30px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .voices { columns: 1; }
  .artgrid { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  /* Schedule → stacked cards */
  .sched__row--head { display: none; }
  .sched__row { grid-template-columns: 1fr; gap: 4px; padding: 16px 18px; }
  .sched__row span { display: flex; gap: 10px; }
  .sched__row span::before { content: attr(data-l); color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.66rem; font-weight: 700; min-width: 56px; padding-top: 4px; }

  .nav__cta { display: none; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line-2);
    padding: 6px 26px 18px; transform: translateY(-145%); transition: transform 0.34s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 15px 0; font-size: 0.85rem; border-bottom: 1px solid var(--line); }
  .menu-toggle { display: grid; }
}
