/*
Theme Name: Emelyn Droomtentjes
Theme URI: https://emelyndroomtentjes.nl
Author: Emelyn Droomtentjes
Author URI: https://emelyndroomtentjes.nl
Description: Luxe tipi slaapfeestjes WordPress thema — boutique, warm en elegant. Volledig aanpasbaar via de Customizer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emelyn-droomtentjes
Tags: one-page, custom-logo, custom-colors, featured-images
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #FAF7F2;
  --blush: #E8C4C4;
  --blush-light: #F2DEDE;
  --naturel: #D4C5B2;
  --naturel-light: #E8DED2;
  --gold: #C9A96E;
  --gold-light: #D4BA8A;
  --brown: #3D3229;
  --brown-light: #6B5D50;
  --white: #FFFFFF;
  --warm-white: #FFFCF8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --section-pad: clamp(60px, 10vw, 120px);
  --container: min(1200px, 90vw);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(61,50,41,0.06);
}
.nav.scrolled {
  background: rgba(255,252,248,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(61,50,41,0.06);
  padding: 14px 5vw;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.02em;
  transition: color 0.4s;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 200px;
  width: auto;
  transition: opacity 0.4s;
  margin: -20px 0;
}
.nav-logo-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--brown-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span {
  width: 24px; height: 1.5px; background: var(--brown);
  transition: background 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 5vw;
  background: none; border: none;
  font-size: 2rem; color: var(--brown);
  cursor: pointer;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg.no-image {
  background: linear-gradient(135deg, #E8DED2 0%, #F2DEDE 30%, #E8DED2 60%, #D4C5B2 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(232,196,196,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 55%, rgba(201,169,110,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(250,247,242,0.3) 0%, transparent 40%);
}
.hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 45%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><polygon points="180,400 260,80 340,400" fill="%233D3229" opacity="0.03"/><polygon points="380,400 480,50 580,400" fill="%233D3229" opacity="0.02"/><polygon points="620,400 720,90 820,400" fill="%233D3229" opacity="0.03"/><polygon points="840,400 930,60 1020,400" fill="%233D3229" opacity="0.02"/></svg>') no-repeat bottom center;
  background-size: 100% auto;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 50px 50px 45px;
  background: rgba(250, 247, 242, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  border: 1px solid rgba(212, 197, 178, 0.25);
}
.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--brown);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero-content h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--brown-light);
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--brown-light);
  opacity: 0.5;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}
.scroll-line {
  width: 1px; height: 40px; background: var(--brown-light);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--brown);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,110,0.3); }
.btn-outline-dark { background: transparent; color: var(--brown); border: 1px solid rgba(61,50,41,0.3); }
.btn-outline-dark:hover { background: rgba(61,50,41,0.06); border-color: rgba(61,50,41,0.5); }
.btn-dark { background: var(--brown); color: var(--cream); }
.btn-dark:hover { background: var(--brown-light); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── TRUST STRIP ─── */
.trust {
  padding: 50px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(212,197,178,0.3);
}
.trust-grid {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; text-align: center;
}
.trust-item { padding: 20px; }
.trust-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 14px; }
.trust-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  margin-bottom: 8px; color: var(--brown);
}
.trust-text { font-size: 0.9rem; color: var(--brown-light); line-height: 1.6; }

/* ─── SECTIONS GENERAL ─── */
.section { padding: var(--section-pad) 0; }
.container { width: var(--container); margin: 0 auto; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px; font-weight: 300;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--brown-light);
  max-width: 600px; line-height: 1.7;
}

/* ─── STORY ─── */
.story { background: var(--cream); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.story-img {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--naturel-light), var(--blush-light));
  border-radius: 4px;
  position: relative; overflow: hidden;
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 4px;
}
.story-img-placeholder::before {
  content: '✦';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem; color: var(--gold); opacity: 0.3;
}
.story-img-label {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,252,248,0.85);
  backdrop-filter: blur(6px);
  padding: 10px 18px;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brown-light);
  border-radius: 2px;
}
.story-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px; font-weight: 300;
}
.story-text h2 em { font-weight: 400; color: var(--gold); }
.story-text p {
  color: var(--brown-light);
  margin-bottom: 16px; font-size: 1rem; line-height: 1.8;
}
.story-sign {
  font-family: var(--font-display);
  font-size: 1.2rem; font-style: italic;
  color: var(--gold); margin-top: 28px;
}

/* ─── HOW IT WORKS ─── */
.how { background: var(--white); }
.how .container { text-align: center; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 50px; margin-top: 60px;
}
.step { text-align: center; }
.step-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--naturel-light), var(--blush-light));
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--gold); font-weight: 300;
  position: relative;
}
.step-circle::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid var(--naturel); opacity: 0.4;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 400; }
.step p {
  font-size: 0.92rem; color: var(--brown-light);
  line-height: 1.6; max-width: 280px; margin: 0 auto;
}

/* ─── THEMES ─── */
.themes { background: var(--cream); }
.theme-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px; margin-top: 50px;
}
.theme-card {
  position: relative; border-radius: 4px;
  overflow: hidden; cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(61,50,41,0.12);
}
.theme-img {
  aspect-ratio: 3/2; position: relative; overflow: hidden;
}
.theme-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.theme-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.theme-card:first-child .theme-img { background: linear-gradient(145deg, #D4C5B2, #E8C4C4, #D4BA8A); }
.theme-card:last-child .theme-img { background: linear-gradient(145deg, #D4C5B2, #C9B896, #BEB5A5); }
.theme-info { padding: 28px 30px; background: var(--white); }
.theme-name { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.theme-desc { font-size: 0.9rem; color: var(--brown-light); line-height: 1.6; margin-bottom: 16px; }
.theme-link {
  font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s;
}
.theme-card:hover .theme-link { gap: 12px; }
.badge-soon {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,252,248,0.9);
  backdrop-filter: blur(6px);
  padding: 6px 14px; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brown-light); border-radius: 2px; z-index: 2;
}

/* ─── PACKAGES ─── */
.packages { background: var(--white); }
.packages .container { text-align: center; }
.package-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 50px; align-items: start;
}
.package-card {
  background: var(--cream); border-radius: 4px;
  padding: 40px 30px 36px; position: relative;
  border: 1px solid rgba(212,197,178,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(61,50,41,0.08);
}
.package-card.featured {
  background: var(--warm-white);
  border: 2px solid var(--gold);
  padding-top: 50px; transform: scale(1.04);
}
.package-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.package-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  padding: 6px 20px; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; border-radius: 0 0 4px 4px;
}
.package-name { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 6px; }
.package-tents { font-size: 0.85rem; color: var(--brown-light); margin-bottom: 24px; }
.package-price {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300; color: var(--brown); margin-bottom: 4px;
}
.package-pp { font-size: 0.8rem; color: var(--brown-light); margin-bottom: 28px; }
.package-card .btn { width: 100%; text-align: center; }
.package-extra-tent {
  margin-top: 40px; padding: 20px 30px;
  background: var(--cream); border-radius: 4px;
  border: 1px dashed var(--naturel); display: inline-block;
}
.package-extra-tent span { font-family: var(--font-display); font-size: 1.1rem; }
.included {
  margin-top: 50px; padding: 40px;
  background: var(--cream); border-radius: 4px; text-align: center;
}
.included h3 { font-size: 1.3rem; margin-bottom: 16px; }
.included p {
  font-size: 0.92rem; color: var(--brown-light);
  max-width: 700px; margin: 0 auto; line-height: 1.8;
}

/* ─── EXTRAS ─── */
.extras { background: var(--cream); }
.extras-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; margin-top: 50px;
}
.extra-card {
  background: var(--white); border-radius: 4px;
  padding: 36px 30px; text-align: center;
  border: 1px solid rgba(212,197,178,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(61,50,41,0.08);
}
.extra-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--naturel-light), var(--blush-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem;
}
.extra-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 6px; }
.extra-price { color: var(--gold); font-weight: 600; font-size: 1.1rem; margin-bottom: 14px; }
.extra-desc { font-size: 0.88rem; color: var(--brown-light); line-height: 1.6; }

/* ─── HYGIENE ─── */
.hygiene {
  background: var(--warm-white);
  border-top: 1px solid rgba(212,197,178,0.2);
  border-bottom: 1px solid rgba(212,197,178,0.2);
}
.hygiene .container { text-align: center; }
.hygiene-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px; margin-top: 50px; text-align: left;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.hygiene-item { display: flex; gap: 16px; align-items: flex-start; }
.hygiene-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: linear-gradient(135deg, var(--naturel-light), var(--cream));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.hygiene-item p { font-size: 0.92rem; color: var(--brown-light); line-height: 1.6; }
.hygiene-item strong { color: var(--brown); font-weight: 500; }

/* ─── FAQ ─── */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid rgba(212,197,178,0.3); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 0;
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--brown); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  font-size: 1.4rem; color: var(--gold);
  transition: transform 0.3s; min-width: 20px; text-align: center;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a p { font-size: 0.92rem; color: var(--brown-light); line-height: 1.7; }

/* ─── FORM ─── */
.form-section { background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brown-light); margin-bottom: 6px; font-weight: 500;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--naturel-light);
  background: var(--white); border-radius: 2px;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--brown); outline: none;
  transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--gold); }
.form-select {
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path d="M1 1l5 5 5-5" stroke="%23C9A96E" stroke-width="1.5" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-checkbox-group { display: flex; gap: 20px; flex-wrap: wrap; padding: 8px 0; }
.form-checkbox-group label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--brown-light); cursor: pointer;
}
.form-checkbox-group input { accent-color: var(--gold); width: 16px; height: 16px; }
textarea.form-input { resize: vertical; }
.form-thanks { padding: 60px 20px; text-align: center; display: none; }
.form-thanks .icon { font-size: 3rem; margin-bottom: 20px; }
.form-thanks h3 {
  font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 12px;
}
.form-thanks p { color: var(--brown-light); line-height: 1.7; }

/* ─── FINAL CTA ─── */
.final-cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--brown) 0%, #4A3D32 100%);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><circle cx="200" cy="200" r="150" fill="%23C9A96E" opacity="0.04"/><circle cx="600" cy="180" r="200" fill="%23E8C4C4" opacity="0.03"/></svg>');
  background-size: cover;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream); font-weight: 300; margin-bottom: 16px;
}
.final-cta p { color: rgba(250,247,242,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.final-cta-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; align-items: center;
}
.whatsapp-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(250,247,242,0.7); font-size: 0.9rem; transition: color 0.3s;
}
.whatsapp-link:hover { color: var(--cream); }

/* ─── FOOTER ─── */
.site-footer {
  padding: 60px 0 30px;
  background: var(--brown);
  color: rgba(250,247,242,0.6);
}
.footer-grid {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo-img { height: 80px; width: auto; margin-bottom: 14px; filter: brightness(1.15); }
.footer-brand-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--cream); margin-bottom: 10px; letter-spacing: 0.02em; }
.footer-brand-text { font-size: 0.88rem; line-height: 1.7; }
.site-footer h4 {
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; font-family: var(--font-body); font-weight: 500;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  width: var(--container); margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(250,247,242,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 99;
  width: 56px; height: 56px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(201,169,110,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img { max-height: 350px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .theme-cards { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-4px); }
  .extras-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .hygiene-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-content { padding: 35px 25px 30px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── WP DEFAULTS ─── */
.wp-block-image img { height: auto; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
