/* =============================================
   IRIS YOGA – Om Iris prototype v1
   Personlig · Tillid · Varm · Rolig · Menneskelig

   Indholdsfortegnelse:
   1.  Variabler
   2.  Nulstilling
   3.  Typografi
   4.  Container
   5.  Knapper
   6.  Header
   7.  Hero
   8.  Personlig intro
   9.  Yoga er for alle (tilgang)
   10. Hatha yoga og tydelig guidning
   11. Støtte, redskaber og tilpasning
   12. Uddannelse og erfaring
   13. Hvorfor vælge Iris Yoga?
   14. Testimonial
   15. Tilbudskort
   16. Final CTA
   17. Footer
   18. 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;
  --lavender-pale: #F0EAF8;
  --lavender-mid:  #E0CEEF;
  --lavender-soft: #F7F2FD;
  --rose-pale:     #FDF0F8;
  --rose-mid:      #F5DDEF;

  --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.2rem, 2.5vw, 1.55rem); line-height: 1.3; }
h4 { font-size: 1.05rem; 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);
}

.btn-offer {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.5rem;
  margin-top: auto;
}


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

.nav-current {
  color: var(--indigo) !important;
  font-weight: 700;
}

.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 --- */
/* Varmere og mere rose/pink end de øvrige sider
   – signalerer "personlig, mød et menneske" */
.hero {
  position: relative;
  background: linear-gradient(
    148deg,
    #fdf8ff  0%,
    #f5e5f5  28%,
    #eaccea  52%,
    #dfd0ef  78%,
    #f0eafb  100%
  );
  min-height: 85vh;
  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: 52vw;
  height: 52vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(206, 172, 225, 0.6) 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(143, 67, 175, 0.22) 0%, transparent 65%);
}

.hero-blob-3 {
  top: 25%;
  left: 16%;
  width: 22vw;
  height: 22vw;
  max-width: 240px;
  max-height: 240px;
  background: radial-gradient(circle, rgba(206, 172, 225, 0.5) 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.1;
  filter: saturate(0.55);
}

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

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

/* Organisk blob-form – personlig og varm */
.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.45),
    0 10px 35px rgba(143, 67, 175, 0.18);
  margin-inline: auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  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. PERSONLIG INTRO --- */
.intro-section {
  background-color: var(--white);
  padding-block: var(--sp-section);
}

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

.intro-image-wrap {
  position: relative;
  border-radius: 48% 52% 38% 62% / 55% 45% 55% 45%;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow:
    0 20px 60px rgba(206, 172, 225, 0.38),
    0 8px 28px rgba(17, 16, 25, 0.07);
}

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

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

.intro-lead {
  font-size: 1.08rem;
  color: rgba(17, 16, 25, 0.75);
  line-height: 1.9;
  margin-bottom: 1rem;
  max-width: 46ch;
  font-family: var(--serif);
  font-style: italic;
}

.intro-body {
  color: rgba(17, 16, 25, 0.62);
  line-height: 1.85;
  margin-bottom: 0.875rem;
  max-width: 46ch;
}


/* --- 9. YOGA ER FOR ALLE (TILGANG) --- */
.approach-section {
  background: linear-gradient(
    155deg,
    var(--lavender-soft)          0%,
    rgba(206, 172, 225, 0.12)     45%,
    var(--light)                  100%
  );
  padding-block: var(--sp-section);
}

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

.approach-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin-bottom: var(--sp-md);
}

.approach-lead {
  font-size: 1.05rem;
  color: rgba(17, 16, 25, 0.72);
  line-height: 1.9;
  margin-bottom: var(--sp-md);
  max-width: 46ch;
  font-family: var(--serif);
  font-style: italic;
}

.approach-body {
  color: rgba(17, 16, 25, 0.6);
  line-height: 1.85;
  margin-bottom: 0.875rem;
  max-width: 46ch;
}

.approach-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 20px 55px rgba(206, 172, 225, 0.28),
    0 8px 28px rgba(17, 16, 25, 0.08);
}

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


/* --- 10. HATHA YOGA OG TYDELIG GUIDNING --- */
.hatha-section {
  background-color: var(--white);
  padding-block: var(--sp-section);
  border-top: 1px solid rgba(206, 172, 225, 0.2);
  border-bottom: 1px solid rgba(206, 172, 225, 0.2);
}

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

.hatha-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 20px 55px rgba(206, 172, 225, 0.3),
    0 8px 28px rgba(17, 16, 25, 0.08);
}

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

.hatha-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin-bottom: var(--sp-md);
}

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

.hatha-body {
  font-style: italic;
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(17, 16, 25, 0.55);
  line-height: 1.8;
  border-left: 3px solid var(--lavender);
  padding-left: 1.25rem;
  max-width: 42ch;
}


/* --- 11. STØTTE, REDSKABER OG TILPASNING --- */
.props-section {
  background: linear-gradient(
    160deg,
    var(--white)                  0%,
    rgba(206, 172, 225, 0.07)     50%,
    var(--white)                  100%
  );
  padding-block: var(--sp-section);
}

.props-block {
  max-width: 640px;
  padding-left: 1.75rem;
  border-left: 4px solid var(--lavender);
}

.props-block h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: var(--sp-md);
}

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

.props-body {
  color: rgba(17, 16, 25, 0.62);
  line-height: 1.85;
  margin-bottom: var(--sp-md);
  max-width: 52ch;
}

.props-examples {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(17, 16, 25, 0.5);
  font-style: italic;
  background: rgba(206, 172, 225, 0.12);
  border: 1px solid rgba(206, 172, 225, 0.3);
  border-radius: var(--r-full);
  padding: 0.4rem 1.25rem;
  line-height: 1.6;
  max-width: none;
}


/* --- 12. UDDANNELSE OG ERFARING --- */
.edu-section {
  background: linear-gradient(
    155deg,
    var(--lavender-soft)          0%,
    rgba(219, 208, 192, 0.2)      45%,
    var(--sand)                   75%,
    var(--light)                  100%
  );
  padding-block: var(--sp-section);
}

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

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

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

.edu-body {
  color: rgba(17, 16, 25, 0.6);
  line-height: 1.85;
  margin-bottom: 0.875rem;
  max-width: 52ch;
}

/* Årstal-accent – diskret og visuelt interessant */
.edu-accent {
  flex-shrink: 0;
}

.edu-accent-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 24px rgba(206, 172, 225, 0.25);
  border: 1px solid rgba(206, 172, 225, 0.25);
  min-width: 140px;
}

.edu-year {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--violet);
  line-height: 1;
  font-weight: normal;
}

.edu-dash {
  display: block;
  width: 2px;
  height: 2rem;
  background: linear-gradient(180deg, var(--violet), var(--lavender));
  border-radius: 1px;
}

.edu-school {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 16, 25, 0.45);
  text-align: center;
  line-height: 1.55;
  max-width: none;
  margin-top: 0.5rem;
}


/* --- 13. HVORFOR VÆLGE IRIS YOGA? --- */
.why-section {
  background-color: var(--light);
  padding-block: var(--sp-section);
}

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

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

.why-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: var(--sp-xl);
}

.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border: 1px solid rgba(206, 172, 225, 0.2);
  box-shadow: 0 3px 18px rgba(17, 16, 25, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(94, 78, 208, 0.1);
}

.why-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  margin-top: 0.5em;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(17, 16, 25, 0.68);
  line-height: 1.75;
  max-width: none;
}

.why-note {
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(17, 16, 25, 0.55);
  line-height: 1.8;
  border-left: 3px solid var(--lavender);
  padding-left: 1.25rem;
  max-width: 56ch;
}


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

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

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

.testimonial-single {
  max-width: 680px;
  margin-inline: auto;
}

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

.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. TILBUDSKORT --- */
.offers-section {
  background-color: var(--white);
  padding-block: var(--sp-section);
}

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

.offers-intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

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

.offer-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(17, 16, 25, 0.07);
  border: 1px solid rgba(206, 172, 225, 0.22);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(94, 78, 208, 0.13);
}

.offer-ribbon {
  height: 5px;
  width: 100%;
  flex-shrink: 0;
}

.offer-ribbon-1 { background: linear-gradient(90deg, var(--sky), rgba(83, 179, 236, 0.6)); }
.offer-ribbon-2 { background: linear-gradient(90deg, var(--indigo), var(--violet)); }
.offer-ribbon-3 { background: linear-gradient(90deg, var(--lavender), var(--indigo)); }

.offer-body {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex-grow: 1;
}

.offer-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.offer-icon-1 { background: linear-gradient(135deg, var(--sky), rgba(83, 179, 236, 0.6)); }
.offer-icon-2 { background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.offer-icon-3 { background: linear-gradient(135deg, var(--lavender), var(--indigo)); }

.offer-body h3 {
  font-size: 1.25rem;
  color: var(--dark);
}

.offer-body p {
  color: rgba(17, 16, 25, 0.62);
  font-size: 0.93rem;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 0.5rem;
}


/* --- 16. 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;
  background: linear-gradient(
    155deg,
    rgba(94, 78, 208, 0.82)   0%,
    rgba(143, 67, 175, 0.72)  38%,
    rgba(94, 78, 208, 0.68)   72%,
    rgba(17, 16, 25, 0.52)    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.92);
  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: 0.75rem;
  margin-bottom: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  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, text-decoration-color 0.2s ease;
}
.final-cta-email:hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.8);
}


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


/* --- 18. RESPONSIV --- */

/* Tablet (≤900px) */
@media (max-width: 900px) {

  /* Tilbudskort: 3 → 1 */
  .offer-cards {
    grid-template-columns: 1fr;
  }

  /* Tilgang: 2 → 1 */
  .approach-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Hatha: 2 → 1 */
  .hatha-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  /* Edu: auto kolonne forsvinder */
  .edu-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .edu-accent-inner {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-width: auto;
    width: fit-content;
    padding: 1.25rem 2rem;
  }

  .edu-dash {
    width: 2rem;
    height: 2px;
  }

  .edu-school {
    text-align: left;
  }
}

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

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

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

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

  .intro-image-wrap {
    max-width: 280px;
    border-radius: 50%;
    aspect-ratio: 1;
    margin-inline: auto;
  }

  /* Props: fjern venstre kant, brug top kant */
  .props-block {
    padding-left: 0;
    border-left: none;
    border-top: 4px solid var(--lavender);
    padding-top: 1.25rem;
  }

  /* Why-grid: 2 → 1 */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonial */
  .testimonial-card { 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) {

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

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

  .approach-img { aspect-ratio: 3/2; }
  .hatha-img { aspect-ratio: 3/2; }
}
