/* ============================================
   De Zonnestraal — Gastouder Opvang
   v3 Design System — Pure CSS (no Tailwind)
   ============================================ */

/* --- Design Tokens --- */
:root {
  --bg-cream: #FFFDF9;
  --text-bark: #4A3C31;
  --text-light: #7A695B;
  --sun-yellow: #FFC94A;
  --warm-peach: #FF9B71;
  --soft-sage: #81A263;
  --pale-blue: #A2C4C9;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --section-padding: max(5rem, 8vh);
  --container-width: 1200px;

  --radius-blob-1: 60% 40% 30% 70% / 60% 30% 70% 40%;
  --radius-blob-2: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --radius-organic: 24px 8px 24px 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-bark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

body.cookie-banner-open {
  padding-bottom: calc(var(--cookie-banner-offset, 0px) + env(safe-area-inset-bottom, 0px));
}

/* Subtle noise texture overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.04"/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-bark);
  text-wrap: balance;
}

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

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero .container,
.page-hero .container {
  padding-left: 0;
  padding-right: 0;
}

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--sun-yellow);
  color: var(--text-bark);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-display);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-nav:focus {
  top: 0;
}

/* --- Cookie Banner --- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-bark);
  color: rgba(255,255,255,0.9);
  padding: 1rem 2rem calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  box-shadow: 0 -10px 24px rgba(74, 60, 49, 0.18);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-content span {
  max-width: 42rem;
}

.cookie-content a {
  color: var(--sun-yellow);
  text-decoration: underline;
}

.btn-small {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  border-radius: 20px;
  background: var(--sun-yellow);
  color: var(--text-bark);
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-small:hover {
  background: #FFD466;
}

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: auto;
  height: clamp(2.4rem, 4vw, 3.1rem);
  transition: transform 0.25s ease;
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
  color: var(--text-bark);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--warm-peach);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--warm-peach);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--warm-peach);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  border: 2px solid var(--sun-yellow);
  background: transparent;
  color: var(--text-bark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.lang-toggle:hover {
  background: var(--sun-yellow);
  color: var(--text-bark);
}

body[data-lang-lock] .lang-toggle {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-bark);
  padding: 0.25rem;
  line-height: 1;
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 1.5rem 2rem;
  gap: 0.25rem;
  max-height: calc(100vh - 4.5rem);
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(74, 60, 49, 0.08);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .lang-toggle {
  width: 100%;
  justify-content: center;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-bark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(255, 201, 74, 0.15);
  color: var(--warm-peach);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--sun-yellow);
  color: var(--text-bark);
  box-shadow: 0 4px 14px rgba(255, 201, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 201, 74, 0.6);
  background-color: #FFD466;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--text-bark);
  color: var(--text-bark);
}

.btn-outline:hover {
  background-color: var(--text-bark);
  color: var(--bg-cream);
  transform: translateY(-3px);
}

.btn-white {
  background-color: white;
  color: var(--warm-peach);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-white:hover {
  background-color: var(--bg-cream);
  color: var(--text-bark);
  transform: translateY(-2px);
}

/* --- Animations --- */
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.fade-up {
  opacity: 1;
  transform: none;
}

.reveal-ready .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-ready .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.gsap-reveal {
  opacity: 1;
  visibility: visible;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.shape-wrap {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.interactive-shape {
  width: 100%;
  height: auto;
  display: block;
}

.shape-cloud { width: 140px; top: 20%; left: 10%; }
.shape-star  { width: 90px;  top: 25%; right: 15%; }
.shape-flower{ width: 110px; bottom: 20%; left: 15%; }
.shape-rainbow { width: 160px; bottom: 15%; right: 10%; }

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--warm-peach);
  position: relative;
  display: inline-block;
}

.highlight-line {
  position: absolute;
  width: 100%;
  height: 20%;
  bottom: 10%;
  left: 0;
  background-color: var(--sun-yellow);
  opacity: 0.4;
  z-index: -1;
  border-radius: 10px;
  transform: rotate(-1deg);
  transform-origin: left center;
}

.hero-p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: radial-gradient(circle at center, #fff 0%, var(--bg-cream) 100%);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Features --- */
.features {
  padding: var(--section-padding) 0;
  background-color: var(--bg-cream);
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-organic);
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-blob-1);
  transition: border-radius 0.5s ease;
}

.feature-card:hover .icon-wrapper {
  border-radius: var(--radius-blob-2);
}

.fc-1 .icon-wrapper { background: rgba(255, 155, 113, 0.15); color: var(--warm-peach); }
.fc-2 .icon-wrapper { background: rgba(255, 201, 74, 0.2); color: #E5A91A; }
.fc-3 .icon-wrapper { background: rgba(129, 162, 99, 0.15); color: var(--soft-sage); }
.fc-4 .icon-wrapper { background: rgba(162, 196, 201, 0.2); color: #7AADB4; }

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Gallery --- */
.gallery {
  padding: var(--section-padding) 0;
  background: radial-gradient(circle at center, white 0%, var(--bg-cream) 100%);
  content-visibility: auto;
  contain-intrinsic-size: 980px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px 40px 20px 40px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  cursor: pointer;
}

.gallery-item:nth-child(2) {
  border-radius: 40px 20px 40px 20px;
  transform: translateY(20px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 60, 49, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.gallery-overlay h3 {
  color: white;
  font-size: 1.4rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

/* --- Reviews --- */
.reviews {
  padding: var(--section-padding) 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 1100px;
}

.reviews::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 201, 74, 0.07) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: white;
  border-radius: var(--radius-organic);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translateY(-6px);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--sun-yellow);
  opacity: 0.4;
}

.review-card.skeleton {
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.review-stars span {
  color: #E5A91A;
  font-size: 1.1rem;
}

.review-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.reviewer-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Skeleton loader */
.skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, #f0ede8 25%, #f8f5f0 50%, #f0ede8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.skeleton-line.short { width: 40%; }
.skeleton-line.medium { width: 70%; }

/* Reviews actions */
.reviews-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.review-form-toggle {
  background: none;
  border: none;
  color: var(--warm-peach);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: color 0.2s;
}

.review-form-toggle:hover {
  color: var(--text-bark);
}

.review-form-wrap {
  max-width: 600px;
  margin: 2.5rem auto 0;
  background: white;
  border-radius: 28px 8px 28px 8px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  display: none;
}

.review-form-wrap.open {
  display: block;
}

.review-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.review-form-wrap > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* --- Star Picker --- */
.star-picker {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.star-picker span {
  font-size: 2rem;
  cursor: pointer;
  color: #ddd;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}

.star-picker span.lit {
  color: #E5A91A;
}

.star-picker span:hover {
  transform: scale(1.2);
}

/* --- Form Groups --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-bark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid rgba(74, 60, 49, 0.12);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-bark);
  background: var(--bg-cream);
  transition: border-color 0.3s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sun-yellow);
  box-shadow: 0 0 0 3px rgba(255, 201, 74, 0.15);
}

.form-group input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  accent-color: var(--sun-yellow);
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.form-group .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.form-group .consent-row label {
  display: inline;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
  cursor: pointer;
}

.form-group .consent-row a {
  color: var(--warm-peach);
  text-decoration: underline;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  background: rgba(129, 162, 99, 0.12);
  color: var(--soft-sage);
  display: block;
}

.form-status.error {
  background: rgba(255, 155, 113, 0.12);
  color: var(--warm-peach);
  display: block;
}

.form-error-msg {
  font-size: 0.875rem;
  color: var(--warm-peach);
  margin-top: 0.5rem;
  display: block;
}

/* --- Contact Section --- */
.contact-section {
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap {
  background: white;
  border-radius: 28px 8px 28px 8px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-form-wrap h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  border-radius: var(--radius-organic);
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h3 i,
.info-card h3 svg {
  color: var(--warm-peach);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* --- About Page --- */
.about-intro {
  padding: var(--section-padding) 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.about-image img {
  border-radius: 28px 8px 28px 8px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Values Section */
.values-section {
  padding: var(--section-padding) 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-organic);
  background: var(--bg-cream);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Schedule Section */
.schedule-section {
  padding: var(--section-padding) 0;
}

.schedule-list {
  max-width: 700px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px dashed rgba(74, 60, 49, 0.12);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm-peach);
  min-width: 56px;
}

.schedule-desc {
  color: var(--text-bark);
  font-size: 0.98rem;
}

/* Hours Section */
.hours-section {
  padding: var(--section-padding) 0;
  background: white;
}

.hours-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-cream);
  border-radius: 28px 8px 28px 8px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.hours-card h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: white;
  font-size: 0.95rem;
}

/* Location Section */
.location-section {
  padding: var(--section-padding) 0;
}

.location-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: var(--radius-organic);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.location-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.location-card p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* --- CTA Section --- */
.cta-section {
  padding: 6rem 2rem;
  background-color: var(--warm-peach);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 40px 40px 0 0;
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.cta-shape {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}

.cta-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -50px;
}

.cta-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 10%;
}

/* --- Error Page --- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) 2rem;
}

.error-content {
  text-align: center;
  max-width: 500px;
}

.error-icon {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--sun-yellow);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.error-content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.error-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* --- Footer --- */
footer {
  background-color: var(--text-bark);
  color: rgba(255,255,255,0.8);
  padding: 5rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-mark {
  height: clamp(2.9rem, 5vw, 4rem);
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  transition: color 0.3s;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.footer-links a:hover {
  color: var(--sun-yellow);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.contact-item i,
.contact-item svg {
  color: var(--warm-peach);
  flex-shrink: 0;
}

.footer-bottom {
  margin: 2rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--sun-yellow);
}

/* --- Prose Content (privacy / terms) --- */
.prose-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.prose-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--text-bark);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.prose-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}

.prose-content a {
  color: var(--warm-peach);
  text-decoration: underline;
}

.prose-content a:hover {
  color: var(--text-bark);
}

.prose-content strong {
  color: var(--text-bark);
  font-weight: 600;
}

.prose-content ul,
.prose-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.prose-content li {
  margin-bottom: 0.4rem;
  line-height: 1.75;
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 3px solid var(--sun-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Prefers Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .logo-mark {
    transition: none;
  }
}

/* ─── Responsive: Tablet & Mobile ─────────────────────── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .section-header {
    margin-bottom: 2.75rem;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 32rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .shape-cloud {
    width: 112px;
    top: 15%;
    left: 4%;
  }

  .shape-star {
    width: 68px;
    top: 17%;
    right: 8%;
  }

  .shape-flower {
    width: 88px;
    bottom: 14%;
    left: 6%;
  }

  .shape-rainbow {
    width: 128px;
    bottom: 11%;
    right: 4%;
  }

  .gallery-overlay {
    padding: 1.25rem;
  }

  .gallery-overlay h3 {
    transform: none;
  }

  .gallery-item:hover img {
    transform: none;
  }

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

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

  .gallery-item:nth-child(2) {
    transform: none;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    padding: 6.5rem 1.5rem 2.25rem;
  }

  .mobile-menu {
    padding: 1rem 1.5rem 1.25rem;
  }

  .cta-section {
    border-radius: 24px 24px 0 0;
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 3.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  #navbar {
    padding: 1rem 0;
  }

  .nav-content {
    gap: 0.75rem;
  }

  .logo {
    max-width: none;
  }

  .logo-mark {
    height: 2.1rem;
  }

  .footer-brand .logo-mark {
    height: 3rem;
  }

  .nav-controls {
    gap: 0.5rem;
  }

  .lang-toggle {
    padding: 0.2rem 0.55rem;
    font-size: 0.8rem;
  }

  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }

  #cookie-banner {
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .cookie-content {
    width: 100%;
    gap: 0.6rem 0.75rem;
  }

  .cookie-content span {
    flex: 1 1 100%;
  }

  .hero {
    min-height: auto;
    padding: 6.25rem 1.25rem 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.45rem, 12vw, 3.3rem);
  }

  .hero-p {
    margin-bottom: 2.25rem;
  }

  body::before {
    display: none;
  }

  .shape-wrap {
    opacity: 0.45;
  }

  .shape-flower,
  .shape-rainbow {
    display: none;
  }

  .feature-card,
  .review-card,
  .info-card,
  .location-card {
    box-shadow: 0 8px 20px rgba(0,0,0,0.035);
  }

  .shape-cloud {
    width: 72px;
    top: calc(5rem + 2%);
    left: 4%;
  }

  .shape-star {
    width: 48px;
    top: calc(5rem + 2%);
    right: 5%;
  }

  .shape-flower {
    width: 74px;
    bottom: 17%;
    left: 7%;
  }

  .shape-rainbow {
    width: 112px;
    bottom: 14%;
    right: 4%;
  }

  .page-hero {
    padding: 6rem 1.25rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .contact-form-wrap {
    padding: 1.75rem 1.25rem;
  }

  .review-form-wrap {
    padding: 1.75rem 1.25rem;
  }

  .hours-card {
    padding: 1.75rem 1.25rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .mobile-menu {
    padding: 1rem 1.25rem 1.25rem;
  }
}
