/* ========================================
   LIBERAE v2 — Direction : Liberté / Vie / Nature
   Fini les dashboards. On montre ce que l'IA vous rend : la vie.
   ======================================== */

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

:root {
  --purple:       #7B5CD6;
  --purple-light: #9B7DE8;
  --purple-dark:  #5A3FB8;
  --blue:         #4B7BF5;
  --pink:         #E040FB;
  --gradient:     linear-gradient(135deg, #7B5CD6 0%, #4B7BF5 100%);
  --gradient-warm:linear-gradient(135deg, #7B5CD6 0%, #9B6EE0 50%, #4B7BF5 100%);

  /* Palette chaude & naturelle */
  --warm-white:   #FAFAF8;
  --cream:        #F5F2EC;
  --sand:         #E8DFD0;
  --sage:         #A8B89A;
  --dark:         #1C1C1E;
  --text:         #3A3A3C;
  --text-light:   #7A7A82;
  --border:       #E8E5F0;

  --radius:    20px;
  --radius-lg: 32px;
  --shadow:    0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font:      'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --font-ui:   'Poppins', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

p {
  text-align: justify;
  hyphens: none;
  overflow-wrap: break-word;
  word-break: normal;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h3, h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* Gradient text */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Accent handwriting-style */
.accent-italic {
  font-family: var(--font);
  font-style: italic;
  color: var(--purple);
}

/* ---- LAYOUT ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(123,92,214,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); margin-top: 18px; line-height: 1.8; text-align: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(123,92,214,0.1);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.08); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 9px 18px;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--purple);
  background: rgba(123,92,214,0.08);
}

.nav-cta {
  color: white !important;
  background: var(--gradient) !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 16px rgba(123,92,214,0.3) !important;
  transition: opacity var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px); background: var(--gradient) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: none;
  border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 15px 32px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 28px rgba(123,92,214,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(123,92,214,0.45); }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px); }

.btn-soft {
  background: white;
  color: var(--purple);
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.btn-soft:hover { border-color: var(--purple); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.btn-white {
  background: white;
  color: var(--purple);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.18); }

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

/* ---- PHOTO HERO ---- */
.hero-photo {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-photo:hover .hero-bg { transform: scale(1.0); }

.hero-photo .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,20,0.72) 0%,
    rgba(90,63,184,0.45) 60%,
    rgba(75,123,245,0.25) 100%
  );
}

.hero-photo .hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: white;
  padding: 120px 0 80px;
}

.hero-photo h1 {
  color: white;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.08;
}
.hero-photo h1 em { font-style: italic; color: rgba(255,255,255,0.92); line-height: inherit; }

.hero-photo .hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 44px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero-photo {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--dark);
  text-align: center;
}

.page-hero-photo .phero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.page-hero-photo .phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,20,0.6) 0%, rgba(90,63,184,0.5) 100%);
}

.page-hero-photo .phero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.page-hero-photo .section-label { background: rgba(255,255,255,0.15); color: white; }
.page-hero-photo h1 { color: white; margin-bottom: 20px; }
.page-hero-photo p { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 580px; margin: 0 auto; text-align: center; }

/* ---- PHOTO SPLIT SECTION ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.split-photo {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.split-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-section:hover .split-photo img { transform: scale(1.03); }

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--warm-white);
}

.split-content.bg-cream { background: var(--cream); }
.split-content.bg-dark { background: var(--dark); color: white; }
.split-content.bg-dark h2 { color: white; }
.split-content.bg-dark p { color: rgba(255,255,255,0.75); }

.split-content .section-label { margin-bottom: 20px; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--text-light); margin-bottom: 16px; font-size: 1.05rem; line-height: 1.85; }

/* ---- FULL PHOTO SECTION ---- */
.full-photo-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--dark);
}

.full-photo-section .fpbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.full-photo-section .fpoverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,63,184,0.75), rgba(75,123,245,0.6));
}

.full-photo-section .fpcontent {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.full-photo-section h2 { color: white; margin-bottom: 20px; }
.full-photo-section p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---- PHOTO CARDS (services, values) ---- */
.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--dark);
  transition: transform var(--transition);
}
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.photo-card:hover img { transform: scale(1.04); }

.photo-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.88) 0%, rgba(10,10,20,0.2) 50%, transparent 100%);
}

.photo-card .card-body {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: white;
}

.photo-card .card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.photo-card h3 { color: white; margin-bottom: 10px; font-size: 1.2rem; }
.photo-card p { color: rgba(255,255,255,0.78); font-size: 0.92rem; line-height: 1.7; text-align: left; }

/* ---- QUOTE SECTION ---- */
.quote-section {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}

.big-quote-block {
  max-width: 820px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font);
  font-size: 8rem;
  color: var(--purple);
  line-height: 0.6;
  opacity: 0.2;
  margin-bottom: 16px;
  display: block;
}

.big-quote-block blockquote {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 32px;
}

.big-quote-block cite {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cite-line { width: 32px; height: 1px; background: var(--text-light); }

/* ---- ORGANIC SHAPE DIVIDER ---- */
.shape-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}
.shape-divider svg { position: absolute; bottom: 0; width: 100%; height: 100%; }

/* ---- LIFESTYLE GRID ---- */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.lifestyle-grid .lg-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.lifestyle-grid .lg-item.tall { grid-row: span 2; }

.lifestyle-grid .lg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lifestyle-grid .lg-item:hover img { transform: scale(1.05); }

/* ---- VALUES STRIP ---- */
.values-strip {
  background: var(--dark);
  padding: 80px 0;
  color: white;
}

.values-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-item { text-align: center; }
.value-item .v-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.value-item h3 { color: white; margin-bottom: 10px; font-size: 1rem; }
.value-item p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; text-align: center; }

/* ---- SERVICES CARDS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- PROCESS STEPS ---- */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.process-item:last-child { border-bottom: none; }
.process-item:hover { padding-left: 8px; }

.process-num {
  font-family: var(--font);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  transition: var(--transition);
}

.process-item:hover .process-num {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-text h3 { margin-bottom: 10px; padding-top: 8px; }
.process-text p { font-size: 0.95rem; color: var(--text-light); }

/* ---- TESTIMONIALS ---- */
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testi-quote-mark { font-family: var(--font); font-size: 3rem; color: var(--purple); line-height: 0.8; margin-bottom: 16px; opacity: 0.4; }
.testi-text { font-size: 0.97rem; color: var(--text); line-height: 1.8; margin-bottom: 28px; font-style: italic; text-align: left; }

.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 700; color: white; font-size: 0.9rem;
}
.testi-name { font-family: var(--font-ui); font-weight: 700; font-size: 0.95rem; }
.testi-role { font-size: 0.82rem; color: var(--text-light); }
.stars { color: #F5A623; font-size: 0.82rem; margin-bottom: 4px; }

/* ---- FAQ ---- */
.faq-item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; background: white; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-family: var(--font-ui); font-weight: 600; font-size: 0.95rem; gap: 16px; user-select: none; }
.faq-icon { width: 28px; height: 28px; min-width: 28px; background: rgba(123,92,214,0.1); color: var(--purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 400; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 24px; color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ---- CONTACT FORM ---- */
.form-card { background: white; border: 1px solid var(--border); border-radius: 24px; padding: 48px; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-family: var(--font-ui); font-size: 0.84rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 12px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text); background: var(--warm-white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(123,92,214,0.1); background: white; }
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; min-width: 20px; margin-top: 2px; border-radius: 6px; cursor: pointer; accent-color: var(--purple); }
.checkbox-group label { font-size: 0.85rem; color: var(--text-light); cursor: pointer; line-height: 1.6; }
.checkbox-group label a { color: var(--purple); }
.required { color: var(--purple); margin-left: 2px; }

/* ---- CTA BAND ---- */
.cta-photo-band {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.cta-photo-band .cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.3; }
.cta-photo-band .cta-overlay { position: absolute; inset: 0; background: var(--gradient-warm); opacity: 0.82; }
.cta-photo-band .cta-content { position: relative; z-index: 2; color: white; }
.cta-photo-band h2 { color: white; margin-bottom: 20px; }
.cta-photo-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---- STATS ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: white; box-shadow: var(--shadow); }
.stat-cell { padding: 40px 24px; text-align: center; border-right: 1px solid var(--border); transition: var(--transition); }
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(123,92,214,0.04); }
.stat-num { font-family: var(--font); font-size: 2.8rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 0.85rem; color: var(--text-light); line-height: 1.4; }

/* ---- FOOTER ---- */
footer { background: #12121A; color: white; padding: 88px 0 36px; }
.footer-inner { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 36px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 16px; max-width: 260px; line-height: 1.8; text-align: left; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.92rem; transition: color var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: color var(--transition); }
.footer-bottom a:hover { color: white; }

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }
.fade-up-delay-3 { transition-delay: 0.36s; }
.fade-up-delay-4 { transition-delay: 0.48s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .split-photo { min-height: 380px; }
  .split-content { padding: 56px 40px; }
  .grid-4, .values-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-cell:nth-child(2) { border-right: none; }
  .stats-row .stat-cell:nth-child(1), .stats-row .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-grid .lg-item.tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 76px 0 0 0; background: var(--warm-white); padding: 32px 20px; z-index: 999; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; border-radius: 12px; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .lifestyle-grid { display: none; }
  .hero-photo h1 { font-size: 2.4rem; }
  .process-item { grid-template-columns: 48px 1fr; gap: 20px; }
  .process-num { font-size: 2.5rem; }
  .split-content { padding: 48px 28px; }
  .form-card { padding: 32px 24px; }
  .values-strip-inner { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }
  .btn-lg { padding: 15px 30px; font-size: 0.97rem; }
  .values-strip-inner { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-row .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
}
