:root {
  --coral: #D94667;
  --coral-dark: #B83A58;
  --coral-light: #F4D3DB;
  --coral-soft: rgba(217, 70, 103, 0.08);
  --cream: #F7F4EC;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-soft: #4A4A4A;
  --muted: rgba(26, 26, 26, 0.6);
  --line: rgba(217, 70, 103, 0.15);
  --line-neutral: rgba(26, 26, 26, 0.08);
  --panel: rgba(255, 255, 255, 0.92);
  --focus: rgba(217, 70, 103, 0.3);
  --focus-strong: rgba(217, 70, 103, 0.5);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-base: 17px;
  --font-lead: 1.13rem;
  --font-h1: clamp(2.35rem, 5.2vw, 4.05rem);
  --font-h2: clamp(1.95rem, 3.7vw, 2.85rem);
  --font-h3: 1.33rem;
  --font-button: 1rem;
  --font-nav: 0.98rem;
  --font-meta: 0.9rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Lato', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--font-base);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { min-height: 60vh; }

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

a { color: var(--coral); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--coral-dark); }

:where(a, button, input, textarea, select):focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
  border-radius: var(--radius-sm);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

.skip-link {
  position: absolute; left: 12px; top: 12px; z-index: 200;
  padding: 10px 16px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--line-neutral);
  color: var(--text); font-weight: 600;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.skip-link:focus-visible { transform: translateY(0); }

.wrap { width: min(1120px, 100% - 48px); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: var(--font-h1); margin: 0 0 18px; }
h2 { font-size: var(--font-h2); margin: 0 0 14px; }
h3 { font-size: var(--font-h3); margin: 0 0 8px; }

.eyebrow {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral); font-weight: 700; margin-bottom: 12px;
  font-family: 'Lato', sans-serif;
}

.lead { max-width: 680px; color: var(--text-soft); font-size: var(--font-lead); }

.section-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
  margin-top: 16px; border-radius: 2px;
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.7s var(--ease);
}
.section.visible .section-line { transform: scaleX(1); }

/* ---------- Section variants ---------- */
.section {
  padding: 100px 0;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.section.visible { opacity: 1; transform: translateY(0); }

.section--cream { background: var(--cream); }
.section--coral {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
}
.section--coral h2, .section--coral h3,
.section--coral .eyebrow, .section--coral .lead { color: var(--white); }
.section--coral .eyebrow { opacity: 0.85; }
.section--coral .section-line { background: rgba(255,255,255,0.4); }

/* ---------- Animation helpers ---------- */
.stagger-child {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.stagger-child.revealed { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: var(--font-button); font-family: inherit;
  cursor: pointer; border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(-1px); }

.btn-coral {
  background: var(--coral); color: var(--white); border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-dark); border-color: var(--coral-dark);
  box-shadow: 0 8px 28px rgba(217, 70, 103, 0.3);
  color: var(--white);
}
.btn-outline {
  background: transparent; color: var(--text); border-color: rgba(26, 26, 26, 0.25);
}
.btn-outline:hover {
  border-color: var(--coral); color: var(--coral);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.btn-white {
  background: var(--white); color: var(--coral); border-color: var(--white);
}
.btn-white:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  color: var(--coral-dark);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line-neutral);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 48px; width: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.2;
}
.brand-sub { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 24px; font-size: var(--font-nav); }
.nav-links a { color: var(--text-soft); font-weight: 500; }
.nav-links a:hover { color: var(--coral); }

.nav-cta {
  padding: 10px 20px; border-radius: var(--radius-pill);
  background: var(--coral); color: var(--white) !important;
  font-weight: 700; font-size: var(--font-meta);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--coral-dark); color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(217, 70, 103, 0.3);
  transform: translateY(-1px);
}

.font-toggle {
  border: 1px solid transparent;
  background: linear-gradient(135deg, #D94667 0%, #B83A58 100%);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  min-height: 46px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(217, 70, 103, 0.26);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.font-toggle::before {
  content: "A";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}
.font-toggle:hover {
  background: linear-gradient(135deg, #e14e6f 0%, #c03d5d 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(217, 70, 103, 0.32);
  transform: translateY(-1px) scale(1.02);
  filter: saturate(1.08);
}
.font-toggle[aria-pressed="true"] {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-color: rgba(17, 24, 39, 0.9);
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.35);
}
.font-toggle[aria-pressed="true"]::before {
  content: "A+";
  background: rgba(255, 255, 255, 0.2);
  color: #f9fafb;
}
.font-toggle:focus-visible {
  box-shadow: 0 0 0 4px rgba(217, 70, 103, 0.38), 0 14px 28px rgba(217, 70, 103, 0.32);
}

.emotion-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(217, 70, 103, 0.08), rgba(255, 255, 255, 0.96));
  box-shadow: 0 8px 24px rgba(217, 70, 103, 0.08);
  color: var(--text-soft);
}
.emotion-note strong { color: var(--coral-dark); }

body.font-large {
  --font-base: 22px;
  --font-lead: 1.45rem;
  --font-h1: clamp(2.9rem, 6.1vw, 5rem);
  --font-h2: clamp(2.35rem, 4.5vw, 3.65rem);
  --font-h3: 1.75rem;
  --font-button: 1.3rem;
  --font-nav: 1.24rem;
  --font-meta: 1.06rem;
  line-height: 1.78;
}
body.font-large .field label,
body.font-large .contact-label,
body.font-large .eyebrow {
  letter-spacing: 0.06em;
  font-size: 1.03rem;
}
body.font-large .btn {
  padding-top: 14px;
  padding-bottom: 14px;
}
body.font-large .hero .lead,
body.font-large .timeline-content p,
body.font-large .value-card p,
body.font-large .service-list,
body.font-large .cost-card p,
body.font-large .contact-value,
body.font-large .consent-row,
body.font-large .town-pill,
body.font-large .footer-tagline,
body.font-large .footer-links a,
body.font-large .footer-contact,
body.font-large .footer-bottom {
  font-size: 1.08rem;
}
body.font-large .field input,
body.font-large .field textarea,
body.font-large .field select {
  font-size: 1.1rem;
  padding: 14px 16px;
}
body.font-large .section {
  padding-top: 112px;
  padding-bottom: 112px;
}
/* Navigation behält eine Zeile und Standard-Maße: Schrift nur im Seiteninhalt vergrößern */
body.font-large .nav {
  --font-nav: 0.98rem;
  --font-meta: 0.9rem;
}
body.font-large .nav .nav-links {
  gap: clamp(14px, 1.6vw, 22px);
}
body.font-large .nav .nav-cta {
  padding: 10px 18px;
  font-size: var(--font-meta);
  white-space: nowrap;
}
body.font-large .contact-phone {
  font-size: 1.3rem;
}

@media (min-width: 961px) {
  body.font-large .nav-inner {
    flex-wrap: nowrap;
    align-items: center;
  }
  body.font-large .nav-links {
    flex-wrap: nowrap;
    min-width: 0;
  }
  body.font-large .nav-links a {
    white-space: nowrap;
  }
}

body.font-large .hero {
  padding-top: clamp(7rem, 14vh, 10rem);
  padding-bottom: clamp(4rem, 9vh, 6.5rem);
}
body.font-large .hero-grid {
  align-items: start;
}
body.font-large .hero-copy,
body.font-large .hero-card {
  min-width: 0;
}
body.font-large .hero-trust {
  flex-wrap: wrap;
  row-gap: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 100%;
}
body.font-large .hero-card ul {
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (min-width: 961px) {
  body.font-large .about-grid,
  body.font-large .region-grid,
  body.font-large .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(20px, 3vw, 36px);
  }
  body.font-large .services-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  body.font-large .costs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.font-large .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.font-large .footer-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(18px, 2.5vw, 32px);
  }
  body.font-large .timeline-item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(18px, 2.5vw, 28px);
  }
}

@media (min-width: 961px) and (max-width: 1180px) {
  body.font-large .values-grid,
  body.font-large .costs-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 961px) {
  body.font-large .timeline-content {
    min-width: 0;
  }
  body.font-large .timeline-img {
    min-width: 0;
  }
  body.font-large .timeline-time {
    font-size: 1rem;
  }
  body.font-large .timeline-content h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.22;
  }
}

body.font-large .lead {
  max-width: min(42.5rem, 100%);
}

body.font-large .footer-bottom {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
body.font-large .footer-tagline {
  max-width: 36rem;
}
body.font-large .footer h4 {
  line-height: 1.3;
}

body.font-large .emotion-note {
  font-size: 1.05rem;
  line-height: 1.6;
}

body.font-large .value-card h3,
body.font-large .service-card h3,
body.font-large .cost-card h3 {
  line-height: 1.22;
  overflow-wrap: break-word;
}

body.font-large .cta-band h2 {
  max-width: min(37.5rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-inline: 12px;
}
body.font-large .cta-band p {
  max-width: min(32.5rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-inline: 12px;
}

body.font-large .consent-row {
  gap: 12px;
  align-items: flex-start;
}
body.font-large .consent-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 4px;
}

body.font-large main > .section[style*="150"] {
  padding-top: clamp(10.5rem, 26vw, 15rem) !important;
}

body.font-large .cookie-banner {
  font-size: 1rem;
  line-height: 1.45;
}
body.font-large .cookie-banner__inner {
  align-items: center;
}
body.font-large.has-cookie-banner {
  padding-bottom: 8.5rem;
}
@media (min-width: 640px) {
  body.font-large.has-cookie-banner {
    padding-bottom: 10.5rem;
  }
}

.hamburger {
  display: none; background: none; border: none; padding: 8px;
  cursor: pointer; color: var(--text);
}
.hamburger svg { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0.3) 70%, transparent 100%),
    linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 { color: var(--text); }
.hero .lead { color: var(--text-soft); font-size: 1.18rem; margin-bottom: 28px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust {
  margin-top: 32px; display: flex; align-items: center; gap: 14px;
  font-size: 0.85rem; color: var(--muted);
}
.hero-trust-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--coral-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-trust-icon svg { width: 20px; height: 20px; color: var(--coral); }

.hero-card {
  background: var(--panel);
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.hero-card .eyebrow { margin-bottom: 14px; }
.hero-card ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px; font-size: 0.95rem; color: var(--text-soft);
}
.hero-card li { display: flex; align-items: flex-start; gap: 10px; }
.hero-card li::before {
  content: ''; flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 2px;
  background: var(--coral);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; z-index: 3;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); opacity: 0.7;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ---------- Value Cards ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--line);
}
.value-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--coral-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--coral); }
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--text-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Timeline (Tagesablauf) ---------- */
.timeline { position: relative; margin-top: 40px; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--coral-light), var(--coral), var(--coral-light));
  border-radius: 1px;
}
.timeline-item {
  position: relative; padding-bottom: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -33px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--coral); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--coral-light);
}
.timeline-time {
  font-size: 0.85rem; font-weight: 700; color: var(--coral);
  letter-spacing: 0.04em; margin-bottom: 4px;
}
.timeline-content h3 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline-content p { color: var(--text-soft); font-size: 0.92rem; margin: 0; }
.timeline-img {
  border-radius: var(--radius-md);
  overflow: hidden; aspect-ratio: 4/3;
}
.timeline-img img { width: 100%; height: 100%; object-fit: cover; }
.timeline-item:nth-child(even) { direction: rtl; }
.timeline-item:nth-child(even) > * { direction: ltr; }

/* ---------- Process timeline (connected 4 steps) ---------- */
.process-timeline {
  max-width: 900px;
  margin-top: 36px;
}
.process-timeline .timeline-item {
  grid-template-columns: 1fr;
  padding-bottom: 28px;
}
.process-timeline .timeline-item:nth-child(even) { direction: ltr; }
.process-timeline .timeline-content {
  background: var(--white);
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}
.process-timeline .timeline-content h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.process-timeline .timeline-content p {
  margin: 0;
  color: var(--text-soft);
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}
.service-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--coral-soft); border: 1px solid var(--coral-light);
  font-size: 0.8rem; font-weight: 700; color: var(--coral);
  margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 10px; }
.service-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px; font-size: 0.92rem; color: var(--text-soft);
}
.service-list li { padding-left: 18px; position: relative; }
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral-light);
}

/* ---------- Gallery ---------- */
.gallery-hero {
  margin-top: 32px; border-radius: var(--radius-lg);
  overflow: hidden; max-height: 400px;
}
.gallery-hero img { width: 100%; height: 100%; object-fit: cover; }

.gallery-scroll {
  margin-top: 20px;
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--coral-light) transparent;
}
.gallery-scroll.is-centered {
  justify-content: center;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--coral-light); border-radius: 3px; }

.gallery-item {
  flex: 0 0 280px; scroll-snap-align: start;
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  margin: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- About split ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  margin-top: 32px; align-items: center;
}
.about-text p { color: var(--text-soft); margin-bottom: 14px; }
.about-text p:last-child { margin-bottom: 0; }
.about-img {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--coral-soft); border: 1px solid var(--coral-light);
  font-size: 0.82rem; font-weight: 600; color: var(--coral);
  margin-top: 18px;
}

/* ---------- Region ---------- */
.region-content { margin-top: 28px; }
.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.region-towns {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.town-pill {
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--line-neutral);
  font-size: 0.85rem; color: var(--text-soft);
}
.term-pill {
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.term-pill:hover {
  border-color: var(--coral-light);
  color: var(--coral);
}
.term-pill[aria-pressed="true"] {
  border-color: var(--coral);
  background: var(--coral-soft);
  color: var(--coral-dark);
}
.region-transport {
  margin-top: 20px; padding: 18px;
  border-radius: var(--radius-md);
  background: var(--coral-soft); border: 1px solid var(--coral-light);
}
.region-transport p { margin: 0; font-size: 0.95rem; }
.region-transport strong { color: var(--coral-dark); }
.region-map {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--cream); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.region-map iframe {
  width: 100%; height: 100%; border: 0;
}

/* ---------- Costs ---------- */
.costs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.cost-card {
  background: var(--white);
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.cost-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}
.cost-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--coral-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.cost-icon svg { width: 28px; height: 28px; color: var(--coral); }
.cost-card h3 { margin-bottom: 10px; }
.cost-card p { color: var(--text-soft); font-size: 0.92rem; margin: 0; }
.costs-cta { text-align: center; margin-top: 32px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 32px; margin-top: 36px; align-items: start;
}
.contact-info { display: grid; gap: 20px; }
.contact-item {}
.contact-label {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px; font-weight: 600;
}
.contact-value { font-size: 1rem; }
.contact-value a { color: var(--coral); font-weight: 600; }

.contact-phone {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-radius: var(--radius-md);
  background: var(--coral); color: var(--white);
  font-size: 1.22rem; font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-phone:hover {
  background: var(--coral-dark); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 70, 103, 0.3);
}
.contact-phone svg { width: 22px; height: 22px; flex-shrink: 0; }

.contact-form { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 4px; }
.field label { font-size: 0.92rem; color: var(--text-soft); font-weight: 500; }
.field input, .field textarea, .field select {
  border-radius: var(--radius-sm); border: 1px solid rgba(26,26,26,0.2);
  background: var(--white); color: var(--text);
  padding: 12px 14px; font-family: inherit; font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--focus);
}
.field [aria-invalid="true"] {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}
.field textarea { resize: vertical; min-height: 100px; }

.consent-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-soft);
}
.consent-row input[type="checkbox"] {
  margin-top: 3px; accent-color: var(--coral);
  width: 16px; height: 16px; flex-shrink: 0;
}

.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.form-success {
  display: none; padding: 18px; border-radius: var(--radius-md);
  background: #f0fdf4; border: 1px solid #86efac; color: #166534;
  text-align: center; font-weight: 500;
}
.form-success:focus { outline: none; }
.form-success:focus-visible {
  box-shadow: 0 0 0 3px var(--focus);
}

.form-error {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: #b91c1c;
  max-width: 36rem;
}

/* ---------- CTA Band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 600px; margin-left: auto; margin-right: auto; color: var(--white); }
.cta-band p { max-width: 520px; margin: 0 auto 24px; color: rgba(255,255,255,0.85); }
.cta-band .section-line { margin: 16px auto 0; }

/* ---------- Footer ---------- */
.footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--line-neutral);
  background: var(--cream);
}
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 44px; width: auto; }
.footer-tagline { color: var(--text-soft); font-size: 0.9rem; max-width: 280px; }
.footer h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px; font-weight: 700;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a { color: var(--text-soft); font-size: 0.9rem; }
.footer-links a:hover { color: var(--coral); }
.footer-contact { font-size: 0.9rem; color: var(--text-soft); display: grid; gap: 6px; }
.footer-contact a { color: var(--coral); }
.footer-bottom {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--line-neutral);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--coral); }
.seatwise-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.seatwise-credit img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
}
.seatwise-credit:hover { color: var(--coral); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { padding: 100px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { margin-top: 20px; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.6) 100%);
  }
  .values-grid, .services-grid, .costs-grid { grid-template-columns: 1fr; }
  .about-grid, .region-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .seatwise-credit { justify-content: center; white-space: normal; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item:nth-child(even) { direction: ltr; }
  .timeline-img { display: none; }
  .process-timeline { padding-left: 32px; }
  .section { padding: 80px 0; }
  .nav-controls { margin-left: auto; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-bottom: 1px solid var(--line-neutral);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    gap: 4px;
  }
  .nav-links.open a { padding: 10px 0; font-size: 1rem; }
  .nav-links.open .font-toggle {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    min-height: 50px;
    font-size: 1rem;
  }
  .gallery-scroll {
    gap: 6px;
    column-gap: 6px;
    scroll-padding-inline: 6px;
  }
  .gallery-item {
    flex: 0 0 240px;
    margin: 0;
  }

  body.font-large .hero {
    padding-top: clamp(6.5rem, 18vw, 9rem);
  }
  body.font-large .nav-inner {
    flex-wrap: nowrap;
    gap: 8px 10px;
  }
  body.font-large .brand img {
    max-height: 54px;
    width: auto;
  }
  body.font-large .nav-links.open a {
    font-size: 1.05rem;
    line-height: 1.35;
    padding: 12px 0;
  }
  body.font-large .nav-links.open .nav-cta {
    width: 100%;
    max-width: none;
    text-align: center;
    margin-top: 8px;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .wrap { width: calc(100% - 32px); }
  .values-grid, .costs-grid { gap: 14px; }
  .gallery-scroll {
    gap: 4px;
    column-gap: 4px;
    scroll-padding-inline: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .section, .stagger-child {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .section-line { transform: scaleX(1) !important; }
  .scroll-hint { animation: none; }
  .hero-video { display: none !important; }
}

/* ---------- Cookie consent & Microsoft Clarity ---------- */
body.has-cookie-banner {
  padding-bottom: 6.5rem;
}
@media (min-width: 640px) {
  body.has-cookie-banner {
    padding-bottom: 8.5rem;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px 16px;
  padding: 16px 0 18px;
  max-width: 1120px;
  margin: 0 auto;
  width: min(1120px, 100% - 48px);
}

.cookie-banner__content {
  flex: 1 1 220px;
  min-width: 0;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.cookie-banner__text--mobile {
  display: none;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-banner__actions .btn {
  font-size: 0.9rem;
  padding: 10px 18px;
}

.cookie-banner .btn-label-short {
  display: none;
}

@media (max-width: 639px) {
  body.has-cookie-banner {
    padding-bottom: 3.75rem;
  }

  .cookie-banner__inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 10px 0 12px;
    width: calc(100% - 24px);
  }

  .cookie-banner__content {
    flex: 1 1 auto;
    min-width: 0;
  }

  .cookie-banner__text--desktop {
    display: none !important;
  }

  .cookie-banner__text--mobile {
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8125rem;
    line-height: 1.3;
    color: var(--text-soft);
  }

  .cookie-banner__actions {
    flex-shrink: 0;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .cookie-banner__actions .btn {
    padding: 7px 11px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .cookie-banner .btn-label-full {
    display: none;
  }

  .cookie-banner .btn-label-short {
    display: inline;
  }
}
