/* ==========================================================================
   Reitschule Fabelhof - Redesign-Demo 2026
   Farbwelt aus dem Bestandslogo gemessen: Petrol #00909c, Gruen #78b430, Orange #f09024
   Typo: Alegreya (Display) + Karla (Text), lokal via fonts.css
   Shape-System: Buttons = Pill | Karten = 20px | Signatur-Bilder = Stallbogen (oben rund)
   ========================================================================== */

:root {
  --paper: #fbf7ef;
  --paper-2: #f3ecdf;
  --paper-3: #e9dfd0;
  --ink: #25342f;
  --ink-soft: #5a6761;
  --petrol: #087680;
  --petrol-bright: #00909c;
  --petrol-deep: #0c3c44;
  --petrol-wash: #dceef0;
  --orange: #f09024;
  --orange-deep: #b45f07;
  --orange-ink: #2e1c03;
  --green: #557f1d;
  --green-wash: #e7f0d8;
  --line: #dfd3bf;
  --card: #fffaf2;
  --shadow: 0 24px 60px rgba(66, 55, 39, 0.13);
  --shadow-soft: 0 12px 32px rgba(66, 55, 39, 0.08);
  --r-card: 24px;
  --r-pill: 999px;
  --wrap: 1280px;
  --header-h: 82px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: 'Karla', 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(240, 144, 36, 0.06), transparent 28rem),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, h4 { font-family: 'Alegreya', Georgia, serif; line-height: 1.05; color: var(--ink); margin: 0 0 0.5em; font-weight: 800; text-wrap: balance; }
h1, h2, h3 { hyphens: auto; overflow-wrap: break-word; }
h1 { font-size: clamp(2.65rem, 4.8vw, 4.35rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 3.2vw, 2.9rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
a { color: var(--petrol); text-underline-offset: 3px; }
a:hover { color: var(--petrol-deep); }
ul { padding-left: 1.2em; }
strong { color: var(--ink); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.section { padding-block: clamp(68px, 9vw, 116px); }
.section-tint { background: var(--paper-2); }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.icon { width: 1.25em; height: 1.25em; flex: none; fill: currentColor; vertical-align: -0.22em; }

/* Fokus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--petrol);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 200;
  background: var(--petrol-deep); color: #fff; padding: 10px 18px; border-radius: var(--r-pill);
}
.skip-link:focus { left: 12px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(250, 246, 236, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--header-h);
  padding-block: 10px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 52px; width: auto; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); }
.main-nav a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1rem;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--petrol); }
.main-nav a[aria-current="page"] { color: var(--petrol); border-bottom-color: var(--orange); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--petrol-deep); color: #fff !important;
  padding: 10px 18px; border-radius: var(--r-pill);
  text-decoration: none; font-weight: 700; font-size: 0.98rem;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--petrol); }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 2px solid var(--petrol-deep); border-radius: 12px;
  padding: 9px 11px; cursor: pointer; color: var(--petrol-deep);
}
.nav-toggle .icon { width: 1.5em; height: 1.5em; vertical-align: middle; }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px clamp(18px, 4vw, 32px) 26px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { display: block; padding: 12px 6px; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .main-nav li:last-child a { border-bottom: none; }
  .nav-cta { justify-content: center; margin-top: 10px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--r-pill); padding: 15px 28px;
  font-family: 'Karla', sans-serif; font-weight: 800; font-size: 1.04rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--orange); color: var(--orange-ink); box-shadow: 0 10px 22px rgba(240, 144, 36, 0.32); }
.btn-primary:hover { background: #f7a03d; color: var(--orange-ink); }
.btn-secondary { background: transparent; color: var(--petrol-deep); border-color: var(--petrol-deep); }
.btn-secondary:hover { background: var(--petrol-deep); color: #fff; }
.btn-light { background: #fff; color: var(--petrol-deep); }
.btn-light:hover { background: var(--petrol-wash); color: var(--petrol-deep); }
.btn-whatsapp { background: var(--orange); color: var(--orange-ink); box-shadow: 0 10px 22px rgba(240, 144, 36, 0.32); }
.btn-whatsapp:hover { background: #f7a03d; }

/* ==========================================================================
   Hero (Split mit Stallbogen)
   ========================================================================== */
.hero { border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: calc(100dvh - var(--header-h));
  padding-block: clamp(20px, 3.5vh, 44px);
}
.hero-copy { max-width: 620px; }
.hero-copy h1 { margin-bottom: 0.4em; }
.hero-copy .lead { font-size: clamp(1.08rem, 1.5vw, 1.24rem); margin-bottom: 1.5em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(22px, 3.5vh, 40px); }

.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.95rem; color: var(--ink-soft); }
.hero-trust .icon { color: var(--green); }

.hero-media { position: relative; align-self: stretch; display: flex; }
.hero-media figure {
  position: relative; flex: 1; min-height: 100%;
  border-radius: 300px 300px var(--r-card) var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media figure picture, .hero-media figure > img { position: absolute; inset: 0; }
.hero-media figure picture img, .hero-media figure > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.hero-badge img { position: static; width: 34px; height: 34px; }
.hero-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(250, 246, 236, 0.95);
  border-radius: var(--r-pill); padding: 10px 18px 10px 12px;
  font-weight: 800; font-size: 0.95rem; color: var(--petrol-deep);
  box-shadow: var(--shadow-soft);
}
.hero-badge img { width: 34px; height: 34px; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-block: 22px 48px; }
  .hero-media { order: -1; }
  .hero-media figure { min-height: min(58vh, 480px); border-radius: 200px 200px var(--r-card) var(--r-card); }
  .hero-media figure picture img, .hero-media figure > img { object-position: 50% 12%; }
  .hero-copy { max-width: 100%; }
}
@media (min-width: 941px) and (max-height: 830px) {
  .hero-copy h1 { font-size: clamp(2.1rem, 3.6vw, 2.9rem); }
  .hero-grid { padding-block: 16px; }
  .hero-copy .lead { margin-bottom: 1.1em; }
}

/* ==========================================================================
   Angebots-Karten (asymmetrisch versetzt)
   ========================================================================== */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 30px); align-items: start; }
.offer-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-card:nth-child(2) { margin-top: 34px; }
.offer-card figure { aspect-ratio: 10 / 7; overflow: hidden; }
.offer-card figure img { width: 100%; height: 100%; object-fit: cover; }
.offer-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.offer-body h3 { margin: 0; }
.offer-body p { color: var(--ink-soft); margin: 0; }
.offer-link {
  margin-top: auto; padding-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; text-decoration: none; color: var(--petrol);
}
.offer-link:hover { color: var(--petrol-deep); }
@media (max-width: 900px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card:nth-child(2) { margin-top: 0; }
}

/* ==========================================================================
   Panorama-Band mit Zahlen
   ========================================================================== */
.panorama { position: relative; isolation: isolate; color: #fff; }
.panorama img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.panorama::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,60,68,0.42), rgba(12,60,68,0.78)); z-index: -1; }
.panorama .inner { padding-block: clamp(72px, 12vw, 130px); text-align: center; }
.panorama h2 { color: #fff; }
.panorama .lead { color: rgba(255,255,255,0.88); margin-inline: auto; }
.stat-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(26px, 6vw, 84px); margin-top: clamp(30px, 5vw, 54px); }
.stat b { display: block; font-family: 'Alegreya', serif; font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 800; line-height: 1; }
.stat span { font-size: 0.98rem; color: rgba(255,255,255,0.85); font-weight: 700; }

/* ==========================================================================
   Pferde-Reihe (Scroll-Snap)
   ========================================================================== */
.horse-row-outer { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: thin; }
.horse-row { display: flex; gap: 18px; min-width: max-content; padding-inline: clamp(18px, 4vw, 32px); }
.horse-card {
  scroll-snap-align: start;
  width: 236px; flex: none;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 130px 130px var(--r-card) var(--r-card);
  overflow: hidden; text-align: center;
  box-shadow: var(--shadow-soft);
  text-decoration: none; color: var(--ink);
  transition: transform 0.2s ease;
}
.horse-card:hover { transform: translateY(-4px); }
.horse-card figure { aspect-ratio: 1; overflow: hidden; }
.horse-card img { width: 100%; height: 100%; object-fit: cover; }
.horse-card .hc-body { padding: 14px 14px 18px; }
.horse-card b { font-family: 'Alegreya', serif; font-size: 1.18rem; }
.horse-card span { display: block; font-size: 0.9rem; color: var(--ink-soft); }

/* ==========================================================================
   Bento Hof-Welt
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 24px); }
.bento-tile {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  min-height: 240px; display: flex; align-items: flex-end;
  text-decoration: none; isolation: isolate;
  box-shadow: var(--shadow-soft);
}
.bento-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.35s ease; }
.bento-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(12,60,68,0) 38%, rgba(12,60,68,0.82)); z-index: -1; }
.bento-tile:hover img { transform: scale(1.04); }
.bento-tile .bt-label { padding: 18px 20px; color: #fff; }
.bento-tile .bt-label b { font-family: 'Alegreya', serif; font-size: 1.3rem; display: block; }
.bento-tile .bt-label span { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.bento-a { grid-column: span 7; min-height: 320px; }
.bento-b { grid-column: span 5; }
.bento-c { grid-column: span 4; }
.bento-d { grid-column: span 4; }
.bento-e { grid-column: span 4; }
@media (max-width: 860px) {
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e { grid-column: span 12; min-height: 220px; }
}

/* ==========================================================================
   Termine / Preise
   ========================================================================== */
.schedule-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .schedule-grid { grid-template-columns: 1fr; } }

.time-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.time-table caption { text-align: left; font-family: 'Alegreya', serif; font-weight: 800; font-size: 1.25rem; padding: 18px 22px 6px; }
.time-table th, .time-table td { text-align: left; padding: 13px 22px; font-size: 1rem; }
.time-table thead th { color: var(--ink-soft); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; padding-top: 16px; }
.time-table tbody tr { border-top: 1px solid var(--line); }
.time-table td:last-child { font-weight: 800; color: var(--petrol-deep); white-space: nowrap; }

.price-cards { display: grid; gap: 16px; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 22px 24px; box-shadow: var(--shadow-soft); }
.price-card .pc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.price-card h3 { margin: 0; font-size: 1.2rem; }
.price-card .pc-price { font-family: 'Alegreya', serif; font-weight: 800; font-size: 1.5rem; color: var(--petrol-deep); white-space: nowrap; }
.price-card p { color: var(--ink-soft); font-size: 0.98rem; margin: 6px 0 0; }
.price-note { font-size: 0.92rem; color: var(--ink-soft); }

/* ==========================================================================
   Kontakt-Band
   ========================================================================== */
.contact-band { background: var(--petrol-deep); color: #fff; }
.contact-band .inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(56px, 8vw, 92px); }
.contact-band h2 { color: #fff; }
.contact-band p { color: rgba(255,255,255,0.86); }
.contact-band .band-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.contact-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-facts li { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 15px 18px; }
.contact-facts .icon { color: var(--orange); width: 1.45em; height: 1.45em; margin-top: 2px; }
.contact-facts b { display: block; }
.contact-facts a { color: #fff; }
.contact-facts span { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
@media (max-width: 900px) { .contact-band .inner { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #0a3138; color: rgba(255,255,255,0.85); }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 48px); padding-block: clamp(48px, 7vw, 72px) 28px; }
.site-footer .brand-foot img { height: 60px; width: auto; background: var(--paper); border-radius: 14px; padding: 8px 14px; }
.site-footer h4 { color: #fff; font-size: 1.08rem; margin-bottom: 0.7em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer .foot-note { font-size: 0.92rem; color: rgba(255,255,255,0.66); }
.eu-note { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 16px; }
.eu-note img { width: 74px; height: auto; background: #fff; border-radius: 8px; padding: 5px; flex: none; }
.eu-note p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-block: 18px 26px; display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between; font-size: 0.95rem; }
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; margin: 0; padding: 0; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Unterseiten-Gemeinsames
   ========================================================================== */
.page-head { padding-block: clamp(44px, 7vw, 84px) clamp(28px, 4vw, 48px); }
.page-head .crumb { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 14px; }
.page-head .crumb a { color: var(--ink-soft); }
.page-head h1 { max-width: 20ch; }
.page-head .lead { max-width: 68ch; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4.5vw, 64px); align-items: center; }
.split figure { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); }
.split figure.arch { border-radius: 220px 220px var(--r-card) var(--r-card); }
.split figure img { width: 100%; height: 100%; object-fit: cover; }
.split .split-copy h2 { margin-bottom: 0.45em; }
.split.flip figure { order: 2; }
@media (max-width: 880px) {
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip figure { order: 0; }
}

.check-list { list-style: none; padding: 0; margin: 1em 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; }
.check-list .icon { color: var(--green); margin-top: 3px; }

.fact-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: var(--petrol-wash); color: var(--petrol-deep); font-weight: 700; font-size: 0.92rem; border-radius: var(--r-pill); padding: 8px 16px; }
.chip .icon { width: 1.1em; height: 1.1em; }
.chip-green { background: var(--green-wash); color: var(--green); }

.quote-block { max-width: 780px; margin-inline: auto; text-align: center; }
.quote-block blockquote { margin: 0; font-family: 'Alegreya', serif; font-size: clamp(1.35rem, 2.6vw, 1.85rem); font-style: italic; line-height: 1.4; color: var(--petrol-deep); }
.quote-block cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700; color: var(--ink-soft); font-size: 1rem; }

.accordion { border: 1px solid var(--line); border-radius: var(--r-card); background: var(--card); overflow: hidden; box-shadow: var(--shadow-soft); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:first-child { border-top: none; }
.accordion summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-weight: 800; font-family: 'Alegreya', serif; font-size: 1.15rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .icon { transition: transform 0.2s ease; color: var(--petrol); }
.accordion details[open] summary .icon { transform: rotate(180deg); }
.accordion .acc-body { padding: 0 22px 20px; color: var(--ink-soft); }

.gallery-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.gallery-band figure { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; }
.gallery-band img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.gallery-band figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 12px; color: #fff; font-size: 0.92rem; font-weight: 700; background: linear-gradient(180deg, transparent, rgba(12,60,68,0.75)); }
@media (max-width: 760px) { .gallery-band { grid-template-columns: 1fr; } .gallery-band img { aspect-ratio: 16 / 10; } }

/* Pferde-Seite Grid */
.horse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
.horse-profile { background: var(--card); border: 1px solid var(--line); border-radius: 150px 150px var(--r-card) var(--r-card); overflow: hidden; box-shadow: var(--shadow-soft); }
.horse-profile figure { aspect-ratio: 1; overflow: hidden; }
.horse-profile img { width: 100%; height: 100%; object-fit: cover; }
.horse-profile .hp-body { padding: 20px 22px 24px; }
.horse-profile h3 { margin-bottom: 0.15em; }
.horse-profile .hp-meta { color: var(--petrol); font-weight: 800; font-size: 0.92rem; display: block; margin-bottom: 10px; }
.horse-profile p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
@media (max-width: 960px) { .horse-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .horse-grid { grid-template-columns: 1fr; } }

/* Kontakt-Seite */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(26px, 4.5vw, 60px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-soft); padding: clamp(22px, 3vw, 32px); }
.contact-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.contact-card li { display: flex; gap: 14px; align-items: flex-start; }
.contact-card .icon { color: var(--petrol); width: 1.4em; height: 1.4em; margin-top: 2px; }
.contact-card b { display: block; }
.contact-card li div > a { display: inline-block; font-weight: 700; }
.contact-card span { display: block; color: var(--ink-soft); font-size: 0.96rem; }

.demo-form { display: grid; gap: 18px; }
.demo-form .form-row { display: grid; gap: 6px; }
.demo-form label { font-weight: 800; font-size: 0.98rem; }
.demo-form .hint { font-size: 0.88rem; color: var(--ink-soft); }
.demo-form input, .demo-form select, .demo-form textarea {
  font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid #cfc4a6; border-radius: 12px;
  padding: 12px 14px; width: 100%;
}
.demo-form input::placeholder, .demo-form textarea::placeholder { color: #8b8571; }
.demo-form .error { display: none; font-size: 0.9rem; color: #9d2c1c; font-weight: 700; }
.demo-form .form-row.invalid .error { display: block; }
.demo-form .form-row.invalid input, .demo-form .form-row.invalid select { border-color: #9d2c1c; }
.demo-form .form-confirmations.invalid { border-color: #9d2c1c; background: #fff8f5; }
.demo-form .form-confirmations.invalid .error { display: block; margin-top: 10px; }
.demo-form fieldset { border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px; margin: 0; }
.demo-form legend { font-weight: 800; padding-inline: 6px; }
.demo-form .checks { display: grid; gap: 10px; }
.demo-form .checks label { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; }
.demo-form .checks input { width: auto; margin-top: 3px; }
.form-demo-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--petrol-wash); border-radius: 12px; padding: 14px 16px;
  font-size: 0.95rem; color: var(--petrol-deep);
}
.form-success { display: none; background: var(--green-wash); color: var(--green); font-weight: 700; border-radius: 12px; padding: 16px 18px; }
.form-success.show { display: block; }

.dl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dl-list a { display: flex; align-items: center; gap: 12px; text-decoration: none; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px; font-weight: 700; color: var(--petrol-deep); }
.dl-list a:hover { border-color: var(--petrol); }
.dl-list .icon { color: var(--petrol); }
.dl-list small { margin-left: auto; color: var(--ink-soft); font-weight: 400; }

/* Mobile Sticky-Kontaktleiste */
.mobile-contact-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--petrol-deep);
  padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
  gap: 10px;
}
.mobile-contact-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-weight: 800; font-size: 1rem;
  border-radius: var(--r-pill); padding: 12px 10px;
}
.mobile-contact-bar .mc-call { background: rgba(255,255,255,0.12); color: #fff; }
.mobile-contact-bar .mc-wa { background: var(--orange); color: var(--orange-ink); }
@media (max-width: 760px) {
  .mobile-contact-bar { display: flex; }
  body { padding-bottom: 74px; }
}

/* Reveal-Animationen */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .offer-card, .horse-card, .bento-tile img, .btn { transition: none !important; }
}

/* Druck */
@media print {
  .site-header, .mobile-contact-bar, .nav-toggle { display: none !important; }
}

/* ==========================================================================
   Premium-Ueberarbeitung 2026-07-22
   Warm, redaktionell und bildgetragen. Bewahrt die bestehende Struktur.
   ========================================================================== */

/* Kleine redaktionelle Kapitelmarke */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--petrol);
  font-family: 'Alegreya', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--orange);
}

/* Header: ruhiger, praeziser und weniger pillenfoermig */
.site-header {
  background: rgba(251, 247, 239, 0.92);
  border-bottom-color: rgba(119, 96, 63, 0.18);
  box-shadow: 0 8px 24px rgba(66, 55, 39, 0.035);
}
.site-header .bar { min-height: var(--header-h); padding-block: 11px; }
.brand img { height: 57px; }
.main-nav a {
  font-size: 0.96rem;
  font-weight: 750;
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.main-nav a:hover { transform: translateY(-1px); }
.nav-cta {
  border-radius: 14px;
  padding: 11px 16px;
  box-shadow: 0 9px 22px rgba(12, 60, 68, 0.16);
}
.nav-toggle { border-radius: 14px; transition: background-color 0.2s ease, transform 0.2s ease; }
.nav-toggle:hover { background: var(--petrol-wash); }
.nav-toggle:active { transform: scale(0.97); }

/* Buttons */
.btn {
  min-height: 52px;
  border-radius: 14px;
  padding: 14px 24px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary,
.btn-whatsapp { box-shadow: 0 12px 28px rgba(180, 95, 7, 0.22); }
.btn-secondary { background: rgba(255, 250, 242, 0.64); }

/* Startseiten-Hero */
.hero {
  position: relative;
  border-bottom: 1px solid rgba(119, 96, 63, 0.16);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.25), transparent 48%),
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(12,60,68,0.025) 80px);
}
.hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: -190px;
  border: 1px solid rgba(0, 144, 156, 0.13);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(38px, 5vw, 78px);
  min-height: calc(100dvh - var(--header-h));
  padding-block: clamp(34px, 5vh, 58px);
}
.hero-copy { max-width: 600px; position: relative; z-index: 2; }
.hero-copy h1 {
  max-width: 13.5ch;
  margin-bottom: 0.32em;
  font-size: clamp(3rem, 4.55vw, 4.55rem);
  line-height: 0.98;
}
.hero-copy .lead {
  max-width: 55ch;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.62;
  margin-bottom: 1.45em;
}
.hero-ctas { margin-bottom: clamp(22px, 3.1vh, 34px); }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 22px;
}
.hero-trust li:last-child { grid-column: 1 / -1; }
.hero-media { min-width: 0; }
.hero-media figure {
  min-height: min(72vh, 720px);
  border: 8px solid rgba(255, 250, 242, 0.88);
  border-radius: clamp(86px, 11vw, 180px) 28px 28px 28px;
  box-shadow: 0 32px 80px rgba(66, 55, 39, 0.18);
}
.hero-media figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(22, 32, 29, 0.16));
  pointer-events: none;
}
.hero-media figure > img { object-position: 50% 28%; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-media:hover figure > img { transform: scale(1.015); }
.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 104px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(12,60,68,0.18);
  border-radius: 50%;
  background: rgba(251, 247, 239, 0.93);
  color: var(--petrol-deep);
  font-family: 'Alegreya', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  transform: rotate(5deg);
  box-shadow: var(--shadow-soft);
}
.hero-badge {
  left: 22px;
  bottom: 22px;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 16px;
  padding: 8px 16px 8px 8px;
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(12px);
}
.hero-badge img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}
.hero-badge span { display: grid; line-height: 1.15; }
.hero-badge small {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 650;
}

/* Angebote: ein klarer Schwerpunkt statt drei gleicher Karten */
.offer-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.offer-card {
  border: 0;
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow-soft);
}
.offer-card:nth-child(1) { grid-row: 1 / 3; }
.offer-card:nth-child(2) { margin-top: 0; }
.offer-card:nth-child(n+2) {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(0, 1.15fr);
}
.offer-card:nth-child(1) figure { min-height: 470px; aspect-ratio: 16 / 11; }
.offer-card:nth-child(n+2) figure { min-height: 100%; aspect-ratio: auto; }
.offer-card figure img { transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1); }
.offer-card:hover figure img { transform: scale(1.035); }
.offer-card:hover { transform: translateY(-5px); }
.offer-body { padding: clamp(22px, 2.7vw, 34px); }
.offer-body h3 { font-size: clamp(1.55rem, 2vw, 2rem); }

/* Panorama: heller Hofmoment statt ploetzlicher dunkler Block */
.panorama { color: var(--ink); min-height: 620px; display: flex; align-items: center; }
.panorama img.bg { object-position: center; }
.panorama::after {
  background: linear-gradient(90deg, rgba(251,247,239,0.97) 0%, rgba(251,247,239,0.88) 42%, rgba(251,247,239,0.28) 76%, rgba(251,247,239,0.08) 100%);
}
.panorama .inner { text-align: left; padding-block: clamp(78px, 10vw, 128px); }
.panorama .inner > .reveal { max-width: 600px; }
.panorama h2 { color: var(--ink); }
.panorama .lead { color: var(--ink-soft); margin-inline: 0; }
.stat-row {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: start;
  gap: 0;
  margin-top: clamp(32px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(119, 96, 63, 0.18);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.stat { padding: 20px 18px 22px; border-left: 1px solid rgba(119, 96, 63, 0.16); }
.stat:first-child { border-left: 0; }
.stat b { color: var(--petrol-deep); font-size: clamp(2rem, 3vw, 2.8rem); }
.stat span { color: var(--ink-soft); font-size: 0.9rem; }

/* Bild- und Kartenrhythmus */
.split { gap: clamp(34px, 5.5vw, 76px); }
.split > * { min-width: 0; }
.split figure {
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(66, 55, 39, 0.12);
}
.split figure.arch { border-radius: 104px 24px 24px 24px; }
.split figure img { transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1); }
.split figure:hover img { transform: scale(1.025); }
.section-tint {
  background:
    radial-gradient(circle at 92% 8%, rgba(120,180,48,0.07), transparent 24rem),
    var(--paper-2);
}
.chip { border-radius: 12px; }

/* Unterseiten-Mastheads */
.page-head {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 6vw, 76px);
  border-bottom: 1px solid rgba(119, 96, 63, 0.16);
  background:
    radial-gradient(circle at 90% 4%, rgba(0,144,156,0.08), transparent 26rem),
    var(--paper-2);
}
.page-head::before {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -190px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(240,144,36,0.16);
  border-radius: 50%;
}
.page-head-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
}
.page-head-copy { min-width: 0; }
.page-head .crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--petrol);
  font-size: 0.93rem;
  font-weight: 700;
}
.page-head .crumb a { color: var(--petrol); }
.page-head h1 {
  max-width: 12ch;
  margin-bottom: 0.36em;
  font-size: clamp(3rem, 4.9vw, 4.8rem);
  line-height: 0.98;
}
.page-head .lead { max-width: 57ch; font-size: clamp(1.06rem, 1.35vw, 1.2rem); line-height: 1.65; }
.page-head-media {
  position: relative;
  height: clamp(360px, 37vw, 520px);
  overflow: hidden;
  border: 7px solid rgba(255, 250, 242, 0.9);
  border-radius: 112px 26px 26px 26px;
  box-shadow: 0 30px 76px rgba(66, 55, 39, 0.17);
}
.page-head-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.page-head-media:hover img { transform: scale(1.02); }
.page-head-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(25,36,32,0.58));
  pointer-events: none;
}
.page-head-media figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 18px;
  color: #fffdf7;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}
.page-head-portrait { max-width: 530px; justify-self: end; }
.page-head-portrait img { object-position: center 22%; }
.page-head-landscape { height: clamp(330px, 31vw, 450px); }
.page-hof .page-head-media img { object-position: center 62%; }
.page-pferde .page-head-media img { object-position: center 43%; }

/* Rechtstexte bleiben bewusst ruhig und gut lesbar */
.page-legal .page-head { padding-block: clamp(46px, 6vw, 74px) clamp(30px, 4vw, 48px); }
.page-legal .page-head::before { display: none; }
.page-legal .page-head h1 { max-width: none; font-size: clamp(2.8rem, 5vw, 4.5rem); }
.page-legal main > .section .wrap { max-width: 920px; }
.page-legal main > .section { padding-top: clamp(34px, 4vw, 54px) !important; }

/* Akkordeons und kleine Inhaltsmodule */
.accordion {
  border: 0;
  border-radius: 22px;
  background: rgba(255,250,242,0.72);
  box-shadow: var(--shadow-soft);
}
.accordion details { border-top-color: rgba(119, 96, 63, 0.16); }
.accordion summary { padding: 20px 24px; transition: background-color 0.2s ease, color 0.2s ease; }
.accordion summary:hover { background: rgba(220, 238, 240, 0.55); color: var(--petrol-deep); }
.gallery-band { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.88fr) minmax(0, 0.88fr); gap: clamp(14px, 2vw, 24px); }
.gallery-band figure { border-radius: 24px; box-shadow: var(--shadow-soft); }
.gallery-band img { aspect-ratio: 4 / 3; transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-band figure:hover img { transform: scale(1.03); }

/* Pferdeportraets: redaktionelles Raster statt neun identischer Karten */
.horse-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(18px, 2.5vw, 30px); }
.horse-profile {
  grid-column: span 4;
  border: 0;
  border-radius: 72px 22px 22px 22px;
  background: rgba(255,250,242,0.9);
  box-shadow: var(--shadow-soft);
}
.horse-profile:nth-child(1),
.horse-profile:nth-child(6),
.horse-profile:nth-child(9) {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  border-radius: 86px 24px 24px 24px;
}
.horse-profile:nth-child(1) figure,
.horse-profile:nth-child(6) figure,
.horse-profile:nth-child(9) figure { aspect-ratio: 4 / 3; }
.horse-profile figure { aspect-ratio: 1; }
.horse-profile img { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.horse-profile:hover img { transform: scale(1.035); }
.horse-profile .hp-body { padding: clamp(20px, 2.5vw, 30px); align-self: center; }

/* Termine und Preise: auch bei 390 px ohne Seitenueberlauf */
.schedule-grid > *,
.contact-grid > *,
.footer-grid > *,
.offer-grid > *,
.stat-row > * { min-width: 0; }
.time-table { table-layout: fixed; border: 0; box-shadow: var(--shadow-soft); }
.time-table th,
.time-table td { overflow-wrap: anywhere; }
.price-card { border: 0; border-radius: 18px; box-shadow: var(--shadow-soft); }

/* Helle Kontaktflaeche mit klaren Handlungsoptionen */
.contact-band {
  color: var(--ink);
  border-block: 1px solid rgba(0, 116, 135, 0.13);
  background:
    radial-gradient(circle at 85% 15%, rgba(240,144,36,0.1), transparent 25rem),
    #deecea;
}
.contact-band h2 { color: var(--ink); }
.contact-band p { color: var(--ink-soft); }
.contact-facts li {
  border-color: rgba(0,116,135,0.14);
  background: rgba(255,250,242,0.68);
}
.contact-facts .icon { color: var(--petrol); }
.contact-facts a { color: var(--petrol-deep); }
.contact-facts span { color: var(--ink-soft); }

/* Kontakt und Formular */
.contact-card {
  border: 1px solid rgba(119, 96, 63, 0.14);
  border-radius: 24px;
  background: rgba(255,250,242,0.78);
  box-shadow: 0 18px 46px rgba(66, 55, 39, 0.08);
}
#anmeldung { scroll-margin-top: calc(var(--header-h) + 22px); }
.demo-form input,
.demo-form select,
.demo-form textarea {
  border-color: #cfc2aa;
  border-radius: 12px;
  background: rgba(255,255,255,0.76);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.demo-form input:hover,
.demo-form select:hover,
.demo-form textarea:hover { border-color: #a99a80; }
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--petrol);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,116,135,0.1);
}
.demo-form .form-row.invalid input,
.demo-form .form-row.invalid select,
.demo-form .form-row.invalid textarea { background: #fff8f5; }
.dl-list a { overflow-wrap: anywhere; }

/* Footer bleibt in derselben hellen, warmen Welt */
.site-footer {
  color: var(--ink);
  border-top: 1px solid rgba(119, 96, 63, 0.18);
  background: var(--paper-3);
}
.site-footer a { color: var(--petrol-deep); }
.site-footer .brand-foot img { background: rgba(255,250,242,0.66); }
.site-footer h4 { color: var(--ink); }
.site-footer .foot-note { color: var(--ink-soft); }
.eu-note {
  border-color: rgba(119, 96, 63, 0.16);
  background: rgba(255,250,242,0.55);
}
.eu-note p { color: var(--ink-soft); }
.footer-bottom { border-top-color: rgba(119, 96, 63, 0.18); }

/* Kleine Interaktionsdetails */
.horse-card { border: 0; background: var(--card); }
.horse-row-outer { scrollbar-width: none; }
.horse-row-outer::-webkit-scrollbar { display: none; }
.horse-row { padding-inline: max(18px, calc((100vw - var(--wrap)) / 2 + 40px)); }
.bento-tile { border-radius: 26px; }
.bento-tile:focus-visible,
.offer-card:focus-within,
.horse-profile:focus-within { outline: 3px solid var(--petrol); outline-offset: 4px; }

@media (max-width: 1080px) {
  .brand img { height: 52px; }
  .main-nav { background: rgba(251,247,239,0.98); }
  .main-nav a:hover { transform: none; }
  .offer-grid { grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr); }
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding-block: 18px 54px;
  }
  .hero-media { order: -1; }
  .hero-media figure {
    min-height: min(56vh, 470px);
    border-width: 6px;
    border-radius: 104px 22px 22px 22px;
  }
  .hero-media figure > img { object-position: 50% 12%; }
  .hero-badge { bottom: 72px; }
  .hero-copy {
    width: calc(100% - 32px);
    max-width: 720px;
    margin: -58px auto 0;
    padding: clamp(26px, 5vw, 42px);
    border: 1px solid rgba(119,96,63,0.14);
    border-radius: 28px;
    background: rgba(251,247,239,0.96);
    box-shadow: 0 24px 54px rgba(66,55,39,0.13);
  }
  .hero-copy h1 { max-width: 15ch; font-size: clamp(2.75rem, 7vw, 4.2rem); }
  .hero-trust { grid-template-columns: repeat(2, minmax(0, max-content)); }
  .page-head-grid { grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr); gap: 34px; }
  .page-head h1 { font-size: clamp(2.7rem, 6.2vw, 4rem); }
  .offer-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .offer-card:nth-child(1) { grid-row: auto; }
  .offer-card:nth-child(n+2) { display: grid; grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr); }
  .offer-card:nth-child(1) figure { min-height: 0; aspect-ratio: 16 / 10; }
  .offer-card:nth-child(n+2) figure { min-height: 260px; }
  .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid rgba(119,96,63,0.16); }
  .stat:nth-child(4) { border-top: 1px solid rgba(119,96,63,0.16); }
  .horse-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .horse-profile,
  .horse-profile:nth-child(1),
  .horse-profile:nth-child(6),
  .horse-profile:nth-child(9) {
    grid-column: auto;
    display: block;
    border-radius: 72px 22px 22px 22px;
  }
  .horse-profile:nth-child(1) figure,
  .horse-profile:nth-child(6) figure,
  .horse-profile:nth-child(9) figure { aspect-ratio: 1; }
}

@media (max-width: 780px) {
  :root { --header-h: 72px; }
  .section { padding-block: clamp(58px, 11vw, 84px); }
  .brand img { height: 47px; }
  .page-head { padding-block: 38px 44px; }
  .page-head-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-head h1 { max-width: 15ch; }
  .page-head-media,
  .page-head-landscape,
  .page-head-portrait {
    width: 100%;
    max-width: none;
    height: min(54vw, 390px);
    justify-self: stretch;
    border-radius: 82px 22px 22px 22px;
  }
  .gallery-band { grid-template-columns: 1fr; }
  .gallery-band img { aspect-ratio: 16 / 10; }
  .panorama { min-height: 0; }
  .panorama::after { background: rgba(251,247,239,0.86); }
  .panorama .inner { padding-block: 72px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .wrap { padding-inline: 18px; }
  .site-header .bar { padding-block: 8px; }
  .brand img { height: 44px; }
  .hero { background: var(--paper); }
  .hero-grid { padding-top: 12px; padding-bottom: 42px; }
  .hero-media figure {
    min-height: 330px;
    border-radius: 72px 18px 18px 18px;
  }
  .hero-media figure > img { object-position: 50% 16%; }
  .hero-copy {
    width: calc(100% - 18px);
    margin-top: -42px;
    padding: 24px 20px 26px;
    border-radius: 22px;
  }
  .eyebrow { margin-bottom: 12px; font-size: 0.94rem; }
  .hero-copy h1 { font-size: clamp(2.35rem, 11.5vw, 3.05rem); line-height: 0.98; }
  .hero-copy .lead { font-size: 1rem; line-height: 1.55; margin-bottom: 1.2em; }
  .hero-ctas { display: grid; gap: 10px; margin-bottom: 22px; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; gap: 8px; }
  .hero-trust li:last-child { grid-column: auto; }
  .hero-trust li { font-size: 0.88rem; }
  .hero-stamp { top: 12px; right: 12px; width: 82px; font-size: 0.78rem; }
  .hero-badge { left: 12px; bottom: 64px; padding-right: 12px; }
  .hero-badge img { width: 45px; height: 45px; }
  .hero-badge { font-size: 0.85rem; }
  .hero-badge small { font-size: 0.68rem; }
  .offer-card:nth-child(n+2) { display: flex; }
  .offer-card:nth-child(n+2) figure { min-height: 0; aspect-ratio: 16 / 10; }
  .offer-card figure { aspect-ratio: 16 / 10; }
  .panorama .inner { padding-block: 62px; }
  .stat-row { grid-template-columns: 1fr 1fr; border-radius: 18px; }
  .stat { padding: 17px 14px; }
  .stat b { font-size: 2rem; }
  .stat span { font-size: 0.82rem; }
  .page-head { padding-block: 30px 34px; }
  .page-head h1 { max-width: 13ch; font-size: clamp(2.55rem, 13vw, 3.25rem); }
  .page-head .lead { font-size: 1rem; }
  .page-head-media,
  .page-head-landscape,
  .page-head-portrait {
    height: 250px;
    border-width: 5px;
    border-radius: 58px 16px 16px 16px;
  }
  .page-head-media figcaption { left: 16px; right: 16px; bottom: 13px; font-size: 0.86rem; }
  .split figure,
  .split figure.arch { border-radius: 54px 18px 18px 18px; }
  .horse-grid { grid-template-columns: 1fr; }
  .horse-profile,
  .horse-profile:nth-child(1),
  .horse-profile:nth-child(6),
  .horse-profile:nth-child(9) { border-radius: 68px 20px 20px 20px; }
  .time-table { font-size: 0.9rem; }
  .time-table th,
  .time-table td { padding: 10px 8px; font-size: 0.86rem; line-height: 1.35; }
  .time-table caption { padding: 16px 12px 8px; }
  .time-table thead th { font-size: 0.7rem; letter-spacing: 0.035em; }
  .time-table td:last-child { white-space: normal; }
  .price-card .pc-head { align-items: flex-start; flex-wrap: wrap; }
  .dl-list a { align-items: flex-start; flex-wrap: wrap; }
  .dl-list small { width: 100%; margin-left: 2.05rem; }
  .contact-card { padding: 20px; }
  .contact-card .band-ctas { display: grid !important; }
  .contact-card .band-ctas .btn { width: 100%; }
  .demo-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; }
  .footer-bottom ul { gap: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media figure > img,
  .offer-card figure img,
  .split figure img,
  .page-head-media img,
  .gallery-band img,
  .horse-profile img { transition: none; }
}
