/* =========================================================
   Lutendo – Art & Play   |   styles.css
   Hand-built static rebuild (no frameworks)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --red: #ff3a2d;
  --red-dark: #e02315;
  --ink: #2b2630;
  --muted: #6e6675;
  --cream: #fff7f4;
  --pink-1: #ffe3ea;
  --pink-2: #ffd1dc;
  --white: #ffffff;
  --line: #f0e3e6;
  --shadow: 0 18px 50px -20px rgba(120, 30, 40, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --script: "Caveat", "Segoe Script", cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(16px, 1.05vw, 18px);
  overflow-x: hidden;
}
/* height:auto so width/height attrs (for CLS) scale by aspect ratio, not literally */
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; }

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--red); color: #fff;
  padding: .85rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  box-shadow: 0 12px 24px -12px rgba(255, 58, 45, .8);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(255, 58, 45, .85); }
.btn--ghost {
  background: transparent; color: var(--red);
  border: 2px solid var(--red); box-shadow: none;
}
.btn--ghost:hover { background: var(--red); color: #fff; }
.btn--light { background:#fff; color: var(--red); box-shadow: 0 12px 30px -14px rgba(0,0,0,.5); }

/* ---------- Eyebrow / script accents ---------- */
.eyebrow {
  display: inline-block; color: var(--red);
  font-weight: 700; font-size: .8rem; letter-spacing: .22em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.script { font-family: var(--script); font-weight: 700; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 247, 244, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.nav__logo img { height: 44px; width: auto; }
.nav__drawer { display: flex; align-items: center; gap: .5rem; }
.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block; padding: .5rem .8rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  color: var(--ink); transition: background .15s, color .15s;
}
.nav__links a:hover { background: var(--pink-1); }
.nav__links a.is-active { color: var(--red); }
.nav__cta { margin-left: .4rem; }
.nav__close { display: none; }            /* shown only inside the mobile drawer */
.nav__backdrop { display: none; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: .6rem; z-index: 60;
}
.nav__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px;
  transition: transform .25s, opacity .2s; transform-origin: center; }
/* hamburger morphs into an X when open */
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; text-align: center; overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(120% 90% at 50% 8%, var(--pink-2) 0%, var(--pink-1) 38%, var(--cream) 75%);
}
/* Letters sit close together and bounce in a staggered wave */
.hero__wordmark {
  display: flex; justify-content: center; align-items: flex-end; gap: 0;
  margin-bottom: .4rem; position: relative; z-index: 2;
}
.hero__wordmark img {
  height: clamp(62px, 13.5vw, 150px); width: auto;
  margin-inline: clamp(-0.7rem, -0.8vw, -.15rem);   /* balanced spacing — separated but cohesive */
  filter: drop-shadow(0 10px 14px rgba(120,30,40,.18));
  animation: letterBounce 1.2s ease-in-out infinite;
  will-change: transform;
}
.hero__wordmark img:nth-child(1) { animation-delay: 0s;   }
.hero__wordmark img:nth-child(2) { animation-delay: .10s; }
.hero__wordmark img:nth-child(3) { animation-delay: .20s; }
.hero__wordmark img:nth-child(4) { animation-delay: .30s; }
.hero__wordmark img:nth-child(5) { animation-delay: .40s; }
.hero__wordmark img:nth-child(6) { animation-delay: .50s; }
.hero__wordmark img:nth-child(7) { animation-delay: .60s; }
@keyframes letterBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Large paintbrush, roughly centered and tilted, BEHIND the wordmark,
   its head rising up between the letters toward the "Art & Play" ellipse */
.hero__brush {
  position: absolute; left: 50%; top: clamp(30px, 7vw, 70px);
  width: clamp(230px, 42vw, 470px);
  transform-origin: 50% 35%; z-index: 0; opacity: .9; pointer-events: none;
  animation: brushSway 3.4s ease-in-out infinite;
}
@keyframes brushSway {
  0%,100% { transform: translateX(-50%) rotate(-11deg); }
  50%     { transform: translateX(-50%) rotate(-4deg);  }
}

/* "Art & Play" ellipse squashes flatter as the letters land (trampoline) */
.hero__tagline {
  width: min(360px, 60vw); margin: .2rem auto 1.6rem;
  position: relative; z-index: 2; transform-origin: center;
  animation: ellipseSquash 1.2s ease-in-out infinite;
}
@keyframes ellipseSquash {
  0%,100% { transform: scale(1.06, .9); }  /* flattest — letters down */
  50%     { transform: scale(1, 1); }      /* relaxed — letters up    */
}

.hero__headline {
  position: relative; z-index: 2;
  font-size: clamp(2.4rem, 8vw, 5.6rem); color: var(--red);
  text-transform: uppercase; letter-spacing: -.02em; line-height: .95;
  /* white halo keeps the red headline legible where the brush sits behind it */
  text-shadow: 0 0 14px rgba(255,247,244,.95), 0 0 28px rgba(255,247,244,.8),
               0 2px 0 rgba(255,255,255,.7), 0 6px 0 rgba(255,255,255,.45);
}
.hero__sub { max-width: 38ch; margin: 1.2rem auto 0; color: var(--muted); font-size: 1.1rem; }
@media (prefers-reduced-motion: reduce) {
  .hero__wordmark img, .hero__brush, .hero__tagline { animation: none; transform: none; }
}

/* =========================================================
   Tabbed slider (vanilla)
   ========================================================= */
.slider { position: relative; }
.slider__stage {
  position: relative; min-height: clamp(440px, 64vh, 620px);
  display: grid; align-items: center;
  border-radius: 0; overflow: hidden; isolation: isolate;
}
.slider__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .6s ease;
}
.slider__bg.is-active { opacity: 1; }
.slider__stage::after { /* dark legibility overlay */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(20,12,16,.78) 0%, rgba(20,12,16,.45) 45%, rgba(20,12,16,.15) 100%);
}
.slide-content {
  color: #fff; max-width: 620px; padding: 2rem clamp(1.2rem, 5vw, 3rem);
}
.slide-content .eyebrow { color: #ffd2cd; }
.slide-panel { display: none; }
.slide-panel.is-active { display: block; animation: fade .5s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(12px);} to {opacity:1; transform: none;} }
.slide-content h2 {
  font-size: clamp(2.4rem, 6vw, 4.2rem); font-style: italic; font-weight: 800;
  text-transform: uppercase; margin-bottom: 1rem; text-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.slide-content p { font-size: 1.12rem; max-width: 46ch; margin-bottom: 1.6rem; }

/* Tab navigation */
.slider__tabs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--ink);
}
.tab {
  display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.2rem;
  background: var(--ink); color: rgba(255,255,255,.7); cursor: pointer;
  border: 0; border-right: 1px solid rgba(255,255,255,.08); text-align: left;
  transition: background .2s, color .2s; font-family: inherit; width: 100%;
}
.tab:last-child { border-right: 0; }
.tab:hover { background: #38313f; color: #fff; }
.tab.is-active { background: var(--red); color: #fff; }
.tab__thumb {
  width: 54px; height: 54px; border-radius: 12px; object-fit: cover;
  flex-shrink: 0; background: #555; box-shadow: 0 6px 14px -6px rgba(0,0,0,.6);
}
.tab__num { font-size: .8rem; font-weight: 700; opacity: .8; display: block; }
.tab__label { font-weight: 700; font-size: 1rem; line-height: 1.15; }

/* =========================================================
   Generic content blocks
   ========================================================= */
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem;
}
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.feature .dot {
  width: 42px; height: 42px; border-radius: 12px; background: var(--pink-1);
  display: grid; place-items: center; font-size: 1.3rem; margin-bottom: .9rem;
}
.feature h3 { font-size: 1.15rem; margin-bottom: .35rem; }

.facts { list-style: none; display: grid; gap: .7rem; margin-top: 1.4rem; }
.facts li { display: flex; gap: .7rem; align-items: flex-start; }
.facts li::before { content: "✓"; color: var(--red); font-weight: 800; }

/* Split media + text */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--top { align-items: start; }
.split--media-first .split__media { order: -1; }
.split__media img, .split__media .ph { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split__media--sticky { position: sticky; top: 90px; }
.panel-pink { background: linear-gradient(160deg, var(--pink-1), #fff); }

/* Kunstkurse course list */
.course-list { margin-top: 1.6rem; display: grid; gap: 1.3rem; }
.course h3 { font-size: 1.15rem; color: var(--red); margin-bottom: .25rem; }
.course p { color: #4a444f; }

/* Floating photo collage (recovered service-page visual) */
.collage { position: relative; width: 100%; aspect-ratio: 1 / 1; }
.collage img {
  position: absolute; object-fit: cover; background: #eee;
  border: 5px solid #fff; border-radius: 16px;
  box-shadow: 0 18px 40px -16px rgba(80,20,30,.45);
  will-change: transform;
}
/* scattered with breathing room — each photo stays mostly visible */
.collage img:nth-child(1) { width: 47%; aspect-ratio: 3/4; top: 0;     left: 0;   z-index: 2; transform: rotate(-4deg); }
.collage img:nth-child(2) { width: 45%; aspect-ratio: 4/3; top: 6%;    right: 0;  z-index: 3; transform: rotate(3deg); }
.collage img:nth-child(3) { width: 46%; aspect-ratio: 4/3; bottom: 0;  left: 27%; z-index: 1; transform: rotate(-2deg); }
/* two-photo clusters: opposite corners, light overlap */
.collage:has(img:nth-child(2):last-child) img:nth-child(1) { width: 53%; aspect-ratio: 4/5; top: 0;    left: 0;  }
.collage:has(img:nth-child(2):last-child) img:nth-child(2) { width: 51%; aspect-ratio: 4/5; bottom: 0; right: 0; }
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-4deg); }  50% { transform: translateY(-11px) rotate(-4deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(3deg); }   50% { transform: translateY(9px) translateX(-5px) rotate(3deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0) rotate(-2deg); }  50% { transform: translateY(-8px) rotate(-2deg); } }
.collage img:nth-child(1) { animation: floatA 5s ease-in-out infinite; }
.collage img:nth-child(2) { animation: floatB 6.5s ease-in-out infinite; }
.collage img:nth-child(3) { animation: floatC 7s ease-in-out infinite 1s; }

/* Sommerprogramm animated GIF */
.sommer-gif { margin: 0; text-align: center; }
.sommer-gif img { width: 100%; max-width: 460px; margin-inline: auto; }
.sommer-gif figcaption { margin-top: .6rem; color: var(--red); font-size: 1.5rem; }

@media (prefers-reduced-motion: reduce) { .collage img { animation: none; } }

/* Visually-hidden (screen-reader only) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* =========================================================
   Newsletter signup
   ========================================================= */
.newsletter__card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(160deg, var(--pink-1), #fff);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow);
}
.newsletter__intro h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.newsletter__intro p { color: var(--muted); margin-top: .6rem; max-width: 36ch; }
.newsletter__form { display: grid; gap: .9rem; }
.newsletter__row { display: grid; grid-template-columns: 1fr 1.4fr; gap: .7rem; }
.newsletter__form input[type="text"],
.newsletter__form input[type="email"] {
  width: 100%; font: inherit; padding: .85rem 1rem; border-radius: 12px;
  border: 1px solid #e7cdd4; background: #fff; color: var(--ink);
}
.newsletter__form input:focus-visible { outline: 2px solid var(--red); outline-offset: 1px; }
.newsletter__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: #4a444f; }
.newsletter__consent input { margin-top: .25rem; flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--red); }
.newsletter__consent a { color: var(--red); font-weight: 600; text-decoration: underline; }
.newsletter__form .btn { justify-self: start; }
.newsletter__status { margin: 0; font-size: .92rem; min-height: 1.2em; }
.newsletter__status.is-loading { color: var(--muted); }
.newsletter__status.is-success { color: #1f8a4c; font-weight: 600; }
.newsletter__status.is-error { color: var(--red); font-weight: 600; }
/* Honeypot — hidden from people, present for bots. Not display:none so bots see it. */
.newsletter__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 760px) {
  .newsletter__card { grid-template-columns: 1fr; }
  .newsletter__row { grid-template-columns: 1fr; }
  .newsletter__form .btn { justify-self: stretch; text-align: center; justify-content: center; }
}

/* Testimonials */
.tcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.4rem; }
.tcard {
  background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow);
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 1rem;
}
.tcard p { font-size: 1.05rem; }
.tcard__who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.tcard__who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tcard__initials {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: var(--pink-1); color: var(--red);
  font-weight: 800; font-size: .95rem; letter-spacing: .02em;
}
.tcard__who strong { display: block; }
.tcard__who span { color: var(--muted); font-size: .9rem; }
.quote-mark { color: var(--red); font-size: 2.4rem; line-height: .2; font-family: Georgia, serif; }

/* Über mich — oval-cropped portrait layered over the hand-painted blue oval
   artwork, so the painted border (blue with red/green accents) shows all around */
.portrait-frame {
  position: relative; width: min(420px, 92%); aspect-ratio: 1 / 1.1; margin-inline: auto;
}
/* higher specificity than the generic .split__media img rule */
.portrait-frame .portrait-frame__art {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; box-shadow: var(--shadow); transform: rotate(-3deg);
}
.portrait-frame .portrait-frame__photo {
  position: absolute; top: 50%; left: 50%; width: 63%; height: 72%;
  object-fit: cover; object-position: 50% 30%; border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.45);
}

/* Blog cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.6rem; }
.card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; box-shadow: var(--shadow); display:flex; flex-direction:column;
  transition: transform .2s ease;
}
.card:hover { transform: translateY(-4px); }
.card__media { aspect-ratio: 16/10; background: var(--pink-1); overflow:hidden; }
.card__media img { width:100%; height:100%; object-fit: cover; }
.card__body { padding: 1.3rem 1.4rem 1.6rem; display:flex; flex-direction:column; gap:.5rem; flex:1; }
.card__date { color: var(--red); font-weight:700; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; }
.card__body h3 { font-size: 1.25rem; }
.card__body p { color: var(--muted); font-size: .98rem; }
.card__more { margin-top:auto; color: var(--red); font-weight:700; }

/* Article (blog post / legal) */
.article { max-width: 760px; margin-inline:auto; }
.article__head { margin-bottom: 2rem; }
.article__head h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.article p { margin-bottom: 1.1rem; }
.article h2, .article h3 { margin: 1.8rem 0 .6rem; }
.article img { border-radius: var(--radius-sm); margin: 1.4rem 0; box-shadow: var(--shadow); }
.article a { color: var(--red); text-decoration: underline; word-break: break-word; }
.legal { font-size: .98rem; }
.legal p { color: #4a444f; }
.article__gallery { display:grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap:.8rem; }
.article__gallery img { margin:0; aspect-ratio: 4/3; object-fit: cover; }

/* Page hero (interior pages) */
.page-hero {
  background: radial-gradient(120% 120% at 50% -10%, var(--pink-2), var(--cream) 60%);
  text-align:center; padding: clamp(3rem,7vw,5rem) 0 clamp(2rem,5vw,3.5rem);
}
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.page-hero .eyebrow { color: var(--red); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--red), #ff7a54); color:#fff; text-align:center;
  border-radius: var(--radius); padding: clamp(2.2rem,5vw,3.5rem); box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.8rem,4.5vw,2.8rem); }
.cta-band p { max-width: 48ch; margin: .8rem auto 1.6rem; opacity:.95; }
/* attention pulse — activated when the banner scrolls into view */
@keyframes ctaPulse {
  0%,100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,80,60,.45); }
  50%     { transform: scale(1.04); box-shadow: 0 0 0 14px rgba(255,80,60,0); }
}
.cta-banner.in-view .cta-button { animation: ctaPulse 1.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .cta-button { animation: none !important; } }

/* Contact */
.contact-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:1.2rem; }
.contact-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding:1.6rem; box-shadow: var(--shadow); }
.contact-card .eyebrow { margin-bottom:.4rem; }
.contact-card a { color: var(--red); font-weight:700; font-size:1.15rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: #efe7ea; padding: 3rem 0 2rem; margin-top: 2rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; align-items: start; }
/* shared heading band so logo + the two headings share one baseline */
.footer-col__head { min-height: 40px; display:flex; align-items:flex-end; margin-bottom: 1.1rem; }
.footer-col__head img { height: 38px; margin: 0; filter: brightness(0) invert(1); }
.footer-col__head h4 { margin: 0; }
.footer-col p { margin: 0; }
.site-footer h4 { font-size:.85rem; letter-spacing:.15em; text-transform:uppercase; color:#c9a; }
.site-footer ul { list-style:none; display:grid; gap:.45rem; margin:0; padding:0; }
.site-footer a { color:#efe7ea; opacity:.85; }
.site-footer a:hover { opacity:1; color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:2rem; padding-top:1.4rem;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:.6rem; font-size:.85rem; opacity:.7; }

/* DSGVO consent banner */
.consent {
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%);
  width: min(640px, calc(100% - 1.6rem)); z-index: 100;
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: 0 22px 60px -18px rgba(40,10,20,.5);
  padding: 1.1rem 1.3rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.consent[hidden] { display: none; }
.consent__text { font-size: .9rem; color: #4a444f; flex: 1 1 280px; margin: 0; }
.consent__text a { color: var(--red); font-weight: 600; text-decoration: underline; }
.consent__actions { display: flex; gap: .6rem; flex: 0 0 auto; }
.consent__btn { padding: .6rem 1.1rem; font-size: .92rem; }
@media (max-width: 480px) { .consent__actions { width: 100%; } .consent__btn { flex: 1; justify-content: center; } }

/* Placeholder badge for any future missing media */
.ph {
  display:grid; place-items:center; text-align:center; color:#6b6b6b; background:#d8d8d8;
  border:3px dashed #8a8a8a; font-weight:700; min-height:200px; border-radius: var(--radius-sm);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--media-first .split__media { order: 0; }
}
@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  /* slide-in drawer over the content (does not push the page) */
  .nav__drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(330px, 84vw); height: 100dvh;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: 4.6rem 1.3rem 2rem;
    box-shadow: -22px 0 60px -24px rgba(80, 20, 40, .5);
    transform: translateX(100%); transition: transform .28s ease;
    overflow-y: auto; z-index: 70;
  }
  .nav__drawer.is-open { transform: none; }
  .nav__links { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav__links a { padding: .95rem .8rem; border-radius: 12px; font-size: 1.06rem; }
  .nav__links a.is-active { background: var(--pink-1); }
  .nav__cta { margin: 1.1rem 0 0; justify-content: center; padding: .95rem; font-size: 1.05rem; }
  .nav__close {
    display: grid; place-items: center; position: absolute; top: .7rem; right: .9rem;
    width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
    font-size: 2.1rem; line-height: 1; color: var(--ink); border-radius: 50%;
  }
  .nav__close:hover { background: var(--pink-1); }
  .nav__backdrop {
    display: block; position: fixed; inset: 0; background: rgba(30, 12, 20, .45);
    opacity: 0; pointer-events: none; transition: opacity .28s; z-index: 65;
  }
  .nav__backdrop.is-open { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }

  .slider__tabs { grid-template-columns: repeat(2, 1fr); }
  .tab { border-bottom: 1px solid rgba(255,255,255,.08); }
  .slide-content p { font-size: 1.05rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .slider__tabs { grid-template-columns: 1fr; }
  .tab { justify-content: flex-start; }
  .hero__brush { opacity: .7; }
  /* keep the 7 letters comfortably spaced AND inside the viewport on phones */
  .hero__wordmark img { height: clamp(44px, 12vw, 58px); margin-inline: clamp(-0.6rem, -1vw, -.2rem); }
}
