/* =============================================
   IRIS YOGA – Tilmelding prototype v1
   Routing-side med 6 flowkort og Sommer Yoga tilmelding

   Indholdsfortegnelse:
   1.  Variabler
   2.  Nulstilling
   3.  Typografi
   4.  Container
   5.  Knapper
   6.  Status-badges
   7.  Header
   8.  Hero (kompakt – ingen billedkolonne)
   9.  Sektionsintro (delt hjælper)
   10. Routing-kort (6 flowkort i 3-kolonne grid)
   11. Sommer Yoga-sektion (to grupper)
   12. Praktisk info
   13. Privatliv-note
   14. Er du i tvivl? (CTA med baggrundsbillede)
   15. Footer
   16. Responsiv
   ============================================= */


/* --- 1. VARIABLER --- */
:root {
  --indigo:   #5E4ED0;
  --violet:   #8F43AF;
  --lavender: #CEACE1;
  --sky:      #53B3EC;
  --gold:     #D3CC6F;
  --cream:    #DBD0C0;
  --dark:     #111019;
  --light:    #FBFAFF;
  --white:    #FFFFFF;

  --sand:          #F5EDD8;
  --sunlight:      #FFF8E8;
  --pale-sky:      #EEF7FC;
  --lavender-pale: #F0EAF8;
  --lavender-mid:  #E0CEEF;

  --serif: Georgia, 'Times New Roman', serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --sp-sm:      1rem;
  --sp-md:      1.75rem;
  --sp-lg:      2.5rem;
  --sp-xl:      4rem;
  --sp-section: clamp(4rem, 8vw, 6.5rem);

  --max-w:  1080px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;
}


/* --- 2. NULSTILLING --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }


/* --- 3. TYPOGRAFI --- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: normal;
  line-height: 1.2;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.1rem; line-height: 1.35; }

p { max-width: 60ch; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--sp-sm);
}


/* --- 4. CONTAINER --- */
.container {
  width: min(92%, var(--max-w));
  margin-inline: auto;
}

section { padding-block: var(--sp-section); }


/* --- 5. KNAPPER --- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--indigo);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(94, 78, 208, 0.28);
}
.btn-primary:hover {
  background-color: var(--violet);
  box-shadow: 0 8px 28px rgba(143, 67, 175, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: none;
  border-color: rgba(94, 78, 208, 0.5);
  color: var(--indigo);
  padding: 0.82rem 1.85rem;
}
.btn-outline:hover {
  background-color: var(--lavender-pale);
  border-color: var(--indigo);
  transform: translateY(-1px);
}

.btn-light {
  background-color: var(--white);
  color: var(--indigo);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.btn-light:hover {
  background-color: var(--lavender-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

/* Tekstlink-knap brugt i kort-handlinger */
.btn-link {
  display: inline-block;
  background: none;
  border: none;
  color: var(--indigo);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.btn-link:hover { color: var(--violet); }

/* Tekstlink i doubt-sektionen (lys variant) */
.btn-doubt-text {
  display: inline-block;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.btn-doubt-text:hover { color: var(--white); }


/* --- 6. STATUS-BADGES --- */
.status-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.status-badge--open {
  background-color: rgba(83, 179, 100, 0.12);
  color: #2d7a3a;
  border: 1px solid rgba(83, 179, 100, 0.28);
}

.status-badge--temp {
  background-color: rgba(211, 160, 50, 0.12);
  color: #7a5a10;
  border: 1px solid rgba(211, 160, 50, 0.28);
}

.status-badge--interest {
  background-color: rgba(206, 172, 225, 0.25);
  color: var(--violet);
  border: 1px solid rgba(143, 67, 175, 0.2);
}

.status-badge--fast {
  background-color: rgba(83, 179, 236, 0.12);
  color: #1a6a9a;
  border: 1px solid rgba(83, 179, 236, 0.28);
}


/* --- 7. HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(243, 236, 252, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(206, 172, 225, 0.4);
  box-shadow: 0 2px 24px rgba(143, 67, 175, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-fallback {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--dark);
  letter-spacing: 0.04em;
  font-weight: normal;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(17, 16, 25, 0.82);
  text-decoration: none;
  font-size: 0.975rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--indigo); }

.nav-tilmelding {
  background-color: var(--indigo);
  color: var(--white) !important;
  padding: 0.45rem 1.3rem;
  border-radius: var(--r-full);
  font-size: 0.9rem !important;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(94, 78, 208, 0.28);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.nav-tilmelding:hover {
  background-color: var(--violet) !important;
  box-shadow: 0 4px 18px rgba(143, 67, 175, 0.35);
}

/* Aktiv tilstand – siden er den nuværende side */
.nav-tilmelding--active {
  background-color: var(--violet);
  box-shadow: 0 2px 14px rgba(143, 67, 175, 0.38);
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}


/* --- 8. HERO (kompakt – enkeltkolonne) --- */
.hero {
  position: relative;
  background: linear-gradient(
    148deg,
    #fff4e8  0%,
    #f2e0f7  28%,
    #dfccef  55%,
    #c8def5  80%,
    #d2ede6  100%
  );
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: var(--sp-xl) calc(var(--sp-xl) + 4rem);
}

/* Gradient-blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
}

.hero-blob-1 {
  top: -20%;
  right: -8%;
  width: 50vw;
  height: 50vw;
  max-width: 580px;
  max-height: 580px;
  background: radial-gradient(circle, rgba(206, 172, 225, 0.65) 0%, transparent 65%);
}

.hero-blob-2 {
  bottom: -15%;
  left: -6%;
  width: 38vw;
  height: 38vw;
  max-width: 440px;
  max-height: 440px;
  background: radial-gradient(circle, rgba(83, 179, 236, 0.38) 0%, transparent 65%);
}

.hero-blob-3 {
  top: 15%;
  left: 22%;
  width: 22vw;
  height: 22vw;
  max-width: 240px;
  max-height: 240px;
  background: radial-gradient(circle, rgba(211, 204, 111, 0.5) 0%, transparent 65%);
  filter: blur(40px);
}

/* Dekorativt baggrundslogo */
.hero-symbol {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  width: 38vw;
  max-width: 420px;
  z-index: 0;
  pointer-events: none;
}

.hero-symbol-img {
  width: 100%;
  height: auto;
  opacity: 0.12;
  filter: saturate(0.6);
}

/* Enkeltkolonne tekst */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1.25rem;
  max-width: none;
}

.hero-inner h1 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: rgba(17, 16, 25, 0.62);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.9;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Bølgedeler */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  pointer-events: none;
  overflow: hidden;
}

.hero-wave::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -5%;
  width: 110%;
  height: 70px;
  background: var(--light);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}


/* --- 9. SEKTIONSINTRO (delt hjælper) --- */
.section-intro {
  margin-bottom: var(--sp-lg);
}

.section-intro h2 {
  margin-bottom: 0.5rem;
}

.section-desc {
  color: rgba(17, 16, 25, 0.62);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 52ch;
  margin-top: 0.5rem;
}


/* --- 10. ROUTING-KORT (6 flowkort) --- */
.routing-section {
  background-color: var(--light);
  padding-block: var(--sp-section);
}

.routing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.routing-card {
  background-color: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 22px rgba(17, 16, 25, 0.07),
    0 1px 4px rgba(17, 16, 25, 0.04);
  border: 1px solid rgba(206, 172, 225, 0.15);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.routing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 38px rgba(94, 78, 208, 0.12),
    0 4px 12px rgba(17, 16, 25, 0.06);
}

/* Farvestripe øverst på kortet */
.routing-ribbon {
  height: 5px;
  width: 100%;
  flex-shrink: 0;
}

.routing-ribbon--gold    { background: linear-gradient(90deg, #D3CC6F, #e8da72); }
.routing-ribbon--indigo  { background: linear-gradient(90deg, var(--indigo), var(--lavender)); }
.routing-ribbon--sky     { background: linear-gradient(90deg, var(--sky), rgba(83, 179, 236, 0.55)); }
.routing-ribbon--violet  { background: linear-gradient(90deg, var(--violet), rgba(94, 78, 208, 0.55)); }
.routing-ribbon--lavender{ background: linear-gradient(90deg, var(--lavender), rgba(206, 172, 225, 0.5)); }
.routing-ribbon--cream   { background: linear-gradient(90deg, var(--cream), #e8ddd0); }

/* Kort-indhold */
.routing-card-body {
  padding: 1.6rem 1.6rem 1.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Overskrift + badge i en linje */
.routing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.routing-card-top h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--dark);
  line-height: 1.3;
}

.routing-card-body > p {
  color: rgba(17, 16, 25, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 1.35rem;
  max-width: none;
}

/* Handlinger i kort med flere knapper */
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

/* Kortfarve-varianter */
.routing-card--summer  { background: linear-gradient(160deg, var(--white) 0%, rgba(211, 204, 111, 0.07) 100%); }
.routing-card--private { background: linear-gradient(160deg, var(--white) 0%, rgba(206, 172, 225, 0.08) 100%); }
.routing-card--firma   { background: linear-gradient(160deg, var(--white) 0%, rgba(83, 179, 236, 0.06) 100%); }
.routing-card--events  { background: linear-gradient(160deg, var(--white) 0%, rgba(143, 67, 175, 0.06) 100%); }
.routing-card--retreat { background: linear-gradient(160deg, var(--white) 0%, rgba(206, 172, 225, 0.1) 100%); }
.routing-card--returning { background: linear-gradient(160deg, var(--white) 0%, rgba(219, 208, 192, 0.1) 100%); }


/* --- 11. SOMMER YOGA-SEKTION --- */
.sommer-section {
  background: linear-gradient(
    152deg,
    var(--sunlight)              0%,
    rgba(255, 248, 220, 0.9)    25%,
    rgba(211, 204, 111, 0.08)   55%,
    rgba(206, 172, 225, 0.1)    80%,
    var(--light)                 100%
  );
  padding-block: var(--sp-section);
}

.sommer-info-line {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(17, 16, 25, 0.58);
  letter-spacing: 0.02em;
  max-width: none;
}

/* To grupper side om side */
.sommer-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: var(--sp-lg);
}

/* Gruppe-kort */
.sommer-group {
  background-color: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 6px 28px rgba(17, 16, 25, 0.07),
    0 2px 8px rgba(17, 16, 25, 0.04);
  border: 1px solid rgba(219, 208, 192, 0.35);
}

/* Gruppe-header */
.sommer-group-header {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(17, 16, 25, 0.07);
}

.sommer-group--aalborg .sommer-group-header {
  background: linear-gradient(135deg, rgba(211, 204, 111, 0.15) 0%, rgba(255, 248, 220, 0.4) 100%);
}

.sommer-group--norden .sommer-group-header {
  background: linear-gradient(135deg, rgba(83, 179, 236, 0.1) 0%, rgba(238, 247, 252, 0.5) 100%);
}

/* Dag-badge */
.sommer-day-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  margin-bottom: 0.5rem;
  background-color: rgba(211, 204, 111, 0.35);
  color: #5a4d00;
  border: 1px solid rgba(211, 204, 111, 0.5);
}

.sommer-day-badge--norden {
  background-color: rgba(83, 179, 236, 0.2);
  color: #1a5a8a;
  border-color: rgba(83, 179, 236, 0.35);
}

.sommer-group-header h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.sommer-group-desc {
  font-size: 0.85rem;
  color: rgba(17, 16, 25, 0.5);
  max-width: none;
}

/* Lokationsliste */
.sommer-locations {
  list-style: none;
  padding: 0.5rem 0;
}

.sommer-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid rgba(17, 16, 25, 0.05);
  transition: background-color 0.15s ease;
}

.sommer-location:last-child { border-bottom: none; }

.sommer-location:hover {
  background-color: rgba(206, 172, 225, 0.06);
}

.sommer-loc-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.sommer-loc-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.sommer-loc-time {
  font-size: 0.82rem;
  color: rgba(17, 16, 25, 0.5);
  font-weight: 500;
}

/* Tilmeld-knap i sektionen */
.sommer-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Driftsnote under grupper */
.sommer-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(17, 16, 25, 0.5);
  text-align: center;
  max-width: none;
}


/* --- 12. PRAKTISK INFO --- */
.practical-section {
  background-color: var(--white);
  padding-block: var(--sp-section);
}

.practical-intro {
  margin-bottom: var(--sp-md);
}

.practical-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 52ch;
}

.practical-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(17, 16, 25, 0.68);
  font-size: 0.95rem;
  line-height: 1.75;
}

.practical-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--indigo);
  flex-shrink: 0;
  margin-top: 0.55em;
}


/* --- 13. PRIVATLIV-NOTE --- */
.privacy-section {
  background: linear-gradient(
    135deg,
    var(--lavender-pale) 0%,
    rgba(240, 234, 248, 0.5) 60%,
    var(--light) 100%
  );
  padding-block: var(--sp-section);
}

.privacy-block {
  max-width: 600px;
}

.privacy-block h2 {
  margin-bottom: var(--sp-sm);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.privacy-block p {
  color: rgba(17, 16, 25, 0.6);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 54ch;
}


/* --- 14. ER DU I TVIVL? (CTA med baggrundsbillede) --- */
.doubt-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-section);
  min-height: 480px;
  display: flex;
  align-items: center;
  text-align: center;
}

.doubt-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.doubt-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    155deg,
    rgba(94, 78, 208, 0.7)    0%,
    rgba(143, 67, 175, 0.58)  40%,
    rgba(206, 172, 225, 0.58) 72%,
    rgba(83, 179, 236, 0.4)   100%
  );
}

.doubt-inner {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-inline: auto;
}

.doubt-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.875rem;
  max-width: none;
}

.doubt-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: var(--sp-md);
}

.doubt-inner p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

.doubt-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}


/* --- 15. FOOTER --- */
.site-footer {
  background-color: var(--cream);
  padding-block: var(--sp-xl);
  border-top: 1px solid rgba(17, 16, 25, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(17, 16, 25, 0.1);
  margin-bottom: var(--sp-md);
}

.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 0.65rem;
  opacity: 0.88;
}

.footer-logo-fallback {
  display: none;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(17, 16, 25, 0.45);
  font-style: italic;
  margin-bottom: 0.75rem;
  max-width: none;
}

.footer-contact {
  font-style: normal;
}

.footer-contact p {
  font-size: 0.82rem;
  color: rgba(17, 16, 25, 0.48);
  line-height: 1.65;
  max-width: none;
}

.footer-email {
  color: rgba(17, 16, 25, 0.52);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-email:hover { color: var(--indigo); }

/* Sociale medier i footer */
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(17, 16, 25, 0.52);
  text-decoration: none;
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(17, 16, 25, 0.12);
  background-color: rgba(206, 172, 225, 0.1);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.social-link:hover {
  color: var(--indigo);
  border-color: rgba(94, 78, 208, 0.3);
  background-color: var(--lavender-pale);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  color: rgba(17, 16, 25, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--indigo); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(17, 16, 25, 0.35);
  max-width: none;
}

.footer-note { font-style: italic; }


/* --- 16. RESPONSIV --- */

/* Tablet: 3-kolonne routing → 2-kolonne */
@media (max-width: 900px) {
  .routing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: Sommer-grupper → stakkede */
@media (max-width: 760px) {
  .sommer-groups {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Mobil (≤768px) */
@media (max-width: 768px) {

  /* Header */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-block: 0.875rem;
  }

  .logo-img { height: 42px; }
  .nav ul { gap: 0.875rem; }
  .nav a { font-size: 0.875rem; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-block: var(--sp-xl) calc(var(--sp-xl) * 1.2);
  }

  .hero-sub { max-width: 100%; }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Smal mobil (≤480px) */
@media (max-width: 480px) {

  /* Routing: 1-kolonne */
  .routing-cards {
    grid-template-columns: 1fr;
  }

  /* Hero-knapper: stablet */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .btn:not(.btn-link):not(.btn-doubt-text) {
    width: 100%;
    text-align: center;
  }

  /* Sommer Yoga-lokationsrækker: stablet på smal skærm */
  .sommer-location {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }

  .sommer-btn {
    width: 100%;
    text-align: center;
  }

  /* Doubt */
  .doubt-actions {
    flex-direction: column;
    gap: 1rem;
  }
}
