:root {
  --deep: #0b3b5c;
  --deep-dark: #062537;
  --wave: #1976a8;
  --sand: #f4ecd8;
  --sand-soft: #faf6ec;
  --ink: #0e1a24;
  --ink-soft: #3a4a58;
  --line: #e1e6ec;
  --white: #ffffff;
  --accent: #e8a23b;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 40px -20px rgba(11, 59, 92, 0.35);
  --shadow-lg: 0 30px 80px -40px rgba(11, 59, 92, 0.55);
  --maxw: 1180px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--wave); }

/* Tydlig focus för tangentbordsanvändare */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip-to-main-content */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 16px;
  background: var(--deep);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transform: translateY(-100%);
  transition: transform 0.15s;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); color: var(--white); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.6em;
  color: var(--deep);
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wave);
  margin: 0 0 12px;
  padding: 4px 10px;
  background: rgba(25, 118, 168, 0.08);
  border-radius: 999px;
}

.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--deep);
}

.brand-mark {
  width: 44px; height: 44px;
  filter: drop-shadow(0 2px 6px rgba(11, 59, 92, 0.18));
  object-fit: contain;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.04em; }
.brand-text em { font-style: normal; font-size: 0.75rem; color: var(--ink-soft); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 10px 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.primary-nav a:hover { background: var(--sand-soft); color: var(--deep); }

.primary-nav a.cta {
  background: var(--deep);
  color: var(--white);
  padding: 10px 18px;
  margin-left: 8px;
}
.primary-nav a.cta:hover { background: var(--wave); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--deep);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  padding: clamp(90px, 14vw, 180px) 0 clamp(70px, 10vw, 140px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(150deg, rgba(11, 59, 92, 0.88) 0%, rgba(6, 37, 55, 0.82) 55%, rgba(4, 23, 36, 0.88) 100%),
    url("assets/images/segelskola-5.jpg") center / cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 600px at 90% 20%, rgba(232, 162, 59, 0.18), transparent 60%);
}

.hero-watermark {
  position: absolute;
  top: 50%;
  right: -6%;
  width: min(620px, 55vw);
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.hero-inner { position: relative; max-width: 820px; z-index: 1; }
.hero h1 { color: var(--white); }
.hero .eyebrow { background: rgba(255,255,255,0.12); color: #cfe2ef; }
.hero .lede { color: rgba(255,255,255,0.82); font-size: 1.25rem; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { color: var(--white); font-size: 1rem; font-weight: 600; }
.hero-stats span { color: rgba(255,255,255,0.85); font-size: 0.88rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--deep-dark);
  box-shadow: 0 8px 24px -10px rgba(232, 162, 59, 0.7);
}
.btn-primary:hover { background: #f1b25a; color: var(--deep-dark); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); color: var(--white); }

.btn-ghost-dark {
  background: transparent;
  color: var(--deep);
  border-color: var(--line);
  margin-left: 8px;
}
.btn-ghost-dark:hover { background: var(--sand-soft); color: var(--deep); border-color: var(--deep); }

.btn-lg { padding: 16px 34px; font-size: 1.02rem; }

/* ---------- Sections ---------- */

.section { padding: clamp(70px, 10vw, 120px) 0; }
.section-alt { background: var(--sand-soft); }
.section-dark {
  background: linear-gradient(150deg, var(--deep) 0%, var(--deep-dark) 100%);
  color: #dfe9f1;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { background: rgba(255,255,255,0.12); color: #cfe2ef; }
.section-dark .lede { color: rgba(255,255,255,0.75); }
.section-dark a { color: #ffd488; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.grid-gap-lg { gap: 72px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* ---------- Cards ---------- */

.card-stack { display: grid; gap: 16px; }

/* media frame: bilder i sektioner */
.media-frame {
  margin: 0 0 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.media-frame:hover img { transform: scale(1.02); }
.media-frame-wide {
  margin-top: 16px;
  margin-bottom: 32px;
}
.media-frame-wide img { aspect-ratio: 21 / 9; }

.right-col { display: grid; gap: 20px; align-content: start; }

/* kläder */
.klader-grid {
  margin: 36px 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.klader-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.klader-grid figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.klader-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--sand-soft);
  padding: 8px;
  display: block;
}
.klader-grid figcaption {
  padding: 14px 10px;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--deep);
}

/* galleri */
.gallery-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
  aspect-ratio: 4 / 3;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.3s;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
@media (max-width: 720px) {
  .gallery-grid figure:nth-child(1) { grid-column: span 1; grid-row: span 1; aspect-ratio: 4 / 3; }
}

.feature-card {
  background: var(--white);
  padding: 24px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-card .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--sand);
  border-radius: 12px;
  font-size: 1.4rem;
}
.feature-card h3 { margin-bottom: 4px; font-family: var(--sans); font-size: 1.05rem; color: var(--deep); }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.info-box {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.info-box h3 { color: var(--deep); margin-top: 0; font-family: var(--sans); font-size: 1.05rem; letter-spacing: 0.02em; text-transform: uppercase; }
.info-box dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; font-size: 0.98rem; }
.info-box dt { color: var(--ink-soft); font-weight: 500; }
.info-box dd { margin: 0; font-weight: 600; color: var(--deep); }

.price-lead {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 6px 0 10px;
}
.price-lead span {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
}
.price-lead small { color: var(--ink-soft); font-size: 0.95rem; }

.fineprint { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.fineprint-note {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(11, 59, 92, 0.05);
  border-left: 3px solid var(--wave);
  border-radius: 8px;
  font-size: 0.92rem;
}

.info-box-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #dfe9f1;
}
.info-box-dark h3 { color: var(--white); }
.info-box-dark dt { color: rgba(255,255,255,0.7); }
.info-box-dark dd { color: var(--white); }
.info-box-dark .fineprint { color: rgba(255,255,255,0.6); margin-top: 14px; }
.info-box-dark a { color: #ffd488; }

.swish-qr {
  margin: 20px 0 0;
  text-align: center;
}
.swish-qr img {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.5);
}
.swish-qr figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.swish-qr-light figcaption { color: var(--ink-soft); }

.pay-block {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
}
.pay-block .fineprint-note { margin-top: 0; }
.pay-block .swish-qr { margin-top: 0; }
.pay-block .swish-qr img { max-width: 130px; }

@media (max-width: 640px) {
  .pay-block { grid-template-columns: 1fr; justify-items: center; }
  .pay-block .fineprint-note { width: 100%; }
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.steps-list li {
  counter-increment: step;
  padding: 10px 0 10px 40px;
  position: relative;
  font-size: 0.98rem;
}
.steps-list li:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 10px;
  width: 26px; height: 26px;
  background: var(--accent);
  color: var(--deep-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list strong { color: var(--white); }
.contact-list a { color: #ffd488; text-decoration: none; font-variant-numeric: tabular-nums; }

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.highlight { background: var(--deep); color: #eef4f8; border-color: var(--deep); }
.price-card.highlight h3 { color: var(--white); }
.price-card h3 { margin-top: 0; font-family: var(--sans); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--wave); }
.price-card.highlight h3 { color: var(--accent); }
.price-card .price { display: flex; align-items: baseline; gap: 8px; margin: 10px 0 14px; }
.price-card .price span { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--deep); line-height: 1; }
.price-card.highlight .price span { color: var(--white); }
.price-card .price small { color: var(--ink-soft); font-size: 0.9rem; }
.price-card.highlight .price small { color: rgba(255,255,255,0.7); }
.price-card .fineprint { font-size: 0.85rem; color: var(--ink-soft); margin-top: 12px; }
.price-card.highlight .fineprint { color: rgba(255,255,255,0.7); }

.note {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--sand);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.note h3 { margin: 0 0 6px; font-family: var(--sans); font-size: 1rem; }
.note p { margin: 0; color: var(--ink-soft); }

/* ---------- Event list ---------- */

.event-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 12px;
}
.event-list li {
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-list strong { color: var(--deep); font-family: var(--serif); font-size: 1.1rem; }
.event-list span { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 60px);
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 60ch; }
.cta-perk {
  margin-top: 20px !important;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 0.95rem;
}

/* ---------- Partner / annonsbanner (Svenska Sjö) ---------- */

.partner-banner-section {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-banner-section .eyebrow {
  display: block;
  margin: 0 auto 18px;
  width: max-content;
}

.partner-banner {
  display: block;
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  outline-offset: 4px;
}
.partner-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.partner-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.partner-note {
  margin: 18px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (max-width: 600px) {
  .partner-banner { max-width: 320px; }
}

/* ---------- Calendar embed ---------- */

.calendar-embed {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 1px solid var(--line);
}
.calendar-embed iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}
.calendar-fallback {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 32px 0 48px;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, transform 0.15s;
}
.contact-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); color: inherit; }
.contact-card .icon { font-size: 1.6rem; margin-bottom: 6px; }
.contact-card strong { color: var(--white); font-size: 1.05rem; }
.contact-card span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.board-heading { color: var(--white); font-family: var(--sans); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; margin: 24px 0 16px; }

.board-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
}
.board-list li { display: flex; flex-direction: column; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.board-list strong { color: var(--white); }
.board-list a { color: #ffd488; text-decoration: none; font-variant-numeric: tabular-nums; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--deep-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { margin-bottom: 16px; opacity: 0.95; }

.footer-pay {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 16px;
  font-size: 0.9rem;
}
.footer-pay dt { color: rgba(255,255,255,0.55); }
.footer-pay dd {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-links a {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.social-links a:hover {
  background: var(--accent);
  color: var(--deep-dark);
  transform: translateY(-2px);
}
.social-links svg { width: 18px; height: 18px; }
.site-footer h4 { color: var(--white); font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 14px; }
.site-footer nav { display: flex; flex-direction: column; gap: 8px; }
.site-footer nav a { color: rgba(255,255,255,0.7); text-decoration: none; }
.site-footer nav a:hover { color: var(--white); }
.site-footer a { color: rgba(255,255,255,0.85); }
.footer-base { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-base small { color: rgba(255,255,255,0.5); }

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .grid-gap-lg { gap: 32px; }

  .nav-toggle { display: block; }

  .primary-nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .primary-nav a { padding: 12px 16px; border-radius: 10px; }
  .primary-nav a.cta { margin: 8px 0 0; text-align: center; }

  .site-header.open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-header.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

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