/* =============================================
   IRIS YOGA – Sommer Yoga prototype v1
   Lys · Sommer · Yoga ved strand og natur
   Mobil-first: QR-flyer landingsside

   Indholdsfortegnelse:
   1.  Variabler
   2.  Nulstilling
   3.  Typografi
   4.  Container
   5.  Knapper
   6.  Header
   7.  Hero
   8.  Praktisk overblik (quick stats)
   9.  Intro
   10. Lokationer og ture
   11. Sådan foregår en time
   12. Praktisk info (pris/måtte/vejr)
   13. FAQ
   14. Testimonials
   15. Final CTA
   16. Footer
   17. 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;
  --seafoam:       #D8EEE8;
  --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(3.5rem, 8vw, 6rem);

  --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%;
}


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

h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { 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.9rem 2rem;
  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.85rem 1.9rem;
}
.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);
}

/* Full-width knap til lokationskort */
.btn-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}


/* --- 6. 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); }

/* Aktuel side i navigation */
.nav-current {
  color: var(--indigo) !important;
  font-weight: 700;
}

/* Tilmelding-knap i navigation */
.nav-tilmelding {
  background-color: var(--indigo) !important;
  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, transform 0.15s ease;
}
.nav-tilmelding:hover {
  background-color: var(--violet) !important;
  box-shadow: 0 4px 18px rgba(143, 67, 175, 0.35);
  transform: translateY(-1px);
}


/* --- 7. HERO --- */
.hero {
  position: relative;
  background: linear-gradient(
    148deg,
    #fff8e2  0%,
    #f5e8fa  24%,
    #e2ccf0  52%,
    #c8dff8  78%,
    #d5efe8  100%
  );
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: var(--sp-xl) calc(var(--sp-xl) + 5rem);
}

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

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

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

.hero-blob-3 {
  top: 20%;
  left: 18%;
  width: 24vw;
  height: 24vw;
  max-width: 260px;
  max-height: 260px;
  background: radial-gradient(circle, rgba(211, 204, 111, 0.52) 0%, transparent 65%);
  filter: blur(45px);
}

.hero-symbol {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: 42vw;
  max-width: 460px;
  z-index: 0;
  pointer-events: none;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

/* Sæsonbadge – delt med homepage-v3 stil */
.season-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(90deg, rgba(211, 204, 111, 0.55), rgba(219, 208, 192, 0.65));
  border: 1px solid rgba(211, 204, 111, 0.55);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}

.hero-label {
  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-text 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: 44ch;
  margin-bottom: 2.5rem;
}

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

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  border-radius: 58% 42% 52% 48% / 48% 58% 42% 52%;
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(206, 172, 225, 0.42),
    0 10px 35px rgba(83, 179, 236, 0.22);
  margin-inline: auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(206, 172, 225, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
  overflow: hidden;
}

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


/* --- 8. PRAKTISK OVERBLIK (QUICK STATS) --- */
.quick-stats {
  background-color: var(--light);
  padding-block: 3.5rem;
  border-bottom: 1px solid rgba(206, 172, 225, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(17, 16, 25, 0.06);
  border: 1px solid rgba(206, 172, 225, 0.18);
}

/* Farvet cirkel-ikon */
.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.si-indigo  { background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.si-gold    { background: linear-gradient(135deg, var(--gold), rgba(211, 204, 111, 0.55)); }
.si-sky     { background: linear-gradient(135deg, var(--sky), rgba(83, 179, 236, 0.55)); }
.si-lavender { background: linear-gradient(135deg, var(--lavender), var(--lavender-mid)); }
.si-seafoam { background: linear-gradient(135deg, var(--seafoam), #a8d8c8); }

.stat-value {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--dark);
  margin-bottom: 0.4rem;
  max-width: none;
  line-height: 1.3;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(17, 16, 25, 0.52);
  line-height: 1.5;
  max-width: none;
}


/* --- 9. INTRO --- */
.intro {
  background-color: var(--white);
  padding-block: var(--sp-section);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 5.5rem);
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--sp-md);
}

.intro-lead {
  color: rgba(17, 16, 25, 0.7);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: var(--sp-md);
  max-width: 44ch;
}

.intro-bullets {
  list-style: none;
}

.intro-bullets li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
  color: rgba(17, 16, 25, 0.68);
  font-size: 0.95rem;
  line-height: 1.7;
}

.intro-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--indigo);
}

.intro-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 20px 55px rgba(17, 16, 25, 0.1),
    0 8px 28px rgba(83, 179, 236, 0.15);
}

.intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Hatha yoga-note i intro */
.intro-hatha {
  color: rgba(17, 16, 25, 0.6);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.85;
  max-width: 44ch;
  margin-top: 0.75rem;
}

/* Samtykke/notifikationsnote under lokationsintro */
.locations-consent {
  margin-top: var(--sp-md);
  color: rgba(17, 16, 25, 0.52);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 52ch;
}

/* Hatha/Iris-trust note under testimonial */
.trust-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(17, 16, 25, 0.5);
  font-style: italic;
  margin-top: var(--sp-md);
  max-width: 52ch;
  margin-inline: auto;
}


/* --- 10. LOKATIONER OG TURE --- */
.locations {
  background: linear-gradient(
    160deg,
    var(--light)                  0%,
    var(--lavender-pale)          30%,
    rgba(206, 172, 225, 0.12)     65%,
    var(--light)                  100%
  );
  padding-block: var(--sp-section);
}

.locations-intro {
  margin-bottom: var(--sp-xl);
}

.locations-intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--sp-md);
}

.locations-lead {
  color: rgba(17, 16, 25, 0.68);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 52ch;
}

/* Tour-blok: container for én tur */
.tour-block {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow:
    0 6px 32px rgba(17, 16, 25, 0.07),
    0 2px 10px rgba(17, 16, 25, 0.04);
  border: 1px solid rgba(206, 172, 225, 0.2);
}

.tour-block:last-child { margin-bottom: 0; }

/* Aalborg Turen: fjord/sky farver */
.tour-header {
  padding: 2rem 2rem 1.75rem;
}

.tour-aalborg .tour-header {
  background: linear-gradient(
    135deg,
    rgba(83, 179, 236, 0.1) 0%,
    rgba(206, 172, 225, 0.12) 100%
  );
  border-bottom: 3px solid var(--sky);
}

/* Tour de Norden: kyst/guld farver */
.tour-norden .tour-header {
  background: linear-gradient(
    135deg,
    rgba(211, 204, 111, 0.12) 0%,
    rgba(206, 172, 225, 0.1) 100%
  );
  border-bottom: 3px solid var(--gold);
}

.tour-day-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 16, 25, 0.5);
  margin-bottom: 0.5rem;
}

.tour-title {
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  color: var(--dark);
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-weight: normal;
}

.tour-subtitle {
  font-size: 0.9rem;
  color: rgba(17, 16, 25, 0.5);
  letter-spacing: 0.02em;
  max-width: none;
}

/* Lokationskort-grid: 3 kolonner */
.loc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(206, 172, 225, 0.15);
}

/* Individuel lokationskort */
.loc-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(206, 172, 225, 0.15);
  transition: background-color 0.2s ease;
}

.loc-card:last-child { border-right: none; }
.loc-card:hover { background-color: rgba(206, 172, 225, 0.04); }

/* Billedwrap med tidspille */
.loc-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.loc-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.loc-card:hover .loc-card-img {
  transform: scale(1.04);
}

/* Tidspille oven på billedet */
.loc-time-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--indigo);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.8rem;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  z-index: 1;
}

.loc-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0;
}

.loc-card-body h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.loc-card-body p {
  color: rgba(17, 16, 25, 0.62);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.loc-note {
  font-size: 0.74rem !important;
  color: rgba(17, 16, 25, 0.4) !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
  margin-top: 0.6rem !important;
  flex-grow: 0 !important;
}


/* --- 11. SÅDAN FOREGÅR EN TIME --- */
.how-section {
  background: var(--white);
  padding-block: var(--sp-section);
}

.how-intro {
  max-width: 52ch;
  margin-bottom: var(--sp-xl);
}

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

.how-intro p {
  color: rgba(17, 16, 25, 0.62);
  line-height: 1.85;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  position: relative;
}

/* Horisontal forbindelseslinje */
.how-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--violet), var(--lavender));
  opacity: 0.25;
  z-index: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(94, 78, 208, 0.25);
}

.step-text {
  font-size: 0.9rem;
  color: rgba(17, 16, 25, 0.68);
  font-weight: 500;
  line-height: 1.4;
}


/* --- 12. PRAKTISK INFO --- */
.practical {
  background: linear-gradient(
    155deg,
    var(--lavender-pale)          0%,
    rgba(211, 204, 111, 0.08)     45%,
    var(--sand)                   75%,
    var(--light)                  100%
  );
  padding-block: var(--sp-section);
}

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

.practical-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(17, 16, 25, 0.06);
  border: 1px solid rgba(206, 172, 225, 0.18);
}

.practical-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.5rem;
  max-width: none;
}

.practical-value {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
  max-width: none;
  line-height: 1.2;
}

.practical-detail {
  font-size: 0.85rem;
  color: rgba(17, 16, 25, 0.55);
  line-height: 1.65;
  max-width: none;
  margin-bottom: 0.2rem;
}


/* --- 13. FAQ --- */
.faq-section {
  background-color: var(--light);
  padding-block: var(--sp-section);
}

.faq-intro {
  margin-bottom: var(--sp-xl);
}

.faq-intro h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid rgba(206, 172, 225, 0.35);
}

.faq-item:first-child {
  border-top: 1px solid rgba(206, 172, 225, 0.35);
}

/* Skjul standard pil */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.025rem;
  font-weight: normal;
  color: var(--dark);
  list-style: none;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker { display: none; }
summary::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  color: var(--indigo);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details[open] > .faq-question::after {
  content: '\2013';
}

details[open] > .faq-question {
  color: var(--indigo);
}

.faq-answer {
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: rgba(17, 16, 25, 0.65);
  line-height: 1.85;
  font-size: 0.95rem;
}


/* --- 14. TESTIMONIALS --- */
.testimonials {
  background: linear-gradient(
    160deg,
    var(--lavender-pale)          0%,
    rgba(206, 172, 225, 0.15)     50%,
    var(--light)                  100%
  );
  padding-block: var(--sp-section);
}

.testimonials-intro {
  margin-bottom: var(--sp-xl);
  text-align: center;
}

.testimonials-heading {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

/* Enkelt testimonial centreret */
.testimonial-single {
  max-width: 680px;
  margin-inline: auto;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border-left: 5px solid var(--lavender);
  box-shadow: 0 4px 24px rgba(206, 172, 225, 0.22);
  display: flex;
  flex-direction: column;
}

.testimonial-card-large {
  padding: 3rem;
}

.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(17, 16, 25, 0.72);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  max-width: none;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--violet);
  letter-spacing: 0.02em;
}


/* --- 15. FINAL CTA --- */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-section);
  text-align: center;
  min-height: 480px;
  display: flex;
  align-items: center;
}

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

.final-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Strengthened opacity — replaces pale lavender/sky stops with deeper tones */
  background: linear-gradient(
    155deg,
    rgba(94, 78, 208, 0.85)   0%,
    rgba(143, 67, 175, 0.75)  38%,
    rgba(94, 78, 208, 0.72)   72%,
    rgba(17, 16, 25, 0.55)    100%
  );
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-inline: auto;
}

.final-cta-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: var(--sp-sm);
  max-width: none;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--sp-md);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.85;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.final-cta-contact {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: none;
}

.final-cta-email {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}
.final-cta-email:hover { color: var(--white); }


/* --- 16. 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); }

.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; }


/* --- 17. RESPONSIV --- */

/* Stats: 5 → 3 på tablet */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .loc-cards {
    grid-template-columns: 1fr;
  }

  .loc-card {
    border-right: none;
    border-bottom: 1px solid rgba(206, 172, 225, 0.15);
  }
  .loc-card:last-child { border-bottom: none; }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-steps::before { display: none; }

  .practical-cards { grid-template-columns: 1fr; }
}

/* Mobil (≤768px) – primær platform for QR-trafik */
@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.3);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image-wrap {
    max-width: 300px;
    border-radius: 50%;
    aspect-ratio: 1;
  }

  /* Stats: 3 → 2 */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Intro */
  .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Tour header */
  .tour-header { padding: 1.5rem; }

  /* How steps */
  .how-steps { grid-template-columns: 1fr; }

  /* Testimonial */
  .testimonial-card-large { padding: 2rem; }

  /* 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) {

  .stats-grid { grid-template-columns: 1fr; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

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

  /* Kortpadding */
  .loc-card-body { padding: 1.25rem; }
  .practical-card { padding: 1.5rem 1.25rem; }
}
