/* ============================================================
   GROUPE SOCOTA — Design System v2
   Light · Premium · Eco-Responsible · 2025
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── Tokens ─── */
:root {
  /* Neutrals — warm whites & creams */
  --white:       #FFFFFF;
  --cream:       #FAF8F4;
  --parchment:   #F2EDE4;
  --sand:        #E8DFD0;
  --stone:       #C9BBA8;
  --slate:       #8A8076;
  --charcoal:    #3A3530;
  --ink:         #1C1916;

  /* Brand — sap green × warm gold */
  --sage:        #4A6741;
  --sage-light:  #6B8F62;
  --sage-pale:   #EBF0E7;
  --sage-xlight: #F4F7F2;
  --gold:        #B89A5A;
  --gold-light:  #D4B87A;
  --gold-pale:   #F7F1E4;

  /* Seafood accent */
  --ocean:       #1B6B8A;
  --ocean-light: #3D9AB5;
  --ocean-pale:  #EAF4F8;

  /* Textile accent */
  --clay:        #8B4A2E;
  --clay-light:  #B87050;
  --clay-pale:   #F5EDE7;

  /* Estate accent */
  --umber:       #5C4A2A;
  --umber-light: #8C7045;
  --umber-pale:  #F5EEE0;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --section-v:    140px;
  --container:    1360px;
  --gutter:       clamp(24px, 5vw, 80px);

  /* Radius */
  --radius-sm:    4px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-pill:  999px;

  /* Shadows */
  --shadow-soft:  0 4px 24px rgba(28,25,22,0.08);
  --shadow-md:    0 12px 48px rgba(28,25,22,0.12);
  --shadow-lg:    0 24px 80px rgba(28,25,22,0.16);

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --t-fast:       0.2s var(--ease);
  --t-med:        0.4s var(--ease);
  --t-slow:       0.7s var(--ease);
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── Typography ─── */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}
.heading-md {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.3;
}
.body-lg {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
}
.body-md {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate);
}
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─── Overline label ─── */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.overline::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

/* ─── Divider line ─── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  margin: 24px 0;
}
.divider-center { margin: 24px auto; }
.divider-gold { background: var(--gold); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--t-med);
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,103,65,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--stone);
}
.btn-outline:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-xlight);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}
.btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: transform var(--t-fast);
  font-size: 11px;
}
.btn:hover .btn-icon { transform: translateX(3px); }

/* ─── Eco badge ─── */
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--sage-pale);
  color: var(--sage);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(74,103,65,0.2);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--t-med);
}
.nav.nav-transparent {
  background: transparent;
}
.nav.nav-light {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,187,168,0.3);
  box-shadow: 0 2px 16px rgba(28,25,22,0.07);
}
.nav.nav-dark-hero {
  /* used on dark/photo heroes */
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
  object-position: center center;
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  mix-blend-mode: normal;
  transition: opacity var(--t-fast);
}
/* Sur hero photo : on garde le fond blanc, le logo reste lisible */
.nav-on-photo .nav-logo-img {
  mix-blend-mode: normal;
  filter: none;
  background: #fff;
}
/* Fallback texte caché (accessibilité) */
.nav-logo-name,
.nav-logo-sub { display: none; }
.nav-on-photo .nav-links a { color: rgba(255,255,255,0.85); }
.nav-on-photo .nav-links a:hover { color: var(--white); }
.nav-on-photo .nav-cta {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sage);
  transition: width var(--t-med);
}
.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-back {
  font-size: 12px;
  font-weight: 400;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast);
}
.nav-back:hover { color: var(--sage); }
.nav-cta {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
}
.nav-cta:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  display: block;
  transition: var(--t-med);
}
.nav-on-photo .nav-hamburger span { background: var(--white); }

/* Mobile nav panel */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  transition: color var(--t-fast);
}
.nav-mobile a:hover { color: var(--sage); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: var(--gutter);
  background: none;
  border: none;
  font-size: 28px;
  color: var(--charcoal);
  cursor: pointer;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ─── Scroll progress ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--sage);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ─── Loader ─── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.loader-bar {
  width: 100px;
  height: 1.5px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--sage);
  animation: loaderFill 1.4s ease forwards;
}
@keyframes loaderFill { to { left: 100%; } }

/* ─── Hero immersif ─── */
.hero-photo {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
  will-change: transform;
}
.hero-photo-bg.loaded { transform: scale(1); }
/* ─── Hero background video (YouTube embed) ─── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  /* Centre & overscan: cover the full viewport regardless of aspect ratio */
  top: 50%;
  left: 50%;
  width: 177.78vh;   /* 16/9 × 100vh */
  height: 56.25vw;   /* 9/16 × 100vw */
  min-width: 100%;
  min-height: 100%;
  /* scale(1.18) zooms in ~18% — crops black bars on all sides */
  transform: translate(-50%, -50%) scale(1.18);
  border: 0;
  pointer-events: none;
  object-fit: cover;
}
/* Hide video on mobile / reduced-motion — show fallback photo instead */
@media (max-width: 768px) {
  .hero-video-wrap { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap { display: none; }
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(28,25,22,0.15) 0%,
    rgba(28,25,22,0.1) 40%,
    rgba(28,25,22,0.55) 75%,
    rgba(28,25,22,0.75) 100%
  );
}
.hero-photo-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 var(--gutter) 80px;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
}
.hero-photo-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.hero-photo-overline::before {
  content: '';
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero-photo-content .display-hero { color: var(--white); }
.hero-photo-content .body-lg { color: rgba(255,255,255,0.75); max-width: 560px; margin: 20px 0 36px; }
.hero-photo-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  color: rgba(255,255,255,0.55);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: cueAnim 2.2s ease infinite;
}
@keyframes cueAnim {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── Ticker ─── */
.ticker-wrap {
  overflow: hidden;
  background: var(--sage);
  padding: 14px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: tickerRun 28s linear infinite;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.ticker-sep { color: rgba(255,255,255,0.35); }
@keyframes tickerRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Section header ─── */
.section-header {
  max-width: 640px;
  margin-bottom: 72px;
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Stat block ─── */
.stat-block {
  padding: 40px 36px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  transition: var(--t-med);
}
.stat-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 0.5em;
  color: var(--sage);
}
.stat-label {
  font-size: 13px;
  color: var(--slate);
  margin-top: 8px;
  line-height: 1.5;
}

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: var(--t-med);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* ─── Business nav strip ─── */
.biz-nav {
  display: flex;
  gap: 2px;
  background: var(--parchment);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 4px;
}
.biz-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border-radius: calc(var(--radius-md) - 2px);
  transition: var(--t-med);
  text-decoration: none;
  color: var(--slate);
}
.biz-nav-item:hover, .biz-nav-item.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.biz-nav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.biz-nav-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── Footer ─── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 80px var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 300px; }
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color var(--t-fast); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ─── Cert chip ─── */
.cert-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1.5px solid;
  transition: var(--t-fast);
}

/* ─── Language switcher ─── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 4px 6px;
  border-radius: 3px;
  transition: color var(--t-fast), background var(--t-fast);
  text-decoration: none;
}
.lang-btn:hover { color: var(--sage); }
.lang-btn.lang-active {
  color: var(--sage);
  font-weight: 600;
}
.lang-sep {
  color: var(--stone);
  font-size: 11px;
  user-select: none;
}
/* On photo hero — white version */
.nav-on-photo .lang-btn { color: rgba(255,255,255,0.75); }
.nav-on-photo .lang-btn:hover { color: var(--white); }
.nav-on-photo .lang-btn.lang-active { color: var(--white); }
.nav-on-photo .lang-sep { color: rgba(255,255,255,0.3); }
.nav-mobile-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 15px;
}
.nav-mobile-lang a { font-family: var(--font-body) !important; font-size: 15px !important; color: var(--slate); }
.nav-mobile-lang a.lang-active { color: var(--sage); font-weight: 600; }
.footer-lang { display: flex; align-items: center; gap: 8px; }

/* ─── Back to top ─── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
  transition: var(--t-med);
  z-index: 90;
}
.back-to-top:hover { background: var(--sage); color: var(--white); transform: translateY(-3px); }
.back-to-top.visible { display: flex; }

/* ─── ESG letter badge (replaces emoji) ─── */
.esg-letter {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}

/* ─── Geo flag text (replaces emoji flag) ─── */
.geo-flag-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--slate);
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
  min-width: 40px;
  text-align: center;
}

/* ─── Utilities ─── */
.text-sage { color: var(--sage); }
.text-gold { color: var(--gold); }
.text-ocean { color: var(--ocean); }
.text-clay { color: var(--clay); }
.text-muted { color: var(--slate); }
.text-white { color: var(--white); }
.text-ink { color: var(--ink); }
.bg-cream { background: var(--cream); }
.bg-parchment { background: var(--parchment); }
.bg-sage-pale { background: var(--sage-pale); }
.italic { font-style: italic; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-right .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  :root { --section-v: 96px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo-content { padding-bottom: 60px; }
}
