/* ===========================================================
   Fruit.Love — Design System
   Angelehnt an die Originalmarke: Schwarz/Weiß + Gelb-Akzent,
   geometrische Sans-Serif, scharfe Kanten, große Fotografie.
   =========================================================== */

:root {
  color-scheme: light;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f3;
  --color-surface: #ffffff;
  --color-text: #0a0a0a;
  --color-text-muted: #5c5c5c;
  --color-ink: #0a0a0a;
  --color-accent: #ffcc00;
  --color-accent-ink: #0a0a0a;
  --color-border: #e2e2df;
  --header-bg: rgba(255, 255, 255, 0.92);
  --logo-filter: none;

  --font-base: "Jost", "Century Gothic", "Segoe UI", system-ui, sans-serif;

  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.14);

  --container: 1200px;
  --transition: 180ms ease;
}

/* Dark mode — follows the OS preference by default; an explicit toggle
   choice (stored in localStorage, applied via [data-theme]) always wins. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --color-bg: #121212;
    --color-bg-alt: #1a1a1a;
    --color-surface: #1c1c1c;
    --color-text: #f2f2f2;
    --color-text-muted: #a8a8a8;
    --color-border: #2e2e2e;
    --header-bg: rgba(18, 18, 18, 0.88);
    --logo-filter: invert(1) brightness(2);
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --color-bg: #121212;
  --color-bg-alt: #1a1a1a;
  --color-surface: #1c1c1c;
  --color-text: #f2f2f2;
  --color-text-muted: #a8a8a8;
  --color-border: #2e2e2e;
  --header-bg: rgba(18, 18, 18, 0.88);
  --logo-filter: invert(1) brightness(2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  transition: background-color 220ms ease, color 220ms ease;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.45em;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.4rem, 4.4vw + 1rem, 4.4rem); }
h2 { font-size: clamp(1.7rem, 2.2vw + 1rem, 2.6rem); }
h3 { font-size: clamp(1.15rem, 0.6vw + 1rem, 1.4rem); font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Header only: ~30% wider than the standard content container, so the
   logo sits further left and the nav/actions cluster further right on
   big screens instead of everything huddling in the middle. */
.container-wide {
  max-width: 1560px;
}

.section {
  padding: clamp(56px, 8vw, 120px) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-text);
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-accent);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.lede {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 300;
}

/* Buttons — sharp, uppercase, tracked, no shadow-magic */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-ink);
}
.btn-primary:hover { background: #e6b800; }

.btn-dark {
  background: var(--color-ink);
  color: #fff;
}
.btn-dark:hover { background: #262626; }

.btn-outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}
.btn-outline:hover { border-color: var(--color-accent); background: var(--color-accent); }

/* Milky glass fill — used on outline buttons sitting directly over a photo. */
.btn-milky {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-block { width: 100%; }

/* Icon-only square button — used for the Instagram link */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.icon-btn:hover,
.icon-btn:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-accent-ink);
}
.icon-btn svg { display: block; }

.icon-btn-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.icon-btn-light:hover,
.icon-btn-light:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-accent-ink);
}

/* Theme toggle — shows a moon in light mode (click for dark), a sun in
   dark mode (click for light). JS toggles .is-dark based on the
   resolved theme (stored choice or, failing that, OS preference). */
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle.is-dark .icon-sun { display: block; }
.theme-toggle.is-dark .icon-moon { display: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  filter: var(--logo-filter);
  transition: filter 220ms ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Phone/CTA/Instagram duplicated into the mobile menu; hidden on desktop
   where the real ones already live in .nav-actions. */
.nav-mobile-only,
.nav-link-divider {
  display: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--color-accent);
  transition: right var(--transition);
}
.nav-links a:hover::after { right: 0; }

/* Scrollspy: highlights the nav item for the section currently in view */
.nav-links a.is-active {
  font-weight: 700;
}
.nav-links a.is-active::after { right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero — full-bleed photo slideshow background */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(92vh, 900px);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0a;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 2200ms ease-in-out;
}
.hero-bg img.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.35) 40%, rgba(10, 10, 10, 0.75) 100%);
}

/* Map-style coordinate mark, running vertically along the hero's left edge. */
.hero-coords {
  position: absolute;
  left: 22px;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 720px) {
  .hero-coords { display: none; }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 640px;
  padding-block: clamp(60px, 10vw, 130px);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  /* Text + video card need more room than the standard 1200px container
     gives without squeezing either — reuse the wider header container. */
  max-width: 1560px;
}

/* Hero video card — sits above the background photo slideshow, beside
   the text. Desktop/tablet only; the hero stays text + photo on mobile. */
.hero-video-frame {
  position: relative;
  z-index: 4;
  flex: 0 1 auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 6px;
}

.hero-video {
  position: relative;
  width: min(624px, 55vw);
  /* Matches the source video's own ratio — forcing 16:9 here left the
     Vimeo player letterboxing top/bottom in white. */
  aspect-ratio: 640 / 272;
  border-radius: 3px;
  overflow: hidden;
}

.hero-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 960px) {
  .hero-video-frame { display: none; }
}

.hero-content .eyebrow {
  color: #fff;
  border-bottom-color: var(--color-accent);
}

.hero-content h1 { color: #fff; }

.hero-content .lede {
  margin-top: 22px;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-outline-light:hover { border-color: var(--color-accent); background: var(--color-accent); color: var(--color-accent-ink); }

.hero-contact {
  margin-top: 30px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-contact a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 3px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-accent);
  color: var(--color-accent-ink);
  padding: 14px 20px;
  margin-top: 36px;
}
.hero-badge strong { display: block; font-family: var(--font-base); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-badge span { font-size: 0.85rem; }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: 30px;
}
.stat-strip div { text-align: center; }
.stat-strip strong {
  display: block;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 1.8rem;
}
.stat-strip span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

/* About media — two location photos, matching the height of the text
   column beside them (.about-grid uses align-items: stretch). */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  height: 100%;
  min-height: 320px;
  transition: grid-template-columns 500ms ease;
}

.about-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--color-border);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.92);
}

.about-image-grabkapelle img { object-position: center 70%; }
.about-image-schlossplatz img { object-position: center 62%; }

/* Hovering a photo widens its column so more of the shot is revealed,
   instead of zooming into a fixed crop. */
@media (hover: hover) {
  .about-images:has(.about-image-grabkapelle:hover) {
    grid-template-columns: 1.5fr 0.5fr;
  }
  .about-images:has(.about-image-schlossplatz:hover) {
    grid-template-columns: 0.5fr 1.5fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-images { transition: none; }
}

.about-image figcaption {
  position: absolute;
  left: 10px;
  bottom: 8px;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-image img { transition: none; }
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
}
.value-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-list .icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--color-accent);
  color: var(--color-accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Cards / boxes */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.box-card {
  background: var(--color-surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms ease, box-shadow 320ms ease, filter 320ms ease;
}

/* Hovering any card in the row shrinks + blurs the rest, so the
   hovered one reads as pulled forward. */
.card-grid:hover .box-card {
  transform: scale(0.9);
  filter: blur(3px);
}
.card-grid .box-card:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: var(--shadow-lg);
  filter: blur(0);
  z-index: 2;
  position: relative;
}

.box-card .media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.box-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.box-card:hover .media img { transform: scale(1.05); }

.box-card .body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.box-card.featured {
  position: relative;
}
.featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
}
.price {
  font-family: var(--font-base);
  font-size: 1.9rem;
  font-weight: 700;
}
.price small {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-muted);
}

/* Extras */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.extra-card {
  background: var(--color-surface);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms ease, box-shadow 320ms ease;
}
.extra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.extra-card .media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.extra-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.extra-card .body { padding: 26px; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 36px 26px 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 26px;
  width: 40px;
  height: 40px;
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-base);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-icon {
  position: absolute;
  top: -22px;
  left: 78px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.step-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* Hovering a step tile bounces its number badge, then its icon badge */
@keyframes step-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-9px); }
  60% { transform: translateY(-4px); }
}
.step:hover::before {
  animation: step-bounce 0.6s ease;
}
.step:hover .step-icon {
  animation: step-bounce 0.6s ease;
  animation-delay: 0.25s;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.contact-info {
  background: var(--color-ink);
  color: #fff;
  padding: 44px;
}
.contact-info h2, .contact-info p { color: #fff; }
.contact-info .eyebrow { color: #fff; }
.contact-info .lede { color: rgba(255,255,255,0.75); }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 20px;
}
.contact-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.contact-list a:hover { color: var(--color-accent); }
.contact-list span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
}

.contact-form {
  background: var(--color-surface);
  padding: clamp(26px, 4vw, 48px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.field .optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-muted);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.field textarea { resize: vertical; min-height: 110px; }

/* Briefly highlights "Wunschkiste" after it gets pre-filled from a
   box card's "Anfragen" button. */
.field.is-preselected select {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.3);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.form-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  font-size: 0.92rem;
  display: none;
  border-left: 3px solid transparent;
}
.form-status.visible { display: block; }
.form-status.success {
  background: #fbf6de;
  border-left-color: var(--color-accent);
  color: var(--color-ink);
}
.form-status.error {
  background: #fdeaea;
  border-left-color: #c0392b;
  color: #9c2b2b;
}

/* honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.75);
  padding-block: 60px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand img { width: auto; height: 30px; margin-bottom: 16px; filter: invert(1) brightness(2); }
.footer-brand p { max-width: 34ch; color: rgba(255,255,255,0.55); }
.footer-brand .icon-btn { margin-top: 6px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
}
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* Legal pages */
.legal-page {
  padding-block: clamp(48px, 6vw, 90px);
}
.legal-page .container { max-width: 820px; }
.legal-page h2 { margin-top: 1.6em; }
.legal-page address { font-style: normal; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: var(--color-accent-ink);
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Cookie / consent banner — slides in from the left, slides back out on dismiss */
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  max-width: 560px;
  background: var(--color-ink);
  color: #fff;
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-130%);
  visibility: hidden;
  transition: transform 420ms ease, visibility 0s linear 420ms;
}
.cookie-consent.is-visible {
  transform: translateX(0);
  visibility: visible;
  transition: transform 420ms ease, visibility 0s linear 0s;
}
.cookie-consent p {
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.cookie-consent a {
  color: var(--color-accent);
  text-decoration: underline;
}
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }
}

/* Back-to-top button — fixed, follows scroll, fades in once you've scrolled down */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-ink);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  transition: opacity 260ms ease, transform 260ms ease, background 200ms ease, visibility 0s linear 260ms;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 260ms ease, transform 260ms ease, background 200ms ease, visibility 0s linear 0s;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--color-accent);
  color: var(--color-accent-ink);
}
.back-to-top svg { display: block; }

@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  /* Heading/text reads first on mobile; the photos follow. */
  .about-media { order: 2; }
  .about-images { height: auto; gap: 8px; }
  .card-grid, .extras-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
}

/* The full desktop nav (4 links + phone + CTA + Instagram icon) needs
   real estate; on anything narrower than this — including tablets —
   it no longer fits without wrapping/overflowing, so it collapses to
   just logo + hamburger well before the 720px content breakpoint. */
@media (max-width: 1150px) {
  .nav-links,
  .nav-actions .btn-outline,
  .nav-actions .btn-primary,
  .nav-actions .icon-btn {
    display: none;
  }
  .nav-toggle { display: block; }

  body.nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: 72px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
    padding: 22px;
    border: 1px solid var(--color-border);
    gap: 20px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
  .nav-link-divider {
    display: block;
    height: 1px;
    background: var(--color-border);
    margin: 4px 0;
  }
  .nav-mobile-only {
    display: flex !important;
    align-items: center;
    gap: 14px;
  }
  .nav-mobile-only .btn { flex: 1; }
}

@media (max-width: 720px) {
  .hero { min-height: min(80vh, 640px); }
  .card-grid, .extras-grid, .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* Below this, the two location photos get too narrow side by side. */
@media (max-width: 480px) {
  .about-images { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 4 / 3; }
}
