/*
Theme Name: Melanie Gabuten
Theme URI: https://melaniegabuten.se
Author: ACW Studio
Author URI: https://amandacwatson.se
Description: Custom theme for Melanie Gabuten — A Space to Breathe. Ceremoniell, mörk och organisk.
Version: 1.0.0
License: Private
Text Domain: melanie-gabuten
*/

/* ============================================================
   MELANIE GABUTEN — style.css
   Struktur:
   1. Reset & root-variabler
   2. Bas & typografi
   3. Knappar
   4. Nav (inkl. dropdown)
   5. Hero
   6. Marquee
   7. Ritual banner
   8. Om breathwork
   9. Klasser
   10. Testimonial
   11. Events
   12. Boka CTA
   13. Nyhetsbrev
   14. Footer
   15. Animationer & hjälpklasser
   16. Responsivt
   ============================================================ */


/* ── 1. RESET & VARIABLER ── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Alternativ C – Ritual möter Mark (godkänd av Melanie) ── */

  /* Bakgrunder */
  --dark:          #1a1108;   /* Natt — primär mörk bakgrund */
  --dark-mid:      #221810;   /* Jord — sekundär mörk sektion */
  --cream:         #FAF9F0;   /* Ljus sektion */

  /* Accenter */
  --copper:        #c17a45;   /* Glöd — primär accent */
  --copper-dark:   #a5632e;   /* Glöd hover */
  --sand:          #c4a882;   /* Sand — mjuk accent / text på mörk */
  --sand-light:    #e8d8be;   /* Ljus text på mörk */
  --forest:        #2d3b1e;   /* Skog — reserverad för Fas 2 */

  /* Text */
  --text:          #2a1f14;   /* Brödtext på ljus bakgrund */
  --text-light:    #8a6a50;   /* Dämpad text på ljus bakgrund */
  --text-on-dark:  #e8d8be;   /* Rubrik på mörk bakgrund */
  --text-mid-dark: #b09878;   /* Brödtext på mörk bakgrund */

  /* Bakåtkompatibla alias */
  --yellow:        #e8d8be;
  --yellow-dark:   #c4a882;
  --wine:          #1a1108;
  --wine-mid:      #221810;
  --brown-dark:    #1a1108;
  --brown-medium:  #8a6a50;
  --dark-grain:    #221810;
  --olive:         #221810;
  --olive-deep:    #1a1108;

  /* Typografi */
  --font-serif: 'EB Garamond', serif;
  --font-sans:  'Inter', sans-serif;
}

html { scroll-behavior: smooth; }


/* ── 2. BAS & TYPOGRAFI ── */

body {
  background: var(--dark);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0.04em;
}

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

a { text-decoration: none; }

ul { list-style: none; }

/* Gemensamma sektionsstilar */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-on-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--copper);
}

.section-body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--brown-medium);
  line-height: 1.8;
  max-width: 560px;
}

/* Ljusa sektioner */
.section--light .section-title  { color: var(--text); }
.section--light .section-label  { color: var(--text-light); }
.section--light .section-body   { color: var(--text); }


/* ── 3. KNAPPAR ── */

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

/* Primary – koppar fylld */
.btn-primary {
  background: var(--copper);
  color: var(--dark);
  padding: 16px 36px;
}
.btn-primary:hover {
  background: var(--copper-dark);
  color: var(--sand);
}

/* Secondary – transparent med koppar border */
.btn-secondary {
  background: transparent;
  color: var(--copper);
  padding: 14px 32px;
  border: 1px solid var(--copper);
}
.btn-secondary:hover {
  background: var(--copper);
  color: var(--sand);
}

/* Secondary på mörk bakgrund */
.btn-secondary--light {
  color: var(--sand-light);
  border-color: rgba(232, 216, 190, 0.4);
}
.btn-secondary--light:hover {
  background: rgba(232, 216, 190, 0.1);
  color: var(--sand-light);
  border-color: var(--sand-light);
}

/* Ghost – mjuk understrykning */
.btn-ghost {
  background: transparent;
  color: var(--sand);
  padding: 10px 0;
  border: 1px solid rgba(196, 168, 130, 0.4);
  letter-spacing: 0.16em;
  font-size: 10px;
}
.btn-ghost:hover {
  color: var(--sand);
  background: var(--copper);
}

/* Ghost på ljus bakgrund */
.btn-ghost--dark {
  color: var(--text-light);
  border-bottom-color: rgba(138, 106, 80, 0.4);
}
.btn-ghost--dark:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* Länk-kursiv */
.link-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--sand);
  text-decoration: none;
  transition: color 0.3s;
}
.link-italic:hover { color: var(--copper); }


/* ── 4. NAV ── */

#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 52px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.45s ease, border-color 0.45s ease, padding 0.45s ease;
}

#main-nav.scrolled {
  background: rgba(26, 17, 8, 0.97);
  border-bottom-color: rgba(193, 122, 69, 0.15);
  backdrop-filter: blur(10px);
  padding: 14px 52px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--sand-light);
  text-decoration: none;
  transition: color 0.45s ease;
}
#main-nav.scrolled .nav-logo { color: var(--sand); }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 216, 190, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}
#main-nav.scrolled .nav-links a   { color: var(--sand); }
.nav-links a:hover                  { color: var(--sand-light); }
#main-nav.scrolled .nav-links a:hover { color: var(--copper); }

/* Aktiv sida */
.nav-links a.current-page {
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 2px;
}

.nav-cta {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--copper);
  padding: 10px 26px;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--copper-dark); }

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  list-style: none;
  background: var(--dark-mid);
  border: 1px solid rgba(193, 122, 69, 0.15);
  min-width: 200px;
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sand) !important;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-dropdown li a:hover {
  color: var(--copper) !important;
  background: rgba(193, 122, 69, 0.08);
}

.nav-item.open .nav-dropdown { display: block; }

.mobile-menu-toggle,
.mobile-nav-panel {
  display: none;
}


/* ── 5. HERO ── */

.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 50%; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.877) 60%,
    rgb(0, 0, 0) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
}

.hero-panel {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: fadeIn 1.6s ease 0.1s forwards;
}
.hero-panel.left  { filter: sepia(40%) brightness(0.74) contrast(1.04); }
.hero-panel.right { filter: sepia(20%) brightness(0.62) contrast(1.04); animation-delay: 0.3s; }

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  z-index: 2;
   background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.36)
  );
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 62px);
  font-weight: 300;
  line-height: 1.22;
  color: var(--yellow);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.62);
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero h1 em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--sand-light);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--sand);
  max-width: 420px;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  opacity: 0;
  text-shadow: 0 3px 12px rgba(120, 86, 24, 0.45);
  animation: fadeUp 1s ease 1.15s forwards;
}

/* .hero-divider {
  width: 30px;
  height: 1px;
  background: rgba(201, 164, 122, 0.5);
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
} */


/* ── 6. MARQUEE ── */

.marquee-strip {
  background: var(--dark-mid);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(193, 122, 69, 0.1);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
  white-space: nowrap;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  min-width: 100vw;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}

.marquee-item {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  flex-shrink: 0;
}
.marquee-item::after { content: '·'; color: var(--sand); }


/* ── 7. RITUAL BANNER ── */

.ritual-banner {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ritual-banner-bg {
  position: absolute;
  inset: 0;
  background: url('img/bild 4.jpg') center / cover no-repeat;
}

.ritual-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  background-size: cover;
}

.ritual-banner-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ritual-banner-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 300;
  color: var(--yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
}
.ritual-banner-text h2 em {
  font-style: italic;
  display: block;
  color: var(--sand-light);
  font-size: 0.78em;
  letter-spacing: 0.04em;
}


/* ── 8. OM BREATHWORK ── */

.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.teaser-image-col {
  background: var(--cream);
  min-height: 560px;
  overflow: hidden;
}

.teaser-image-col .teaser-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  aspect-ratio: 4/5;
}

.teaser-text-col {
  background: #F5EFE4;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.teaser-text-col .section-title { color: var(--text); }

.btn-primary.classes {
  background: var(--wine-mid);
  color: var(--yellow);
  padding: 14px 32px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-self: start;
}


/* ── 9. ERBJUDANDEN ── */

.erbjudanden {
  background: #161616;
  padding: 100px 64px;
}

.erbjudanden > .section-label { margin-bottom: 48px; }

.erbjudanden-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.erbjudanden .section-label {
  color: var(--cream);
  opacity: 0.85;
}

.erbjudanden-img {
  width: 330px;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.7) contrast(1.25) saturate(0.8) sepia(15%);
}

.class-number {
  font-family: var(--font-serif);
  font-size: 11px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 8px;
}

.erbjudanden-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.erbjudanden-subtitle {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}

.erbjudanden-content p {
  font-size: 13px;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 10px;
}

.erbjudanden-content ul {
  list-style: none;
  font-size: 12px;
  color: var(--cream);
  opacity: 0.7;
}
.erbjudanden-content ul li::before {
  content: "— ";
  color: var(--sand);
}


/* ── 9b. ERBJUDANDEN PREVIEW (startsida) ── */
.erbjudanden-preview {
  position: relative;
  overflow: hidden;
  background: #161616;
  padding: 120px 40px;
}

.erbjudanden-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/hero bild4.jpg') center / cover no-repeat;
   filter:
    sepia(25%)
    brightness(0.22)
    contrast(0.95)
    blur(1px);
  z-index: 0;
}

.erbjudanden-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 5, 0.68);
}

.erbjudanden-preview > * {
  position: relative;
  z-index: 1;
}

.erbjudanden-preview .section-label {
  color: var(--cream);
  opacity: 0.85;
}

.erbjudanden-preview-link {
  text-align: center;
  margin-top: 64px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}

.erbjudanden-preview-link a {
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(193, 122, 69, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.erbjudanden-preview-link a:hover {
  border-color: var(--copper);
}


/* ── 10. TESTIMONIAL ── */

.testimonials {
  position: relative;
  padding: 100px 64px;
  text-align: center;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/bild 1.jpg') center / cover no-repeat;
  filter: sepia(50%) brightness(0.42);
  z-index: 0;
}

.testimonials > * {
  position: relative;
  z-index: 1;
}

.testimonials .section-label {
  margin-bottom: 48px;
  color: rgba(236, 224, 172, 0.8);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.6vw, 34px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--cream);
  margin: 0 auto 32px;
  quotes: "\201C" "\201D";
}

.testimonial-quote::before { content: open-quote; }
.testimonial-quote::after  { content: close-quote; }

.testimonial-author {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--yellow);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.testimonial-dot.active {
  background: var(--yellow);
}


/* ── 11. EVENTS ── */

/* Events-sida: hero */
.events-page-hero {
  background: var(--dark);
  padding: 180px 64px 80px;
  border-bottom: 1px solid rgba(193, 122, 69, 0.1);
}

.events-page-hero .section-inner { max-width: 1200px; margin: 0 auto; }
.events-page-hero .section-title  { margin-bottom: 16px; }
.events-page-hero .section-body   { max-width: 560px; }

/* Utökat grid — alla events utan max 3 kolumner */
.events-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.events {
  background: #f5efe4;
  padding: 100px 64px;
}

.events-intro {
  background: #f5efe4;
  padding: 90px 64px 20px;
}

.events-intro .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.events-intro .section-title {
  color: var(--text);
  margin-bottom: 18px;
}

.events-intro .section-body {
  color: var(--brown-medium);
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.events-intro .section-body + .section-body {
  margin-top: 14px;
}

.events-intro-note {
  color: var(--text);
}

.events .section-title { color: var(--text); }
.events .section-label { color: var(--text-light); }
.events .section-body  { color: var(--brown-medium); }

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

.events-lista .events-grid {
  margin-top: 0;
}

.events-preview-more {
  text-align: center;
  margin-top: 42px;
}

.events-preview-link {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 106, 80, 0.35);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}

.events-preview-link:hover {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.event-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.event-poster {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.event-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  transition: opacity 0.4s ease;
}

.event-card:hover .event-poster-overlay { opacity: 0.85; }

.event-card:hover .event-poster {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.event-poster-content {
  position: absolute;
  bottom: 28px;
  left: 24px;
  right: 24px;
  z-index: 1;
}

.event-name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}

.event-name em {
  font-style: italic;
  color: var(--yellow);
}

.event-date {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

.event-card-footer {
  padding: 20px 4px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.events-grid--full .event-card-footer {
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.event-card-copy {
  min-width: 0;
  width: 100%;
}

.event-details {
  font-size: 15px;
  color:var(--brown-medium);;
  line-height: 1.6;
  margin-bottom: 10px;
}

.event-place,
.event-date-summary,
.event-dates-list {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-light);
}

.event-place {
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.event-date-summary {
  margin: 0;
}

.event-dates-details {
  margin-top: 8px;
}

.event-dates-details summary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
}

.event-dates-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.event-dates-list li + li {
  margin-top: 4px;
}

.events-cta {
  text-align: center;
  margin-top: 56px;
}

.event-card-footer .btn-ghost {
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--copper);
  padding: 10px 20px;
  border: none;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.events-grid--full .event-card-footer .btn-ghost {
  margin-top: auto;
}
.event-card-footer .btn-ghost:hover {
  background: var(--copper-dark);
  color: var(--sand);
}


/* ── 12. BOKA CTA ── */


/* ── 13. NYHETSBREV ── */

.newsletter {
  background: var(--dark);
  padding: 100px 56px;
  text-align: center;
}

.newsletter .section-inner { max-width: 600px; }
.newsletter .section-title { color: var(--cream); font-size: 44px; }
.newsletter .section-label { color: var(--text-mid-dark); }
.newsletter .section-body  { color: var(--text-mid-dark); margin: 0 auto 48px; }

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form .mailerlite-form,
.newsletter-form .ml-form-embedContainer,
.newsletter-form .ml-form-embedWrapper,
.newsletter-form .ml-form-embedBody,
.newsletter-form .ml-form-embedContent,
.newsletter-form .ml-form-formContent,
.newsletter-form .ml-form-embedSubmit,
.newsletter-form .mailerlite-form-inputs {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.newsletter-form form,
.newsletter-form .mailerlite-form-inputs,
.newsletter-form .ml-block-form,
.newsletter-form .ml-form-formContent {
  display: flex !important;
  width: 100%;
  align-items: stretch;
  flex-direction: row !important;
  flex-wrap: nowrap;
  gap: 0;
}

.newsletter-form form.ml-block-form,
.newsletter-form .mailerlite-form form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  width: 100% !important;
  gap: 0 !important;
}

.newsletter-form .mailerlite-form-title,
.newsletter-form .mailerlite-form-description,
.newsletter-form .ml-form-embedContent > h4,
.newsletter-form .ml-form-embedContent > p,
.newsletter-form .ml-form-title,
.newsletter-form .ml-form-description {
  display: none !important;
}

.newsletter-form label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.newsletter-form .mailerlite-form-field,
.newsletter-form .ml-form-fieldRow,
.newsletter-form .ml-field-group {
  flex: 1 1 auto;
  margin: 0 !important;
  padding: 0 !important;
}

.newsletter-form .ml-form-formContent {
  flex: 1 1 auto;
  grid-column: 1;
  width: auto !important;
}

.newsletter-form .mailerlite-subscribe-button-container,
.newsletter-form .ml-form-embedSubmit {
  flex: 0 0 auto;
  grid-column: 2;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: #fff;
  color: var(--brown-dark);
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  width: 100% !important;
  min-height: 49px;
  border-radius: 0 !important;
  box-shadow: none !important;
  appearance: none;
}
.newsletter-form input::placeholder { color: var(--text); }

.newsletter-form button {
  padding: 16px 32px;
  background: var(--copper);
  color: var(--dark);
  border: none;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--copper-dark); }

.newsletter-form button,
.newsletter-form input[type="submit"],
.newsletter-form .mailerlite-subscribe-submit,
.newsletter-form .ml-form-embedSubmit button,
.newsletter-form .ml-form-embedSubmit button.primary {
  min-height: 49px;
  padding: 16px 32px !important;
  background: var(--copper) !important;
  color: var(--dark) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--font-sans) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover,
.newsletter-form input[type="submit"]:hover,
.newsletter-form .mailerlite-subscribe-submit:hover,
.newsletter-form .ml-form-embedSubmit button:hover,
.newsletter-form .ml-form-embedSubmit button.primary:hover {
  background: var(--copper-dark) !important;
}

.newsletter-form .mailerlite-form-response,
.newsletter-form .mailerlite-form-error,
.newsletter-form .mailerlite-form-success,
.newsletter-form .ml-form-successBody,
.newsletter-form .ml-form-successContent,
.newsletter-form .ml-form-formContent .ml-error,
.newsletter-form .ml-form-embedWrapper .ml-error {
  flex: 0 0 100%;
  width: 100%;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--text-mid-dark) !important;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  text-align: center !important;
}

.newsletter-form .mailerlite-form-success,
.newsletter-form .ml-form-successContent,
.newsletter-form .ml-form-successContent p {
  color: var(--sand-light) !important;
}

.newsletter-form .mailerlite-form-error,
.newsletter-form .ml-form-formContent .ml-error,
.newsletter-form .ml-form-embedWrapper .ml-error {
  color: var(--copper) !important;
}


/* ── 14. FOOTER ── */

#site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(196, 168, 130, 0.12);
  padding: 80px 64px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--sand-light);
  letter-spacing: 0.06em;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(232, 216, 190, 0.45);
  line-height: 1.7;
  max-width: 220px;
  font-family: var(--font-sans);
  font-weight: 300;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.social-link {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 10px;
  min-height: 44px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  transition: color 0.3s;
  border: 1px solid rgba(193, 122, 69, 0.3);
  padding: 8px 16px;
}
.social-link:hover { color: var(--sand); border-color: var(--sand); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(232, 216, 190, 0.5);
  text-decoration: none;
  transition: color 0.3s;
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.03em;
}
.footer-col ul a:hover { color: var(--sand); }

.footer-contact,
.footer-contact a {
  font-size: 13px;
  color: rgba(232, 216, 190, 0.5);
  font-family: var(--font-sans);
  font-weight: 300;
}

.footer-contact {
  gap: 0;
  line-height: 1.5;
}

.footer-contact a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover { color: var(--sand); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(196, 168, 130, 0.08);
  font-size: 11px;
  color: rgba(232, 216, 190, 0.25);
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom a {
  color: var(--copper);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--sand); }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--copper);
  border: none;
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: opacity 0.25s, transform 0.25s, background 0.25s;
}

.back-to-top:hover {
  background: var(--copper-dark);
  color: var(--sand);
}

.back-to-top[hidden] {
  display: none;
}


/* ── 15. ANIMATIONER & HJÄLPKLASSER ── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── 17. OM MELANIE — SEKTIONER ── */

/* Hero */
.om-hero {
  position: relative;
  height: 75vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.om-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(30%) brightness(0.42) contrast(1.05);
}

.om-hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.om-hero-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.2vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--sand-light);
  max-width: 740px;
  quotes: none;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.9s forwards;
}

.om-hero-attribution {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

/* Välkommen */
.om-valkomst {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.om-valkomst-image-col {
  overflow: hidden;
  min-height: 560px;
}

.om-valkomst-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.om-valkomst-text-col {
  background: #F5EFE4;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.om-valkomst-text-col .section-label { color: var(--text-light); }
.om-valkomst-text-col .section-title { color: var(--text); }
.om-valkomst-text-col .section-body  { color: var(--text); max-width: 100%; }

/* Poesi */
.om-poesi {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgba(26, 17, 8, 0.76), rgba(26, 17, 8, 0.82)),
    url('img/skog.jpg') center 58% / cover no-repeat;
  padding: 120px 64px;
  text-align: center;
}

.om-poesi::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, transparent 15%, rgba(26, 17, 8, 0.42) 100%);
}

.om-poesi-quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--sand-light);
  max-width: 860px;
  margin: 0 auto;
  quotes: "\201C" "\201D";
}

.om-poesi-quote::before { content: open-quote; }
.om-poesi-quote::after  { content: close-quote; }

/* Transition */
.om-transition {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.om-transition-text-col {
  background: var(--dark);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.om-transition-text-col .section-body { max-width: 100%; }

.om-transition-image-col {
  overflow: hidden;
  min-height: 560px;
}

.om-transition-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Rötter */
.om-rotter {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.om-rotter-image-col {
  overflow: hidden;
  min-height: 560px;
}

.om-rotter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.om-rotter-text-col {
  background: #F5EFE4;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.om-rotter-text-col .section-label { color: var(--text-light); }
.om-rotter-text-col .section-title { color: var(--text); }
.om-rotter-text-col .section-body  { color: var(--text); max-width: 100%; }

/* Verktyg */
.om-verktyg {
  background: var(--cream);
  padding: 100px 64px;
}

.om-verktyg .section-inner { max-width: 1200px; margin: 0 auto; }
.om-verktyg .section-label { color: var(--text-light); margin-bottom: 12px; }
.om-verktyg .section-title { color: var(--text); margin-bottom: 56px; }

.verktyg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.verktyg-card {
  background: #fff;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.verktyg-card:hover { border-color: var(--copper); }

.verktyg-icon {
  color: var(--copper);
  width: 32px;
  height: 32px;
}

.verktyg-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
}

.verktyg-body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
}

/* Certifieringar */
.om-certifieringar {
  background: var(--cream);
  padding: 100px 64px;
  border-top: 1px solid rgba(42, 31, 20, 0.08);
}

.om-certifieringar .section-inner { max-width: 860px; margin: 0 auto; }
.om-certifieringar .section-label { color: var(--text-light); margin-bottom: 12px; }
.om-certifieringar .section-title { color: var(--text); margin-bottom: 56px; }

.certifiering-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(42, 31, 20, 0.12);
}

.certifiering-item {
  border-bottom: 1px solid rgba(42, 31, 20, 0.12);
}

.certifiering-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-align: left;
  transition: color 0.3s;
}

.certifiering-trigger:hover { color: var(--copper); }

.certifiering-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.certifiering-icon::before,
.certifiering-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}

.certifiering-icon::before { width: 14px; height: 1px; }
.certifiering-icon::after  { width: 1px; height: 14px; }

[data-open] .certifiering-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.certifiering-panel { padding: 0 0 24px; }

.certifiering-content {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

.certifiering-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(42, 31, 20, 0.12);
}

.certifiering-list li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(42, 31, 20, 0.12);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

/* CTA */
.om-cta {
  background: var(--dark);
  padding: 120px 64px;
  text-align: center;
}

.om-cta .section-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.om-cta .section-title { margin-bottom: 0; }

.om-cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--sand);
  line-height: 1.5;
}


/* ── 16. RESPONSIVT ── */

@media (max-width: 960px) {
  #main-nav { padding: 18px 28px; }
  #main-nav.scrolled { padding: 14px 28px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(232, 216, 190, 0.28);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--sand-light);
    transition: transform 0.3s, opacity 0.3s;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 10px 28px 18px;
    background: rgba(26, 17, 8, 0.98);
    border-bottom: 1px solid rgba(193, 122, 69, 0.16);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .mobile-nav-panel a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(232, 216, 190, 0.08);
    color: var(--sand);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-nav-panel a.current-page {
    color: var(--copper);
  }

  .hero { grid-template-columns: 1fr; }
  .hero-panel.right { display: none; }

  .teaser { grid-template-columns: 1fr; }
  .teaser-image-col { min-height: 320px; }
  .teaser-text-col  { padding: 60px 28px; }

  .erbjudanden           { padding: 70px 28px; }
  .erbjudanden-grid      { grid-template-columns: 1fr; }
  .erbjudanden-preview   { padding: 70px 28px; }
  .melanie-cards-grid { grid-template-columns: 1fr; }
  .erbjudanden-preview .melanie-card-image { height: 200px; }

  .events       { padding: 70px 28px; }
  .events-grid  { grid-template-columns: 1fr; }

  .newsletter   { padding: 70px 28px; }

  #site-footer { padding: 60px 28px 40px; }
  .footer-top  { grid-template-columns: 1fr 1fr; }

  /* Om Melanie responsivt */
  .om-valkomst   { grid-template-columns: 1fr; }
  .om-valkomst-image-col { min-height: 320px; }
  .om-valkomst-text-col  { padding: 60px 28px; }

  .om-transition { grid-template-columns: 1fr; }
  .om-transition-image-col { min-height: 320px; order: -1; }
  .om-transition-text-col  { padding: 60px 28px; }

  .om-rotter     { grid-template-columns: 1fr; }
  .om-rotter-image-col { min-height: 320px; }
  .om-rotter-text-col  { padding: 60px 28px; }

  .om-poesi { padding: 80px 28px; }

  .om-verktyg { padding: 70px 28px; }
  .verktyg-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .om-certifieringar { padding: 70px 28px; }

  .om-cta { padding: 80px 28px; }

  /* Erbjudanden sida responsivt */
  .erbjudanden-kort { padding: 70px 28px; }
  .erbjudanden-kort .melanie-card-content { padding: 36px 24px; }
  .erbjudanden-faq { padding: 70px 28px; }
  .erbjudanden-cta { padding: 80px 28px; }
  .erbjudanden-modal-image { display: none; }
  .erbjudanden-modal-content { padding: 40px 28px; }
  .boka-grid    { padding: 70px 28px; }
  .boka-cards   { grid-template-columns: 1fr; }
  .boka-kontakt { padding: 70px 28px; }
  .boka-hero    { padding: 120px 28px 60px; }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 48px;
  }

  .footer-col ul a,
  .footer-contact li,
  .footer-bottom a {
    align-items: center;
    display: flex;
    min-height: 44px;
  }

  .footer-bottom a {
    justify-content: center;
  }

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


/* ── 18. ERBJUDANDEN SIDA ── */

/* Kort-grid */
.erbjudanden-kort,
.erbjudanden-kort-section {
  background: var(--cream);
  padding: 100px 40px;
}

.erbjudanden-kort .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.erbjudanden-kort-header {
  text-align: center;
  margin-bottom: 64px;
}

.erbjudanden-kort .section-label,
.erbjudanden-kort .section-title {
  color: var(--text);
}

.erbjudanden-kort .section-title em {
  color: var(--text);
}

.erbjudanden-kort-header .section-label { margin-bottom: 16px; }

.erbjudanden-preview-text {
  text-align: center;
  margin: 0 auto 48px;
  color:var(--sand)
}

.melanie-card {
  background: #221810;
  border: 1px solid rgba(196, 168, 130, 0.10);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.melanie-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.melanie-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.card-group img {
  object-position: center 30%;
}

.card-individual img {
  object-position: center center;
}

.card-reiki img {
  object-position: center 45%;
}

.melanie-card-content {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.melanie-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--sand-light);
  letter-spacing: 0.02em;
  margin: 0;
}

.melanie-card-ingress {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid-dark);
  line-height: 1.7;
  margin: 0;
}

.melanie-card-passar {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 300;
  margin: 0;
}

.melanie-card-pris {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 400;
  margin: 0;
}

.melanie-card-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
}

.melanie-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 340px));
  justify-content: center;
  gap: 32px;
}

@media (max-width: 960px) {
  .melanie-cards-grid {
    grid-template-columns: 1fr;
  }

  .erbjudanden-preview .melanie-card-image {
    height: auto;
  }
}

.erbjudanden-kort-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.erbjudanden-hint {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid-dark);
  display: block;
}

.erbjudanden-kort-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(196, 168, 130, 0.3);
  padding: 7px 14px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.erbjudanden-kort-tag:hover {
  border-color: var(--copper);
  color: var(--copper);
}

/* Modals */
.erbjudanden-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erbjudanden-modal[hidden] {
  display: none;
}

.erbjudanden-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 17, 8, 0.85);
  cursor: pointer;
}

.erbjudanden-modal-box {
  position: relative;
  z-index: 1;
  background: var(--cream);
  max-width: 860px;
  width: 92%;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.erbjudanden-modal-content {
  flex: 1;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.erbjudanden-modal-image {
  width: 260px;
  flex-shrink: 0;
  overflow: hidden;
}

.erbjudanden-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(20%) brightness(0.88);
  display: block;
}

.erbjudanden-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2;
}

.erbjudanden-modal-close:hover { color: var(--text); }

.erbjudanden-modal-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  padding-right: 32px;
}

.erbjudanden-modal-body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

.erbjudanden-modal-ingress {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.erbjudanden-modal-list-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.erbjudanden-modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.erbjudanden-modal-list li {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.erbjudanden-modal-list li::before {
  content: "- ";
  color: var(--copper);
}

.erbjudanden-vagar {
  background: var(--cream);
  padding: 100px 40px;
  scroll-margin-top: 90px;
}

.erbjudanden-vagar .section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.erbjudanden-vagar .section-label,
.erbjudanden-vagar .section-title {
  color: var(--text);
}

.erbjudanden-vagar .section-title em {
  color: var(--copper);
}

.erbjudanden-tabs {
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(42,31,20,0.08);
  padding: 40px;
}

.erbjudanden-tabs-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.erbjudanden-tab {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid rgba(196, 168, 130, 0.34);
  background: transparent;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.erbjudanden-tab:hover,
.erbjudanden-tab.is-active {
  border-color: var(--copper);
  color: var(--text);
  background: rgba(196, 168, 130, 0.12);
}

.erbjudanden-tab-panel {
  max-width: none;
}

.erbjudanden-tab-panel[hidden] {
  display: none;
}

.erbjudanden-tab-panel h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 18px;
}

.erbjudanden-tab-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.erbjudanden-tab-content {
  min-width: 0;
}

.erbjudanden-tab-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin: 30px 0 22px;
}

.erbjudanden-tab-image {
  overflow: hidden;
  align-self: center;
}

.erbjudanden-tab-image img {
  width: 100%;
  height: clamp(320px, 36vw, 430px);
  object-fit: cover;
  object-position: center center;
  filter: sepia(20%) brightness(0.88);
  display: block;
}

.erbjudanden-tab-info {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 8px;
}

.erbjudanden-tab-info strong {
  font-weight: 500;
  color: var(--text);
}

.erbjudanden-tab-panel .btn-primary {
  max-width: 100%;
  margin-top: 24px;
  white-space: normal;
  line-height: 1.5;
}

.erbjudanden-tab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.erbjudanden-tab-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 0;
  box-sizing: border-box;
  margin-top: 0;
  text-align: center;
}

@media (max-width: 720px) {
  .erbjudanden-vagar {
    padding: 70px 28px;
  }

  .erbjudanden-tabs {
    padding: 28px 22px;
  }

  .erbjudanden-tabs-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .erbjudanden-tab {
    width: 100%;
    text-align: left;
  }

  .erbjudanden-tab-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .erbjudanden-tab-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .erbjudanden-tab-actions {
    align-items: stretch;
  }

  .erbjudanden-tab-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .erbjudanden-tab-actions {
    flex-direction: column;
  }

  .erbjudanden-tab-actions .btn-primary {
    width: 100%;
  }
}

.erbjudanden-brygga {
  text-align: center;
  padding: 48px 40px 0;
  background: var(--cream);
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-light);
}

/* FAQ */
.erbjudanden-faq,
.erbjudanden-faq-section {
  background: var(--cream);
  padding: 100px 40px;
  border-top: 1px solid rgba(42,31,20,0.06);
}

/* ── Boka Calendly ─────────────────────────────────────────────────────────── */
.boka-calendly {
  background: #FAF9F0;
  padding: 84px 40px 92px;
  overflow-x: hidden;
}

.boka-calendly-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.boka-calendly .section-title { color: var(--text); }
.boka-calendly .section-label { color: var(--copper); }

.boka-calendly-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-light);
  margin: 0 auto 28px;
  max-width: 480px;
  font-weight: 300;
}

.calendly-inline-widget {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
}

.boka-trust-row {
  margin: 22px auto 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
}

.boka-consultation-cta {
  max-width: 560px;
  margin: 56px auto 0;
  padding-top: 44px;
  border-top: 1px solid rgba(42,31,20,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.boka-consultation-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}

.boka-consultation-text {
  max-width: 430px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
}

.boka-consultation-cta .btn-primary {
  max-width: 100%;
  white-space: normal;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .boka-calendly {
    padding: 70px 28px 78px;
  }

  .calendly-inline-widget {
    height: 720px !important;
  }
}

@media (max-width: 600px) {
  .boka-calendly {
    padding: 58px 18px 66px;
  }

  .boka-calendly .section-title {
    margin-bottom: 16px;
  }

  .boka-calendly-text {
    margin-bottom: 22px;
  }

  .calendly-inline-widget {
    height: 680px !important;
    box-shadow: 0 12px 34px rgba(42,31,20,0.07);
  }

  .boka-consultation-cta {
    margin-top: 42px;
    padding-top: 34px;
  }
}

.erbjudanden-faq .section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.erbjudanden-faq .section-label { color: var(--text-light); margin-bottom: 12px; }
.erbjudanden-faq .section-title { color: var(--text); margin-bottom: 56px; }
.erbjudanden-faq .section-title em { color: var(--text); }

.erbjudanden-faq-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(42,31,20,0.1);
}

.erbjudanden-faq-item {
  border-bottom: 1px solid rgba(42,31,20,0.1);
}

.erbjudanden-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  transition: color 0.3s;
}

.erbjudanden-faq-trigger:hover { color: var(--copper); }

.erbjudanden-faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.erbjudanden-faq-icon::before,
.erbjudanden-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--copper);
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}

.erbjudanden-faq-icon::before { width: 14px; height: 1px; }
.erbjudanden-faq-icon::after  { width: 1px; height: 14px; }

[data-open] .erbjudanden-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.erbjudanden-faq-panel { padding: 0 0 28px; }

.erbjudanden-faq-content {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 720px;
}

.erbjudanden-faq-content p { margin-bottom: 12px; }

.erbjudanden-faq-content strong {
  font-weight: 500;
  color: var(--text);
  display: block;
  margin: 16px 0 4px;
}

.erbjudanden-faq-content ul { list-style: none; margin-top: 8px; }

.erbjudanden-faq-content ul li::before {
  content: "— ";
  color: var(--copper);
}

/* CTA */
.erbjudanden-cta {
  background: #1a1108;
  padding: 120px 64px;
  text-align: center;
}

.erbjudanden-cta .section-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.erbjudanden-cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--sand);
}

/* ── 19. BOKA SIDA ── */

.boka-hero {
  background: #1a1108;
  padding: 140px 40px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.boka-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
}

.boka-hero-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--sand-light);
  max-width: 680px;
  quotes: none;
}

.boka-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.8vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--sand-light);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.64);
}

.boka-hero-ingress {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--sand);
  max-width: 540px;
}

/* Grid */
.boka-grid {
  background: var(--cream);
  padding: 100px 64px;
}

.boka-grid .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.boka-grid .section-label {
  color: var(--text-light);
  display: block;
  margin-bottom: 48px;
}

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

.boka-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.boka-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: sepia(20%) brightness(0.88);
}

.boka-card-content {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.boka-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
}

.boka-card-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
  flex: 1;
}

/* Kontakt */
.boka-kontakt {
  background: #221810;
  padding: 100px 64px;
  text-align: center;
}

.boka-kontakt .section-inner {
  max-width: 600px;
  margin: 0 auto;
}

.boka-kontakt .section-label { margin-bottom: 12px; }
.boka-kontakt .section-title { margin-bottom: 12px; }

.boka-kontakt-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid-dark);
  margin-bottom: 48px;
}

.boka-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.boka-form input,
.boka-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 168, 130, 0.2);
  color: var(--sand-light);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.boka-form input::placeholder,
.boka-form textarea::placeholder {
  color: rgba(196, 168, 130, 0.35);
}

.boka-form input:focus,
.boka-form textarea:focus {
  border-color: rgba(196, 168, 130, 0.5);
}

.boka-form textarea {
  resize: vertical;
  min-height: 130px;
}

.boka-form .btn-primary { align-self: center; }


/* Integritetspolicy */
.privacy-policy-page {
  background: var(--cream);
  color: var(--text);
  padding: 100px 40px 110px;
}

.privacy-policy-page .privacy-policy-container {
  max-width: 860px;
  padding: 64px 72px;
  background: #fffdf8;
  border: 1px solid rgba(42, 31, 20, 0.08);
}

.privacy-policy-updated {
  color: var(--text-light);
  font-size: 13px;
}

.privacy-policy-intro {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(42, 31, 20, 0.1);
}

.privacy-policy-content h2 {
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  margin: 64px 0 20px;
}

.privacy-policy-content h2:first-child {
  margin-top: 0;
}

.privacy-policy-content h3 {
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin: 36px 0 14px;
}

.privacy-policy-page p,
.privacy-policy-page li {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.privacy-policy-page p {
  margin-bottom: 18px;
}

.privacy-policy-page ul {
  list-style: disc;
  margin: 0 0 24px 22px;
}

.privacy-policy-page li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.privacy-policy-page a {
  color: var(--copper-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-policy-page a:hover {
  color: var(--wine-mid);
}

@media (max-width: 760px) {
  .privacy-policy-page {
    padding: 64px 18px;
  }

  .privacy-policy-page .privacy-policy-container {
    padding: 40px 24px;
  }

  .privacy-policy-content h2 {
    margin-top: 48px;
  }
}


/* Hero — Erbjudanden-sida */
.erbjudanden-hero {
  position: relative;
  height: 75vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erbjudanden-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(30%) brightness(0.35);
}

.erbjudanden-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.erbjudanden-hero-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
}

.erbjudanden-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--sand-light);
  letter-spacing: 0.02em;
}

.erbjudanden-hero-title em {
  font-style: italic;
  color: var(--sand-light);
}

.erbjudanden-hero-ingress {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--sand);
  max-width: 480px;
}

/* ── Mobile QA fixes inför lansering ─────────────────────────────────────── */
@media (max-width: 720px) {
  .events-intro {
    padding: 70px 28px 10px;
  }

  .events-intro .section-body br {
    display: none;
  }

  .event-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .event-card-footer .btn-ghost {
    align-self: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form form,
  .newsletter-form .mailerlite-form-inputs,
  .newsletter-form .ml-block-form,
  .newsletter-form .ml-form-formContent {
    flex-direction: column !important;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .newsletter-form form.ml-block-form,
  .newsletter-form .mailerlite-form form {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none;
    gap: 12px !important;
  }

  .newsletter-form .ml-form-formContent {
    grid-column: auto;
    width: 100% !important;
  }

  .newsletter-form .mailerlite-subscribe-button-container,
  .newsletter-form .ml-form-embedSubmit {
    grid-column: auto;
  }

  .newsletter-form input,
  .newsletter-form button,
  .newsletter-form input[type="submit"],
  .newsletter-form .mailerlite-subscribe-submit,
  .newsletter-form .ml-form-embedSubmit button,
  .newsletter-form .ml-form-embedSubmit button.primary {
    width: 100%;
  }

  .newsletter-form .mailerlite-subscribe-button-container,
  .newsletter-form .ml-form-embedSubmit {
    width: 100% !important;
  }

  .melanie-card-cta {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost,
  .nav-cta,
  .newsletter-form button {
    min-height: 44px;
    max-width: 100%;
    white-space: normal;
    line-height: 1.45;
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost,
  .newsletter-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .nav-logo {
    min-width: 0;
    font-size: 16px;
  }

  .hero,
  .om-hero,
  .erbjudanden-hero {
    height: 100svh;
    min-height: 560px;
    max-height: 760px;
  }

  .hero-overlay,
  .om-hero-overlay,
  .erbjudanden-hero-inner {
    padding-inline: 24px;
  }

  .hero h1 {
    font-size: clamp(26px, 8.5vw, 38px);
  }

  .hero-eyebrow,
  .erbjudanden-hero-label {
    letter-spacing: 0.26em;
  }

  .erbjudanden-hero-title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .om-hero-quote {
    font-size: clamp(22px, 7.4vw, 34px);
  }

  .events-page-hero {
    padding: 140px 28px 64px;
  }

  .event-card-footer .btn-ghost {
    width: auto;
  }

  .newsletter .section-title {
    font-size: clamp(32px, 10vw, 40px);
  }

}

@media (max-width: 380px) {
  #main-nav {
    padding-inline: 18px;
  }

  #main-nav.scrolled {
    padding-inline: 18px;
  }

  .nav-logo {
    font-size: 15px;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .erbjudanden-tabs {
    padding: 24px 18px;
  }
}
