/* ============================================
   Celestial Cleaning Service — design tokens
   Palette: dawn light, not midnight sky
   ============================================ */
:root {
  --ink: #4A3B6B;         /* warm plum — dark bg, primary headings */
  --ink-soft: #5C4A80;    /* lighter plum panel */
  --paper: #FDF9F2;       /* warm cream page bg */
  --paper-dim: #F7EFDF;   /* card bg on paper */
  --charcoal: #4A4458;    /* warm dark gray body text */
  --dawn: #EFA24B;        /* warm gold-orange accent */
  --dawn-bright: #F6BC70;
  --dusk: #B98CD6;        /* soft warm lavender accent */
  --mist: #E9DEF5;        /* pale lavender text on dark */
  --line: #EEE1C9;        /* hairline on paper */
  --coral: #F0846B;       /* warm highlight, sparing use */

  --shadow-sm: 0 2px 10px rgba(74, 59, 107, 0.08);
  --shadow-md: 0 10px 30px rgba(74, 59, 107, 0.12);
  --shadow-lg: 0 18px 46px rgba(74, 59, 107, 0.18);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-w: 1180px;
  --radius: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { max-width: 62ch; }
a { color: inherit; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 249, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}
.logo .mark { display: block; border-radius: 6px; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.96rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--dawn);
}
.nav-cta {
  background: var(--dawn);
  color: var(--ink) !important;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-cta:hover { background: var(--dawn-bright); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #4A3B6B 0%, #6B4E8F 55%, #C97F4E 130%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}
.hero-eyebrow {
  color: var(--dawn-bright);
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-style: italic;
}
.hero h1 { color: var(--paper); }
.hero p.lede {
  color: var(--mist);
  font-size: 1.15rem;
  margin-top: 20px;
  max-width: 46ch;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.96rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--dawn);
  color: var(--ink);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--dawn-bright); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--paper);
}
.btn-ghost:hover { border-color: var(--paper); background: rgba(255,255,255,0.08); }

/* sky panel — hand-built celestial motif, dawn-toned (used where no photo is set) */
.sky-panel {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(190deg, #4A3B6B 0%, #8862A8 42%, #D89A5C 75%, #F6C878 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* hero photo panel — real photography with caption overlay */
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 20, 50, 0.75) 0%, rgba(30, 20, 50, 0.1) 45%, rgba(30, 20, 50, 0) 65%);
}
.hero-photo .caption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: #FFF9EE;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.95;
  z-index: 2;
}

.sky-panel .star {
  position: absolute;
  width: 3px; height: 3px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.85;
  animation: twinkle 3.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.95; }
}
.sky-panel .moon-arc {
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFF6E4, #F6BC70 60%, transparent 72%);
  opacity: 0.95;
}
.sky-panel .horizon-line {
  position: absolute;
  left: 0; right: 0; bottom: 28%;
  height: 1px;
  background: rgba(255,255,255,0.22);
}
.sky-panel .caption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: #FFF9EE;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .sky-panel .star { animation: none; opacity: 0.7; }
}

/* ---------- Constellation services ---------- */
.constellation {
  padding: 100px 0;
}
.constellation .section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head .kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--dusk);
  margin-bottom: 10px;
}
.const-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.const-line { display: none; }
.const-card {
  position: relative;
  z-index: 1;
  padding: 0 0 28px;
  overflow: hidden;
  background: var(--paper-dim);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.const-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.const-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 22px;
}
.const-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.const-card h3, .const-card p, .const-card a.card-link {
  margin-left: 28px;
  margin-right: 28px;
}
.const-card h3 { margin-top: 0; }
.const-card h3 { margin-bottom: 10px; }
.const-card p { font-size: 0.98rem; color: var(--charcoal); }
.const-card a.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--dawn);
}

/* ---------- Process ---------- */
.process {
  background: var(--paper-dim);
  padding: 96px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.process-step .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--dusk);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 12px;
}
.process-step h3 { font-size: 1.1rem; }
.process-step p { font-size: 0.95rem; }

/* ---------- Split feature (low moisture method highlight) ---------- */
.feature-split {
  padding: 100px 0;
}
.feature-split .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.feature-visual {
  background: linear-gradient(160deg, #4A3B6B, #8862A8);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-visual svg { width: 100%; height: 100%; }
.feature-visual-caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: #FFF9EE;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  padding: 10px 16px;
  background: linear-gradient(0deg, rgba(30,20,50,0.7), rgba(30,20,50,0));
  border-radius: var(--radius);
}
.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list .dot {
  color: var(--dawn);
  font-family: var(--font-display);
  font-style: italic;
}

/* ---------- Testimonial band ---------- */
.testimonial-band {
  background: linear-gradient(120deg, rgba(74,59,107,0.88), rgba(136,98,168,0.82) 60%, rgba(201,127,78,0.85) 130%), url('../images/sunset-blur.jpg');
  background-size: cover;
  background-position: center;
  color: var(--paper);
  padding: 90px 0;
  text-align: center;
}
.testimonial-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 400;
  font-style: italic;
  max-width: 780px;
  margin: 0 auto 24px;
  color: var(--paper);
}
.testimonial-band cite {
  font-style: normal;
  color: var(--mist);
  font-size: 0.92rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 20px; }
.cta-band p { margin: 0 auto 34px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--mist);
  padding: 64px 0 32px;
  border-radius: 32px 32px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-grid h4 {
  color: var(--paper);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a { text-decoration: none; color: var(--mist); }
.footer-grid a:hover { color: var(--paper); }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 12px;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #B7A9D4;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page header (interior pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #4A3B6B 0%, #6B4E8F 55%, #C97F4E 130%);
  color: var(--paper);
  padding: 72px 0 64px;
}
.page-hero .kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--dawn-bright);
  margin-bottom: 12px;
}
.page-hero p { color: var(--mist); max-width: 60ch; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--mist);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--mist); text-decoration: none; }
.breadcrumb a:hover { color: var(--paper); }

/* ---------- Generic sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--paper-dim); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Service detail block */
.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.service-block:first-of-type { border-top: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-visual {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #4A3B6B, #8862A8);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-visual svg { width: 100%; height: 100%; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0; }
.tag {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: var(--paper-dim);
  border: 1px solid var(--dusk);
  border-radius: var(--radius-pill);
  color: var(--ink);
}
.price-line {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 18px 0;
}
.price-line small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--charcoal);
}

/* Pricing table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--dawn);
  box-shadow: 0 0 0 2px var(--dawn), var(--shadow-md);
}
.price-card .badge {
  font-size: 0.78rem;
  color: var(--dawn);
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 8px;
  display: block;
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  margin: 6px 0 4px;
}
.price-card .amount span { font-size: 1rem; color: var(--charcoal); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.price-card li {
  font-size: 0.92rem;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.price-note {
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-style: italic;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 6px;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--charcoal);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--dusk);
  box-shadow: 0 0 0 3px rgba(185, 140, 214, 0.25);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; cursor: pointer; }
.contact-info-list { list-style: none; padding: 0; margin: 28px 0; }
.contact-info-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
}

/* Focus visibility everywhere */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--dusk);
  outline-offset: 2px;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--paper-dim);
  padding: 24px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}
.trust-item .dot-icon {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dawn), var(--coral));
  flex-shrink: 0;
}

/* ---------- Quote calculator ---------- */
.calculator {
  background: linear-gradient(135deg, #4A3B6B 0%, #6B4E8F 60%, #C97F4E 140%);
  color: var(--paper);
  padding: 72px 0;
}
.calculator .section-head { max-width: 640px; margin-bottom: 40px; }
.calculator .section-head h2 { color: var(--paper); }
.calculator .section-head p { color: var(--mist); }
.calc-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: end;
  box-shadow: var(--shadow-md);
}
.calc-box label { color: var(--mist); }
.calc-box select, .calc-box input {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: var(--paper);
}
.calc-box select:focus, .calc-box input:focus {
  border-color: var(--dawn);
  box-shadow: 0 0 0 3px rgba(239, 162, 75, 0.3);
}
.calc-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.calc-result .figure {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--dawn-bright);
}
.calc-result .caption {
  color: var(--mist);
  font-size: 0.9rem;
}
.calc-note {
  font-size: 0.82rem;
  color: var(--mist);
  margin-top: 14px;
}

/* ---------- Comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 32px;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.compare-table th {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.05rem;
  background: var(--paper-dim);
}
.compare-table th.highlight-col, .compare-table td.highlight-col {
  background: #FBEFDA;
}
.compare-table .check { color: var(--dusk); font-weight: 700; }
.compare-table .muted { color: #B8AEC9; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  margin-top: 40px;
}
.faq-item {
  background: var(--paper-dim);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0 22px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}
.faq-question .icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--dawn);
  transition: transform 0.2s ease;
}
.faq-item.open { background: #FBEFDA; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  padding-bottom: 22px;
  margin: 0;
  font-size: 0.96rem;
  color: var(--charcoal);
  max-width: 68ch;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
}
@media (max-width: 720px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 12px; left: 12px; right: 12px;
    z-index: 60;
    background: var(--ink);
    padding: 14px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-lg);
  }
  .sticky-cta span {
    color: var(--mist);
    font-size: 0.82rem;
  }
  .sticky-cta a {
    background: var(--dawn);
    color: var(--ink);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  body { padding-bottom: 76px; }
  .calc-box { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .sky-panel, .hero-photo { aspect-ratio: 16/10; }
  .const-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .feature-split .container { grid-template-columns: 1fr; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--ink);
    cursor: pointer;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px 32px 28px;
    gap: 18px;
  }
}
