/* =============================================
   BRAVUM TECH — style.css
   ============================================= */

:root {
  --green: #00A651;
  --green-dark: #007d3d;
  --green-light: #e6f7ef;
  --green-mid: #b8ecd1;
  --navy: #0f2237;
  --navy-mid: #1a3550;
  --warm: #f8f5f0;
  --warm2: #fdfaf6;
  --text: #1e1e1e;
  --text-mid: #444;
  --text-light: #6b7280;
  --white: #ffffff;
  --border: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.13);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1220px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
blockquote { font-style: normal; }

/* ===== UTILS ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 5%; }
section, .section-aines, .section-steps, .section-dark, .section-gallery, .section-temoignages, .section-cta, .quick-services { padding: 88px 0; }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

.section-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-badge--light { background: rgba(0,166,81,0.18); color: #5dffa0; }

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { color: var(--green); font-style: italic; }

.section-sub { font-size: 1rem; color: var(--text-light); max-width: 560px; line-height: 1.8; }
.section-sub--light { color: rgba(255,255,255,0.6); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white;
  padding: 15px 30px; border-radius: 50px;
  font-size: 0.97rem; font-weight: 700; text-decoration: none;
  transition: all 0.22s; box-shadow: 0 4px 20px rgba(0,166,81,0.3);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,166,81,0.38); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--navy);
  padding: 15px 28px; border-radius: 50px;
  font-size: 0.97rem; font-weight: 700; text-decoration: none;
  border: 2px solid var(--border); transition: all 0.22s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--green);
  padding: 15px 28px; border-radius: 50px;
  font-size: 0.97rem; font-weight: 700; text-decoration: none;
  border: 2px solid var(--green); transition: all 0.22s;
}
.btn-call:hover { background: var(--green); color: white; transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: white;
  padding: 15px 28px; border-radius: 50px;
  font-size: 0.97rem; font-weight: 700; text-decoration: none;
  transition: all 0.22s; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1aab50; transform: translateY(-2px); }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,166,81,0.1);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 5%;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { text-decoration: none; color: var(--text-mid); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-phone { color: var(--green) !important; font-weight: 700 !important; }
.nav-cta { background: var(--green); color: white !important; padding: 10px 22px; border-radius: 50px; font-weight: 700 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--green-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding-top: var(--nav-h);
  background: var(--warm2); overflow: hidden; position: relative;
}
#hero::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,166,81,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { padding: 80px 5% 80px 8%; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green-dark);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800; line-height: 1.12; color: var(--navy); margin-bottom: 20px;
}
.hero-title em { color: var(--green); font-style: italic; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 480px; line-height: 1.8; margin-bottom: 36px; }
.hero-subtitle strong { color: var(--navy); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; color: var(--text-light); font-weight: 500; }
.t-icon { font-size: 1rem; }

.hero-image { position: relative; height: 100%; min-height: 600px; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-float {
  position: absolute; bottom: 32px; left: 28px;
  background: white; border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hbf-icon { width: 48px; height: 48px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.hbf-text strong { display: block; font-size: 0.92rem; color: var(--navy); font-weight: 700; }
.hbf-text span { font-size: 0.78rem; color: var(--text-light); }

/* ===== QUICK SERVICES ===== */
.quick-services { background: var(--navy); padding: 64px 0; }
.qs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.qs-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 30px 24px;
  text-decoration: none; transition: all 0.22s; display: block;
}
.qs-card:hover { background: rgba(0,166,81,0.12); border-color: var(--green); transform: translateY(-3px); }
.qs-card--accent { background: rgba(0,166,81,0.1); border-color: rgba(0,166,81,0.3); }
.qs-icon { font-size: 2rem; margin-bottom: 14px; }
.qs-card h2 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.qs-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
.qs-link { font-size: 0.82rem; color: var(--green); font-weight: 700; }

/* ===== AÎNÉS ===== */
.section-aines { background: var(--white); }
.aines-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.aines-images { display: grid; grid-template-rows: auto auto; gap: 14px; }
.ai-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.ai-main img { width: 100%; height: 320px; object-fit: cover; }
.ai-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ai-secondary img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }

.content-title { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.content-title em { color: var(--green); font-style: italic; }
.content-desc { color: var(--text-light); margin-bottom: 24px; }

.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.service-item { display: flex; align-items: flex-start; gap: 12px; background: var(--warm); border-radius: var(--radius-sm); padding: 16px; border-left: 3px solid var(--green); transition: box-shadow 0.2s; }
.service-item:hover { box-shadow: var(--shadow-sm); }
.si-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.service-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.service-item p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

.aines-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== STEPS ===== */
.section-steps { background: var(--green-light); }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 16px; align-items: start; margin-top: 56px; }
.step-item { text-align: center; }
.step-num {
  width: 72px; height: 72px; background: white; border: 3px solid var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 700; color: var(--green);
  margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(0,166,81,0.2);
}
.step-item h3 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }
.step-connector { font-size: 1.5rem; color: var(--green); opacity: 0.4; margin-top: 24px; font-weight: 300; }

/* ===== DARK SECTION ===== */
.section-dark { background: var(--navy); color: white; }
.section-dark .section-title { color: white; }

.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: var(--radius); overflow: hidden; margin: 52px 0; }
.stat-box { background: rgba(255,255,255,0.03); padding: 40px 20px; text-align: center; transition: background 0.2s; }
.stat-box:hover { background: rgba(0,166,81,0.14); }
.stat-num { display: block; font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.stat-label { font-size: 0.83rem; color: rgba(255,255,255,0.5); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 32px 28px; transition: border-color 0.2s, background 0.2s; }
.value-card:hover { border-color: var(--green); background: rgba(0,166,81,0.08); }
.vc-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 10px; }
.value-card p { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== GALLERY ===== */
.section-gallery { background: var(--warm); }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 14px; border-radius: var(--radius); overflow: hidden; }
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item--tall { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.55)); padding: 20px 16px 14px; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 0.82rem; font-weight: 600; }

/* ===== TÉMOIGNAGES ===== */
.section-temoignages { background: var(--warm2); }
.temo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.temo-card { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); position: relative; transition: transform 0.2s; }
.temo-card:hover { transform: translateY(-4px); }
.temo-card--featured { border: 2px solid var(--green); }
.temo-card::before { content: '"'; position: absolute; top: 16px; left: 22px; font-family: 'Fraunces', serif; font-size: 4.5rem; color: var(--green-mid); line-height: 1; pointer-events: none; }
.temo-stars { color: #f59e0b; font-size: 0.95rem; margin-bottom: 16px; margin-top: 22px; }
.temo-card blockquote p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.temo-author { display: flex; align-items: center; gap: 12px; }
.temo-av { width: 44px; height: 44px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--green-dark); font-size: 0.88rem; flex-shrink: 0; }
.temo-info strong { display: block; font-size: 0.88rem; color: var(--navy); font-weight: 700; }
.temo-info span { font-size: 0.78rem; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.section-cta { background: var(--white); padding: 72px 0; }
.cta-box { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; background: var(--navy); border-radius: var(--radius); overflow: hidden; }
.cta-image img { width: 100%; height: 440px; object-fit: cover; }
.cta-content { padding: 48px 48px 48px 0; }
.cta-title { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 16px; }
.cta-title em { color: var(--green); font-style: italic; }
.cta-content p { color: rgba(255,255,255,0.6); margin-bottom: 32px; line-height: 1.75; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: white; padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 52px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; margin-bottom: 22px; }

.social-links { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--green); color: white; transform: translateY(-2px); }

.footer-col h3 { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.84rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--green); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green); }

/* ===== STICKY ===== */
.sticky-btns { position: fixed; bottom: 26px; right: 26px; z-index: 999; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.sticky-btn { display: flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: all 0.22s; }
.sticky-wa { background: #25d366; color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.sticky-wa:hover { background: #1aab50; transform: translateY(-2px); }
.sticky-phone { background: var(--green); color: white; box-shadow: 0 4px 20px rgba(0,166,81,0.4); }
.sticky-phone:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--navy); color: white; padding: 120px 0 72px; text-align: center; }
.page-hero .section-title { color: white; font-size: clamp(2rem, 3.5vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 580px; margin: 16px auto 0; font-size: 1.05rem; line-height: 1.75; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }

/* ===== FORM ===== */
.contact-form { background: white; border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--warm); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); background: white; }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit { width: 100%; background: var(--green); color: white; border: none; padding: 16px; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.22s; box-shadow: 0 4px 20px rgba(0,166,81,0.3); }
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 820px; margin: 0 auto; padding: 80px 5%; }
.legal-content h1 { font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--navy); margin-bottom: 8px; }
.legal-content .meta { color: var(--text-light); font-size: 0.85rem; margin-bottom: 48px; }
.legal-content h2 { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--navy); margin: 40px 0 14px; }
.legal-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--green); }

/* ===== MAP ===== */
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-container iframe { width: 100%; height: 420px; border: none; display: block; }

/* ===== ZONES GRID ===== */
.zones-tags { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-bottom: 32px; }
.zone-tag { display: flex; align-items: center; gap: 8px; background: var(--green-light); padding: 10px 16px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500; color: var(--navy); transition: background 0.2s; }
.zone-tag:hover { background: var(--green-mid); }

/* ===== RESERVATION ===== */
.reservation-wrap { background: linear-gradient(135deg, var(--navy) 0%, #0b3320 100%); padding: 88px 0; }
.reservation-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 48px; max-width: 860px; margin: 0 auto; }
.calendar-embed { background: white; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 32px; }
.calendar-embed iframe { width: 100%; height: 620px; border: none; display: block; }
.res-alt { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .qs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  html { font-size: 16px; }
  section, .section-aines, .section-steps, .section-dark, .section-gallery, .section-temoignages, .section-cta, .quick-services { padding: 64px 0; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 48px 5% 36px; }
  .hero-image { min-height: 340px; }
  .aines-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .temo-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item--tall { grid-row: auto; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-image img { height: 280px; }
  .cta-content { padding: 36px 36px; }
}

@media (max-width: 700px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: white; flex-direction: column; padding: 24px 5%; gap: 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .qs-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-btns { bottom: 16px; right: 16px; gap: 8px; }
  .sticky-btn { font-size: 0.82rem; padding: 11px 18px; }
  .cta-content { padding: 28px 24px; }
  .reservation-box { padding: 24px; }
}

/* ===== ANIMATE ON SCROLL ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
