/*
Theme Name: Coach-Your-Dog
Description: Individuelles Theme für COACH-YOUR-DOG – Verhaltenstherapie & Hundeschule Leonberg
Author: Marina & Claudio Iannalfo
Version: 1.1
*/

/* ── COACH-YOUR-DOG · SHARED STYLESHEET ─────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:       #1B4332;
  --green-mid:   #2D6A4F;
  --gold:        #B5722A;
  --gold-light:  #C49A5A;
  --cream:       #FAF8F4;
  --cream-dark:  #F0EBE1;
  --text:        #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-light:  #888;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  padding-top: 76px; /* header height */
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px; display: block;
}
.eyebrow-light { color: var(--gold-light); }
h1.page-title, .h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 7vw, 64px); font-weight: 300; color: var(--green); line-height: 1.08;
  margin-bottom: 20px;
}
h2.section-title, .h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 48px); font-weight: 300; color: var(--green); line-height: 1.12;
  margin-bottom: 18px;
}
h3.card-title, .h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 30px); font-weight: 400; color: var(--green); line-height: 1.2;
  margin-bottom: 14px;
}
em { font-style: italic; }
.body-text { font-size: 15px; color: var(--text-mid); line-height: 1.85; }
.body-text p + p { margin-top: 14px; }

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; padding: 14px 32px;
  transition: all 0.2s; white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-light); color: white; }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-mid); color: white; }
.btn-ghost-white { border: 1.5px solid rgba(255,255,255,0.5); color: white; }
.btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
.btn-outline { border: 1.5px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: white; }

/* ── HEADER ─────────────────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.header-logo { display: flex; align-items: center; gap: 14px; }
.header-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.header-logo-text { color: white; line-height: 1.25; }
.header-logo-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: white;
}
.header-logo-text span { font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold-light); opacity: 0.85; }

/* ── NAV ────────────────────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: block; padding: 8px 14px;
  color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link.has-dropdown::after { content: ' ▾'; font-size: 9px; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--green); min-width: 230px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 8px 0; z-index: 300;
}
.dropdown.right { left: auto; right: 0; }
.nav-item:hover > .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 20px;
  color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: rgba(255,255,255,0.06); color: var(--gold-light); }
.dropdown-sub { position: relative; }
.dropdown-sub > a::after { content: ' ›'; float: right; }
.dropdown-sub .dropdown { left: 100%; top: 0; }
.dropdown-sub:hover > .dropdown { display: block; }
.nav-cta {
  background: var(--gold); color: white !important;
  padding: 10px 20px; font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background 0.2s !important; margin-left: 10px;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── MOBILE NAV TOGGLE & PANEL ───────────────────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: white;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--green); z-index: 199; overflow-y: auto;
  padding: 8px 0 100px; -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block; padding: 17px 28px;
  color: white; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-link.active { color: var(--gold-light); }
.mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; padding: 17px 28px;
  color: white; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Inter', sans-serif; font-weight: 500; cursor: pointer;
}
.mobile-nav-toggle .mnt-icon { color: var(--gold-light); font-size: 18px; font-weight: 300; transition: transform 0.2s; }
.mobile-nav-group.open .mobile-nav-toggle .mnt-icon { transform: rotate(45deg); }
.mobile-nav-sub { display: none; flex-direction: column; padding-bottom: 10px; }
.mobile-nav-group.open .mobile-nav-sub { display: flex; }
.mobile-nav-sub a {
  padding: 12px 28px 12px 40px;
  color: rgba(255,255,255,0.72); font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
}
.mobile-nav-sub a.indent { padding-left: 56px; color: rgba(255,255,255,0.5); font-size: 11.5px; }
.mobile-nav-sub-label {
  padding: 12px 28px 4px 40px; margin-top: 4px;
  color: var(--gold-light); font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
}
.mobile-nav-cta {
  display: block; margin: 20px 28px 0; background: var(--gold); color: white;
  text-align: center; padding: 15px; font-size: 12px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
}

/* ── PAGE HERO (Unterseiten) ─────────────────────────────────────────── */
.page-hero {
  background: var(--green);
  padding: 72px 80px 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.page-hero-inner { max-width: 640px; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 58px); font-weight: 300; color: white; line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8;
  max-width: 520px;
}
.page-hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CONTENT WRAPPER ─────────────────────────────────────────────────── */
.content-section { padding: 80px; }
.content-section.cream { background: var(--cream); }
.content-section.white { background: white; }
.content-section.dark { background: var(--green); }
.content-section.narrow { max-width: 860px; margin: 0 auto; }

/* ── 2-COLUMN GRID ────────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col.align-center { align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── DIVIDER ─────────────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--cream-dark); margin: 0; }

/* ── CARDS ───────────────────────────────────────────────────────────── */
.card {
  background: var(--cream); padding: 36px 32px;
  border-bottom: 3px solid transparent; transition: border-color 0.2s;
}
.card:hover { border-color: var(--gold); }
.card-green { background: var(--green); color: white; padding: 36px 32px; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--green); margin-bottom: 12px; }
.card-green h3 { color: white; }
.card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.card-green p { color: rgba(255,255,255,0.75); }

/* ── INFO ROWS ───────────────────────────────────────────────────────── */
.info-row {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark); font-size: 14px;
}
.info-row:first-child { border-top: 1px solid var(--cream-dark); }
.info-label { font-weight: 600; color: var(--green); min-width: 120px; flex-shrink: 0; }
.info-value { color: var(--text-mid); }

/* ── FEATURE LIST ────────────────────────────────────────────────────── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
}
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.feature-list li strong {
  flex: 0 0 172px; color: var(--green); font-weight: 600;
}
.feature-list li span { flex: 1 1 auto; min-width: 0; }
.feature-list.white-check li { color: rgba(255,255,255,0.8); }
.feature-list.white-check li::before { color: var(--gold-light); }
.feature-list.white-check li strong { color: white; }

@media (max-width: 560px) {
  .feature-list li { flex-wrap: wrap; }
  .feature-list li strong { flex: 1 1 100%; }
  .feature-list li span { flex: 1 1 100%; margin-top: 2px; }
}

/* ── CONTACT STRIP ───────────────────────────────────────────────────── */
.contact-strip {
  background: var(--green); padding: 40px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.contact-strip p { color: rgba(255,255,255,0.8); font-size: 15px; }
.contact-strip strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 28px; color: white; font-weight: 300; margin-bottom: 4px; }

/* ── FORM ────────────────────────────────────────────────────────────── */
.form-box { background: white; padding: 48px 44px; }
.form-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--green); font-weight: 300; margin-bottom: 6px; }
.form-script { font-family: 'Dancing Script', cursive; font-size: 20px; color: var(--gold); display: block; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1px solid var(--cream-dark); padding: 12px 14px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--cream); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); background: white; }
.form-group textarea { height: 110px; resize: none; }
.btn-submit {
  width: 100%; background: var(--green); color: white; border: none;
  padding: 16px; font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background 0.2s; margin-top: 4px;
}
.btn-submit:hover { background: var(--green-mid); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  background: #0D2B1C;
  padding: 48px 80px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand strong { display: block; font-size: 13px; font-weight: 600; letter-spacing: 2px; color: white; }
.footer-brand span { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 1px; text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ── BREADCRUMB ──────────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--cream); padding: 12px 80px;
  font-size: 12px; color: var(--text-light); display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--green); font-weight: 500; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  #site-header { padding: 0 20px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .page-hero { padding: 44px 24px 40px; }
  .content-section { padding: 56px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .three-col { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 24px; padding: 40px 24px; }
  .contact-strip { flex-direction: column; padding: 36px 24px; text-align: center; }
  .breadcrumb { padding: 12px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-logo-text span { display: none; }
  .header-logo img { width: 40px; height: 40px; }
  .content-section { padding: 44px 18px; }
  .page-hero { padding: 36px 18px 32px; }
  .breadcrumb { padding: 10px 18px; font-size: 11px; }
  footer { padding: 32px 18px; }
  .contact-strip { padding: 28px 18px; }
  .hero-actions, .page-hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .page-hero-actions .btn { text-align: center; }
  .contact-strip > div:last-child { flex-direction: column !important; width: 100%; }
  .contact-strip .btn { text-align: center; }
}

/* ── WHATSAPP FLOAT BUTTON ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0,0,0,0.32);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@media (max-width: 1024px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
  .whatsapp-float .wa-tooltip { display: none; }
}

/* ── LEGAL CONTENT (Impressum / Datenschutz / AGB) ──────────────────── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-meta { font-size: 12px; color: var(--text-light); letter-spacing: 0.5px; margin-bottom: 32px; }
.legal-content .legal-h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500;
  color: var(--green); margin: 38px 0 14px;
}
.legal-content .legal-h2:first-of-type { margin-top: 0; }
.legal-content .legal-h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600;
  color: var(--green); margin: 22px 0 8px;
}
.legal-content p { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 13px; }
.legal-content ul, .legal-content ol { margin: 8px 0 18px 0; padding-left: 22px; }
.legal-content ul li, .legal-content ol li {
  font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 8px;
}
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--green); }
.legal-content a { color: var(--green); text-decoration: underline; }

/* ── TRAININGSSYSTEM / CURRICULUM COMPONENTS ────────────────────────── */
.curriculum-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0; }
.curriculum-card { background: var(--cream); border-left: 3px solid var(--gold); padding: 18px 18px 16px; }
.curriculum-card .cw-num { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; display: block; margin-bottom: 6px; }
.curriculum-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--green); font-weight: 600; margin-bottom: 6px; line-height: 1.2; }
.curriculum-card p { font-size: 12.5px; color: var(--text-mid); line-height: 1.6; font-style: italic; }
.curriculum-grid.on-dark .curriculum-card { background: rgba(255,255,255,0.06); border-left-color: var(--gold-light); }
.curriculum-grid.on-dark .curriculum-card h4 { color: white; }
.curriculum-grid.on-dark .curriculum-card p { color: rgba(255,255,255,0.65); }

.class-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--cream-dark); margin-top: 40px; }
.class-tier-card { background: white; padding: 40px 32px; position: relative; }
.class-tier-card .class-tier-badge { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; display: block; }
.class-tier-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--green); margin-bottom: 8px; }
.class-tier-meta { font-size: 12px; color: var(--text-light); margin-bottom: 16px; display: flex; gap: 12px; flex-wrap: wrap; }
.class-tier-meta span { display: inline-flex; align-items: center; gap: 4px; }
.class-tier-card p.desc { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.class-tier-weeks { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.class-tier-arrow {
  position: absolute; top: 50%; right: -22px; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold); z-index: 2; border: 1px solid var(--cream-dark);
}
@media (max-width: 1024px) {
  .class-tier-grid { grid-template-columns: 1fr; }
  .class-tier-arrow { display: none; }
  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .curriculum-grid { grid-template-columns: 1fr; }
}

.rotation-banner {
  background: var(--green); padding: 56px 60px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.rotation-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: white; font-weight: 400; margin-bottom: 14px; }
.rotation-banner p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.8; }
.rotation-cycle { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.rotation-step {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(196,154,90,0.35);
  padding: 14px 18px; text-align: center; min-width: 100px;
}
.rotation-step strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--gold-light); }
.rotation-step span { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.rotation-arrow-icon { color: var(--gold-light); font-size: 18px; }
@media (max-width: 1024px) { .rotation-banner { grid-template-columns: 1fr; padding: 40px 24px; } }

.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.usp-card { background: var(--cream); padding: 32px 28px; border-bottom: 3px solid var(--gold); }
.usp-card .usp-icon { font-size: 26px; margin-bottom: 14px; }
.usp-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--green); margin-bottom: 10px; }
.usp-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; }
@media (max-width: 1024px) { .usp-grid { grid-template-columns: 1fr; } }

/* ── GENERIC CARD LINK (used in service/class/curriculum cards) ─────── */
.l-link { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green); font-weight: 600; transition: color 0.3s; display: inline-block; }
.class-tier-card .l-link:hover, .l-card:hover .l-link { color: var(--gold); }

/* ── NAV: "Bald verfügbar" badge ──────────────────────────────────────── */
.nav-soon, .mobile-nav-link .nav-soon {
  display: inline-block; background: var(--gold); color: white !important;
  font-size: 8px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 2px 6px; margin-left: 6px; vertical-align: middle; border-radius: 2px;
}

/* ── COACH-YOUR-DOG ONLINE (separate sub-brand) ──────────────────────── */
.online-hero {
  background: linear-gradient(135deg, #0B1F17 0%, #15342A 100%);
  padding: clamp(56px, 9vw, 90px) clamp(24px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.online-hero::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,90,0.08) 0%, transparent 70%);
}
.online-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,154,90,0.12); border: 1px solid rgba(196,154,90,0.4);
  padding: 6px 16px; margin-bottom: 24px; color: var(--gold-light);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.online-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; color: white;
  font-size: clamp(36px, 6vw, 60px); line-height: 1.08; margin-bottom: 16px; max-width: 680px;
}
.online-hero h1 em { color: var(--gold-light); font-style: italic; }
.online-hero p.lead {
  font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.85; max-width: 580px; margin-bottom: 32px;
}
.online-hero .btn-gold { position: relative; z-index: 2; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.video-card {
  background: white; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.video-thumb {
  position: relative; height: 150px;
  background: linear-gradient(135deg, var(--green) 0%, #0B1F17 100%);
  display: flex; align-items: center; justify-content: center;
}
.video-thumb .play-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center; color: white; font-size: 16px;
}
.video-thumb .video-soon-tag {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold); color: white; font-size: 9px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px;
}
.video-card-body { padding: 22px 22px 24px; }
.video-card-body .vc-badge {
  font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 8px; display: block;
}
.video-card-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--green); margin-bottom: 8px; line-height: 1.25; }
.video-card-body p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

.online-note {
  background: var(--cream); border-left: 3px solid var(--gold);
  padding: 22px 26px; margin-top: 36px; max-width: 720px;
}
.online-note p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; }
.online-note strong { color: var(--green); }

@media (max-width: 1024px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .video-grid { grid-template-columns: 1fr; } }

/* === from faq.html === */

    .faq-list { max-width: 860px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--cream-dark); }
    .faq-item:first-child { border-top: 1px solid var(--cream-dark); }
    .faq-toggle { width: 100%; text-align: left; background: none; border: none; padding: 28px 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: 'Inter', sans-serif; }
    .faq-toggle:hover .faq-q { color: var(--gold); }
    .faq-q { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--green); font-weight: 500; line-height: 1.2; text-align: left; }
    .faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; font-weight: 300; transition: transform 0.2s; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-body { display: none; padding: 0 0 28px; }
    .faq-item.open .faq-body { display: block; }
    .faq-body p { font-size: 15px; color: var(--text-mid); line-height: 1.85; }
    .faq-body p + p { margin-top: 12px; }
  

/* === from index.html === */

    /* Home-specific: no padding-top on body, hero goes full-bleed */
    body { padding-top: 0; }

    /* ── HERO ── */
    .hero {
      position: relative; background: var(--green); overflow: hidden;
      padding: clamp(110px, 17vh, 150px) 0 clamp(56px, 7vh, 84px);
    }
    .hero::before {
      content: ''; position: absolute; right: -140px; top: -140px;
      width: 420px; height: 420px; border-radius: 50%;
      background: rgba(255,255,255,0.03);
    }
    .hero::after {
      content: ''; position: absolute; left: -100px; bottom: -160px;
      width: 320px; height: 320px; border-radius: 50%;
      background: rgba(196,154,90,0.05);
    }
    .hero-grid {
      position: relative; z-index: 2;
      max-width: 1240px; margin: 0 auto;
      padding: 0 clamp(24px, 6vw, 80px);
      display: grid; grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(36px, 5vw, 72px);
      align-items: center;
    }
    .hero-content { max-width: 560px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid rgba(196,154,90,0.4); padding: 6px 16px;
      margin-bottom: 26px; color: var(--gold-light);
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(38px, 5.2vw, 68px); font-weight: 300; color: white; line-height: 1.04;
      margin-bottom: 10px;
    }
    .hero-title em { font-style: italic; color: var(--gold-light); }
    .hero-script { font-family: 'Dancing Script', cursive; font-size: clamp(20px, 2.2vw, 26px); color: var(--gold-light); display: block; margin-bottom: 22px; }
    .hero-text { font-size: clamp(14px, 1.3vw, 16px); color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .hero-photo { position: relative; }
    .hero-photo-frame {
      position: relative; border-radius: 16px; overflow: hidden;
      border: 1px solid rgba(196,154,90,0.35);
      box-shadow: 0 30px 60px -18px rgba(0,0,0,0.5);
    }
    .hero-photo-frame img { width: 100%; height: auto; display: block; }
    .hero-photo-frame::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,30,22,0.55) 0%, transparent 28%);
    }
    .hero-photo-caption {
      position: absolute; left: 22px; bottom: 22px; z-index: 3;
      background: rgba(13,30,22,0.55); backdrop-filter: blur(4px);
      padding: 10px 18px; border-left: 3px solid var(--gold);
    }
    .hero-photo-caption strong {
      display: block; font-family: 'Cormorant Garamond', serif; font-size: 18px; color: white; font-weight: 500;
    }
    .hero-photo-caption span {
      font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light);
    }

    /* ── STATS ── */
    .stats {
      background: var(--green); padding: 32px 80px;
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .stat { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
    .stat:last-child { border-right: none; }
    .stat-n { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
    .stat-l { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

    /* ── HOME INTRO ── */
    .home-intro { background: var(--cream); padding: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .home-intro-quote {
      font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300;
      color: var(--green); line-height: 1.35; font-style: italic;
    }

    /* ── SERVICE PREVIEW ── */
    .services-preview { background: white; padding: 80px; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--cream-dark); margin-top: 48px; }
    .service-card { background: white; padding: 40px 32px; transition: background 0.3s; cursor: pointer; }
    .service-card:hover { background: var(--green); }
    .service-card:hover .sc-num, .service-card:hover .sc-title { color: rgba(255,255,255,0.7); }
    .service-card:hover .sc-text { color: rgba(255,255,255,0.6); }
    .service-card:hover .sc-link { color: var(--gold-light); }
    .sc-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; color: var(--cream-dark); line-height: 1; margin-bottom: 16px; transition: color 0.3s; }
    .sc-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--green); font-weight: 500; margin-bottom: 12px; transition: color 0.3s; }
    .sc-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; transition: color 0.3s; }
    .sc-link { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green); font-weight: 600; transition: color 0.3s; }

    /* ── TESTIMONIAL STRIP ── */
    .testi-strip { background: var(--green); padding: 80px; }
    .testi-header { text-align: center; margin-bottom: 48px; }
    .testi-header .h2 { color: white; }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .testi { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 32px 28px; }
    .testi-stars { color: var(--gold-light); letter-spacing: 3px; margin-bottom: 16px; font-size: 13px; }
    .testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 20px; }
    .testi-author { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }

    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-content { max-width: 100%; }
      .hero-photo { max-width: 480px; margin: 0 auto; }
      .stats { grid-template-columns: repeat(2, 1fr); padding: 28px 24px; }
      .home-intro, .services-preview { padding: 56px 24px; }
      .home-intro { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .testi-strip { padding: 56px 24px; }
      .testi-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .hero { padding: 96px 0 44px; }
      .hero-photo-caption { left: 14px; bottom: 14px; padding: 8px 14px; }
      .hero-photo-caption strong { font-size: 15px; }
      .stats { padding: 24px 18px; }
      .stat { padding: 0 8px; }
      .stat-n { font-size: 38px; }
      .home-intro, .services-preview, .testi-strip { padding: 40px 18px; }
    }
  

/* === from kontakt.html === */

    .kontakt-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
    .kontakt-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
    .k-card { background: white; padding: 20px 24px; display: flex; align-items: center; gap: 16px; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
    .k-card:hover { border-color: var(--gold); }
    .k-icon { font-size: 20px; width: 44px; height: 44px; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .k-card h4 { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
    .k-card a, .k-card p { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--green); }
    .k-card a:hover { color: var(--gold); }
    @media (max-width: 1024px) { .kontakt-layout { grid-template-columns: 1fr; } }
  

/* === from kundenmeinungen.html === */

    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
    .review { background: white; padding: 36px 30px; border-top: 3px solid transparent; transition: border-color 0.2s; }
    .review:hover { border-color: var(--gold); }
    .review-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; }
    .review-text { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
    .review-author { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }
    .review-date { font-size: 11px; color: var(--text-light); margin-top: 4px; }
    .google-note { background: var(--cream); padding: 40px 80px; text-align: center; }
    .google-note p { font-size: 14px; color: var(--text-mid); }
    .google-note a { color: var(--green); font-weight: 600; text-decoration: underline; }
    @media (max-width: 1024px) {
      .reviews-grid { grid-template-columns: 1fr; }
      .google-note { padding: 32px 24px; }
    }
  

/* === from leinenfuehrung-rueckruf.html === */

    .kurs-badge { display: inline-block; background: var(--gold); color: white; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; margin-bottom: 20px; }
    .kurs-details-box { background: white; padding: 36px; border-top: 3px solid var(--gold); }
    .kurs-details-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--green); margin-bottom: 20px; }
    .week-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin-top: 32px; }
    .week-pill { background: var(--cream); padding: 16px 8px; text-align: center; border-bottom: 3px solid var(--gold); }
    .week-pill .wk { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--green); line-height: 1; }
    .week-pill .wk-l { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-top: 4px; display:block; }
    @media (max-width: 768px) { .week-grid { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 420px) { .week-grid { grid-template-columns: repeat(2, 1fr); } }
  

/* === from leistungen.html === */

    .leistungen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--cream-dark); }
    .l-card { background: white; padding: 48px 40px; cursor: pointer; transition: background 0.3s; }
    .l-card:hover { background: var(--green); }
    .l-card:hover .l-num, .l-card:hover .l-title, .l-card:hover .l-text { color: rgba(255,255,255,0.75); }
    .l-card:hover .l-link { color: var(--gold-light); }
    .l-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--cream-dark); line-height: 1; margin-bottom: 20px; transition: color 0.3s; }
    .l-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--green); font-weight: 500; margin-bottom: 14px; transition: color 0.3s; }
    .l-text { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; transition: color 0.3s; }
    .l-link { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green); font-weight: 600; transition: color 0.3s; }
    @media (max-width: 768px) { .leistungen-grid { grid-template-columns: 1fr; } }
  

/* === from master-class.html === */

    .kurs-badge { display: inline-block; background: var(--gold); color: white; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; margin-bottom: 20px; }
    .kurs-details-box { background: white; padding: 36px; border-top: 3px solid var(--gold); }
    .kurs-details-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--green); margin-bottom: 20px; }
  

/* === from partner.html === */

    .partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .partner-card { background: var(--cream); padding: 36px 30px; text-align: center; border-bottom: 3px solid transparent; transition: border-color 0.2s; }
    .partner-card:hover { border-color: var(--gold); }
    .partner-logo { font-size: 40px; margin-bottom: 16px; }
    .partner-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--green); margin-bottom: 8px; }
    .partner-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
    .partner-card a { display: inline-block; margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); border-bottom: 1px solid var(--green); padding-bottom: 2px; }
    .partner-card a:hover { color: var(--gold); border-color: var(--gold); }
    @media (max-width: 1024px) { .partner-grid { grid-template-columns: 1fr; } }
  

/* === from philosophie.html === */

    .phil-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--cream-dark); margin-top: 0; }
    .phil-value { background: white; padding: 48px 40px; }
    .phil-value-icon { font-size: 32px; margin-bottom: 16px; }
    .phil-value h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--green); margin-bottom: 12px; }
    .phil-value p { font-size: 14px; color: var(--text-mid); line-height: 1.85; }
    .blockquote-section { background: var(--green); padding: 80px; text-align: center; }
    .blockquote { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; font-style: italic; color: white; line-height: 1.3; max-width: 800px; margin: 0 auto 20px; }
    .blockquote-attr { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }
    @media (max-width: 1024px) {
      .phil-values-grid { grid-template-columns: 1fr; }
      .blockquote-section { padding: 56px 24px; }
      .blockquote { font-size: 28px; }
    }
  

/* === from qualifikation.html === */

    .qual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
    .qual-card { background: var(--cream); padding: 32px 28px; border-top: 3px solid var(--gold); }
    .qual-card .year { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; display: block; }
    .qual-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--green); margin-bottom: 10px; }
    .qual-card p { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
    .qual-person { display: flex; align-items: center; gap: 22px; }
    .qual-avatar {
      width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
      border: 3px solid var(--gold); flex-shrink: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }
    .qual-person .eyebrow { margin-bottom: 4px; }
    .qual-person .h2 { margin-bottom: 0; }
    @media (max-width: 1024px) { .qual-grid { grid-template-columns: 1fr; } }
    @media (max-width: 640px) { .qual-avatar { width: 64px; height: 64px; border-width: 2px; } .qual-person { gap: 16px; } }
  

/* === from trainingssystem.html === */

    .stage-divider { text-align: center; font-size: 22px; color: var(--gold); margin: 0; }
    @media (max-width: 1024px) { .stage-divider { transform: rotate(90deg); margin: 4px 0; } }
  

/* === from ueber-uns.html === */

    .team-photo-section {
      display: grid; grid-template-columns: 1fr 1fr; min-height: 380px;
    }
    .team-photo-col { position: relative; overflow: hidden; background: var(--green); min-height: 320px; }
    .team-photo-col img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .photo-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(27,67,50,0.92) 0%, transparent 70%);
      padding: 40px 32px 28px;
    }
    .photo-caption h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: white; margin-bottom: 4px; }
    .photo-caption span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }
    .team-bio-col { background: var(--cream); padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
    .cert-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .cert-badge {
      background: white; padding: 10px 16px; font-size: 12px;
      color: var(--green); font-weight: 600; border-left: 3px solid var(--gold);
    }
    .dog-section { background: white; padding: 60px 80px; }
    .dog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
    .dog-card { background: var(--cream); padding: 0; overflow: hidden; }
    .dog-card img { width: 100%; height: 280px; object-fit: cover; object-position: center top; display: block; }
    .dog-card-body { padding: 28px 32px; }
    .dog-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--green); margin-bottom: 6px; }
    .dog-card .dog-role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
    .dog-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
    @media (max-width: 1024px) {
      .team-photo-section { grid-template-columns: 1fr; }
      .team-bio-col { padding: 40px 24px; }
      .dog-section { padding: 48px 24px; }
      .dog-grid { grid-template-columns: 1fr; }
    }
  

/* === from verhaltenstherapie.html === */

    .topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
    .topic { background: white; border-left: 3px solid var(--gold); padding: 20px 22px; }
    .topic h4 { font-size: 14px; font-weight: 600; color: var(--green); margin-bottom: 6px; }
    .topic p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
    .ablauf-steps { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
    .step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--cream-dark); }
    .step:last-child { border-bottom: none; }
    .step-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--cream-dark); line-height: 1; flex-shrink: 0; width: 56px; }
    .step h4 { font-size: 15px; font-weight: 600; color: var(--green); margin-bottom: 6px; }
    .step p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
    @media (max-width: 1024px) { .topics-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 640px) { .topics-grid { grid-template-columns: 1fr; } }
  

/* === from warum-coach-your-dog.html === */

    .reason { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start; padding: 48px 0; border-bottom: 1px solid var(--cream-dark); }
    .reason:first-child { padding-top: 0; }
    .reason:last-child { border-bottom: none; }
    .reason-icon { width: 80px; height: 80px; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; }
    .reason h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--green); margin-bottom: 12px; }
    .reason p { font-size: 15px; color: var(--text-mid); line-height: 1.85; }
    .cta-box { background: var(--green); padding: 56px; text-align: center; margin-top: 0; }
    .cta-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: white; font-weight: 300; margin-bottom: 16px; }
    .cta-box p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 32px; }
    @media (max-width: 768px) {
      .reason { grid-template-columns: 1fr; }
      .cta-box { padding: 40px 24px; }
    }
  

/* ── HOMEPAGE BODY PADDING FIX (WordPress front page) ── */
body.home { padding-top: 0; }
