:root {
  --white: #FFFFFF;
  --offwhite: #FAFAF7;
  --cream: #F5F2EC;
  --ocre: #C4943D;
  --ocre-dark: #A87B2E;
  --ocre-light: #E8D5A8;
  --ocre-highlight: rgba(196, 148, 61, 0.25);
  --eucalyptus: #7A9E8E;
  --eucalyptus-light: #D4E3DB;
  --eucalyptus-dark: #5C7E6E;
  --eucalyptus-highlight: rgba(196, 148, 61, 0.3);
  --black: #1A1A18;
  --charcoal: #2A2A28;
  --graphite: #3A3A38;
  --stone: #7A7A75;
  --border: #E5E2DC;
  --display: 'DM Serif Display', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--black); background: var(--white); line-height: 1.7; font-weight: 400; -webkit-font-smoothing: antialiased; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.highlight { background: linear-gradient(180deg, transparent 50%, var(--ocre-highlight) 50%); padding: 0 4px; }
.highlight-green { background: linear-gradient(180deg, transparent 50%, var(--eucalyptus-highlight) 50%); padding: 0 4px; }

.fixed-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1000;
  background: var(--ocre); color: var(--white);
  padding: 1rem 1.75rem; border-radius: 60px;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.03em; text-decoration: none;
  box-shadow: 0 8px 30px rgba(196,148,61,0.35);
  transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem;
}
.fixed-cta:hover { background: var(--ocre-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(196,148,61,0.45); }
.fixed-cta svg { width: 16px; height: 16px; }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 100px;
}
.nav-brand { font-family: var(--display); font-size: 1.3rem; color: var(--black); text-decoration: none; }
.nav-brand span { color: var(--ocre); }
.nav-links { display: flex; gap: 1.75rem; align-items: center; flex: 1; margin-left: 3rem; }
.nav-links > a, .nav-dropdown > .nav-dropdown-trigger {
  font-size: 0.875rem; font-weight: 400; color: var(--graphite); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.2s; cursor: pointer;
  background: none; border: none; font-family: var(--sans);
  display: flex; align-items: center; gap: 0.35rem;
}
.nav-links > a:hover, .nav-dropdown:hover > .nav-dropdown-trigger { color: var(--ocre); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: -1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.5rem 0; min-width: 260px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 0.75rem 1.25rem; font-size: 0.875rem; color: var(--graphite); text-decoration: none; transition: all 0.15s; }
.nav-dropdown-menu a:hover { background: var(--offwhite); color: var(--ocre); }
.nav-dropdown-menu a span { display: block; font-size: 0.75rem; color: var(--stone); margin-top: 0.15rem; font-weight: 300; }
.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  padding: 0.65rem 1.4rem !important; border-radius: 50px; font-weight: 500 !important;
  transition: all 0.3s !important; margin-left: auto !important;
}
.nav-cta:hover { background: var(--ocre) !important; }

/* ═══ HERO ═══ */
.hero {
  padding-top: 100px; min-height: 100vh; display: flex; align-items: center;
  background: var(--white); position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: 100px; right: 0;
  width: 38%; height: 100%; background: var(--cream); z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}
.hero-content { padding: 3rem 0; }
.hero-eyebrow {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ocre);
  margin-bottom: 2rem; display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--ocre); }
.hero-headline {
  font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400; line-height: 1.15; color: var(--black); margin-bottom: 1rem;
}
.hero-subheadline {
  font-family: var(--sans); font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 300; line-height: 1.55; color: var(--graphite); margin-bottom: 2rem; max-width: 500px;
}
.hero-body { font-size: 1rem; color: var(--graphite); line-height: 1.8; max-width: 460px; margin-bottom: 2.5rem; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--black); color: var(--white);
  padding: 1.1rem 2.25rem; border-radius: 60px;
  text-decoration: none; font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.02em; transition: all 0.3s;
}
.hero-cta:hover { background: var(--ocre); transform: translateY(-2px); }
.hero-cta svg { width: 18px; height: 18px; transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-image { position: relative; display: flex; justify-content: center; padding: 2rem 0; margin-right: -3rem; }
.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}
.hero-image-accent {
  position: absolute; bottom: 0.5rem; left: -1rem;
  width: 100px; height: 100px; border: 2.5px solid var(--ocre); border-radius: 50%; opacity: 0.35;
}

section { padding: 7rem 0; }
.section-title { font-family: var(--display); font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 400; color: var(--black); line-height: 1.25; }
.section-subtitle { font-size: 1.05rem; color: var(--graphite); line-height: 1.8; max-width: 560px; margin-top: 1rem; }

/* ═══ DOMAINES ═══ */
.domaines { background: var(--offwhite); }
.domaines-header { text-align: center; margin-bottom: 4rem; }
.domaines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.domaine-card { background: var(--white); padding: 2.75rem 2.25rem; border-radius: 12px; border: 1px solid var(--border); transition: all 0.35s ease; position: relative; overflow: hidden; }
.domaine-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ocre); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.domaine-card:hover::before { transform: scaleX(1); }
.domaine-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.07); transform: translateY(-4px); }
.domaine-icon { width: 48px; height: 48px; background: var(--eucalyptus-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.domaine-icon svg { width: 24px; height: 24px; color: var(--eucalyptus-dark); }
.domaine-card h3 { font-family: var(--display); font-size: 1.35rem; font-weight: 400; margin-bottom: 1rem; color: var(--black); }
.domaine-card p { color: var(--graphite); font-size: 0.95rem; line-height: 1.75; }

/* ═══ METHODE ═══ */
.methode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.methode-left { position: sticky; top: 120px; }
.methode-left .section-subtitle { margin-bottom: 2rem; }
.methode-quote { font-family: var(--display); font-size: 1.3rem; font-style: italic; color: var(--graphite); line-height: 1.55; padding-left: 1.5rem; border-left: 3px solid var(--ocre); margin-top: 2rem; }
.methode-steps { display: flex; flex-direction: column; gap: 2rem; }
.methode-step { padding: 2.25rem; background: var(--white); border: 1px solid var(--border); border-radius: 12px; transition: all 0.3s; }
.methode-step:hover { border-color: var(--ocre-light); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.methode-step-num { font-family: var(--display); font-size: 2.2rem; color: var(--ocre); line-height: 1; margin-bottom: 0.75rem; }
.methode-step h3 { font-family: var(--display); font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--black); }
.methode-step p { color: var(--graphite); font-size: 0.95rem; line-height: 1.75; }
.methode-step ul { list-style: none; margin-top: 0.75rem; }
.methode-step ul li { padding: 0.35rem 0; padding-left: 1.25rem; position: relative; color: var(--graphite); font-size: 0.95rem; }
.methode-step ul li::before { content: ''; position: absolute; left: 0; top: 0.85rem; width: 6px; height: 6px; border-radius: 50%; background: var(--ocre); }

/* ═══ ABOUT ═══ */
.about { background: #9A7B3C; color: var(--white); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 5rem; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 520px; object-fit: cover; object-position: center 20%; border-radius: 12px; }
.about-image-tag { position: absolute; bottom: -1.25rem; right: -1.25rem; background: var(--ocre); padding: 1.1rem 1.5rem; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.2); font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--white); display: flex; align-items: center; gap: 0.5rem; letter-spacing: 0.02em; }
.about-content h2 { font-family: var(--display); font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 400; margin-bottom: 2rem; line-height: 1.25; color: var(--white); }
.about-content p { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; }
.about-content .highlight { background: linear-gradient(180deg, transparent 50%, rgba(196,148,61,0.35) 50%); }
.about-content .highlight-green { background: linear-gradient(180deg, transparent 50%, rgba(196,148,61,0.4) 50%); }
.about-links { display: flex; gap: 1rem; margin-top: 2rem; }
.about-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 50px; text-decoration: none; font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,0.8); transition: all 0.3s; }
.about-link:hover { border-color: var(--ocre); color: var(--ocre); }
.about-link svg { width: 16px; height: 16px; }

/* ═══ VALEURS ═══ */
.valeurs-header { text-align: center; margin-bottom: 4rem; }
.valeurs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.valeur-card { text-align: center; padding: 3rem 2rem; border-radius: 12px; background: var(--offwhite); transition: all 0.3s; }
.valeur-card:hover { background: var(--cream); transform: translateY(-3px); }
.valeur-icon { width: 56px; height: 56px; margin: 0 auto 1.5rem; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); }
.valeur-icon svg { width: 24px; height: 24px; color: var(--ocre); }
.valeur-card h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 400; margin-bottom: 1rem; color: var(--black); }
.valeur-card p { color: var(--graphite); font-size: 0.95rem; line-height: 1.75; }

/* ═══ AVIS ═══ */
.avis { background: var(--cream); overflow: hidden; }
.avis-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.avis-rating-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.avis-rating-number { font-family: var(--display); font-size: 3.5rem; color: var(--black); line-height: 1; }
.avis-stars-row { display: flex; gap: 0.2rem; margin-bottom: 0.25rem; }
.avis-stars-row svg { width: 20px; height: 20px; color: var(--ocre); }
.avis-rating-count { font-size: 0.875rem; color: var(--stone); }
.avis-google-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; background: var(--white); border-radius: 50px; font-size: 0.8rem; font-weight: 500; color: var(--graphite); box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-decoration: none; transition: all 0.2s; }
.avis-google-badge:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); color: var(--ocre); }
.avis-google-badge svg { width: 18px; height: 18px; }
.avis-nav { display: flex; gap: 0.5rem; }
.avis-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--graphite); }
.avis-nav button:hover { border-color: var(--ocre); color: var(--ocre); }
.avis-nav button svg { width: 18px; height: 18px; }
.avis-carousel { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; padding-bottom: 1rem; }
.avis-carousel::-webkit-scrollbar { display: none; }
.avis-card { flex: 0 0 360px; scroll-snap-align: start; background: var(--white); padding: 2rem 2rem 1.75rem; border-radius: 16px; border: 1px solid var(--border); position: relative; transition: all 0.3s; }
.avis-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.07); transform: translateY(-3px); }
.avis-card-stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; }
.avis-card-stars svg { width: 16px; height: 16px; color: var(--ocre); }
.avis-card-quote { position: absolute; top: 1.5rem; right: 1.5rem; font-family: var(--display); font-size: 3rem; color: var(--ocre); opacity: 0.15; line-height: 1; }
.avis-card p { font-size: 0.95rem; color: var(--graphite); line-height: 1.75; margin-bottom: 1.5rem; }
.avis-card-footer { display: flex; align-items: center; gap: 0.75rem; }
.avis-card-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--eucalyptus-light); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 600; font-size: 0.875rem; color: var(--eucalyptus-dark); }
.avis-card-author { font-weight: 500; font-size: 0.9rem; color: var(--black); }
.avis-card-date { font-size: 0.8rem; color: var(--stone); }

/* ═══ CTA FINAL ═══ */
.cta-final { background: #9A7B3C; color: var(--white); text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(196,148,61,0.08) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(122,158,142,0.06) 0%, transparent 50%); }
.cta-final-inner { position: relative; z-index: 1; }
.cta-final h2 { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.35; margin-bottom: 1.25rem; max-width: 600px; margin-left: auto; margin-right: auto; color: var(--white); }
.cta-final p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-final-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--ocre); color: var(--white); padding: 1.1rem 2.5rem; border-radius: 60px; text-decoration: none; font-size: 1rem; font-weight: 500; transition: all 0.3s; }
.cta-final-btn:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }

/* ═══ LOCALISATION ═══ */
.localisation { background: var(--white); padding: 5rem 0; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.loc-info h3 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.loc-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; color: var(--graphite); font-size: 0.95rem; line-height: 1.6; }
.loc-detail svg { width: 20px; height: 20px; color: var(--ocre); flex-shrink: 0; margin-top: 2px; }
.loc-map { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); height: 320px; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--stone); font-size: 0.9rem; }

/* ═══ FOOTER ═══ */
footer { background: var(--white); color: var(--graphite); padding: 3rem 0 2rem; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr 0.8fr; gap: 2rem; align-items: start; }
.footer-brand { font-family: var(--display); font-size: 1.2rem; color: var(--black); margin-bottom: 0.5rem; }

.footer-brand span { color: var(--ocre); }
.footer-tagline { font-size: 0.85rem; color: var(--stone); }
.footer-links h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.75rem; }
.footer-links a { display: block; font-size: 0.875rem; color: var(--graphite); text-decoration: none; padding: 0.25rem 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--ocre); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--stone); }
.footer-bottom a { color: var(--stone); text-decoration: none; }
.footer-bottom a:hover { color: var(--ocre); }

.animate { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.animate.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero::after { display: none; }
  .hero-grid, .methode-grid, .about-grid, .loc-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .domaines-grid, .valeurs-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 100%; }
  .hero-headline { font-size: 2.2rem; }
  .methode-left { position: static; }
  .about-image img { height: 400px; }
  .about-image-tag { right: 1rem; bottom: -1rem; }
  .nav-links { display: none; }
  .avis-card { flex: 0 0 85vw; }
  .fixed-cta { bottom: 1rem; right: 1rem; left: 1rem; justify-content: center; border-radius: 14px; }
}

/* ═══ ANIMATED ARROWS ═══ */
.section-arrow {
  text-align: center;
  margin-top: 2rem;
}
.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ocre);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,148,61,0.35);
  animation: arrowBounce 2s ease-in-out infinite;
  transition: transform 0.3s;
}
.arrow-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(196,148,61,0.5);
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ═══ TITLE ICON BADGES ═══ */
.title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  vertical-align: middle;
  margin-right: 0.4rem;
  position: relative;
  top: -2px;
}
.title-icon-light {
  background: rgba(255,255,255,0.12);
  color: var(--ocre);
}

/* ═══ LOCALISATION — MAP + ZONE ═══ */
.loc-right { display: flex; flex-direction: column; gap: 1.5rem; overflow: visible; }
.loc-map-real { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }



.loc-zone {
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  width: fit-content;
  margin-left: auto;
  margin-top: 1rem;
}
.loc-zone-title {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-size: 1.05rem; color: var(--black);
  margin-bottom: 1rem;
}
.loc-zone-cities { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.loc-city {
  display: inline-flex; align-items: center;
  padding: 0.45rem 1rem; border-radius: 50px;
  background: var(--white); border: 1px solid var(--border);
  font-size: 0.825rem; color: var(--graphite);
  font-weight: 400; transition: all 0.2s;
}
.loc-city:hover { border-color: var(--ocre); color: var(--ocre); background: var(--ocre-highlight); cursor: pointer; }
.loc-city-main {
  background: var(--ocre); color: var(--white); border-color: var(--ocre);
  font-weight: 500;
}
.loc-city-main:hover { background: var(--ocre-dark); color: var(--white); border-color: var(--ocre-dark); }


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

/* ═══ SPA NAVIGATION ═══ */
.page-section { display: none; }
.page-section.active { display: block; }


/* ═══ SUB-PAGE HEROES ═══ */
.hero-sub {
  min-height: auto !important;
  padding-top: 100px !important;
  padding-bottom: 4rem !important;
}
.hero-sub::after { display: none !important; }
.hero-sub .hero-headline { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; }
.hero-sub .hero-body { max-width: 640px; }

/* Hero with photo (like homepage) */
.hero-photo::after {
  display: block !important;
  content: '' !important;
  position: absolute; top: 100px; right: 0;
  width: 38%; height: calc(100% - 100px);
  background: var(--cream); z-index: 0;
}
.hero-photo .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-photo .hero-text { padding: 3rem 0; }
.hero-photo .hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  margin-right: -3rem;
  overflow: visible;
}
.hero-photo .hero-img img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}
.hero-photo .hero-img-accent {
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 200px);
  width: 100px; height: 100px;
  border: 2.5px solid var(--ocre);
  border-radius: 50%;
  opacity: 0.35;
}
@media (max-width: 960px) {
  .hero-photo::after { display: none !important; }
  .hero-photo .container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-photo .hero-img { order: -1; margin-right: 0; }
  .hero-photo .hero-img img { max-width: 100%; height: 350px; object-fit: cover; }
}


/* ═══ SUB-PAGE CONTENT ═══ */
.page-content { padding: 5rem 0; }
.page-content-alt { padding: 5rem 0; background: var(--offwhite); }
.page-content .container, .page-content-alt .container { max-width: 800px; }
.page-prose { font-size: 1.05rem; line-height: 1.85; color: var(--graphite); margin-bottom: 1.25rem; }
.page-legal { font-size: 0.95rem; line-height: 1.85; color: var(--graphite); }
.page-legal h3 { font-family: var(--display); font-size: 1.2rem; color: var(--black); margin-top: 2rem; margin-bottom: 1rem; }
.page-legal h3:first-child { margin-top: 0; }
.page-legal p { margin-bottom: 1.25rem; }
.page-legal a { color: var(--ocre); }

.step-title { font-family: var(--display); font-size: 1.3rem; color: var(--black); margin-bottom: 0.75rem; }
.step-text { color: var(--graphite); font-size: 0.95rem; line-height: 1.75; }

/* ═══ BLOG ═══ */
.blog-filters {
  display: flex; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.blog-filter {
  padding: 0.6rem 1.4rem; border-radius: 50px;
  border: 1.5px solid var(--border); background: var(--white);
  font-family: var(--sans); font-size: 0.875rem; font-weight: 400;
  color: var(--graphite); cursor: pointer; transition: all 0.2s;
}
.blog-filter:hover { border-color: var(--ocre); color: var(--ocre); }
.blog-filter.active {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.blog-card {
  background: var(--white); padding: 2.25rem; border-radius: 12px;
  border: 1px solid var(--border); transition: all 0.3s;
  position: relative;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-4px);
}
.blog-card-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ocre); background: var(--ocre-highlight);
  padding: 0.3rem 0.75rem; border-radius: 50px; margin-bottom: 1rem;
}
.blog-card h3 {
  font-family: var(--display); font-size: 1.2rem; font-weight: 400;
  color: var(--black); margin-bottom: 0.75rem; line-height: 1.35;
}
.blog-card p {
  font-size: 0.9rem; line-height: 1.7; color: var(--graphite); margin-bottom: 1.25rem;
}
.blog-card-date { font-size: 0.8rem; color: var(--stone); font-style: italic; }
.blog-card.hidden { display: none; }
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ═══ EXPERTISE PAGE LAYOUTS ═══ */
.content-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  margin-bottom: 3rem;
}
.content-split-reverse { direction: rtl; }
.content-split-reverse > * { direction: ltr; }
.content-split-text {}
.content-split-text h2 { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--black); margin-bottom: 1.25rem; line-height: 1.25; }
.content-split-text p { font-size: 1.05rem; line-height: 1.85; color: var(--graphite); }

.photo-placeholder {
  width: 100%; height: 320px; border-radius: 16px;
  background: var(--cream);
  border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem;
  color: var(--stone); font-size: 0.85rem; font-family: var(--sans);
}
.photo-placeholder svg { width: 40px; height: 40px; color: var(--ocre); opacity: 0.5; }

.cards-offset { position: relative; }
.cards-offset .methode-step:nth-child(even) { margin-left: 3rem; }
.cards-offset .methode-step:nth-child(odd) { margin-right: 3rem; }

@media (max-width: 960px) {
  .content-split, .content-split-reverse { grid-template-columns: 1fr; gap: 2rem; }
  .content-split-reverse { direction: ltr; }
  .cards-offset .methode-step:nth-child(even) { margin-left: 0; }
  .cards-offset .methode-step:nth-child(odd) { margin-right: 0; }
}

/* ═══ EXPERTISE PAGE PHOTOS ═══ */
.content-photo {
  position: relative;
  display: flex;
  justify-content: center;
}
.content-photo img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  object-fit: cover;
}
.content-photo-accent {
  position: absolute;
  bottom: -0.5rem;
  left: -1rem;
  width: 90px;
  height: 90px;
  border: 2.5px solid var(--ocre);
  border-radius: 50%;
  opacity: 0.35;
}
.content-split .content-photo img { height: 380px; }
@media (max-width: 960px) {
  .content-split .content-photo img { height: 300px; max-width: 100%; }
}

/* ═══ INTERNAL LINKS ═══ */
.internal-links h3 {
  font-family: var(--display); font-size: 1.2rem; color: var(--black);
  margin-bottom: 1.25rem;
}
.internal-links-grid {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.internal-link {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.25rem; border-radius: 50px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 0.875rem; color: var(--graphite);
  text-decoration: none; font-weight: 400;
  transition: all 0.2s;
}
.internal-link:hover {
  border-color: var(--ocre); color: var(--ocre); background: var(--ocre-highlight);
}
.card-link {
  display: inline-block; margin-top: 1.25rem;
  font-size: 0.875rem; font-weight: 500; color: var(--ocre);
  text-decoration: none; transition: all 0.2s;
}
.card-link:hover { color: var(--ocre-dark); }

/* ═══ AUTHOR PAGE ═══ */
.author-header {
  display: flex; align-items: center; gap: 2.5rem;
}
.author-avatar { flex-shrink: 0; }
.author-intro { flex: 1; }
.author-tags {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.author-timeline {}
.timeline-item {
  display: flex; gap: 2rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  flex: 0 0 120px; font-family: var(--display); font-size: 1rem;
  color: var(--ocre); padding-top: 0.15rem;
}
.timeline-content h3 {
  font-family: var(--display); font-size: 1.1rem; color: var(--black);
  margin-bottom: 0.35rem;
}
.timeline-content p {
  font-size: 0.9rem; color: var(--graphite); line-height: 1.6;
}
@media (max-width: 960px) {
  .author-header { flex-direction: column; text-align: center; gap: 1.5rem; }
  .timeline-item { flex-direction: column; gap: 0.5rem; }
  .timeline-year { flex: none; }
}
