/* INS'PYR — modern editorial */
:root {
  --green: #2f4438;
  --green-deep: #1f2e26;
  --green-soft: #4d6450;
  --green-glow: #6b8b6f;
  --cream: #ede4ca;
  --cream-soft: #f4eedb;
  --paper: #faf7ee;
  --paper-warm: #f6f0e0;
  --ink: #14201a;
  --ink-soft: #4a544c;
  --rule: #d8d2bc;
  --rule-soft: #e8e2cc;
  --accent: #c9a96a;
  --accent-warm: #d8b87a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* TYPE — sporty modern: Archivo (display, condensed) + Manrope (UI) */
.serif, h1, h2, h3, h4, h5 {
  font-family: "Archivo", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--ink);
  text-transform: uppercase;
  font-variation-settings: "wdth" 90;
}
h1 { font-size: clamp(48px, 7vw, 108px); font-weight: 900; font-variation-settings: "wdth" 85; }
h2 { font-size: clamp(36px, 4.6vw, 72px); font-weight: 800; font-variation-settings: "wdth" 88; }
h3 { font-size: clamp(22px, 2.4vw, 36px); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 17px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
h5 { font-size: 13px; }
em, .italic { font-style: normal; color: var(--accent-warm); font-variation-settings: "wdth" 85; font-weight: 900; }

p { text-wrap: pretty; }
p + p { margin-top: 1em; }

.eyebrow {
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow.on-dark { color: var(--cream); }

.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

/* Layout primitives */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1600px; margin: 0 auto; padding: 0 40px; }
.section { padding: 130px 0; position: relative; }
.section-tight { padding: 70px 0; }
@media (max-width: 720px) {
  .wrap, .wrap-narrow, .wrap-wide { padding: 0 22px; }
  .section { padding: 80px 0; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 44px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(250, 247, 238, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(216,210,188,0.6);
  padding: 14px 44px;
}
.nav.is-scrolled .nav-link { color: var(--ink); }
.nav.is-scrolled .nav-brand-text { color: var(--ink); }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img { width: auto; height: 40px; transition: filter 0.3s; color: white; }
.nav.is-scrolled .nav-brand img { color: var(--green-deep); }
.nav-brand .brand-svg { display: block; height: 38px; width: auto; color: white; transition: color 0.3s; }
.nav.is-scrolled .nav-brand .brand-svg { color: var(--green-deep); }
.nav-brand .brand-mark { display: block; height: 38px; color: white; transition: color 0.3s; }
.nav-brand .brand-mark svg { height: 100%; width: auto; display: block; }
.nav.is-scrolled .nav-brand .brand-mark { color: var(--green-deep); }
.nav-brand-text { display: none; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: white; position: relative; padding: 6px 0; transition: color 0.3s;
}
.nav-link:hover { color: var(--cream); }
.nav.is-scrolled .nav-link:hover { color: var(--green); }
.nav-link.has-sub { padding-right: 14px; }
.nav-link.has-sub::after { content: ""; position: absolute; right: 0; top: 50%; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-70%) rotate(45deg); transition: transform 0.3s; }
.nav-item:hover .nav-link.has-sub::after { transform: translateY(-30%) rotate(225deg); }

.nav-cta {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  padding: 13px 22px; border-radius: 999px;
  background: var(--cream); color: var(--green-deep);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  border: 1px solid var(--cream);
}
.nav-cta:hover { background: white; transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.25); }

.nav-item { position: relative; }
.nav-sub {
  position: absolute; top: 100%; left: -20px; min-width: 320px;
  background: white; border: 1px solid var(--rule-soft);
  padding: 14px; margin-top: 14px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 24px 60px -20px rgba(20,32,26,0.25);
  border-radius: 4px;
}
.nav-item:hover .nav-sub { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-sub a { display: block; padding: 12px 16px; font-size: 14px; color: var(--ink); border-radius: 4px; transition: background 0.2s, padding 0.2s; }
.nav-sub a:hover { background: var(--cream-soft); padding-left: 22px; }
.nav-sub-label { display: block; padding: 6px 16px 4px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-soft); font-weight: 600; }

.menu-toggle { display: none; background: transparent; border: 0; color: white; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; font-weight: 600; }
.nav.is-scrolled .menu-toggle { color: var(--ink); }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav { padding: 16px 22px; }
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--green-deep); color: var(--cream);
  padding: 80px 32px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.7,0,0.3,1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu .close { position: absolute; top: 24px; right: 24px; background: transparent; border: 0; color: var(--cream); font-size: 32px; cursor: pointer; }
.mobile-menu a { display: block; padding: 16px 0; font-family: "Archivo", sans-serif; font-size: 26px; border-bottom: 1px solid rgba(237,228,202,0.15); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; font-variation-settings: "wdth" 88; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  color: white; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: kenBurns 24s ease-in-out infinite alternate; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,32,26,0.45) 0%, rgba(20,32,26,0.15) 35%, rgba(20,32,26,0.85) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 44px 120px; max-width: 1320px; margin: 0 auto; width: 100%; }
.hero h1 {
  color: white; max-width: 14ch; margin-bottom: 28px;
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 116px);
}
.hero h1 .italic { color: var(--cream); }
.hero-lede { font-size: 19px; max-width: 56ch; opacity: 0.95; margin-bottom: 40px; line-height: 1.55; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@keyframes kenBurns {
  0% { transform: scale(1.05) translate(0,0); }
  100% { transform: scale(1.18) translate(-1.5%, -2%); }
}

/* Floating pictos near hero */
.hero-pictos {
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  z-index: 1; pointer-events: none;
}
.hero-pictos .float { position: absolute; opacity: 0.18; display: block; color: white; }
.hero-pictos .float svg { width: 100%; height: 100%; display: block; }
.hero-pictos .float-1 { top: 22%; right: 14%; width: 110px; height: 110px; animation: floatA 9s ease-in-out infinite; }
.hero-pictos .float-2 { top: 58%; right: 30%; width: 80px; height: 80px; animation: floatB 11s ease-in-out infinite; }
.hero-pictos .float-3 { top: 36%; right: 6%; width: 60px; height: 60px; animation: floatC 7s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translate(0,0) rotate(-2deg); } 50% { transform: translate(-12px,-18px) rotate(3deg); } }
@keyframes floatB { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(14px,-22px) rotate(-4deg); } }
@keyframes floatC { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-10px,12px); } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 30px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  background: var(--cream); color: var(--green-deep);
  border: 1px solid var(--cream);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s, box-shadow 0.3s;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
}
.btn:hover { transform: translateY(-3px); background: white; box-shadow: 0 14px 32px -10px rgba(0,0,0,0.35); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: white; color: var(--green-deep); }
.btn-dark { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.btn-dark:hover { background: var(--green); color: white; }
.btn-arrow { font-size: 16px; line-height: 1; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: white; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0.85;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 44px; background: white; opacity: 0.6;
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.3); transform-origin: top; }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative; min-height: 78vh; padding: 180px 0 90px;
  display: flex; align-items: flex-end; color: white;
  background-color: var(--green-deep); overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; transform: scale(1.06); animation: kenBurns 30s ease-in-out infinite alternate; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,32,26,0.35), rgba(20,32,26,0.7)); }
.page-hero-inner { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; padding: 0 44px; width: 100%; }
.page-hero h1 { color: white; max-width: 18ch; font-weight: 900; }
.page-hero-lede { font-size: 19px; opacity: 0.92; max-width: 60ch; margin-top: 24px; line-height: 1.55; }
.page-hero-pictos { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.page-hero-pictos .float { position: absolute; opacity: 0.16; color: white; display: block; }
.page-hero-pictos .float svg { width: 100%; height: 100%; display: block; }
.page-hero-pictos .float-1 { top: 18%; right: 8%; width: 120px; height: 120px; animation: floatA 9s ease-in-out infinite; }
.page-hero-pictos .float-2 { top: 52%; right: 22%; width: 70px; height: 70px; animation: floatB 11s ease-in-out infinite; opacity: 0.22; }
.page-hero-pictos .float-3 { top: 32%; right: 4%; width: 56px; height: 56px; animation: floatC 7s ease-in-out infinite; opacity: 0.20; }
@media (max-width: 720px) { .page-hero-pictos .float-2, .page-hero-pictos .float-3 { display: none; } .page-hero-pictos .float-1 { width: 70px; height: 70px; opacity: 0.12; } }
.crumb { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); margin-bottom: 28px; opacity: 0.9; font-weight: 600; }
.crumb a { border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.crumb a:hover { border-color: var(--cream); }

/* ============================================================
   PROSE
   ============================================================ */
.prose { max-width: 720px; margin: 0 auto; font-size: 18px; line-height: 1.78; color: var(--ink-soft); }
.prose h2 { color: var(--ink); margin-top: 80px; margin-bottom: 24px; font-weight: 300; letter-spacing: -0.025em; }
.prose h3 { color: var(--ink); margin-top: 48px; margin-bottom: 14px; font-weight: 400; }
.prose p + p { margin-top: 1.1em; }
.prose ul { padding-left: 22px; margin: 1.2em 0; }
.prose ul li { margin-bottom: 10px; }
.prose strong { color: var(--ink); font-weight: 600; }

.lede { font-size: 22px; line-height: 1.5; color: var(--ink); font-family: "Manrope", sans-serif; font-weight: 400; letter-spacing: -0.005em; }

/* Section header */
.sec-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 64px; max-width: 720px; }
.sec-head.center { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }
.sec-head h2 { font-weight: 300; }

/* ============================================================
   ACTIVITY CARDS
   ============================================================ */
.activities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 800px) { .activities { grid-template-columns: 1fr; } }
.act-card {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--green); color: white;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
  cursor: pointer;
  border-radius: 4px;
}
.act-card-bg { position: absolute; inset: 0; z-index: 0; }
.act-card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1); }
.act-card:hover .act-card-bg img { transform: scale(1.08); }
.act-card-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.1) 100%); }
.act-card-inner { position: relative; z-index: 1; }
.act-card .picto-corner {
  position: absolute; top: 32px; right: 32px; z-index: 1;
  width: 56px; height: 56px; padding: 12px;
  background: rgba(237,228,202,0.12); backdrop-filter: blur(8px);
  border-radius: 50%; border: 1px solid rgba(237,228,202,0.25);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.act-card:hover .picto-corner { transform: rotate(12deg) scale(1.1); }
.act-card .picto-corner svg { width: 100%; height: 100%; stroke: white; }
.act-card .num { font-size: 11px; letter-spacing: 0.26em; opacity: 0.85; margin-bottom: 14px; display: block; font-weight: 600; }
.act-card h3 { color: white; margin-bottom: 14px; font-weight: 400; }
.act-card p { font-size: 15px; opacity: 0.92; max-width: 38ch; line-height: 1.55; }
.act-card .arrow { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.4); transition: gap 0.3s; }
.act-card:hover .arrow { gap: 16px; }

/* ============================================================
   LEVELS — modern card grid
   ============================================================ */
.levels {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.level {
  background: var(--paper);
  padding: 36px 30px 32px;
  display: flex; flex-direction: column; gap: 12px;
  border-radius: 6px;
  border: 1px solid var(--rule-soft);
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.4s;
  position: relative; overflow: hidden;
}
.level::before {
  content: ""; position: absolute; inset: 0; bottom: auto; height: 4px;
  background: var(--green); opacity: 0; transition: opacity 0.3s;
}
.level:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 24px 50px -20px rgba(20,32,26,0.2); }
.level:hover::before { opacity: 1; }
.level-tag { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.level h3 { font-size: 28px; font-weight: 400; }
.level-meta { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; }
.level-price {
  margin-top: auto; padding-top: 24px;
  font-family: "Archivo", sans-serif; font-size: 40px; color: var(--green-deep);
  font-weight: 900; letter-spacing: -0.04em; font-variation-settings: "wdth" 85;
}
.level-price small { font-size: 13px; font-family: "Manrope", sans-serif; opacity: 0.6; letter-spacing: 0.04em; font-weight: 500; text-transform: uppercase; }

/* ============================================================
   SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 50px; } }
.split-media { aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(0.2,0.8,0.2,1); }
.split-media:hover img { transform: scale(1.06); }
.split-media.tall { aspect-ratio: 3/4; }
.split-media.wide { aspect-ratio: 5/4; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 70px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-num { font-family: "Archivo", sans-serif; font-size: 80px; color: var(--green); line-height: 1; font-weight: 900; letter-spacing: -0.05em; font-variation-settings: "wdth" 80; }
.stat-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 12px; font-weight: 600; }

/* Distances */
.distances { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.dist { padding: 24px 0; border-top: 1px solid var(--rule); }
.dist-from { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; font-weight: 600; }
.dist-time { font-family: "Archivo", sans-serif; font-size: 44px; color: var(--green); font-weight: 800; letter-spacing: -0.03em; font-variation-settings: "wdth" 85; }

/* Info table */
.infotable { width: 100%; border-collapse: collapse; }
.infotable tr { border-bottom: 1px solid var(--rule); }
.infotable tr:first-child { border-top: 1px solid var(--rule); }
.infotable th, .infotable td { padding: 22px 0; text-align: left; vertical-align: top; }
.infotable th { font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-soft); width: 38%; padding-right: 24px; }
.infotable td { color: var(--ink); font-size: 16px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--rule); padding: 28px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; cursor: pointer; }
.faq-q h4 { font-family: "Archivo", sans-serif; font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; text-transform: uppercase; font-variation-settings: "wdth" 92; }
.faq-toggle { font-size: 28px; color: var(--green); transition: transform 0.4s; flex-shrink: 0; line-height: 1; font-weight: 200; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, margin 0.3s; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 500px; margin-top: 18px; }

/* CTA band */
.cta-band {
  background: var(--green-deep); color: var(--cream);
  padding: 130px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(237,228,202,0.1), transparent 60%);
}
.cta-band-picto {
  position: absolute !important; opacity: 0.06; pointer-events: none;
  display: block;
}
.cta-band-picto svg { width: 100% !important; height: 100% !important; display: block; }
.cta-band-picto.left { left: 4%; top: 50%; transform: translateY(-50%); width: 200px; animation: floatB 14s ease-in-out infinite; }
.cta-band-picto.right { right: 4%; top: 40%; width: 180px; animation: floatA 11s ease-in-out infinite; }
.cta-band > * { position: relative; }
.cta-band h2 { color: white; margin-bottom: 24px; font-weight: 300; }
.cta-band p { opacity: 0.85; max-width: 60ch; margin: 0 auto 36px; font-size: 17px; line-height: 1.65; }
.cta-phone { font-family: "Archivo", sans-serif; font-size: 56px; color: var(--cream); display: inline-block; margin-top: 20px; border-bottom: 1px solid rgba(237,228,202,0.4); padding-bottom: 8px; font-weight: 800; letter-spacing: -0.03em; transition: border-color 0.3s; font-variation-settings: "wdth" 85; }
.cta-phone:hover { border-color: var(--cream); }

/* Footer */
.foot { background: var(--green-deep); color: var(--cream); padding: 90px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand img { width: auto; height: 56px; margin-bottom: 18px; color: var(--cream); }
.foot-brand .brand-svg { display: block; height: 54px; width: auto; margin-bottom: 18px; color: var(--cream); }
.foot-brand .brand-mark { display: block; height: 54px; margin-bottom: 18px; color: var(--cream); }
.foot-brand .brand-mark svg { height: 100%; width: auto; display: block; }
.foot-brand p { font-size: 14px; opacity: 0.78; max-width: 32ch; line-height: 1.65; }
.foot h5 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(237,228,202,0.55); margin-bottom: 22px; font-family: "Manrope", sans-serif; font-weight: 600; }
.foot ul { list-style: none; }
.foot ul li { margin-bottom: 12px; }
.foot ul a { font-size: 15px; color: var(--cream); opacity: 0.82; transition: opacity 0.2s; }
.foot ul a:hover { opacity: 1; }
.foot-bottom { margin-top: 70px; padding-top: 28px; border-top: 1px solid rgba(237,228,202,0.15); display: flex; justify-content: space-between; font-size: 12px; opacity: 0.55; flex-wrap: wrap; gap: 12px; }

/* Pull quote */
.pull {
  font-family: "Archivo", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15; color: var(--ink);
  max-width: 28ch; margin: 80px auto;
  text-align: center; font-weight: 800; letter-spacing: -0.03em;
  text-transform: uppercase;
  position: relative;
  font-variation-settings: "wdth" 88;
}
.pull em { font-style: normal; color: var(--green); font-variation-settings: "wdth" 85; font-weight: 900; }
.pull::before, .pull::after {
  content: ""; display: block; width: 56px; height: 1px;
  background: var(--green); margin: 32px auto;
}

/* Image strip */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.strip-img { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; }
.strip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.strip-img:hover img { transform: scale(1.07); }
@media (max-width: 720px) { .strip { grid-template-columns: 1fr 1fr; } }

/* Linklist */
.linklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.linklist a {
  padding: 32px 28px; background: var(--paper); display: flex; flex-direction: column; gap: 8px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  border: 1px solid var(--rule-soft); border-radius: 4px;
}
.linklist a:hover { background: white; transform: translateY(-4px); border-color: var(--green); box-shadow: 0 18px 36px -16px rgba(20,32,26,0.18); }
.linklist .ll-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.linklist .ll-title { font-family: "Archivo", sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; font-variation-settings: "wdth" 88; }
.linklist .ll-arrow { font-size: 12px; margin-top: 10px; opacity: 0.6; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--rule); border-radius: 999px; color: var(--ink-soft); font-weight: 600; }

.feature-line { display: flex; align-items: flex-start; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--rule); }
.feature-line .num { font-family: "Archivo", sans-serif; font-size: 32px; color: var(--green); width: 56px; flex-shrink: 0; line-height: 1; font-weight: 900; letter-spacing: -0.04em; font-variation-settings: "wdth" 80; }
.feature-line h4 { margin-bottom: 6px; }
.feature-line p { font-size: 15px; color: var(--ink-soft); }

/* ============================================================
   PICTOS — animated SVG icons
   ============================================================ */
.picto {
  display: inline-block; vertical-align: middle;
  stroke: var(--green); stroke-width: 1.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.picto-lg { width: 80px; height: 80px; stroke-width: 1.2; }
.picto-md { width: 48px; height: 48px; }
.picto-sm { width: 32px; height: 32px; }

/* draw on view */
.picto .draw {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawIn 2s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes drawIn { to { stroke-dashoffset: 0; } }

/* picto motions */
.picto-spin > .spin { transform-origin: center; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.picto-bob > .bob { animation: bob 3s ease-in-out infinite; transform-origin: center bottom; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

.picto-drip > .drip { animation: drip 2.5s ease-in-out infinite; opacity: 0; }
.picto-drip > .drip:nth-child(2) { animation-delay: 0.6s; }
.picto-drip > .drip:nth-child(3) { animation-delay: 1.2s; }
@keyframes drip {
  0% { transform: translateY(-5px); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

.picto-wave > .wave { animation: wave 4s ease-in-out infinite; transform-origin: center; }
@keyframes wave { 0%,100% { transform: translateX(0); } 50% { transform: translateX(2px); } }

.picto-pulse > .pulse { animation: pulse 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.7; } }

/* Picto inline label */
.picto-row { display: flex; align-items: center; gap: 16px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Image reveal */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal::after {
  content: ""; position: absolute; inset: 0;
  background: var(--cream);
  transform-origin: right;
  transition: transform 1.2s cubic-bezier(0.7,0,0.3,1);
}
.img-reveal.is-visible::after { transform: scaleX(0); }
.img-reveal img { transform: scale(1.1); transition: transform 1.4s cubic-bezier(0.7,0,0.3,1); }
.img-reveal.is-visible img { transform: scale(1); }

/* Marquee picto strip */
.picto-marquee {
  overflow: hidden;
  padding: 50px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
}
.picto-marquee-track {
  display: flex; gap: 80px; align-items: center;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.picto-marquee-item {
  display: flex; align-items: center; gap: 18px;
  font-family: "Fraunces", serif; font-size: 28px; font-weight: 300;
  color: var(--green); letter-spacing: -0.02em;
  white-space: nowrap;
}
.picto-marquee-item .picto { stroke: var(--green); width: 36px; height: 36px; }
.picto-marquee-item .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   PARALLAX CARD STACK (homepage feature)
   ============================================================ */
.feat-stack {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .feat-stack { grid-template-columns: 1fr; gap: 40px; } }
.feat-imgs {
  position: relative; aspect-ratio: 1/1.05;
}
.feat-imgs > div {
  position: absolute; overflow: hidden; border-radius: 4px;
  box-shadow: 0 30px 60px -25px rgba(20,32,26,0.4);
}
.feat-imgs > div img { width: 100%; height: 100%; object-fit: cover; }
.feat-imgs .ph-1 { top: 0; left: 0; width: 62%; aspect-ratio: 4/5; z-index: 2; }
.feat-imgs .ph-2 { bottom: 0; right: 0; width: 56%; aspect-ratio: 5/6; z-index: 1; }
.feat-imgs .ph-tag {
  position: absolute; bottom: 18%; left: 8%; z-index: 3;
  background: var(--cream); padding: 14px 22px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: var(--green-deep);
  box-shadow: 0 14px 26px -10px rgba(20,32,26,0.4);
}

/* ============================================================
   PRICING — modern cards (tarifs page)
   ============================================================ */
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: 6px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.3s;
  overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(20,32,26,0.25); border-color: var(--green); }
.price-card:hover::before { transform: scaleX(1); }
.price-card.featured {
  background: var(--green-deep); color: var(--cream);
  border-color: var(--green-deep);
}
.price-card.featured::before { background: var(--accent); transform: scaleX(1); }
.price-card.featured .price-tag { color: var(--accent); }
.price-card.featured .price-num { color: white; }
.price-card.featured .price-meta { color: rgba(237,228,202,0.7); }
.price-card.featured .price-name { color: white; }
.price-card.featured .price-divider { background: rgba(237,228,202,0.2); }
.price-card.featured .price-list li::before { background: var(--accent); }

.price-picto {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--cream-soft); border-radius: 50%;
  padding: 12px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.price-card:hover .price-picto { transform: rotate(15deg) scale(1.1); }
.price-card.featured .price-picto { background: rgba(237,228,202,0.1); border: 1px solid rgba(237,228,202,0.2); }
.price-card.featured .price-picto svg { stroke: var(--accent); }

.price-tag { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.price-name { font-family: "Archivo", sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; text-transform: uppercase; font-variation-settings: "wdth" 88; }
.price-meta { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.02em; }
.price-divider { height: 1px; background: var(--rule); margin: 8px 0 4px; }
.price-num { font-family: "Archivo", sans-serif; font-size: 56px; color: var(--green-deep); font-weight: 900; letter-spacing: -0.04em; line-height: 1; font-variation-settings: "wdth" 82; }
.price-num small { font-size: 14px; font-family: "Manrope", sans-serif; opacity: 0.6; letter-spacing: 0.04em; font-weight: 500; margin-left: 4px; }
.price-duration { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; margin-top: -4px; }
.price-list { list-style: none; margin-top: 14px; padding: 0; }
.price-list li { padding: 8px 0 8px 24px; position: relative; font-size: 14px; line-height: 1.55; color: inherit; opacity: 0.92; }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 14px; height: 1px; background: var(--green);
}

/* Pricing comparison row */
.price-compare {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.price-compare:first-child { border-top: 1px solid var(--rule); }
.price-compare .pc-name { font-family: "Archivo", sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; font-variation-settings: "wdth" 88; }
.price-compare .pc-meta { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; }
.price-compare .pc-num { font-family: "Archivo", sans-serif; font-size: 28px; color: var(--green); font-weight: 900; letter-spacing: -0.04em; text-align: right; font-variation-settings: "wdth" 82; }
@media (max-width: 720px) { .price-compare { grid-template-columns: 1fr 1fr; } .price-compare .pc-meta-row { display: none; } }

/* Photo gallery (homepage and other) */
.photo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 80vh; min-height: 600px;
}
.photo-gallery > div { overflow: hidden; border-radius: 2px; }
.photo-gallery > div:nth-child(1) { grid-row: 1 / 3; }
.photo-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1); }
.photo-gallery > div:hover img { transform: scale(1.06); }
@media (max-width: 720px) {
  .photo-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 2fr 1fr 1fr; height: auto; }
  .photo-gallery > div:nth-child(1) { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 4/3; }
}

/* Floating decorative pictos (background ornament) */
.bg-picto {
  position: absolute; pointer-events: none; opacity: 0.05;
  z-index: 0;
}
.bg-picto.tl { top: 8%; left: 4%; width: 180px; }
.bg-picto.br { bottom: 8%; right: 4%; width: 220px; }
.bg-picto.tr { top: 12%; right: 6%; width: 140px; }
@media (max-width: 720px) { .bg-picto { display: none; } }

/* Ensure section content is above bg-picto */
.section > .wrap, .section > .wrap-narrow, .section > .wrap-wide { position: relative; z-index: 1; }

/* ============================================================
   INLINE PRICE BLOCK — service pages
   ============================================================ */
.price-card-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  transition: box-shadow 0.4s, border-color 0.3s;
}
.price-card-inline:hover { border-color: var(--green); box-shadow: 0 30px 60px -25px rgba(20,32,26,0.2); }
.pci-left {
  background: var(--green-deep);
  color: var(--cream);
  padding: 38px 36px;
  display: flex; align-items: center; gap: 22px;
  position: relative; overflow: hidden;
}
.pci-left::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/topo-mountain.png");
  background-size: cover; background-position: center;
  opacity: 0.1; filter: invert(1); pointer-events: none;
}
.pci-left > * { position: relative; z-index: 1; }
.pci-picto {
  width: 56px; height: 56px; flex-shrink: 0;
  padding: 12px;
  border-radius: 50%;
  background: rgba(237,228,202,0.1);
  border: 1px solid rgba(237,228,202,0.2);
}
.pci-picto svg { stroke: var(--accent); }
.pci-tag {
  font-family: "Archivo", sans-serif;
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 700;
  color: var(--accent); display: block; margin-bottom: 6px;
}
.pci-num {
  font-family: "Archivo", sans-serif;
  font-size: 64px; font-weight: 900;
  letter-spacing: -0.04em;
  font-variation-settings: "wdth" 82;
  color: white;
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.pci-cur { font-size: 32px; opacity: 0.9; font-weight: 700; }
.pci-num small {
  font-family: "Manrope", sans-serif;
  font-size: 13px; letter-spacing: 0.06em;
  font-weight: 500; opacity: 0.7;
  text-transform: uppercase; margin-left: 8px;
}
.pci-meta {
  display: block; margin-top: 10px;
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(237,228,202,0.75);
}
.pci-right {
  padding: 38px 36px;
  display: flex; flex-direction: column; gap: 22px;
  justify-content: center;
}
.pci-includes {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-soft);
}
.pci-includes strong { color: var(--ink); font-family: "Archivo", sans-serif; font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: 0.18em; display: block; margin-bottom: 6px; }
.pci-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.btn-link {
  font-family: "Archivo", sans-serif;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
  color: var(--green); border-bottom: 1px solid currentColor;
  padding-bottom: 4px; transition: color 0.3s, transform 0.3s;
}
.btn-link:hover { color: var(--green-deep); transform: translateX(4px); }
@media (max-width: 720px) {
  .price-card-inline { grid-template-columns: 1fr; }
  .pci-num { font-size: 52px; }
}

/* ============================================================
   TOPO ON DARK SECTIONS (distances + cta-band)
   ============================================================ */
.distances-section, .cta-band {
  position: relative;
  overflow: hidden;
}
.distances-section::before, .cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/topo-mountain.png");
  background-size: cover; background-position: center;
  opacity: 0.10; filter: invert(1);
  pointer-events: none; z-index: 0;
}
.distances-section > *, .cta-band > * { position: relative; z-index: 1; }

/* ============================================================
   RIDGE TIMELINE — geographic skyline (Pau → Pic du Midi)
   Inspired by Blazing Adventures hero strip
   ============================================================ */
.ridge {
  position: relative;
  background: linear-gradient(to bottom, #1a2820 0%, #0f1813 100%);
  color: var(--cream);
  padding: 70px 0 0;
  overflow: hidden;
}
.ridge-topo {
  position: absolute; inset: 0;
  background-image: url("assets/topo-mountain.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  filter: invert(1);
  pointer-events: none;
}
.ridge-inner { position: relative; z-index: 2; }
.ridge-title {
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 85;
  color: white;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.ridge-sub {
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.ridge-chevron { display: block; margin: 24px auto 0; width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; opacity: 0.8; animation: bob 2.4s ease-in-out infinite; }
.ridge-svg-wrap {
  position: relative;
  margin-top: 70px;
  height: 240px;
}
.ridge-svg { width: 100%; height: 100%; display: block; }
.ridge-line { stroke: rgba(237,228,202,0.7); stroke-width: 1.5; fill: none; stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 2.4s ease; }
.ridge.is-visible .ridge-line { stroke-dashoffset: 0; }
.ridge-stops {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 4%;
  align-items: end;
  z-index: 3;
}
.ridge-stop {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}
.ridge-stop a {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.3s, transform 0.3s;
  font-variation-settings: "wdth" 95;
}
.ridge-stop a:hover { color: var(--accent); transform: translateY(-2px); }
.ridge-stop-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--accent);
  margin-bottom: 14px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ridge-stop:hover .ridge-stop-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(201,169,106,0.2);
}
.ridge-stop-meta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,228,202,0.5);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .ridge-stops { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .ridge-svg-wrap { height: 320px; }
}

/* ============================================================
   TOPO BACKGROUND — dark editorial section (OARS-inspired)
   ============================================================ */
.topo-section {
  position: relative;
  background: #0e1611;
  color: var(--cream);
  overflow: hidden;
}
.topo-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/topo-mountain.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.12;
  filter: invert(1);
  pointer-events: none;
  mix-blend-mode: lighten;
}
.topo-section::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,169,106,0.12), transparent 60%);
  pointer-events: none;
}
.topo-section > .wrap, .topo-section > .wrap-narrow, .topo-section > .wrap-wide { position: relative; z-index: 2; }
.topo-river {
  position: absolute;
  top: 25%;
  left: -5%;
  width: 110%;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}
.topo-river path {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 4s ease;
}
.topo-section.is-visible .topo-river path { stroke-dashoffset: 0; }

/* ============================================================
   PHOTO CARDS — image-with-floating-text-card layout
   (inspired by user reference 3)
   ============================================================ */
.photo-card-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .photo-card-row { grid-template-columns: 1fr; } }
.photo-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--green-deep);
}
.photo-card-bg { position: absolute; inset: 0; z-index: 0; }
.photo-card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(0.2,0.8,0.2,1); }
.photo-card:hover .photo-card-bg img { transform: scale(1.06); }
.photo-card-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(20,32,26,0.4) 100%);
}
.photo-card-text {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  background: var(--paper-warm);
  border-radius: 4px;
  padding: 28px 30px 26px;
  z-index: 2;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.4);
}
.photo-card-text .pc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
  margin-bottom: 14px;
}
.photo-card-text .pc-eyebrow svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.photo-card-text h3 {
  font-family: "Archivo", sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 88;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1;
}
.photo-card-text p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.photo-card-text .pc-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-deep);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Archivo", sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  transition: background 0.3s, transform 0.3s, gap 0.3s;
}
.photo-card-text .pc-cta:hover { background: var(--green); gap: 14px; transform: translateY(-2px); }
.photo-card-text .pc-cta::after { content: "→"; font-size: 13px; }
