/* ============================================================
   GOLDRITT DESIGN SYSTEM — 2026
   Palette aus dem Logo, Typo: Tangerine (Display) + EB Garamond
   ============================================================ */

:root {
  --gold:        #C9A84C;  /* Hauptfarbe */
  --champagne:   #DFC278;  /* heller Akzent */
  --amber:       #A8872E;  /* dunkler Akzent */
  --linen:       #EDE8D8;  /* Hintergründe */
  --parchment:   #F8F5EE;  /* Seitenhintergrund */
  --charcoal:    #3A3530;  /* Text */
  --stone:       #8E8E8E;  /* Subtexte */

  --font-display: 'Playfair Display', Georgia, serif;  /* Headlines — folgt dem Logo-Schriftzug */
  --font-script:  'Tangerine', cursive;                /* NUR Akzent (Zitat) — Cettinas Wunsch, dosiert */
  --font-body:    'EB Garamond', Garamond, serif;

  --max-w: 1140px;
  --radius: 2px;
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.1875rem;          /* 19px — Garamond läuft klein */
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--amber); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

/* ---------- Typografie ---------- */
h1, .display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--charcoal);
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  margin-bottom: .35em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: .01em;
  margin-bottom: .4em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.sub { color: var(--stone); }

.lead { font-size: 1.35rem; line-height: 1.55; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.linen { background: var(--linen); }

.center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  /* Termine: Datum über Beschreibung, mittig */
  .event { flex-direction: column; gap: 4px; align-items: center; text-align: center; padding: 18px 0; }
  .event .date { flex: none; }
  /* Stil-Insel etwas luftiger statt randvoll auf kleinen Screens */
  .ponygold-teaser { padding: 40px 24px; }
  /* sektionsweite Zentrierung nur mobil */
  .center-mobile { text-align: center; }
  .center-mobile .rule { margin-left: auto; margin-right: auto; }
}

/* Goldlinie als Trenner */
.rule {
  width: 64px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.center .rule { margin-left: auto; margin-right: auto; }

/* ---------- Header / Nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,245,238,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linen);
}
header.site .bar {
  max-width: var(--max-w); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 44px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600;
  color: var(--charcoal); line-height: 1;
  letter-spacing: .01em;
}
.logo span { color: var(--gold); }
.logo img { height: 28px; display: block; width: auto; }

nav.main { display: flex; gap: 28px; align-items: center; flex: 1 1 auto; }
nav.main a {
  font-size: 1rem; color: var(--charcoal);
  letter-spacing: .03em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
nav.main a:hover, nav.main a.active { border-bottom-color: var(--gold); color: var(--amber); }
/* nav links sit left next to the logo; CTA + language switcher pushed to the right */
nav.main > .btn { margin-left: auto; }
.lang { font-size: .9rem; color: var(--stone); letter-spacing: .1em; }
.lang a { color: var(--stone); }
.lang a.on { color: var(--amber); font-weight: 600; }

/* Mobile Nav */
#nav-toggle { display: none; }
label.burger { display: none; cursor: pointer; font-size: 1.6rem; color: var(--charcoal); margin-left: auto; }
@media (max-width: 900px) {
  label.burger { display: block; }
  nav.main {
    display: none; flex: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--linen);
    padding: 8px 0;
  }
  nav.main a { padding: 14px 24px; width: 100%; }
  nav.main > .btn { margin-left: 0; }
  #nav-toggle:checked ~ nav.main { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.05rem; letter-spacing: .06em;
  padding: 14px 34px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--charcoal);
  background: transparent;
  transition: all .25s;
}
.btn:hover { background: var(--gold); color: #fff; }
.btn.solid { background: var(--gold); color: #fff; }
.btn.solid:hover { background: var(--amber); border-color: var(--amber); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: center;
  padding: 0;
}
.hero .bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero .bg::after {            /* warmer Schleier für Lesbarkeit — Text rechts, Motiv links frei */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(248,245,238,.95) 0%, rgba(248,245,238,.82) 32%, rgba(248,245,238,.28) 58%, rgba(248,245,238,0) 74%);
}
.hero .inner { position: relative; z-index: 1; max-width: none; margin: 0 auto; padding: 96px 24px; width: 100%; }
.hero .hero-copy { max-width: 500px; margin-left: 60%; text-align: left; }
.hero h1 { margin-bottom: .1em; }
.hero .lead { max-width: 34ch; margin-bottom: 2rem; }
@media (max-width: 900px) {
  /* Motiv (Cettina + Pferd) bleibt sichtbar — Text auf weicher, transluzenter Karte */
  /* Bildausschnitt auf Cettina + Pferdekopf zentrieren (statt Pferderücken links) */
  .hero .bg { background-position: 44% center !important; }
  .hero .bg::after {
    background: linear-gradient(to bottom, rgba(248,245,238,.22), rgba(248,245,238,.12) 50%, rgba(248,245,238,.30));
  }
  .hero .inner { padding: 56px 20px; }
  .hero .hero-copy {
    margin: 0 auto; text-align: center; max-width: 460px;
    background: rgba(248,245,238,.68);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,.30);
    border-radius: 22px;
    padding: 34px 26px;
    box-shadow: 0 12px 40px rgba(58,53,48,.12);
  }
  .hero .hero-copy img { margin-left: auto; margin-right: auto; }
  .hero .lead { max-width: none; margin-inline: auto; }
}

/* ---------- Karten ---------- */
.card {
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 12px 32px rgba(58,53,48,.08); transform: translateY(-3px); }
.card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card .body p { flex: 1; margin-bottom: 1.2rem; }
.card .more { color: var(--amber); letter-spacing: .04em; font-size: 1rem; }

/* ---------- Bild-Platzhalter (bis echte Fotos da sind) ---------- */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(201,168,76,.07) 0 12px, transparent 12px 24px),
    var(--linen);
  border: 1px dashed var(--champagne);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone);
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  text-align: center; padding: 12px;
}
.ph.r169 { aspect-ratio: 16/9; }
.ph.r43  { aspect-ratio: 4/3; }
.ph.r34  { aspect-ratio: 3/4; }
.ph.r11  { aspect-ratio: 1/1; }
.ph.round { border-radius: 50%; }
.hero .bg.ph { aspect-ratio: auto; border: none; }

/* ---------- Echte Fotos ---------- */
img.photo { width: 100%; display: block; object-fit: cover; }
img.photo.r169 { aspect-ratio: 16/9; }
img.photo.r43  { aspect-ratio: 4/3; }
img.photo.r34  { aspect-ratio: 3/4; }
img.photo.round { border-radius: 50%; aspect-ratio: 1/1; }

/* ---------- Zitat-Sektion ---------- */
.quote {
  background: var(--linen);
  text-align: center;
  padding: 88px 24px;
}
.quote blockquote {
  font-family: var(--font-script);   /* Tangerine lebt hier weiter — als kalligrafischer Akzent */
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.25;
  max-width: 800px; margin: 0 auto .75rem;
}
.quote cite { font-style: normal; color: var(--stone); font-size: 1rem; letter-spacing: .08em; }

/* ---------- Akkordeon (details/summary) ---------- */
details.acc {
  border-bottom: 1px solid var(--linen);
  padding: 18px 0;
}
details.acc summary {
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; }
details.acc[open] summary::after { content: "–"; }
details.acc .acc-body { padding-top: 12px; color: var(--charcoal); }

/* ---------- Listen ---------- */
ul.gold {
  list-style: none;
}
ul.gold li {
  padding-left: 1.6em; position: relative; margin-bottom: .5em;
}
ul.gold li::before {
  content: "—"; color: var(--gold);
  position: absolute; left: 0;
}

/* ---------- Schritte (Online-Ablauf) ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 24px; margin-bottom: 36px; }
.step .num {
  counter-increment: step;
  flex: 0 0 56px; height: 56px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; color: var(--amber);
}
.step .num::before { content: counter(step); }

/* ---------- Termin-Liste ---------- */
.event {
  display: flex; gap: 28px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid var(--linen);
}
.event .date {
  flex: 0 0 130px;
  font-weight: 600; color: var(--amber); letter-spacing: .04em;
}

/* ---------- Hinweisbox ---------- */
.note {
  background: var(--linen);
  border-left: 3px solid var(--gold);
  padding: 22px 28px;
  margin: 32px 0;
}

/* ---------- Formular ---------- */
form.contact { display: grid; gap: 18px; max-width: 640px; }
form.contact label { font-weight: 600; font-size: 1.05rem; }
form.contact input, form.contact select, form.contact textarea {
  font-family: var(--font-body); font-size: 1.05rem;
  padding: 12px 14px;
  border: 1px solid var(--champagne); border-radius: var(--radius);
  background: #fff; color: var(--charcoal);
  width: 100%;
}
form.contact textarea { min-height: 140px; }
form.contact input:focus, form.contact select:focus, form.contact textarea:focus {
  outline: 2px solid var(--gold);
}

/* ---------- Ponygold-Teaser (kindgerechte Stil-Insel) ---------- */
.ponygold-teaser {
  background: linear-gradient(160deg, var(--linen), #f6eed9);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ponygold-teaser h2 { color: var(--amber); }
.ponygold-teaser .btn { border-radius: 999px; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--charcoal);
  color: var(--linen);
  padding: 64px 0 32px;
  font-size: 1rem;
}
footer.site a { color: var(--champagne); }
footer.site a:hover { color: #fff; }
footer.site .cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px 40px;
}
footer.site .legal {
  border-top: 1px solid rgba(237,232,216,.2);
  max-width: var(--max-w); margin: 0 auto; padding: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--stone); font-size: .9rem;
}
footer.site .logo { color: var(--linen); }
@media (max-width: 900px) {
  footer.site .cols { grid-template-columns: 1fr 1fr; gap: 28px; text-align: center; }
  footer.site .cols img { margin-left: auto; margin-right: auto; }
  footer.site .legal { justify-content: center; text-align: center; }
}
@media (max-width: 540px) {
  footer.site .cols { grid-template-columns: 1fr; }
}

/* ---------- Copy-Marker (nur Bauphase — vor Launch entfernen) ---------- */
.todo {
  color: var(--stone);
  font-style: italic;
}
.todo::before { content: "✎ "; color: var(--gold); }
