/* ============================================================
   Sankt Hans 2026 — Valhalla Gruppe
   Design tokens
   ============================================================ */
:root {
  /* Brand colors — varm midsommer */
  --orange:        #E07B2A;
  --orange-dark:   #B85A18;
  --amber:         #F5A623;
  --cream:         #F5E6B8;
  --warm:          #FFE9A8;
  --navy:          #1A2340;
  --navy-deep:     #0F1530;
  --navy-soft:     #2A2F5A;

  /* Valhalla brand-anker */
  --valhalla-blue: #08366B;     /* aflæst fra logoet */
  --valhalla-purple:#5B2A86;    /* DDS lilla */

  /* Surfaces */
  --bg:           #FBF6EC;       /* varm cream-baggrund */
  --bg-elev:      #FFFFFF;
  --bg-dark:      #0F1530;
  --bg-section:   #FFF8E7;       /* sektioner med varm tone */
  --ink:          #1A2340;
  --ink-soft:     #4A5275;
  --ink-mute:     #7A8099;
  --line:         rgba(26, 35, 64, 0.12);
  --line-strong:  rgba(26, 35, 64, 0.22);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem; --s-8: 3rem; --s-10: 4rem;
  --s-12: 6rem; --s-16: 8rem;

  /* Type scale (responsive via clamp) */
  --t-xs:   clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --t-sm:   clamp(0.875rem, 0.8rem + 0.2vw, 1rem);
  --t-base: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  --t-lg:   clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --t-xl:   clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --t-2xl:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --t-hero: clamp(2.75rem, 2rem + 5vw, 5.5rem);

  --radius-sm: 0.5rem;
  --radius:    1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15,21,48,0.06), 0 2px 8px rgba(15,21,48,0.04);
  --shadow:    0 4px 12px rgba(15,21,48,0.08), 0 12px 32px rgba(15,21,48,0.06);
  --shadow-lg: 0 8px 24px rgba(15,21,48,0.12), 0 24px 64px rgba(15,21,48,0.10);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
:where(button, input, select, textarea) { font: inherit; color: inherit; }

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

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 5rem); }
.section--dark {
  background: var(--bg-dark);
  color: #fff;
  background-image:
    radial-gradient(ellipse 800px 500px at 80% 20%, rgba(245,166,35,0.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 80%, rgba(91,42,134,0.18), transparent 70%);
}
.section--warm {
  background: var(--bg-section);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--orange-dark);
  margin: 0 0 var(--s-3);
}
.section--dark .eyebrow { color: var(--amber); }
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-4);
  color: var(--ink);
}
.section--dark .h-display { color: var(--cream); }
.h-display em { font-style: italic; color: var(--orange); font-weight: 600; }
.section--dark .h-display em { color: var(--amber); }
.lede {
  font-size: var(--t-lg);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 var(--s-6);
}
.section--dark .lede { color: #C8CFE5; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 236, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-3);
}
.brand {
  display: inline-flex; align-items: center; gap: 0.625rem;
  color: var(--valhalla-blue); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.02em;
}
.brand img { height: 32px; width: auto; }
.brand__sub { color: var(--ink-mute); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.02em; display: none; }
@media (min-width: 540px) { .brand__sub { display: inline; } }

.nav { display: none; }
.nav a {
  font-size: var(--t-sm); font-weight: 500; color: var(--ink-soft);
  padding: 0.5rem 0.875rem; border-radius: 8px;
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--ink); background: rgba(26, 35, 64, 0.05); }
@media (min-width: 880px) {
  .nav { display: flex; gap: 0.25rem; }
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 7px 5px;
  background: none; border: none; cursor: pointer;
  z-index: 60;
}
.nav-toggle__bar {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav.is-open {
  display: flex; flex-direction: column; gap: var(--s-2);
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(251, 246, 236, 0.97);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  padding: var(--s-3) var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.nav.is-open a {
  padding: 0.75rem 1rem;
  font-size: var(--t-base);
  font-weight: 500;
}
@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .nav.is-open { position: static; background: none; padding: 0; border: none; box-shadow: none; flex-direction: row; backdrop-filter: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 78vh, 820px);
  display: grid;
  align-items: end;
}
.hero__photo {
  position: absolute; inset: 0; z-index: -2;
  background-color: var(--navy);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 65% 35%;
}
@media (max-width: 879px) {
  .hero__photo img { object-position: 60% 35%; }
}
.hero__grade {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* Left-side scrim for title legibility */
    linear-gradient(90deg, rgba(15,21,48,0.78) 0%, rgba(15,21,48,0.55) 28%, rgba(15,21,48,0.15) 55%, rgba(15,21,48,0) 80%),
    /* Top + bottom darkening */
    linear-gradient(180deg, rgba(15,21,48,0.45) 0%, rgba(15,21,48,0.05) 38%, rgba(15,21,48,0.10) 60%, rgba(15,21,48,0.78) 100%),
    /* Warm bottom glow */
    radial-gradient(ellipse 1100px 700px at 25% 80%, rgba(224,123,42,0.22), transparent 65%);
}
@media (max-width: 879px) {
  .hero__grade {
    background:
      linear-gradient(180deg, rgba(15,21,48,0.55) 0%, rgba(15,21,48,0.35) 35%, rgba(15,21,48,0.55) 65%, rgba(15,21,48,0.85) 100%),
      radial-gradient(ellipse 800px 600px at 50% 80%, rgba(224,123,42,0.22), transparent 65%);
  }
}
.hero__inner {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(2.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: end;
}
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.4fr 1fr; }
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.625rem;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: #FFD27A; font-size: var(--t-xs);
  font-weight: 700;
  margin-bottom: var(--s-4);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}
.hero__kicker::before {
  content: ""; width: 28px; height: 1px; background: var(--amber);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-hero);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 0 0 var(--s-5);
  max-width: 14ch;
  text-wrap: balance;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.45),
    0 8px 24px rgba(15,21,48,0.55);
}
.hero__title em {
  font-style: italic;
  font-weight: 600;
  color: #FFD27A; /* lysere, varmere amber for bedre kontrast */
  text-shadow:
    0 2px 6px rgba(0,0,0,0.65),
    0 0 18px rgba(15,21,48,0.5);
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5);
  margin-bottom: var(--s-6);
  font-size: var(--t-lg);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}
.hero__meta-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 500;
}
.hero__meta-item strong { color: var(--cream); font-weight: 600; letter-spacing: 0.005em; }
.hero__meta-item svg { color: var(--amber); flex: 0 0 auto; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(224,123,42,0.18);
  border: 1px solid rgba(245,166,35,0.45);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-size: var(--t-sm); font-weight: 600;
  letter-spacing: 0.04em;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--orange);
  color: #fff;
  font-weight: 600; font-size: var(--t-base);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform .15s ease, background-color .15s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px rgba(224,123,42,0.35);
}
.hero__cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(224,123,42,0.45); }
.hero__badge {
  width: clamp(220px, 32vw, 360px);
  height: auto;
  margin-left: auto;
  margin-right: 0;
  filter: drop-shadow(0 14px 40px rgba(245,166,35,0.30));
  align-self: end;
  justify-self: end;
}
@media (max-width: 879px) {
  .hero__badge { margin: 0 auto; width: clamp(200px, 50vw, 260px); }
}

/* ============================================================
   Programme (timeline)
   ============================================================ */
.program-grid {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  position: relative;
}
.program-grid::before {
  content: "";
  position: absolute;
  left: clamp(54px, 9vw, 78px);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--line-strong) 12%, var(--line-strong) 88%, transparent);
}
.program-item {
  display: grid;
  grid-template-columns: clamp(96px, 16vw, 140px) auto 1fr;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  border-bottom: 1px dashed var(--line);
}
.program-item:last-child { border-bottom: none; }
.program-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-lg);
  color: var(--orange-dark);
  letter-spacing: -0.01em;
}
.program-dot {
  width: 14px; height: 14px;
  background: var(--bg);
  border: 2px solid var(--orange);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  justify-self: center;
}
.program-item--highlight .program-dot {
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(224,123,42,0.18);
}
.program-text {
  font-size: var(--t-base);
  color: var(--ink);
}
.program-text strong { font-weight: 600; }
.program-item--highlight .program-text strong {
  color: var(--orange-dark);
}

/* ============================================================
   Activities cards
   ============================================================ */
.activities {
  display: grid; gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .activities { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .activities { grid-template-columns: repeat(3, 1fr); } }

.act-card {
  position: relative;
  padding: var(--s-5);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
  gap: var(--s-2);
  min-height: 160px;
}
.act-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(224,123,42,0.35);
}
.act-card__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: var(--s-2);
}
.act-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-lg);
  margin: 0;
}
.act-card__desc {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.act-card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--orange-dark);
  padding-top: var(--s-2);
}
.act-card__link::after {
  content: "→";
  transition: transform .15s ease;
}
.act-card__link:hover::after { transform: translateX(3px); }

/* ============================================================
   Briketter feature
   ============================================================ */
.briketter {
  display: grid; gap: var(--s-6);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) { .briketter { grid-template-columns: 1fr 1fr; gap: var(--s-10); } }
.briketter__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.briketter__media img { width: 100%; height: 100%; object-fit: cover; }
.briketter__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-xl);
  line-height: 1.3;
  color: var(--ink);
  border-left: 3px solid var(--orange);
  padding-left: var(--s-4);
  margin: var(--s-5) 0;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: var(--t-sm);
  transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 14px rgba(224,123,42,0.25);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(224,123,42,0.35); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(26,35,64,0.04); border-color: var(--ink); }
.btn--on-dark { color: #fff; border-color: rgba(255,255,255,0.25); }
.btn--on-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ============================================================
   Prisliste
   ============================================================ */
.prices-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .prices-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .prices-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-5);
}
.price-card__title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 700;
  margin: 0 0 var(--s-3);
  color: var(--orange-dark);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.price-card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.price-card__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: var(--s-3);
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: var(--t-sm);
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list li span:last-child {
  font-weight: 600; font-variant-numeric: tabular-nums;
  color: var(--ink); white-space: nowrap;
}

/* ============================================================
   Practical info
   ============================================================ */
.practical {
  display: grid; gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .practical { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.practical__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--s-3);
}
.practical__list li {
  display: grid; grid-template-columns: 32px 1fr;
  gap: var(--s-3);
  align-items: start;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.practical__list li:last-child { border-bottom: none; }
.practical__icon {
  font-size: 1.25rem; line-height: 1.4;
}
.practical__label {
  display: block;
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 2px;
}
.practical__value { font-size: var(--t-base); }
.practical__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: #f0e6d2;
}
.practical__map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   Sponsors
   ============================================================ */
.sponsors-grid {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 540px) { .sponsors-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px) { .sponsors-grid { grid-template-columns: repeat(4, 1fr); } }

.sponsor-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--s-4);
  display: flex; align-items: center; justify-content: center;
  min-height: 100px;
  text-align: center;
  font-size: var(--t-sm);
  color: var(--ink-soft);
  transition: border-color .2s ease, transform .15s ease;
}
.sponsor-card[href]:hover { border-color: var(--orange); transform: translateY(-1px); color: var(--ink); }
.sponsor-card--placeholder {
  border-style: dashed;
  color: var(--ink-mute);
  background: transparent;
}

.cta-stack {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  margin-top: var(--s-5);
}

/* ============================================================
   Om gruppen
   ============================================================ */
.about {
  display: grid; gap: var(--s-6);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 720px) { .about { grid-template-columns: auto 1fr; gap: var(--s-8); } }
.about__logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-5);
  width: clamp(180px, 32vw, 240px);
  align-self: start;
}
.about__logo img { width: 100%; height: auto; }
.about p { color: var(--ink-soft); font-size: var(--t-base); max-width: 60ch; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: #C8CFE5;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background-image:
    radial-gradient(ellipse 700px 400px at 80% 0%, rgba(245,166,35,0.10), transparent 60%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-8);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 var(--s-3);
}
.footer-brand em { font-style: italic; color: var(--amber); font-weight: 600; }
.footer-text { color: #A8B3D4; font-size: var(--t-sm); max-width: 36ch; }
.footer-heading {
  text-transform: uppercase;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  color: var(--amber);
  font-weight: 600;
  margin: 0 0 var(--s-3);
}
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.footer-list a { color: #C8CFE5; font-size: var(--t-sm); }
.footer-list a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--s-4);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3);
  font-size: var(--t-xs);
  color: #8E97B8;
}
.footer-bottom a { color: #C8CFE5; }

/* ============================================================
   Utility
   ============================================================ */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--orange); color: #fff;
  padding: 0.5rem 1rem; font-weight: 600;
  z-index: 100;
}
.skip-link:focus { top: 0; }
