/* ==========================================================================
   Gismo's Shop — finales Redesign (nach Design-Handoff)
   Palette: Dunkelgrün / Creme / Terracotta · Fonts: Manrope + Bricolage Grotesque
   Schriften lokal eingebunden (DSGVO) — keine externen Dienste.
   ========================================================================== */

/* ---------- Fonts (variable, latin) ---------- */
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --green-900: #0b241b;
  --green-800: #12352a;
  --green-700: #1c4b3a;
  --green-600: #2c473c;
  --green-500: #3f5147;
  --green-400: #5b6b60;
  --green-300: #7d8a80;
  --cream-50: #fbf8f1;
  --cream-100: #f4efe4;
  --cream-200: #f2ecdf;
  --white: #ffffff;
  --terra-500: #d0703c;
  --terra-400: #e08850;
  --terra-600: #b85c2b;

  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--green-800);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #d0703c;
  color: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3,
p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--terra-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  scroll-margin-top: 152px;
}

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--terra-500);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

/* ---------- Pills / Buttons ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: background 320ms ease, color 320ms ease, border-color 320ms ease,
    transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.pill-terra {
  background: var(--terra-500);
  color: #fff;
}

.pill-terra:hover {
  background: var(--terra-400);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(208, 112, 60, 0.34);
}

.pill-light {
  background: var(--cream-100);
  color: var(--green-800);
}

.pill-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.pill-dark {
  background: var(--green-800);
  color: var(--cream-100);
}

.pill-dark:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 53, 42, 0.24);
}

.pill-ghost {
  background: transparent;
  border-color: rgba(244, 239, 228, 0.28);
  color: var(--cream-100);
}

.pill-ghost:hover {
  background: rgba(244, 239, 228, 0.1);
  border-color: rgba(244, 239, 228, 0.5);
  transform: translateY(-2px);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--terra-500);
  transition: gap 300ms var(--ease), color 300ms ease;
}

.arrow-link:hover {
  gap: 16px;
  color: var(--terra-600);
}

/* ---------- Top-Bar ---------- */
.topbar {
  background: var(--green-800);
  color: rgba(244, 239, 228, 0.72);
  border-bottom: 1px solid rgba(244, 239, 228, 0.14);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.topbar .container {
  height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.topbar-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra-500);
  flex: none;
  animation: gs-pulse 2.4s ease-in-out infinite;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-links a {
  transition: color 200ms ease;
  white-space: nowrap;
}

.topbar-links a:hover {
  color: var(--terra-500);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green-800);
  color: var(--cream-100);
  border-bottom: 1px solid rgba(244, 239, 228, 0.14);
  transition: background 480ms var(--ease), color 480ms var(--ease),
    border-color 480ms ease, box-shadow 480ms ease, backdrop-filter 480ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.92);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  color: var(--green-800);
  border-bottom-color: rgba(18, 53, 42, 0.1);
  box-shadow: 0 12px 34px rgba(18, 53, 42, 0.07);
}

.site-header.is-static {
  position: relative;
}

.site-header .container {
  height: 132px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

/* Logo-Lockup */
.brand {
  display: flex;
  align-items: flex-end;
  flex: none;
}

.brand-head {
  position: relative;
  width: 104px;
  height: 115px;
  flex: none;
}

.brand-word {
  position: relative;
  width: 229px;
  height: 96px;
}

.brand-head img,
.brand-word img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 480ms var(--ease);
}

.logo-light-state {
  opacity: 0;
}

.is-scrolled .logo-light-state {
  opacity: 1;
}

.is-scrolled .logo-dark-state {
  opacity: 0;
}

.brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding-bottom: 6px;
  margin-left: 12px;
}

.brand-claim {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.19em;
  opacity: 0.86;
  white-space: nowrap;
}

/* Navigation */
.main-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px clamp(14px, 1.7vw, 30px);
}

.main-nav > a {
  font-size: 14.5px;
  font-weight: 600;
  transition: color 200ms ease;
}

.main-nav > a:hover {
  color: var(--terra-500);
}

.nav-cta {
  padding: 13px 20px;
  margin-left: 4px;
  font-size: 15px;
}

/* Burger (nur mobil) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 300ms var(--ease), opacity 200ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--green-800);
  color: var(--cream-100);
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -300px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(208, 112, 60, 0.32), rgba(208, 112, 60, 0) 70%);
}

.paw-field {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.paw {
  position: absolute;
}

.paw-bob {
  position: absolute;
  inset: 0;
  animation: gs-bob 8s ease-in-out infinite;
}

.paw i {
  position: absolute;
  background: var(--cream-100);
  border-radius: 50%;
}

.paw .pad {
  left: 22%;
  top: 46%;
  width: 56%;
  height: 42%;
  border-radius: 46% 46% 42% 42%;
}

.hero .container {
  position: relative;
  padding: 60px 32px 104px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(244, 239, 228, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra-500);
  flex: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.4vw, 96px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.hero-copy p {
  font-size: 19px;
  line-height: 1.62;
  color: rgba(244, 239, 228, 0.78);
  max-width: 30em;
  margin-bottom: 40px;
}

.hero-copy p strong {
  color: var(--cream-100);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-art {
  position: relative;
  min-width: 0;
  will-change: transform;
}

.hero-art-frame {
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-art-frame img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  -webkit-mask-image: linear-gradient(180deg, #000 76%, rgba(0, 0, 0, 0.15) 97%, transparent);
  mask-image: linear-gradient(180deg, #000 76%, rgba(0, 0, 0, 0.15) 97%, transparent);
}

.hours-card {
  position: absolute;
  right: -12px;
  bottom: 8px;
  background: var(--cream-50);
  color: var(--green-800);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  animation: gs-bob 6s ease-in-out infinite;
}

.hours-card small {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green-300);
  margin-bottom: 6px;
}

.hours-card strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- Abschnitte allgemein ---------- */
.section {
  padding-bottom: 120px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.section-head p {
  color: var(--green-400);
}

/* ---------- Sortiment ---------- */
.sortiment {
  padding-top: 120px;
}

.sortiment .section-head {
  margin-bottom: 64px;
}

.sortiment .h2 {
  max-width: 18em;
}

.sortiment .section-head p {
  max-width: 22em;
}

.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(18, 53, 42, 0.14);
  border-top: 1px solid rgba(18, 53, 42, 0.14);
  border-bottom: 1px solid rgba(18, 53, 42, 0.14);
}

.sortiment-tile {
  background: var(--cream-50);
  min-width: 0;
  padding: 40px 16px 44px;
  transition: background 420ms var(--ease), transform 420ms var(--ease);
}

.sortiment-tile:hover {
  background: var(--cream-200);
  transform: translateY(-4px);
}

.tile-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--terra-500);
  color: var(--cream-100);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(208, 112, 60, 0.28);
  margin-bottom: 34px;
}

.sortiment-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* Bubble-Pop der Nummern */
[data-reveal="bubble"] {
  opacity: 0;
  transform: scale(0.35);
  transition: opacity 420ms ease-out, transform 620ms var(--pop);
}

[data-reveal="bubble"].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Leckereien ---------- */
.leckereien {
  padding-top: 20px;
}

.leckereien .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.leckereien-img {
  min-width: 0;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
}

.leckereien-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leckereien .eyebrow {
  margin-bottom: 22px;
}

.bigquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.bigquote em {
  font-style: normal;
  color: var(--terra-500);
}

/* ---------- Über uns ---------- */
.ueber-uns .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.ueber-img {
  min-width: 0;
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
}

.ueber-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-uns .eyebrow {
  margin-bottom: 22px;
}

.ueber-uns .h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.04;
  margin-bottom: 32px;
}

.ueber-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 34em;
}

.ueber-text p {
  font-size: 17px;
  line-height: 1.66;
  color: var(--green-500);
}

.ueber-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(18, 53, 42, 0.12);
  margin-top: 44px;
  padding-top: 36px;
}

.ueber-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.ueber-stats span {
  display: block;
  font-size: 14px;
  color: var(--green-400);
  margin-top: 6px;
}

/* ---------- Allergie ---------- */
.allergie .section-head {
  margin-bottom: 54px;
}

.allergie .h2 {
  max-width: 20em;
}

.allergie .section-head p {
  max-width: 24em;
}

.allergie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.allergie-card {
  background: var(--white);
  border: 1px solid rgba(18, 53, 42, 0.1);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 24px 60px rgba(18, 53, 42, 0.06);
  transition: box-shadow 400ms var(--ease);
}

.allergie-card:hover {
  box-shadow: 0 30px 70px rgba(18, 53, 42, 0.12);
}

.allergie-card .eyebrow {
  margin-bottom: 20px;
}

.allergie-card h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.allergie-card p {
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--green-500);
}

.allergie-card .arrow-link {
  margin-top: 26px;
}

/* ---------- Marken ---------- */
.marken h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 46px;
}

.marquee {
  overflow: hidden;
  padding: 34px 0;
  border-top: 1px solid rgba(18, 53, 42, 0.12);
  border-bottom: 1px solid rgba(18, 53, 42, 0.12);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 26px;
  animation: gs-marquee 70s linear infinite;
}

/* Pause beim Drueberfahren nur mit echter Maus. Auf Touchgeraeten bleibt der
   :hover-Zustand nach einem Tipper haengen — das Band wuerde dann dauerhaft
   stehen bleiben. Gleiches gilt fuer das Highlight der Karte. */
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee-track {
    animation-play-state: paused;
  }

  .brand-card:hover {
    background: var(--cream-200);
    border-color: rgba(18, 53, 42, 0.28);
  }
}

.marquee-group {
  display: flex;
  gap: 26px;
  padding-right: 26px;
}

.brand-card {
  width: 178px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 18px 14px;
  border: 1px solid rgba(18, 53, 42, 0.12);
  border-radius: 18px;
  background: var(--cream-50);
  transition: background 320ms ease, border-color 320ms ease;
}

.brand-card .brand-img {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card .brand-img img {
  max-height: 66px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-card span {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--green-600);
  white-space: nowrap;
}

/* ---------- Beratung ---------- */
.beratung-card {
  position: relative;
  overflow: hidden;
  background: var(--green-800);
  color: var(--cream-100);
  border-radius: 30px;
  padding: 76px 68px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 66px;
  align-items: center;
}

.beratung-card::before {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(208, 112, 60, 0.26), rgba(208, 112, 60, 0) 70%);
  pointer-events: none;
}

.beratung-card > * {
  position: relative;
}

.beratung-card .eyebrow {
  color: var(--terra-400);
  margin-bottom: 24px;
}

.beratung-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 38px;
}

.beratung-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.beratung-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.beratung-side .circle-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.beratung-side .circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beratung-side p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

/* ---------- Terminplaner ---------- */
.termin-card {
  background: var(--white);
  border: 1px solid rgba(18, 53, 42, 0.1);
  border-radius: 30px;
  padding: 56px 52px;
  box-shadow: 0 30px 80px rgba(18, 53, 42, 0.08);
}

.termin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.termin-head .eyebrow {
  margin-bottom: 18px;
}

.termin-head .h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.04;
}

.termin-head p {
  font-size: 15px;
  color: var(--green-400);
  max-width: 26em;
}

.termin-body {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.step-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green-300);
  margin-bottom: 16px;
}

.day-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.day-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 116px;
  padding: 15px 20px;
  border-radius: 16px;
  border: 1px solid rgba(18, 53, 42, 0.18);
  background: transparent;
  color: var(--green-800);
  text-align: left;
  transition: border-color 300ms ease, background 300ms ease, color 300ms ease,
    transform 300ms var(--ease);
}

.day-btn strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.day-btn span {
  font-size: 13px;
  color: var(--green-300);
}

.day-btn:hover {
  border-color: var(--terra-500);
  transform: translateY(-2px);
}

.day-btn.is-active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--cream-100);
}

.day-btn.is-active span {
  color: inherit;
  opacity: 0.72;
}

.slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-btn {
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid rgba(18, 53, 42, 0.18);
  background: transparent;
  color: var(--green-800);
  font-size: 14.5px;
  font-weight: 600;
  transition: border-color 300ms ease, background 300ms ease, color 300ms ease;
}

.slot-btn:hover {
  border-color: var(--terra-500);
  color: var(--terra-600);
}

.slot-btn.is-active {
  background: var(--terra-500);
  border-color: var(--terra-500);
  color: #fff;
  font-weight: 700;
}

.slot-empty {
  font-size: 15px;
  color: var(--green-400);
}

.termin-foot {
  border-top: 1px solid rgba(18, 53, 42, 0.12);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.termin-summary {
  font-size: 16px;
  color: var(--green-400);
}

.termin-summary strong {
  color: var(--green-800);
}

.termin-confirm {
  display: none;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.termin-confirm.is-visible {
  display: flex;
  animation: gs-rise 500ms var(--ease);
}

.confirm-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-800);
  color: var(--cream-100);
  padding: 18px 26px;
  border-radius: 16px;
  font-size: 15px;
}

.confirm-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terra-500);
  flex: none;
}

.confirm-reset {
  background: none;
  border: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--terra-500);
  transition: color 200ms ease;
}

.confirm-reset:hover {
  color: var(--terra-600);
}

/* ---------- Besuch & Kontakt ---------- */
.besuch .h2 {
  margin-bottom: 14px;
}

.besuch-address {
  font-size: 16px;
  color: var(--green-400);
  margin-bottom: 58px;
}

.besuch-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 66px;
  align-items: start;
}

.hours-block .eyebrow {
  margin-bottom: 26px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(18, 53, 42, 0.12);
  font-size: 16px;
}

.hours-list .day {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.hours-list .time {
  color: var(--green-400);
}

.today-badge {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: var(--terra-500);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  margin-left: 10px;
}

.form-card {
  background: var(--white);
  border: 1px solid rgba(18, 53, 42, 0.1);
  border-radius: 26px;
  padding: 46px 44px;
  box-shadow: 0 24px 60px rgba(18, 53, 42, 0.07);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 24px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-300);
  margin-bottom: 8px;
}

.field input {
  border: 0;
  border-bottom: 1px solid rgba(18, 53, 42, 0.2);
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  font-family: inherit;
  color: var(--green-800);
  border-radius: 0;
  transition: border-color 300ms ease;
}

.field textarea {
  border: 1px solid rgba(18, 53, 42, 0.2);
  border-radius: 14px;
  background: transparent;
  padding: 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--green-800);
  resize: vertical;
  transition: border-color 300ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terra-500);
}

.form-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-foot .pill {
  padding: 18px 30px;
}

.form-sent {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--terra-500);
}

.form-sent.is-visible {
  display: inline;
  animation: gs-rise 500ms var(--ease);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(244, 239, 228, 0.72);
  padding: 76px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream-100);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 24em;
}

.site-footer .eyebrow {
  color: var(--cream-100);
  margin-bottom: 18px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.footer-list a {
  transition: color 200ms ease;
}

.footer-list a:hover {
  color: var(--terra-500);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 239, 228, 0.14);
  padding-top: 28px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 228, 0.5);
}

/* ---------- Rechtliches-Seite ---------- */
.page-head {
  background: var(--green-800);
  color: var(--cream-100);
  padding: 72px 0 88px;
}

.page-head .eyebrow {
  color: var(--terra-400);
  margin-bottom: 22px;
}

.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 30px;
}

.page-head-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-head-links .pill {
  padding: 15px 24px;
}

.legal-section {
  padding: 96px 0 0;
}

.legal-section:last-of-type {
  padding-bottom: 120px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 66px;
  align-items: start;
}

.legal-grid > h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  position: sticky;
  top: 40px;
}

.legal-body {
  min-width: 0;
  max-width: 40em;
}

.legal-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.legal-body h3:not(:first-child) {
  margin-top: 34px;
}

.legal-body p {
  font-size: 17px;
  line-height: 1.66;
  color: var(--green-500);
}

.legal-body p + p {
  margin-top: 12px;
}

.legal-body a {
  color: var(--terra-500);
  transition: color 200ms ease;
}

.legal-body a:hover {
  color: var(--terra-600);
}

.hint-box {
  background: var(--white);
  border: 1px solid rgba(18, 53, 42, 0.1);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--green-400);
  margin-bottom: 40px;
}

/* ---------- Fotos deaktiviert ----------
   Solange keine echten Fotos vorliegen, blendet body.photos-off die
   Bildflächen aus und stellt die betroffenen Raster einspaltig. */
body.photos-off .leckereien-img,
body.photos-off .ueber-img,
body.photos-off .circle-img {
  display: none;
}

body.photos-off .leckereien .container,
body.photos-off .ueber-uns .container {
  grid-template-columns: 1fr;
}

body.photos-off .bigquote {
  max-width: 24em;
}

body.photos-off .beratung-card {
  grid-template-columns: 1fr;
  gap: 34px;
}

body.photos-off .beratung-side {
  align-items: flex-start;
}

body.photos-off .beratung-side p {
  text-align: left;
}

/* ---------- Scroll-Reveals ---------- */
[data-reveal]:not([data-reveal="bubble"]) {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

[data-reveal="img"] {
  transition-duration: 1100ms;
}

[data-reveal="chip"] {
  transition-duration: 700ms;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Keyframes ---------- */
@keyframes gs-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes gs-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes gs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}

@keyframes gs-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .sortiment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* 5 Kacheln in 2 Spalten: letzte Kachel volle Breite, keine leere Zelle */
  .sortiment-tile:last-child {
    grid-column: 1 / -1;
  }

  .beratung-card {
    padding: 56px 44px;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding-bottom: 72px;
  }

  .sortiment {
    padding-top: 72px;
  }

  section {
    scroll-margin-top: 110px;
  }

  .topbar-links a:last-child {
    display: none;
  }

  .site-header .container {
    height: 92px;
  }

  .brand-head {
    width: 72px;
    height: 80px;
  }

  .brand-word {
    width: 160px;
    height: 67px;
  }

  .brand-claim {
    display: none;
  }

  .brand-col {
    padding-bottom: 4px;
    margin-left: 10px;
  }

  /* Mobile Navigation als Overlay */
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--green-800);
    color: var(--cream-100);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    padding: 8px 0;
  }

  .main-nav .nav-cta {
    margin: 14px 0 0;
    font-size: 16px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 70;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-toggle {
    color: var(--cream-100);
  }

  /* Beim Scrollen bekommt der Header einen backdrop-filter. Der macht ihn zum
     Bezugsrahmen für position:fixed und staucht das Menü-Overlay auf die
     Header-Höhe zusammen. Solange das Menü offen ist, deshalb abschalten —
     ohne Transition, sonst bleibt der Bezugsrahmen während der Überblendung
     bestehen. Sichtbar ist davon nichts: das Overlay deckt den Header ab. */
  body.nav-open .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 20px 84px;
  }

  .hero-art-frame {
    height: 400px;
  }

  .hours-card {
    right: 0;
  }

  .leckereien .container,
  .ueber-uns .container,
  .allergie-grid,
  .besuch-grid {
    grid-template-columns: 1fr;
  }

  .leckereien .container,
  .ueber-uns .container {
    gap: 40px;
  }

  .leckereien-img {
    height: 360px;
  }

  .ueber-img {
    height: 420px;
  }

  .beratung-card {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 48px 28px;
  }

  .termin-card {
    padding: 40px 24px;
  }

  .day-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .day-btn {
    flex: none;
  }

  .slot-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .form-card {
    padding: 34px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-grid > h2 {
    position: static;
  }

  .legal-section {
    padding-top: 64px;
  }

  .legal-section:last-of-type {
    padding-bottom: 80px;
  }
}

@media (max-width: 560px) {
  .sortiment-grid {
    grid-template-columns: 1fr;
  }

  /* Einspaltig braucht jede Kachel gestapelt ~190px Hoehe — die fuenf Punkte
     verteilen sich dann ueber fast zwei Bildschirme und gehen unter. Mobil
     deshalb Nummer und Titel nebeneinander als kompakte Liste. */
  .sortiment-tile {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 4px;
  }

  .sortiment-tile .tile-num {
    flex: none;
    width: 42px;
    height: 42px;
    font-size: 15px;
    margin-bottom: 0;
  }

  .sortiment-tile h3 {
    font-size: 21px;
  }

  .sortiment .section-head {
    margin-bottom: 36px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field {
    grid-column: 1 / -1;
  }

  .hero-art-frame {
    height: 320px;
  }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  [data-reveal="bubble"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .marquee-track,
  .hours-card,
  .paw-bob,
  .topbar-status .dot {
    animation: none !important;
  }

  .marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .paw-field,
  .hero-art {
    transform: none !important;
  }
}
