/* ============================================================
   kunstunddialog | Antje-Kathrin Lielich-Wolf
   Website Stylesheet
   ============================================================

   COLOR PALETTE (easy to change):
   --mint       #7CBDB5   (teal-green – primary)
   --peach      #E5A898   (salmon – accent)
   --cream      #F8F5F0   (warm off-white – backgrounds)
   --dark       #252220   (near-black – dark sections)
   --text       #3A3530   (main body text)
   --gold       #B89858   (warm gold – special highlights)

   FONTS:
   Headings : Cormorant Garamond (elegant serif, loaded from Google Fonts)
   Body     : Lato (clean sans-serif)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ---- Variables ---- */
:root {
  --mint:         #7CBDB5;
  --mint-light:   #C4DEDD;
  --mint-pale:    #EBF5F4;
  --mint-dark:    #5A9D95;
  --peach:        #E5A898;
  --peach-light:  #F5D5CC;
  --peach-pale:   #FDF0EC;
  --cream:        #F8F5F0;
  --dark:         #252220;
  --dark-muted:   #3A3530;
  --text:         #3A3530;
  --text-mid:     #625D58;
  --text-light:   #8A857F;
  --border:       #E0D8D0;
  --gold:         #B89858;
  --white:        #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: 'Lato', sans-serif; font-weight: 700; letter-spacing: 0.02em; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--mint); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--mint-dark); }

ul { list-style: none; }

/* ---- Layout ---- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* ---- Utility ---- */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.9rem;
}

.divider {
  width: 50px;
  height: 2px;
  background: var(--mint);
  margin: 1.4rem 0;
}

.divider-center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-italic { font-style: italic; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.22s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--mint);
  color: white;
  border-color: var(--mint);
}
.btn-primary:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--mint);
  border-color: var(--mint);
}
.btn-outline:hover {
  background: var(--mint);
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: white;
  color: var(--dark);
}

/* ---- Image Placeholder ---- */
/*
  BILD EINFÜGEN: Ersetzen Sie das div.img-placeholder durch ein echtes Bild:
  <img src="images/ihr-bild.jpg" alt="Beschreibung" style="width:100%; height:100%; object-fit:cover;">
*/
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mint-pale) 0%, var(--mint-light) 100%);
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.35) 18px,
    rgba(255,255,255,0.35) 36px
  );
}

.img-placeholder span {
  position: relative;
  z-index: 1;
  background: white;
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.img-placeholder-dark {
  background: linear-gradient(135deg, #3A4A38 0%, #4A4030 100%);
  color: rgba(255,255,255,0.7);
}
.img-placeholder-dark::before {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(0,0,0,0.1) 18px,
    rgba(0,0,0,0.1) 36px
  );
}
.img-placeholder-dark span { background: rgba(255,255,255,0.15); color: white; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--dark);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-logo strong {
  color: var(--mint);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.nav-links a:hover { color: var(--mint); }

.lang-toggle {
  display: flex;
  gap: 2px;
  margin-left: 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.lang-toggle a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  padding: 0.3rem 0.65rem;
  background: transparent;
  transition: all 0.18s;
}
.lang-toggle a:hover,
.lang-toggle a.active {
  background: var(--mint);
  color: white;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/*
  HERO HINTERGRUNDBILD:
  Ersetzen Sie .hero-bg durch ein Bild der Toskana-Landschaft:
  background-image: url('../images/hero-chianti.jpg');
  background-size: cover;
  background-position: center 40%;
*/
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/toscana-hero-shot-by-luca-micheli.jpg');
  background-size: cover;
  background-position: center 40%;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(37,34,32,0.15) 0%, rgba(37,34,32,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 7rem;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint-light);
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: white;
  font-style: italic;
  max-width: 680px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  margin-bottom: 1.4rem;
}

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Decorative hexagons in hero */
.hero-hex-group {
  position: absolute;
  right: 6%;
  bottom: 12%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  z-index: 1;
}

.hex {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

.hex-lg {
  width: 130px;
  height: 150px;
  background: var(--mint);
  color: white;
  font-size: 2rem;
  font-weight: 300;
  flex-direction: column;
  gap: 0.1rem;
}
.hex-lg .hex-month {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.hex-sm {
  width: 90px;
  height: 104px;
  background: var(--peach);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  align-self: flex-end;
  margin-right: 1.5rem;
}

/* ============================================================
   ABOUT / TRAINERIN
   ============================================================ */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 88px;
}

.about-photo-frame {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.about-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.about-photo-caption {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

.about-text h2 { margin-bottom: 0.4rem; }
.about-text h2 em { color: var(--mint-dark); }

.about-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1.8rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.5;
}

.qualifications {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.qual-item {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
}

.qual-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  margin-top: 0.4rem;
}

/* Co-trainer */
.cotrainer {
  margin-top: 3rem;
  padding: 1.8rem 2rem;
  background: white;
  border-left: 3px solid var(--peach);
  border-radius: 0 6px 6px 0;
}

.cotrainer h4 { margin-bottom: 0.4rem; }
.cotrainer p { font-size: 0.9rem; color: var(--text-mid); }

/* ============================================================
   PROGRAMS / SEMINARE
   ============================================================ */
.programs { background: white; }

.programs-intro {
  max-width: 600px;
}

/* Program Card */
.program-card {
  margin-top: 4rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.program-header {
  padding: 2.4rem 2.8rem;
}

.program-header-mint { background: var(--mint); }
.program-header-peach { background: var(--peach); }

.program-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.25);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.program-header h3 {
  color: white;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.6rem;
}

.program-header .tagline {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  max-width: 560px;
}

.program-meta-bar {
  margin-top: 1.4rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}

.meta-icon {
  width: 16px;
  height: 16px;
  opacity: 0.75;
}

.program-body {
  padding: 2.8rem;
}

/* Description */
.program-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 680px;
}

/* Modules grid */
.modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.module-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 1.6rem;
  border-top: 3px solid var(--mint);
}

.module-card-peach { border-top-color: var(--peach); }

.module-date {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.3rem;
}
.module-date-peach { color: var(--peach); }

.module-location {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.7rem;
}

.module-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.module-topics {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.module-topics li {
  font-size: 0.84rem;
  color: var(--text-mid);
  padding: 0.28rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1rem;
  position: relative;
}
.module-topics li:last-child { border-bottom: none; }
.module-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--peach);
}

/* Topics grid (for 5-block seminar) */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.topic-block {
  background: var(--cream);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--peach);
}

.topic-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.topic-block p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Price box */
.price-box {
  margin-top: 2.4rem;
  background: var(--peach-pale);
  border: 1px solid var(--peach-light);
  border-radius: 6px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.price-box-mint {
  background: var(--mint-pale);
  border-color: var(--mint-light);
}

.price-left { display: flex; align-items: baseline; gap: 1rem; }

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

.price-note {
  font-size: 0.82rem;
  color: var(--text-light);
}

.price-includes {
  font-size: 0.82rem;
  color: var(--text-mid);
}
.price-includes ul { margin-top: 0.4rem; }
.price-includes li {
  padding: 0.18rem 0 0.18rem 1.1rem;
  position: relative;
}
.price-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
}

/* Online coaching info box */
.coaching-box {
  margin-top: 2rem;
  padding: 1.6rem 2rem;
  background: var(--mint-pale);
  border-radius: 6px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
}

.coaching-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coaching-icon svg { width: 18px; height: 18px; fill: white; }

.coaching-box h4 { margin-bottom: 0.3rem; font-size: 0.92rem; }
.coaching-box p { font-size: 0.86rem; color: var(--text-mid); }

/* Testimonials inline */
.testimonials-row {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 1.6rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--mint-light);
  position: absolute;
  top: -0.3rem;
  left: 1.2rem;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-top: 1.4rem;
  line-height: 1.6;
}

/* ============================================================
   RETREATS
   ============================================================ */
.retreats {
  background: var(--cream);
}

.retreats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.retreat-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.retreat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
}

.retreat-img {
  height: 190px;
  position: relative;
  overflow: hidden;
}

/* Placeholder backgrounds for retreat images */
.retreat-img-1 {
  background-image: url('../images/retreat-women-vonecia-carswell.jpg');
  background-size: cover;
  background-position: center;
}

.retreat-img-1 .img-placeholder {
  display: none;
}
.retreat-img-2 {
  background-image: url('../images/retreat-write-laura-adai.jpg');
  background-size: cover;
  background-position: center;
}

.retreat-img-2 .img-placeholder {
  display: none;
}
.retreat-img-3 {
  background-image: url('../images/retreat-dialog-nini-fromparis.jpg');
  background-size: cover;
  background-position: center;
}

.retreat-img-3 .img-placeholder {
  display: none;
}

.retreat-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  color: var(--mint-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.retreat-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.retreat-type-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 0.5rem;
}

.retreat-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.retreat-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  flex: 1;
}

.retreat-highlights {
  margin: 0.8rem 0 1.4rem;
}

.retreat-highlights li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.25rem 0 0.25rem 1.1rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.retreat-highlights li:last-child { border-bottom: none; }
.retreat-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
}

.retreat-footer {
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.retreat-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--dark);
  line-height: 1;
}

.retreat-price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.retreat-spots {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: right;
}

/* ============================================================
   LOCATION / ORT
   ============================================================ */
.location {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}

/* Optional: add a Tuscany image as background:
   .location { background-image: url('../images/location-bg.jpg'); background-size: cover; }
*/
.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,34,32,0.9) 0%, rgba(42,52,38,0.85) 100%);
  z-index: 0;
}

/* A subtle decorative bg when no real image */
.location-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    #2A3A28 0%,
    #252220 40%,
    #3A2C1A 100%
  );
  z-index: 0;
}

.location .container { position: relative; z-index: 1; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location-text h2 {
  color: white;
  font-style: italic;
  margin-bottom: 1rem;
}

.location-text .section-label {
  color: var(--mint-light);
}

.location-divider {
  width: 50px;
  height: 2px;
  background: var(--mint);
  margin: 1.4rem 0;
}

.location-text p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

.location-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.location-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
}

.loc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.location-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
  height: 420px;
}

.location-images .img-item { border-radius: 6px; overflow: hidden; }
.location-images .img-item:first-child {
  grid-row: span 2;
  background-image: url('../images/food-on-table-anita-austvika.jpg');
  background-size: cover;
  background-position: center;
}

.location-images .img-item:first-child .img-placeholder {
  display: none;
}

.location-images .img-item:nth-child(2) {
  background-image: url('../images/wine-anita-austvika.jpg');
  background-size: cover;
  background-position: center;
}

.location-images .img-item:nth-child(2) .img-placeholder {
  display: none;
}

.location-images .img-item:nth-child(3) {
  background-image: url('../images/terrace-anita-austvika.jpg');
  background-size: cover;
  background-position: center;
}

.location-images .img-item:nth-child(3) .img-placeholder {
  display: none;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: white;
}

.testimonials-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}

.testimonial-main {
  background: var(--cream);
  border-radius: 8px;
  padding: 2.2rem;
  position: relative;
}

.testimonial-main::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  color: var(--mint-light);
  position: absolute;
  top: -0.6rem;
  left: 1.6rem;
  line-height: 1;
}

.testimonial-main p {
  font-style: italic;
  color: var(--text-mid);
  padding-top: 1.8rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card-sm {
  background: white;
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card-sm .contact-icon {
  margin: 0;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}

.contact-card-sm .contact-label {
  margin-bottom: 0.25rem;
}

.contact-card-sm p,
.contact-card-sm a {
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* CSS-only email display – never put the real address in HTML text */
.email-css::after {
  content: "mail\40 lielich-wolf-consulting.de";
  /* \40 is the CSS Unicode escape for @ */
}

/* Contact form */
.contact-form-wrap {
  background: white;
  border-radius: 8px;
  padding: 2.4rem 2.6rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.contact-form-wrap .form-intro {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group-full { grid-column: span 2; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.18s, background 0.18s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: white;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.65;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A857F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-light);
  max-width: 260px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: span 1; }
  .contact-form-wrap { padding: 1.8rem 1.5rem; }
}

/* ============================================================
   ONLINE COACHING
   ============================================================ */
.online-coaching {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.online-coaching-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #252220 0%, #2A3828 60%, #252220 100%);
}

.online-coaching .container { position: relative; z-index: 1; }

.online-coaching .section-label { color: var(--mint-light); }

.online-coaching h2 {
  color: white;
  font-style: italic;
}

.online-coaching .section-intro {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  max-width: 580px;
  margin-top: 1rem;
}

.coaching-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.coaching-card {
  border-radius: 8px;
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.coaching-card-standard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.coaching-card-featured {
  background: var(--mint);
  position: relative;
}

.coaching-card-badge {
  position: absolute;
  top: -0.7rem;
  left: 2.2rem;
  background: var(--peach);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
}

.coaching-card h3 {
  font-size: 1.35rem;
  color: white;
  line-height: 1.25;
}

.coaching-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.coaching-card-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: white;
  line-height: 1;
}

.coaching-card-price .currency {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  font-family: 'Cormorant Garamond', serif;
}

.coaching-card-price-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: -0.4rem;
}

.coaching-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.coaching-card-features li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.82);
  padding-left: 1.1rem;
  position: relative;
}

.coaching-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.coaching-card-featured .coaching-card-features li { color: rgba(255,255,255,0.92); }
.coaching-card-featured .coaching-card-features li::before { background: rgba(255,255,255,0.7); }

.coaching-card .btn {
  margin-top: auto;
  text-align: center;
}

/* ============================================================
   CONTACT / KONTAKT
   ============================================================ */
.contact {
  background: var(--cream);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-card {
  background: white;
  border-radius: 8px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--mint-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon svg { width: 20px; height: 20px; stroke: var(--mint-dark); fill: none; stroke-width: 1.8; }

.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-card p, .contact-card a {
  font-size: 0.92rem;
  color: var(--text-mid);
}

.booking-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.booking-cta h3 {
  margin-bottom: 0.8rem;
}

.booking-cta p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 3rem 0;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.footer-logo strong { color: var(--mint); }

.footer-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.footer-links a { color: rgba(255,255,255,0.45); }
.footer-links a:hover { color: var(--mint); }

.footer-copy {
  font-size: 0.78rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo { position: static; }
  .about-photo-frame {
    aspect-ratio: 2/3;
    max-width: 340px;
    margin: 0 auto;
  }
  .about-photo-frame img {
    object-position: center 20%;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .location-images { height: 300px; }

  .hero-hex-group { display: none; }
}

@media (max-width: 700px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }
  .container-narrow { padding: 0 1.5rem; }

  .nav-links { display: none; }

  .program-body { padding: 1.8rem 1.5rem; }
  .program-header { padding: 1.8rem 1.5rem; }

  .price-box { flex-direction: column; }

  .location-features { grid-template-columns: 1fr; }
  .location-images { grid-template-columns: 1fr; height: auto; }
  .location-images .img-item { height: 160px; }
  .location-images .img-item:first-child { grid-row: span 1; }

  .coaching-box { grid-template-columns: 1fr; }
  .booking-cta { padding: 2rem 1.5rem; }
}
