/* Dogwalker Köln — hand-written stylesheet
   Fonts: new-spirit (Adobe Typekit) for headings, Poppins (self-hosted) for body.
   Visual system: see DESIGN.md. Two surfaces (Warm Tan / Cream),
   two voices (Cocoa / Caramel), 20px button radius, no shadows. */

@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
}

@font-face {
  font-family: "Hurston";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/hurston.otf") format("opentype");
}

@font-face {
  font-family: "new-spirit";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("https://use.typekit.net/af/1f5fff/00000000000000007735c4c0/31/l?subset_id=2&fvd=n7&v=3") format("woff2"),
       url("https://use.typekit.net/af/1f5fff/00000000000000007735c4c0/31/d?subset_id=2&fvd=n7&v=3") format("woff"),
       url("https://use.typekit.net/af/1f5fff/00000000000000007735c4c0/31/a?subset_id=2&fvd=n7&v=3") format("opentype");
}

:root {
  --tan:        #ddcfb2;
  --cream:      #fbfaf7;
  --cocoa:      #5b3508;
  --caramel:    #b48956;
  --espresso:   #311700;
  --ink:        #311700;
  --success:    #2a7a3a;
  --error:      #c33333;
  --line:       rgba(91, 53, 8, 0.18);
  --radius-btn: 20px;
  --maxw:       1240px;
}

* { box-sizing: border-box; }

html { font-size: 18px; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--tan);
  color: var(--ink);
  font-family: Poppins, system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--cocoa);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--caramel); }

h1, h2, h3, h4 {
  font-family: "new-spirit", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 0.6em;
}
h1 {
  font-size: clamp(1.6rem, 1.1rem + 1.55vw, 2.25rem);
  line-height: 1.2;
  color: var(--cocoa);
}
h2 {
  font-size: clamp(1.3rem, 1.0rem + 0.95vw, 1.7rem);
  line-height: 1.3;
  color: var(--cocoa);
}
h3 {
  font-size: clamp(1.473rem, 1.20rem + 0.84vw, 2.097rem);
  line-height: 1.35;
  color: var(--caramel);
}
h4 {
  font-size: clamp(1.263rem, 1.16rem + 0.32vw, 1.665rem);
  line-height: 1.37;
  color: var(--cocoa);
}
p { margin: 0 0 1em; }

:root { --container-pad: 24px; }
@media (max-width: 480px) { :root { --container-pad: 20px; } }
@media (max-width: 400px) { :root { --container-pad: 18px; } }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---- Sections (two-surface alternation) ---- */
.section {
  padding: clamp(64px, 8vw, 112px) 0;
}
.section--soft {
  background: var(--cream);
}
.section--tight { padding: 32px 0; }

/* Eyebrow / sub-title */
.eyebrow,
.lede.center {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--caramel);
  text-align: center;
  max-width: none;
}

.lede {
  font-size: 1rem;
  color: var(--ink);
  max-width: 60ch;
}

.preise-buddy {
  display: block;
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 32px auto 0;
  border-radius: 12px;
}

/* ---- Preise page ---- */
.preise-hero {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(72px, 9vw, 128px);
}
.preise-hero .cta-split {
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}
@media (max-width: 760px) {
  .preise-hero .cta-split { grid-template-columns: 1fr; gap: 32px; }
}
.preise-hero__title {
  font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.6rem);
  line-height: 1.05;
  color: var(--cocoa);
  margin: 0 0 0.45em;
}
.preise-hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--caramel);
  margin-top: 28px;
}

.cards--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
  gap: 24px;
}
@media (max-width: 760px) { .cards--two { grid-template-columns: 1fr; } }

.card--filled {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: left;
}
.section--soft .card--filled { background: var(--tan); }

.price {
  transition: transform 0.2s ease;
}
.price:hover { transform: translateY(-3px); }
.price__amount {
  font-size: clamp(2rem, 1.6rem + 0.9vw, 2.6rem);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--cocoa);
  background: transparent;
  color: var(--cocoa);
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: var(--tan);
}
.btn--primary {
  background: var(--cocoa);
  border-color: var(--cocoa);
  color: var(--tan);
}
.btn--primary:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: var(--tan);
}

/* ---- Header / nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--tan);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 43.2px;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__brand {
  margin-right: auto;
  font-family: "Hurston", "new-spirit", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cocoa);
  white-space: nowrap;
}
.nav__brand:hover { color: var(--caramel); }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cocoa);
  line-height: 1.8;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--caramel); }
.nav__links a[aria-current="page"] {
  color: var(--caramel);
  box-shadow: inset 0 -2px 0 var(--caramel);
}
.nav__cta {
  padding: 14px 22px;
  border-radius: var(--radius-btn);
  background: var(--cocoa);
  color: var(--tan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}
.nav__cta:hover { background: var(--caramel); color: var(--tan); }
.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--cocoa);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 0;
}
.nav__burger svg {
  width: 24px;
  height: 24px;
  stroke: var(--cocoa);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}
@media (max-width: 820px) {
  .nav { position: sticky; }
  .nav__inner {
    padding: 14px 24px;
    min-height: 64px;
    gap: 16px;
  }
  .nav__burger { display: block; }
  .nav__brand { font-size: 1.1rem; letter-spacing: 0.1em; margin-right: auto; }
  .nav__cta { padding: 10px 14px; font-size: 0.75rem; }
  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    background: var(--tan);
    padding: 8px 0;
    display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 12px 24px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .nav__inner { padding: 12px 16px; gap: 8px; }
  .nav__brand { font-size: 0.92rem; letter-spacing: 0.05em; }
  .nav__cta { padding: 8px 12px; font-size: 0.7rem; letter-spacing: 0.03em; }
}
@media (max-width: 400px) {
  .nav__inner { padding: 10px 14px; gap: 6px; }
  .nav__brand { font-size: 0.82rem; letter-spacing: 0.04em; }
  .nav__cta { padding: 7px 10px; font-size: 0.65rem; letter-spacing: 0.02em; }
  .nav__burger { padding: 4px 4px; }
}

/* ---- Hero ---- */
.hero {
  padding: 56px 0 96px;
}
@media (max-width: 760px) {
  .hero { padding: 32px 0 56px; }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: center;
}
.hero__media, .hero__media img, .hero__media video {
  border-radius: 28px;
  aspect-ratio: 16 / 10;
  background: #000;
  object-fit: cover;
  width: 100%;
  display: block;
}
@media (max-width: 760px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Feature cards (3-up icon blocks) ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: transparent;
  border: none;
  padding: 24px 20px;
  text-align: center;
}
.card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  object-fit: contain;
}
/* Icon sub-title — Poppins regular Caramel per §5 */
.card h3 {
  font-family: "new-spirit", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--cocoa);
  margin: 0 0 0.4em;
}

.sorglos-title { color: var(--cocoa); margin-bottom: 32px; }

/* ---- Wide media ---- */
.media-wide video, .media-wide img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

/* ---- Gallery / dog grid ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery--wide { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

.dog { text-align: center; }
.dog figcaption {
  margin-top: 8px;
  font-size: 0.95rem;
}
.dog figcaption { text-wrap: balance; }
.dog figcaption strong { display: block; font-weight: 600; color: var(--cocoa); }
.dog figcaption span { display: block; color: var(--caramel); font-size: 0.88rem; }

.rudel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px 16px;
}
.rudel .dog { min-width: 0; }
.rudel .dog img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.rudel--large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.rudel--large .dog img {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
}
.rudel--large .dog figcaption { margin-top: 16px; font-size: 1.05rem; }
.rudel--large .dog figcaption strong { font-size: 1.15rem; margin-bottom: 2px; }
.rudel--large .dog figcaption span { font-size: 0.95rem; }
@media (max-width: 900px) {
  .rudel--large { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px 24px; }
}
@media (max-width: 600px) {
  .rudel--large { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
  .rudel--large .dog figcaption { margin-top: 10px; font-size: 0.95rem; }
  .rudel--large .dog figcaption strong { font-size: 1rem; }
  .rudel--large .dog figcaption span { font-size: 0.85rem; }
}
.downloads {
  max-width: 640px;
  margin: 40px auto 0;
}
.downloads h2 { margin-bottom: 12px; }
.downloads ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}
.downloads li { margin: 8px 0; }
.downloads a { color: var(--cocoa); }
.downloads a:hover { text-decoration: underline; }

.whatsapp-shot {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  justify-self: center;
}

.unterwegs-hero {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
}

.unterwegs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.unterwegs-grid video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (max-width: 760px) {
  .unterwegs-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
}

/* ---- Testimonials ---- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.quote img.quote__avatar {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  object-fit: cover;
  margin: 0 auto 32px;
  display: block;
}
.quote p {
  font-family: "new-spirit", Georgia, serif;
  font-size: 1.086rem;
  font-weight: 700;
  line-height: 1.333;
  letter-spacing: 0;
  color: var(--espresso);
  text-align: left;
  font-style: normal;
  margin: 0 0 16px;
}
.quote cite {
  display: block;
  font-family: Poppins, system-ui, sans-serif;
  font-style: normal;
  font-size: 0.914rem;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(91, 53, 8, 0.6);
  text-align: left;
}
.section--testimonials h2 {
  color: var(--espresso);
}

/* ---- FAQ ---- */
.faq {
  max-width: 960px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
}
.faq summary {
  cursor: pointer;
  font-family: "new-spirit", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.263rem, 1.16rem + 0.32vw, 1.665rem);
  line-height: 1.37;
  letter-spacing: 0;
  color: var(--cocoa);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--cocoa);
  transition: transform 0.15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p {
  margin-top: 12px;
  color: var(--ink);
}

/* ---- Pricing ---- */
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pricing { grid-template-columns: 1fr; } }
.price {
  background: var(--cream);
  border: none;
  border-radius: var(--radius-btn);
  padding: 24px;
  text-align: center;
}
.section--soft .price {
  background: var(--tan);
}
.price__rounds { font-weight: 600; font-size: 1.05rem; color: var(--cocoa); }
.price__amount {
  font-family: "new-spirit", Georgia, serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--cocoa);
  margin: 8px 0 4px;
}
.price__suffix { color: var(--caramel); font-size: 0.9rem; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--caramel);
  font-weight: 700;
}

/* ---- Two-column content ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split--text-first { grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; gap: 24px; }
}
.split img { border-radius: 0; }

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-split__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
@media (max-width: 760px) {
  .cta-split { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

/* ---- Forms (Web3Forms) ---- */
.dk-form-block { width: 100%; max-width: 640px; margin: 0 auto; }
.dk-form { display: flex; flex-direction: column; gap: 18px; }
.dk-form-honeypot {
  position: absolute; left: -9999px; opacity: 0; pointer-events: none;
}
.dk-form-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.95rem; }
.dk-form-field > span { font-weight: 500; color: var(--cocoa); }
.dk-form-field em { font-style: normal; color: var(--error); }
.dk-form input[type="text"],
.dk-form input[type="email"],
.dk-form textarea {
  font: inherit;
  color: inherit;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.dk-form textarea { resize: vertical; min-height: 96px; }
.dk-form input:focus, .dk-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.dk-form-row, .dk-form-choice {
  border: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.dk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
.dk-form-row > legend, .dk-form-choice > legend {
  font-weight: 500; color: var(--cocoa); padding: 0; margin-bottom: 2px;
}
.dk-form-row > legend { grid-column: 1 / -1; }
@media (max-width: 520px) { .dk-form-row { grid-template-columns: 1fr; } }
.dk-form-choice { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px 20px; }
.dk-form-choice > legend { width: 100%; }
.dk-form-choice label { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.dk-form-submit {
  align-self: flex-start;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 12.6px 18px;
  border-radius: var(--radius-btn);
  border: none;
  background: var(--cocoa);
  color: var(--tan);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.dk-form-submit:hover:not([disabled]) { background: var(--caramel); }
.dk-form-submit[disabled] { opacity: 0.6; cursor: wait; }
.dk-form-status { margin: 0; font-size: 0.95rem; min-height: 1.3em; }
.dk-form-status.is-ok { color: var(--success); }
.dk-form-status.is-error { color: var(--error); }

/* ---- Contact info chips ---- */
.contact-chips {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 24px 0;
}
.contact-chips a {
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  padding: 10px 18px;
  font-size: 0.95rem;
  color: var(--cocoa);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.contact-chips a:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: var(--tan);
}

/* ---- Footer ---- */
.footer {
  background: var(--tan);
  padding: 56px 0 56px;
  margin-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 167px 1fr 1fr 280px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; justify-items: start; }
  .footer__logo { max-width: 140px; }
  .footer { padding: 40px 0; margin-top: 32px; }
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 167px;
}
.footer h3 {
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--cocoa);
  margin: 0 0 16px;
  line-height: 1.4;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a,
.footer p,
.footer li {
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--cocoa);
}
.footer p { margin: 0 0 8px; }
.footer a:hover { color: var(--caramel); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ig-grid a { display: block; }
.ig-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 0.15s ease;
}
.ig-grid a:hover img { opacity: 0.8; }

/* ---- Lists ---- */
.zip-list {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
  list-style: none;
  padding: 0;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cocoa);
  color: var(--tan);
  font-family: "new-spirit", Georgia, serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.steps strong { display: block; margin-bottom: 4px; color: var(--cocoa); }

/* ---- Long legal text ---- */
.legal h2 { margin-top: 1.5em; }
.legal ol { padding-left: 1.4em; }
.legal ol li { margin-bottom: 1em; }

/* ---- Über Uns page ---- */
.uber-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}
.uber-intro h1 {
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.025rem);
  line-height: 1.33;
  margin-bottom: 1em;
}
.uber-intro p { text-align: left; }

/* Childhood carousel — horizontal scroll, natural aspect, fixed height */
.childhood-carousel {
  margin: 48px calc(var(--container-pad, 24px) * -1);
  padding: 0 var(--container-pad, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.childhood-carousel::-webkit-scrollbar { display: none; }
.childhood-carousel__track {
  display: flex;
  gap: 11px;
  width: max-content;
}
.childhood-carousel img {
  height: 540px;
  width: auto;
  flex: 0 0 auto;
  object-fit: cover;
  scroll-snap-align: start;
  border-radius: 0;
}
@media (max-width: 760px) {
  .childhood-carousel img { height: 280px; }
}

/* Two-column block: text + portrait media */
.uber-split {
  display: grid;
  grid-template-columns: minmax(0, 652fr) minmax(0, 401fr);
  gap: 48px;
  align-items: start;
  margin: 64px 0;
}
.uber-split--reverse {
  grid-template-columns: minmax(0, 394fr) minmax(0, 647fr);
  align-items: center;
}
.uber-split__text > * + * { margin-top: 1.2em; }
.uber-split__text h2 {
  margin-top: 1.6em;
  font-size: clamp(1.15rem, 1.0rem + 0.5vw, 1.35rem);
  line-height: 1.4;
}
.uber-split__media img,
.uber-split__media video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.uber-split--reverse .uber-split__media img {
  aspect-ratio: 394 / 527;
}
@media (max-width: 820px) {
  .uber-split,
  .uber-split--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .uber-split--reverse .uber-split__media { order: -1; }
}

/* ---- Über Uns rework ---- */
.uber-hero { background: var(--tan); }
.uber-story { background: var(--cream); }
.uber-closing { background: var(--tan); }

.uber-intro h1 {
  font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.6rem);
  line-height: 1.1;
  color: var(--cocoa);
  margin-bottom: 0.6em;
}

.childhood-carousel__track { gap: 32px; padding: 14px 0 28px; }
.childhood-carousel img {
  background: #fff;
  padding: 14px 14px 56px;
  box-shadow: 0 6px 18px rgba(49, 23, 0, 0.12);
  transform-origin: center;
}
.childhood-carousel img:nth-child(odd)  { transform: rotate(-2deg); }
.childhood-carousel img:nth-child(even) { transform: rotate(1.5deg); }

.uber-split--single { grid-template-columns: 1fr; max-width: 760px; margin-left: auto; margin-right: auto; }
@media (max-width: 820px) {
  .uber-split--single { grid-template-columns: 1fr; }
}

.uber-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  margin-top: 1.6em;
}
.uber-point__num {
  font-family: "new-spirit", Georgia, serif;
  font-weight: 700;
  font-size: clamp(3rem, 2rem + 3vw, 4.8rem);
  line-height: 0.9;
  color: var(--caramel);
}
.uber-point__title {
  margin: 0;
  font-size: clamp(1.15rem, 1.0rem + 0.5vw, 1.35rem);
  line-height: 1.35;
  color: var(--cocoa);
}

.uber-quote {
  font-family: "new-spirit", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  line-height: 1.25;
  color: var(--cocoa);
  text-align: center;
  max-width: 720px;
  margin: clamp(48px, 8vw, 96px) auto;
  padding: 28px 0;
  border-top: 1px solid var(--caramel);
  border-bottom: 1px solid var(--caramel);
  quotes: none;
}

.uber-video { position: relative; }
.uber-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(91, 53, 8, 0.92);
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.uber-video__play:hover { background: var(--cocoa); transform: scale(1.05); }
.uber-video__play svg { width: 32px; height: 32px; fill: var(--cream); }
.uber-video.playing .uber-video__play { display: none; }

.uber-closing-card {
  background: var(--cream);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.uber-closing-card__portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.uber-closing-card__body > * + * { margin-top: 1.2em; }
@media (max-width: 760px) {
  .uber-closing-card { grid-template-columns: 1fr; }
  .uber-closing-card__portrait { max-width: 280px; margin: 0 auto; }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Utilities ---- */
.center { text-align: center; }
.muted { color: var(--caramel); }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1.2em; }

/* ---- Kontakt page ---- */
.kontakt-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
}
.contact-chips--quiet {
  margin: 0;
  gap: 4px 22px;
  font-size: 0.98rem;
}
.contact-chips--quiet a {
  border: 0;
  padding: 0;
  color: var(--caramel);
}
.contact-chips--quiet a:hover {
  background: transparent;
  border-color: transparent;
  color: var(--cocoa);
  text-decoration: underline;
}
@media (max-width: 760px) {
  .kontakt-cta { align-items: center; }
  .contact-chips--quiet { justify-content: center; }
}

/* Fix: .cards--two must beat .cards 3-col rule (defined later in file) */
.cards.cards--two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .cards.cards--two { grid-template-columns: 1fr; } }

/* Anchor-cards (card--filled used as <a>) */
a.card--filled {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--cocoa);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
a.card--filled::after {
  content: "→";
  font-size: 1.2rem;
  color: var(--caramel);
  transition: transform 0.2s ease;
}
a.card--filled:hover { transform: translateY(-2px); }
a.card--filled:hover::after { transform: translate(4px, 0); }
a.card--filled strong { font-weight: 600; }
