/* =====================================================================
   Reitschule Frau Honigs Ponystunde – Editorial Stylesheet
   ---------------------------------------------------------------------
   Designkonzept:
   - Editorial-Magazin trifft Reitsport-Tradition trifft Kinderbuch-Wärme
   - Zwei Schriftfamilien im Kontrast:
       · Fraunces (Display-Serif, opt. italic) für Headlines & Hervorhebungen
       · Inter für UI, Fließtext und Tabellen
       · Caveat handschriftlich – sparsam (3-4 Stellen pro Seite)
   - Palette „Reitstall im warmen Licht": bone / ink / ivy / brick / honey
     (kein Sage, kein Glasmorphismus, keine pill-nav)
   - Asymmetrisches 12-Spalten-Editorial-Grid mit bewussten Negativräumen
   - Full-Bleed-Bilder, gemischte Border-Radii, dünne Tintenstrich-Linien
   - Mikrointeraktionen: Tintenstrich-Hover auf Buttons, handschriftliche
     Notiz erscheint bei Service-Karten-Hover
   - Papier-Textur (SVG-Noise) als sehr subtile Bodylayer (~5 % Opacity)
   ===================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600&family=Caveat:wght@500;700&display=swap');

/* ---------- Tokens ---------- */
:root {
    --bone:        #f1ebde;
    --paper:       #faf6ea;
    --ink:         #1d1c18;
    --ink-2:       #5a564c;
    --ivy:         #2b3a2a;
    --ivy-dark:    #1a2419;
    --brick:       #9a3b2c;
    --honey:       #c08a3d;
    --honey-dark:  #94661d;
    --rule:        rgba(29, 28, 24, 0.18);
    --rule-strong: rgba(29, 28, 24, 0.38);

    --font-display: "Fraunces", "EB Garamond", Georgia, "Times New Roman", serif;
    --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-script:  "Caveat", "Bradley Hand", cursive;

    --max:  1240px;
    --gut:  1.5rem;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--bone);
    line-height: 1.6;
    font-size: 17px;
    font-feature-settings: "liga", "dlig", "kern", "ss01";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
    overflow-x: hidden;
}

/* Subtle paper texture overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("assets/textures/paper.svg");
    background-size: 320px 320px;
    opacity: 0.35;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 100;
}

::selection { background-color: var(--honey); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    margin: 0 0 0.8rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.05;
    font-feature-settings: "liga", "dlig", "ss01", "onum";
}
h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.015em;
    line-height: 0.95;
}
h2 {
    font-size: clamp(1.85rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.08;
}
h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink);
}
h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
}

p {
    margin: 0 0 1rem;
    font-feature-settings: "liga", "kern", "onum";
    hyphens: auto;
    -webkit-hyphens: auto;
}
.lead {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-style: italic;
    font-weight: 400;
    color: var(--ink-2);
    line-height: 1.45;
    max-width: 56ch;
}

a {
    color: var(--ink);
    text-decoration: none;
    background-image: linear-gradient(var(--honey), var(--honey));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size 0.25s ease, color 0.2s ease;
}
a:hover { background-size: 100% 1px; }
a.no-underline { background: none; }

em, i { font-style: italic; font-family: var(--font-display); }
strong, b { font-weight: 600; }

/* Numbers always tabular in price contexts */
.lnum, .price { font-feature-settings: "lnum", "tnum"; }

/* Script accent (handwritten) */
.script {
    font-family: var(--font-script);
    font-weight: 500;
    letter-spacing: 0;
    color: var(--ink);
}

/* Eyebrow / Kicker */
.kicker {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brick);
    margin: 0 0 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background-color: var(--brick);
}

/* Drop cap */
.dropcap::first-letter {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 5.5em;
    line-height: 0.85;
    float: left;
    padding: 0.2rem 0.6rem 0 0;
    color: var(--brick);
}

/* ---------- Layout ---------- */
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gut);
    position: relative;
}

.col-12 { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 1.5rem; row-gap: 1.5rem; }

/* Convenience spans */
.c-1 { grid-column: span 1; } .c-2 { grid-column: span 2; }
.c-3 { grid-column: span 3; } .c-4 { grid-column: span 4; }
.c-5 { grid-column: span 5; } .c-6 { grid-column: span 6; }
.c-7 { grid-column: span 7; } .c-8 { grid-column: span 8; }
.c-9 { grid-column: span 9; } .c-10 { grid-column: span 10; }
.c-11 { grid-column: span 11; } .c-12 { grid-column: span 12; }
.start-2 { grid-column-start: 2; }
.start-3 { grid-column-start: 3; }
.start-4 { grid-column-start: 4; }
.start-5 { grid-column-start: 5; }
.start-7 { grid-column-start: 7; }
.start-8 { grid-column-start: 8; }

@media (max-width: 800px) {
    [class*="c-"] { grid-column: 1 / -1; }
    [class*="start-"] { grid-column-start: 1; }
}

/* ---------- Editorial Top Bar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background-color: var(--bone);
    border-bottom: 1px solid var(--rule);
}
.topbar-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1rem var(--gut);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: none;
}
.brand:hover { background: none; }
.brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--paper);
    box-shadow: 0 1px 3px rgba(29, 28, 24, 0.12);
    flex-shrink: 0;
}
.brand-name {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.35rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
}
.brand-name small {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-top: 0.3rem;
    font-weight: 500;
}

@media (max-width: 600px) {
    .brand-mark { width: 48px; height: 48px; }
    .brand-name { font-size: 1.1rem; }
    .brand-name small { font-size: 0.6rem; }
}

.editorial-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.editorial-nav a {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.01em;
    padding: 0.25rem 0;
    background-image: linear-gradient(var(--ink), var(--ink));
    background-repeat: no-repeat;
    background-size: 0 1px;
    background-position: 0 100%;
    transition: background-size 0.25s ease;
}
.editorial-nav a:hover,
.editorial-nav a.active {
    background-size: 100% 1px;
}
.editorial-nav a.active { color: var(--brick); }

.top-meta {
    justify-self: end;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--ink-2);
    text-align: right;
    letter-spacing: 0.05em;
}
.top-meta a { color: var(--ink-2); }

@media (max-width: 850px) {
    .topbar-inner {
        grid-template-columns: auto auto;
        gap: 0.75rem;
    }
    .top-meta { display: none; }
    .editorial-nav {
        grid-column: 1 / -1;
        justify-self: stretch;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.2rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--rule);
    }
    .editorial-nav a { font-size: 0.85rem; }
}

/* ---------- Buttons (ink-stroke fill) ---------- */
.btn {
    display: inline-block;
    position: relative;
    padding: 0.85rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    background-image: none !important;
    transition: color 0.3s ease;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--ink);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.35s ease;
    z-index: -1;
}
.btn:hover {
    color: var(--bone);
    background-image: none;
}
.btn:hover::before { transform: scaleX(1); }

.btn--brick {
    color: var(--brick);
    border-color: var(--brick);
}
.btn--brick::before { background-color: var(--brick); }
.btn--brick:hover { color: var(--bone); }

.btn--honey {
    color: var(--honey-dark);
    border-color: var(--honey-dark);
}
.btn--honey::before { background-color: var(--honey-dark); }
.btn--honey:hover { color: var(--bone); }

.btn--ghost {
    color: var(--ink);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}
.btn--ghost::before { display: none; }
.btn--ghost::after {
    content: " →";
    transition: padding-left 0.2s ease;
}
.btn--ghost:hover { color: var(--brick); }
.btn--ghost:hover::after { padding-left: 0.3rem; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    margin-top: -1px;
    padding: 0;
    background-color: var(--ink);
    color: var(--bone);
    overflow: hidden;
}
.hero-photo {
    position: relative;
    width: 100%;
    height: clamp(540px, 88vh, 820px);
    overflow: hidden;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.05);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(29,28,24,0.15) 30%, rgba(29,28,24,0.55) 70%, rgba(29,28,24,0.75) 100%);
}
.hero-content {
    position: absolute;
    inset: 0;
    padding: 2rem var(--gut) 3rem;
    display: grid;
    grid-template-rows: 1fr auto;
    max-width: var(--max);
    margin: 0 auto;
    color: var(--bone);
}
.hero-rule {
    align-self: end;
    width: 90px;
    height: 1px;
    background: var(--bone);
    opacity: 0.7;
    margin-bottom: 1rem;
}
.hero-text {
    align-self: end;
    max-width: 950px;
}
.hero-text .hero-h1 {
    color: var(--bone);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3.5rem, 11vw, 9.5rem);
    line-height: 0.88;
    letter-spacing: -0.025em;
    margin: 0 0 1.25rem;
}
.hero-text .hero-h1 .roman {
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 0.42em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5em;
    opacity: 0.8;
}
.hero-text .hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    max-width: 56ch;
    color: rgba(241, 235, 222, 0.92);
    margin: 0 0 1.75rem;
}
.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}
.hero-cta .btn { color: var(--bone); border-color: var(--bone); }
.hero-cta .btn::before { background-color: var(--bone); }
.hero-cta .btn:hover { color: var(--ink); }

.hero-meta {
    position: absolute;
    top: 1.75rem;
    right: var(--gut);
    text-align: right;
    color: var(--bone);
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}
.hero-meta::before {
    content: "";
    display: block;
    width: 1px;
    height: 36px;
    background: var(--bone);
    margin: 0 0 0.6rem auto;
}

.hero-scribble {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    color: var(--bone);
    opacity: 0.85;
    transform: rotate(-6deg);
    animation: wobble 6s ease-in-out infinite;
}
@keyframes wobble {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-4px); }
}
@media (max-width: 700px) {
    .hero-scribble { display: none; }
}

/* ---------- Horseshoe divider ---------- */
.divider {
    text-align: center;
    margin: 4rem 0;
    color: var(--ink);
    opacity: 0.65;
}
.divider svg {
    width: clamp(180px, 30vw, 280px);
    height: auto;
}
.divider-note {
    display: block;
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--ink-2);
    margin-top: 0.3rem;
}

/* ---------- Editorial intro ---------- */
.editorial-intro {
    padding: 6rem var(--gut) 3rem;
    max-width: var(--max);
    margin: 0 auto;
}
.editorial-intro .kicker { margin-bottom: 2.5rem; }
.editorial-intro .lead-text {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.3rem, 2.2vw, 1.85rem);
    line-height: 1.4;
    color: var(--ink);
    max-width: 52ch;
}
.editorial-intro .signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--ink);
}
.editorial-intro .signature svg {
    width: 200px;
    height: auto;
    color: var(--brick);
}
.editorial-intro .signature-name {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--ink-2);
    line-height: 1.1;
}
.editorial-intro .signature-name small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.2rem;
    color: var(--ink-2);
}

/* ---------- Aus dem Stallbuch (editorial paragraphs) ---------- */
.stallbuch {
    padding: 4rem var(--gut) 6rem;
    max-width: var(--max);
    margin: 0 auto;
}
.stallbuch h2 {
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    max-width: 16ch;
    margin-bottom: 4rem;
}
.stallbuch .entry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-bottom: 4.5rem;
    align-items: start;
}
.stallbuch .entry .spot {
    grid-column: span 2;
    color: var(--brick);
}
.stallbuch .entry .spot svg { width: 100%; height: auto; max-width: 70px; }
.stallbuch .entry .body {
    grid-column: span 8;
    font-size: 1.05rem;
    color: var(--ink);
    max-width: 60ch;
}
.stallbuch .entry h4 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--brick);
}
.stallbuch .entry.right {
    grid-template-areas: "body body body body body body body body body spot spot ."; }
.stallbuch .entry.right .body { grid-column: 1 / 10; grid-row: 1; }
.stallbuch .entry.right .spot { grid-column: 10 / 12; grid-row: 1; text-align: left; }
.stallbuch .entry.center {
    grid-template-columns: 1fr;
    text-align: center;
    place-items: center;
}
.stallbuch .entry.center .spot,
.stallbuch .entry.center .body { grid-column: 1; }
.stallbuch .entry.center .body { max-width: 58ch; margin: 1rem auto 0; }

@media (max-width: 800px) {
    .stallbuch .entry,
    .stallbuch .entry.right,
    .stallbuch .entry.center {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .stallbuch .entry .spot,
    .stallbuch .entry.right .spot { grid-column: 1; max-width: 70px; }
    .stallbuch .entry .body,
    .stallbuch .entry.right .body { grid-column: 1; }
}

/* ---------- Angebot (asymmetric: one hero card + small cards) ---------- */
.offers {
    padding: 4rem var(--gut) 6rem;
    max-width: var(--max);
    margin: 0 auto;
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}
.offer {
    position: relative;
    text-decoration: none;
    color: var(--ink);
    background: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.offer:hover { background: none; }
.offer figure { margin: 0; overflow: hidden; }
.offer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.2,.5,.2,1);
}
.offer:hover img { transform: scale(1.04); }

.offer.hero-card { grid-column: 1 / 8; }
.offer.hero-card figure { aspect-ratio: 4 / 3; }
.offer.hero-card h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.01em;
    margin-top: 1rem;
}
.offer.hero-card p {
    font-size: 1rem;
    color: var(--ink-2);
    max-width: 50ch;
    margin: 0.5rem 0 0;
}

.offer.small { grid-column: span 4; display: flex; flex-direction: column; }
.offer.small figure { aspect-ratio: 4 / 5; }
.offer.small.wide { grid-column: 8 / 13; }
.offer.small.wide figure { aspect-ratio: 16 / 10; }

.offer .meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0.85rem;
    gap: 0.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--rule);
}
.offer .meta h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    font-size: 1.4rem;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0;
}
.offer .price {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--honey-dark);
    font-size: 1.1rem;
    white-space: nowrap;
}
.offer .desc {
    font-size: 0.92rem;
    color: var(--ink-2);
    margin: 0.5rem 0 0;
}

.offer .note {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-script);
    font-size: 1.1rem;
    padding: 0.3rem 0.85rem;
    transform: rotate(3deg);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.3s ease;
    box-shadow: 0 3px 8px rgba(29,28,24,0.15);
    border: 1px solid var(--rule);
    pointer-events: none;
}
.offer:hover .note {
    opacity: 1;
    transform: rotate(-2deg);
}

@media (max-width: 900px) {
    .offer.hero-card, .offer.small, .offer.small.wide { grid-column: 1 / -1; }
}

/* ---------- Frau Honig stellt sich vor ---------- */
.honig-intro {
    background-color: var(--paper);
    padding: 6rem var(--gut);
    margin: 4rem 0 0;
    position: relative;
    overflow: hidden;
}
.honig-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
}
.honig-portrait {
    color: var(--ink);
    padding: 1rem;
}
.honig-portrait svg { width: 100%; height: auto; max-width: 320px; display: block; margin: 0 auto; }
.honig-portrait .honig-photo {
    display: block;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 50% 35%;
    border-radius: 50%;
    margin: 0 auto;
    border: 1px solid var(--rule-strong);
    box-shadow: 0 1px 0 var(--bone), 0 0 0 6px var(--paper), 0 0 0 7px var(--rule);
    filter: sepia(0.06) saturate(0.95);
}
.honig-portrait figcaption {
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--ink-2);
}
.honig-quote {
    position: relative;
}
.honig-quote::before {
    content: "“";
    position: absolute;
    top: -3rem;
    left: -1rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 8rem;
    line-height: 1;
    color: var(--brick);
    opacity: 0.35;
}
.honig-quote blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.35;
    max-width: 38ch;
    color: var(--ink);
}
.honig-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
}
@media (max-width: 800px) {
    .honig-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Community (dark immersive) ---------- */
.community {
    background-color: var(--ivy-dark);
    color: var(--bone);
    padding: 6rem var(--gut);
    margin-top: 0;
}
.community-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 4rem;
    align-items: start;
}
.community-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(241, 235, 222, 0.15);
}
.community-text h2 {
    color: var(--bone);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.community-text .dropcap::first-letter { color: var(--honey); }
.community-text p {
    color: rgba(241, 235, 222, 0.88);
    font-size: 1.05rem;
    max-width: 50ch;
}
.community-text .btn { color: var(--bone); border-color: var(--bone); margin-top: 1rem; }
.community-text .btn::before { background-color: var(--bone); }
.community-text .btn:hover { color: var(--ink); }
.community-text .kicker { color: var(--honey); }
.community-text .kicker::before { background-color: var(--honey); }

@media (max-width: 800px) {
    .community-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Sub-page hero (sober, editorial) ---------- */
.page-hero {
    padding: 6rem var(--gut) 3rem;
    max-width: var(--max);
    margin: 0 auto;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}
.page-hero .lead { margin-top: 1rem; }

/* sub-page hero with photo */
.page-hero-photo {
    position: relative;
    width: 100%;
    height: clamp(360px, 55vh, 520px);
    overflow: hidden;
    background-color: var(--ink);
}
.page-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.page-hero-photo .inner {
    position: absolute;
    inset: 0;
    padding: 0 var(--gut);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 3rem;
    max-width: var(--max);
    margin: 0 auto;
    color: var(--bone);
}
.page-hero-photo h1 { color: var(--bone); font-style: italic; }
.page-hero-photo .lead { color: rgba(241,235,222,0.92); }
.page-hero-photo .kicker { color: var(--honey); }
.page-hero-photo .kicker::before { background-color: var(--honey); }

/* ---------- Generic page content ---------- */
.page-content { padding: 4rem var(--gut) 6rem; max-width: var(--max); margin: 0 auto; }

.section { margin: 5rem auto; max-width: var(--max); padding: 0 var(--gut); }
.section--alt { background-color: var(--paper); padding-top: 5rem; padding-bottom: 5rem; max-width: 100%; }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; padding: 0 var(--gut); }

/* Editorial split: photo + text */
.split {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    align-items: center;
}
.split .ph { grid-column: span 6; }
.split .tx { grid-column: 8 / 13; }
.split.reverse .ph { grid-column: 7 / 13; order: 2; }
.split.reverse .tx { grid-column: 1 / 6; order: 1; }
.split .ph img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}
@media (max-width: 800px) {
    .split .ph, .split .tx,
    .split.reverse .ph, .split.reverse .tx { grid-column: 1 / -1; order: initial; }
}

/* Bleed image (full-width, no rounding) */
.bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: clamp(260px, 50vh, 460px);
    overflow: hidden;
}
.bleed img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Roman-numeral values list (Über-uns) ---------- */
.values {
    counter-reset: rv;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}
.values li {
    counter-increment: rv;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--rule);
}
.values li:last-child { border-bottom: 1px solid var(--rule); }
.values li::before {
    content: counter(rv, upper-roman);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 3rem;
    color: var(--brick);
    line-height: 0.9;
}
.values li h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    font-size: 1.4rem;
    letter-spacing: -0.005em;
    margin: 0 0 0.4rem;
    color: var(--ink);
}
.values li p { margin: 0; color: var(--ink-2); max-width: 60ch; }

/* ---------- Speisekarten-Preisliste ---------- */
.priceboard {
    background-color: var(--paper);
    padding: 2.5rem;
    border: 1px solid var(--rule);
    max-width: 720px;
    margin: 0 auto;
}
.priceboard h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.005em;
    color: var(--ink);
}
.priceboard ul { list-style: none; padding: 0; margin: 0; }
.priceboard li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 0.5rem;
    padding: 0.85rem 0;
}
.priceboard li + li { border-top: 1px dotted var(--rule); }
.priceboard .item {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink);
}
.priceboard .dots {
    flex: 1;
    border-bottom: 1px dotted var(--ink-2);
    margin: 0 0.4rem 0.4rem;
    height: 1px;
}
.priceboard .price {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--honey-dark);
    font-feature-settings: "lnum", "tnum";
}
.priceboard small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--ink-2);
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ---------- Stallplan-Tafel (Reitunterricht) ---------- */
.tafel {
    background-color: var(--ivy-dark);
    color: var(--bone);
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
}
.tafel::after {
    content: "";
    position: absolute;
    inset: 0.6rem;
    border: 1px solid rgba(241,235,222,0.18);
    pointer-events: none;
}
.tafel h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--bone);
    margin-bottom: 1.5rem;
    text-align: center;
}
.tafel table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: rgba(241,235,222,0.92);
}
.tafel th, .tafel td {
    padding: 0.7rem 0.6rem;
    border-bottom: 1px dashed rgba(241,235,222,0.22);
    text-align: left;
    vertical-align: top;
}
.tafel th {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--honey);
    font-weight: 600;
    border-bottom: 1px solid rgba(241,235,222,0.4);
}

/* ---------- Geburtstags-Optionen (editoriale Liste) ---------- */
.options-list--editorial {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}
.options-list--editorial li {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--rule);
}
.options-list--editorial li:last-child { border-bottom: 1px solid var(--rule); }
.options-list--editorial .icon { color: var(--brick); }
.options-list--editorial .icon svg { width: 60px; height: 60px; }
.options-list--editorial .name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    margin: 0 0 0.2rem;
    color: var(--ink);
}
.options-list--editorial .desc {
    font-size: 0.95rem;
    color: var(--ink-2);
    margin: 0;
    max-width: 50ch;
}
.options-list--editorial .price {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--honey-dark);
    white-space: nowrap;
}
@media (max-width: 700px) {
    .options-list--editorial li { grid-template-columns: 60px 1fr; }
    .options-list--editorial .price { grid-column: 2; }
    .options-list--editorial .icon svg { width: 48px; height: 48px; }
}

/* ---------- Geburtstagskarten-Stempel auf Hero ---------- */
.stamp-overlay {
    position: absolute;
    right: clamp(1rem, 4vw, 4rem);
    top: clamp(2rem, 8vh, 6rem);
    width: clamp(110px, 14vw, 180px);
    color: var(--bone);
    opacity: 0.85;
    transform: rotate(-9deg);
}

/* ---------- Notizzettel-Karte (Kontakt) ---------- */
.notecard {
    position: relative;
    background-color: var(--paper);
    padding: 2rem 1.75rem 2.25rem;
    transform: rotate(-1.5deg);
    box-shadow: 0 12px 30px rgba(29,28,24,0.10), 0 2px 6px rgba(29,28,24,0.08);
    border: 1px solid var(--rule);
    max-width: 380px;
}
.notecard::before,
.notecard::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 22px;
    background-color: rgba(192, 138, 61, 0.35);
    border: 1px solid rgba(148, 102, 29, 0.4);
}
.notecard::before { top: -10px; left: 30px; transform: rotate(-4deg); }
.notecard::after { bottom: -10px; right: 24px; transform: rotate(3deg); }
.notecard h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    font-size: 1.5rem;
    margin: 0 0 1.25rem;
    color: var(--ink);
}
.notecard ul { list-style: none; padding: 0; margin: 0; }
.notecard li {
    padding: 0.75rem 0;
    border-bottom: 1px dotted var(--rule);
    font-size: 0.95rem;
}
.notecard li:last-child { border-bottom: none; }
.notecard li strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brick);
    margin-bottom: 0.2rem;
}
.notecard .handwritten {
    font-family: var(--font-script);
    color: var(--ink-2);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* ---------- Ink-stroke Form (Kontakt + Geburtstag) ---------- */
.form-editorial { max-width: 640px; }
.form-editorial fieldset {
    border: none;
    padding: 0;
    margin: 0 0 2rem;
}
.form-editorial legend {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brick);
    margin-bottom: 1.25rem;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 0.5rem;
    font-weight: 600;
}
.form-editorial .row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.form-editorial label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.form-editorial input,
.form-editorial select,
.form-editorial textarea {
    border: none;
    background: transparent;
    border-bottom: 1px solid var(--rule-strong);
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--ink);
    border-radius: 0;
    transition: border-color 0.2s ease;
    width: 100%;
}
.form-editorial input:focus,
.form-editorial select:focus,
.form-editorial textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--ink);
}
.form-editorial textarea {
    border: 1px solid var(--rule-strong);
    padding: 0.75rem;
    min-height: 8rem;
}
.form-editorial .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 1.5rem;
}
@media (min-width: 600px) {
    .form-editorial .form-grid-2 { grid-template-columns: 1fr 1fr; }
}
.form-editorial .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--ink-2);
}
.form-editorial .checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
    border: 1px solid var(--ink);
    background: transparent;
    accent-color: var(--brick);
}
.form-editorial .field-hint {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--ink-2);
    margin-top: 0.35rem;
}

/* Booking option rows in editorial form */
.option-row-editorial {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-top: 1px solid var(--rule);
    cursor: pointer;
}
.option-row-editorial:last-of-type { border-bottom: 1px solid var(--rule); }
.option-row-editorial input { width: 1.1rem; height: 1.1rem; accent-color: var(--brick); }
.option-row-editorial .opt-label {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}
.option-row-editorial .opt-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
}
.option-row-editorial .opt-price {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--honey-dark);
    font-feature-settings: "lnum", "tnum";
}
.option-sub-editorial {
    margin: 0.5rem 0 1rem 2rem;
    padding: 1rem;
    background-color: var(--paper);
    border-left: 2px solid var(--brick);
}

/* Price summary editorial */
.price-card {
    background-color: var(--ivy);
    color: var(--bone);
    padding: 1.75rem;
    margin: 2rem 0;
}
.price-card h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    font-size: 1.4rem;
    color: var(--bone);
    margin-bottom: 1rem;
}
.price-card ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.price-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(241,235,222,0.25);
    color: rgba(241,235,222,0.88);
    font-feature-settings: "lnum", "tnum";
}
.price-card .total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px solid var(--honey);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--bone);
    font-feature-settings: "lnum", "tnum";
}
.price-card small {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: rgba(241,235,222,0.7);
    font-style: italic;
}

/* ---------- FAQ ---------- */
.faq h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    font-size: 1.4rem;
    color: var(--ink);
    margin: 2rem 0 0.5rem;
}
.faq p { max-width: 65ch; color: var(--ink-2); }

/* ---------- CTA Band ---------- */
.cta-band {
    background-color: var(--brick);
    color: var(--bone);
    padding: 5rem var(--gut);
    text-align: center;
    margin: 5rem 0 0;
}
.cta-band h2 {
    color: var(--bone);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.cta-band p { color: rgba(241,235,222,0.88); max-width: 50ch; margin: 0 auto 1.5rem; }
.cta-band .btn { color: var(--bone); border-color: var(--bone); }
.cta-band .btn::before { background-color: var(--bone); }
.cta-band .btn:hover { color: var(--brick); }

/* ---------- Legal pages ---------- */
.legal h2 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    font-size: 1.5rem;
    margin-top: 2rem;
    color: var(--ink);
}
.legal { max-width: 720px; margin: 0 auto; }
.legal p, .legal ul, .legal ol { color: var(--ink-2); }
.legal-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background-color: var(--paper);
    border-left: 3px solid var(--honey);
    color: var(--ink-2);
    font-style: italic;
}
.package-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.package-list li { padding: 0.3rem 0 0.3rem 1.5rem; position: relative; color: var(--ink); }
.package-list li::before { content: "❦"; position: absolute; left: 0; top: 0.25rem; color: var(--brick); }

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--ink);
    color: rgba(241,235,222,0.75);
    padding: 4rem var(--gut) 2.5rem;
    margin-top: 5rem;
}
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-inner h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer-inner ul { list-style: none; padding: 0; margin: 0; }
.footer-inner li { padding: 0.25rem 0; font-size: 0.92rem; }
.footer-inner a { color: rgba(241,235,222,0.78); }
.footer-inner a:hover { color: var(--bone); }
.footer-brand {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--bone);
    margin-bottom: 0.5rem;
}
.footer-bottom {
    max-width: var(--max);
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(241,235,222,0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: rgba(241,235,222,0.5);
}
.footer-bottom a { color: rgba(241,235,222,0.7); }

@media (max-width: 800px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-6 { margin-top: 6rem; }
.hidden { display: none; }

/* Quicklinks (Pill-row inside subhero replaced with editorial chips) */
.quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}
.quicklinks a {
    color: var(--bone);
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(241,235,222,0.5);
    background: none;
}
.quicklinks a:hover {
    border-bottom-color: var(--honey);
    color: var(--honey);
    background: none;
}
