:root {
  --primary: #5c6e58;
  --primary-dark: #3d4a3a;
  --secondary: #c5a880;
  --accent: #8b7355;
  --bg: #fcf9f2;
  --bg-white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #666;
  --text-light: #ffffff;
  --border: #e8e0d0;
  --shadow: 0 4px 20px rgba(92,110,88,0.12);
  --shadow-lg: 0 10px 40px rgba(92,110,88,0.18);
  --radius: 12px;
  --radius-pill: 100px;
}

.skip-link {
  position: absolute; left: -9999px; top: auto;
  padding: 0.5rem 1rem; background: var(--primary); color: white;
  text-decoration: none; font-size: 0.9rem; z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; position: fixed; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 5%;
  background: rgba(252,249,242,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled { border-color: var(--border); box-shadow: var(--shadow); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; letter-spacing: 3px;
  color: var(--primary); font-weight: 600;
  cursor: pointer;
}
.nav-logo span { color: var(--secondary); }

.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 500; color: var(--text);
  position: relative; padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ── LANG SWITCHER ── */
.lang-switcher { display: flex; flex-direction: column; gap: 0.3rem; }
.lang-row { display: flex; gap: 0.3rem; }
.lang-btn {
  font-size: 0.65rem; padding: 0.18rem 0.45rem;
  border: 1px solid var(--border); border-radius: 4px;
  background: transparent; cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s; color: var(--text-muted);
  white-space: nowrap;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--primary); color: white; border-color: var(--primary);
}

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE SYSTEM ── */
.page { display: none; min-height: calc(100vh - 80px); padding-top: 80px; animation: fadeUp 0.4s ease; }
.page.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; padding: 0 5%;
  background:
    linear-gradient(to right, rgba(252,249,242,0.97) 40%, rgba(252,249,242,0.55) 70%, transparent 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070') center/cover no-repeat;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 4px;
  color: var(--secondary); margin-bottom: 1.2rem; font-weight: 500;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); color: var(--primary); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--secondary); font-style: italic; }
.hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px;
  transition: all 0.3s; cursor: pointer; border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 8px 20px rgba(92,110,88,0.25);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(92,110,88,0.3); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: var(--accent); transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 5rem 5%; }
.section-tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--secondary); font-weight: 500;
  margin-bottom: 0.8rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--primary); margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); font-size: 1.02rem; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem; margin-top: 3.5rem;
}
.card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-arch {
  width: 80%; height: 260px; object-fit: cover;
  border-radius: 200px 200px 0 0;
  display: block; margin: 1.5rem auto 0;
}
.card-body { padding: 1.5rem 1.8rem 2rem; }
.card-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.card-title { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.6rem; }
.card-text { color: var(--text-muted); font-size: 0.92rem; }

/* ── EVENT CARD (unified) ── */
.event-card {
  background: white; border-radius: var(--radius); padding: 1.2rem 1.5rem;
  margin-bottom: 0.8rem; display: flex; gap: 1.5rem; align-items: center;
  box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer; position: relative; overflow: hidden;
}
.event-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--secondary);
}
.event-card.type-yoga::before { background: var(--primary); }
.event-card.type-dream::before { background: #8b5cf6; }
.event-card.type-creative::before { background: var(--secondary); }
.event-card.type-lake::before { background: #0891b2; }
.event-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.event-card .event-date {
  background: var(--primary); color: white; border-radius: 10px;
  padding: 0.6rem 0.9rem; text-align: center; min-width: 58px; flex-shrink: 0;
}
.event-card.type-dream .event-date { background: #7c3aed; }
.event-card.type-creative .event-date { background: var(--accent); }
.event-card.type-lake .event-date { background: #0e7490; }
.event-date .day { font-size: 1.4rem; font-family: 'Playfair Display', serif; line-height: 1; }
.event-date .month { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.event-info { flex: 1; }
.event-info h4 { color: var(--primary); margin-bottom: 0.15rem; font-size: 1rem; }
.event-info p { font-size: 0.85rem; color: var(--text-muted); }
.event-type-badge {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
  padding: 0.18rem 0.6rem; border-radius: var(--radius-pill); flex-shrink: 0;
}
.event-type-badge.yoga { background: rgba(92,110,88,0.1); color: var(--primary); }
.event-type-badge.dream { background: rgba(124,58,237,0.1); color: #7c3aed; }
.event-type-badge.creative { background: rgba(139,115,85,0.1); color: var(--accent); }
.event-type-badge.lake { background: rgba(14,116,144,0.1); color: #0e7490; }
.event-price { font-size: 0.8rem; font-weight: 600; color: var(--primary); margin-top: 0.3rem; }
.event-cta {
  font-size: 0.75rem; color: var(--secondary); font-weight: 500;
  display: flex; align-items: center; gap: 0.3rem; margin-top: 0.4rem;
  transition: color 0.2s;
}
.event-cta:hover { color: var(--primary); }

/* ── MINI CALENDAR FLOTTANT ── */
#mini-cal {
  position: fixed; top: 85px; right: 2%;
  z-index: 900; width: 300px;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: translateX(calc(100% + 30px));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  opacity: 0; pointer-events: none;
  font-size: 0.85rem;
}
#mini-cal.visible { transform: translateX(0); opacity: 1; pointer-events: all; }

#mini-cal-toggle {
  position: fixed; top: 90px; right: 2%;
  z-index: 901;
  background: var(--primary); color: white;
  border: none; border-radius: var(--radius-pill);
  padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 500;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  box-shadow: var(--shadow); transition: all 0.25s;
  display: flex; align-items: center; gap: 0.4rem;
  opacity: 0; pointer-events: none;
  letter-spacing: 0.5px;
}
#mini-cal-toggle.scrolled-show { opacity: 1; pointer-events: all; }
#mini-cal-toggle:hover { background: var(--primary-dark); transform: scale(1.05); }

#mini-cal .cal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem 0.6rem;
  border-bottom: 1px solid var(--border);
}
#mini-cal .cal-header h4 { font-size: 0.9rem; color: var(--primary); }
#mini-cal .cal-nav { display: flex; gap: 0.3rem; }
#mini-cal .cal-nav button {
  background: none; border: 1px solid var(--border); border-radius: 6px;
  width: 26px; height: 26px; cursor: pointer; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.2s;
}
#mini-cal .cal-nav button:hover { background: var(--primary); color: white; border-color: var(--primary); }
#mini-cal .cal-grid { padding: 0.8rem 1rem; }
#mini-cal .cal-days-header {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; margin-bottom: 0.4rem;
}
#mini-cal .cal-days-header span { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; padding: 0.2rem 0; }
#mini-cal .cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
#mini-cal .cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; cursor: pointer; font-size: 0.78rem;
  transition: all 0.15s; color: var(--text);
  position: relative;
}
#mini-cal .cal-day:hover { background: var(--bg); }
#mini-cal .cal-day.today {
  background: var(--primary); color: white; font-weight: 600;
}
#mini-cal .cal-day.has-event::after {
  content: ''; position: absolute; bottom: 2px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--secondary);
}
#mini-cal .cal-day.today.has-event::after { background: var(--bg); }
#mini-cal .cal-day.other-month { color: var(--border); }
#mini-cal .cal-event-list {
  border-top: 1px solid var(--border); padding: 0.8rem 1rem 1rem;
  max-height: 160px; overflow-y: auto;
}
#mini-cal .cal-event-list p { font-size: 0.75rem; color: var(--text-muted); font-style: italic; }
#mini-cal .mini-event {
  font-size: 0.78rem; padding: 0.35rem 0.6rem; margin-bottom: 0.3rem;
  border-radius: 6px; background: var(--bg);
  display: flex; align-items: center; gap: 0.5rem;
}
#mini-cal .mini-event-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Multi-mois selector dans mini-cal */
#mini-cal .cal-month-tabs {
  display: flex; gap: 0.3rem; padding: 0.5rem 1rem;
  overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid var(--border);
}
#mini-cal .cal-month-tabs::-webkit-scrollbar { display: none; }
#mini-cal .cal-month-tab {
  white-space: nowrap; padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill); font-size: 0.7rem;
  border: 1px solid var(--border); cursor: pointer;
  background: transparent; font-family: 'Outfit', sans-serif;
  color: var(--text-muted); transition: all 0.2s; flex-shrink: 0;
}
#mini-cal .cal-month-tab.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ── WELCOME BANNER ── */
.welcome-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white; padding: 5rem 5%; text-align: center;
}
.welcome-symbol { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.7; }
.welcome-banner h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1.5rem; }
.welcome-banner p { font-size: 1.05rem; opacity: 0.85; max-width: 750px; margin: 0 auto 1rem; }

/* ── SCHEDULE TABLE ── */
.schedule-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: 0.92rem; }
.schedule-table th {
  background: var(--primary); color: white;
  padding: 0.8rem 1.2rem; text-align: left;
  font-family: 'Outfit', sans-serif; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px; font-size: 0.78rem;
}
.schedule-table td { padding: 0.85rem 1.2rem; border-bottom: 1px solid var(--border); }
.schedule-table tr:hover td { background: var(--bg); }
.badge {
  display: inline-block; padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 500;
}
.badge-green { background: rgba(92,110,88,0.12); color: var(--primary); }
.badge-gold { background: rgba(197,168,128,0.18); color: var(--accent); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.price-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center; transition: all 0.3s;
}
.price-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.price-card.featured { background: var(--primary); color: white; border-color: var(--primary); }
.price-card.featured .price-amount, .price-card.featured .price-label { color: white; }
.price-card.featured .price-detail { color: rgba(255,255,255,0.7); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.3rem; color: var(--primary); }
.price-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }
.price-detail { font-size: 0.82rem; margin-top: 0.8rem; opacity: 0.8; }

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--bg); border-left: 4px solid var(--secondary);
  padding: 2rem 2.5rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem; font-style: italic; color: var(--text-muted);
  font-size: 0.97rem; line-height: 1.8; max-width: 750px;
}
.testimonial-author { font-style: normal; font-weight: 600; color: var(--primary); margin-top: 1rem; font-size: 0.9rem; }

/* ── FORM ── */
.form-section { background: white; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 0.83rem; font-weight: 500; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'Outfit', sans-serif;
  font-size: 0.92rem; transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--bg);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92,110,88,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; background: rgba(92,110,88,0.08); border: 1px solid var(--primary);
  color: var(--primary); padding: 0.9rem 1.4rem; border-radius: var(--radius); margin-top: 1rem;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-info h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item p { font-size: 0.92rem; color: var(--text-muted); }
.contact-item strong { display: block; color: var(--text); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--primary); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.about-pillar { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.about-pillar-icon { font-size: 1.8rem; flex-shrink: 0; }
.about-pillar h4 { color: var(--primary); margin-bottom: 0.3rem; font-size: 1.05rem; }
.about-pillar p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ── CALENDAR PAGE ── */
.calendar-section { background: var(--bg); padding: 2rem 5% 5rem; }
.calendar-filters {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.4rem 1rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border); background: transparent;
  font-family: 'Outfit', sans-serif; font-size: 0.78rem; cursor: pointer;
  transition: all 0.2s; color: var(--text-muted); font-weight: 500;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary); color: white; border-color: var(--primary);
}
.filter-btn.dream.active { background: #7c3aed; border-color: #7c3aed; }
.filter-btn.creative.active { background: var(--accent); border-color: var(--accent); }
.filter-btn.lake.active { background: #0e7490; border-color: #0e7490; }

.calendar-month { margin-bottom: 3rem; }
.calendar-month-title {
  font-size: 1.3rem; color: var(--primary);
  border-bottom: 2px solid var(--secondary); padding-bottom: 0.5rem; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}

/* ── LEGAL ── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h3 { color: var(--primary); margin: 2rem 0 0.8rem; font-size: 1.25rem; }
.legal-content p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.93rem; }
.legal-content ul { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.4rem; font-size: 0.93rem; }

/* ── ADMIN BAR ── */
.admin-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--primary-dark); color: white;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 2rem; font-size: 0.8rem;
  transform: translateY(100%); transition: transform 0.3s;
}
.admin-bar.visible { transform: translateY(0); }
.admin-bar a { color: var(--secondary); margin-left: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.8);
  padding: 4rem 5% 2.5rem;
  /* No margin-bottom needed — admin-bar is position:fixed, not in flow */
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: var(--secondary); font-size: 1.8rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; opacity: 0.7; max-width: 300px; }
footer h4 { color: white; margin-bottom: 1.2rem; font-size: 0.9rem; font-family: 'Outfit', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul a { font-size: 0.85rem; opacity: 0.7; transition: opacity 0.2s; cursor: pointer; }
footer ul a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; opacity: 0.5;
}
.footer-yt {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); padding: 0.5rem 1rem;
  border-radius: var(--radius-pill); margin-top: 1rem;
  font-size: 0.82rem; transition: background 0.2s;
}
.footer-yt:hover { background: rgba(255,255,255,0.2); }

/* ── VIDEO ── */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── MOBILE ── */
@media (max-width: 960px) {
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg); flex-direction: column;
    justify-content: center; align-items: center; gap: 2rem; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .hero {
    background: linear-gradient(to bottom, rgba(252,249,242,0.98) 55%, rgba(252,249,242,0.85) 100%),
      url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070') center/cover;
    min-height: 100svh;
  }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  #mini-cal { width: 260px; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 5%; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .lang-switcher { display: none; }
  #mini-cal-toggle { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
