:root{
  --green:#00d96c;
  --green-dark:#25b856;
  --ink:#071b13;
  --muted:#747d79;
  --offwhite:#f5faf7;
  --nav-h:82px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Rubik","Arial","Helvetica",sans-serif;
  color:var(--ink);
  background:#fff;
}
body.is-loading{overflow:hidden}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* Opening animation: entirely inline SVG, so it also works when index.html is opened locally. */
.opening{
  position:fixed;
  inset:0;
  z-index:9999;
  background:#00140d;
  display:grid;
  place-items:center;
  overflow:hidden;
  transition:opacity .7s ease,visibility .7s ease;
}
.opening-logo{
  position:relative;
  width:min(72vh,72vw);
  aspect-ratio:108/100;
  filter:drop-shadow(0 0 46px rgba(0,217,108,.2));
  animation:openingScale 3.65s cubic-bezier(.22,.72,.16,1) forwards;
}
.opening-svg{
  width:100%;
  height:100%;
  display:block;
  overflow:visible;
}
.opening-shell{
  opacity:0;
  transform-box:fill-box;
  transform-origin:center;
  animation:shellArrive .75s .15s cubic-bezier(.2,.8,.2,1) forwards;
}
.opening-n{
  transform-box:fill-box;
  transform-origin:center;
  animation:nFly 2.05s .3s cubic-bezier(.2,.82,.2,1) both;
}
.opening.leave{opacity:0;visibility:hidden}
@keyframes shellArrive{
  0%{opacity:0;transform:scale(.76)}
  100%{opacity:1;transform:scale(1)}
}
@keyframes nFly{
  0%{opacity:0;transform:translateX(-95px) scale(.84)}
  34%{opacity:1;transform:translateX(0) scale(1)}
  60%{opacity:1;transform:translateX(0) scale(1)}
  78%{opacity:0;transform:translateX(96px) scale(.9)}
  79%{opacity:0;transform:translateX(-90px) scale(.9)}
  100%{opacity:1;transform:translateX(0) scale(1)}
}
@keyframes openingScale{
  0%,70%{transform:scale(1);opacity:1}
  100%{transform:scale(.2);opacity:0}
}

/* White navigation bar as requested */
.nav{
  position:fixed;
  z-index:100;
  inset:0 0 auto;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(22px,4.5vw,70px);
  background:#fff;
  border-bottom:1px solid rgba(7,27,19,.07);
  transform:translateY(-110%);
  transition:transform .7s ease;
  box-shadow:0 5px 28px rgba(7,27,19,.04);
}
.ready .nav{transform:none}
.brand{
  height:58px;
  width:154px;
  position:relative;
  display:flex;
  align-items:center;
}
.brand>img{
  width:142px;
  height:auto;
}
.mini-mark{display:none}
.nav-links{display:flex;gap:30px;font-size:12px;font-weight:600}
.nav-links a{opacity:.72;transition:.2s ease}
.nav-links a:hover{opacity:1;color:var(--green-dark)}

.hero{
  min-height:100vh;
  position:relative;
  display:grid;
  place-items:center;
  text-align:center;
  color:#fff;
  background:#00140d;
  overflow:hidden;
  padding:calc(var(--nav-h) + 40px) 24px 70px;
}
.hero-atmosphere{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 34%,rgba(0,217,108,.23),transparent 25%),
    radial-gradient(circle at 50% 88%,rgba(0,217,108,.15),transparent 37%),
    linear-gradient(145deg,#001d13,#000a07 68%);
}
.hero-atmosphere:after{
  content:"";
  position:absolute;
  inset:58% -10% -18%;
  background:radial-gradient(ellipse,rgba(0,217,108,.18),transparent 60%);
  filter:blur(30px);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:980px;
  opacity:0;
  transform:translateY(30px);
  transition:opacity 1s .25s ease,transform 1s .25s ease;
}
.ready .hero-content{opacity:1;transform:none}
.eyebrow,.section-kicker{
  text-transform:uppercase;
  letter-spacing:.19em;
  font-size:13px;
  font-weight:700;
}
.eyebrow{color:var(--green);margin:0 0 20px}
.hero h1{
  font-size:clamp(50px,6.5vw,92px);
  line-height:.98;
  letter-spacing:-.048em;
  margin:0 auto 25px;
  max-width:980px;
}
.lead{
  font-size:clamp(15px,1.35vw,19px);
  line-height:1.7;
  color:rgba(255,255,255,.68);
  max-width:620px;
  margin:auto;
}
.scroll-cue{display:grid;place-items:center;width:44px;height:58px;margin:42px auto 0}
.scroll-cue span{
  width:15px;height:15px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(45deg);
  animation:bounce 1.6s infinite;
}
@keyframes bounce{50%{transform:translateY(8px) rotate(45deg);opacity:.5}}

.intro-section{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
  gap:clamp(35px,5vw,80px);
  align-items:start;
  min-height:100vh;
  background:#fff;
  overflow:hidden;
  padding:clamp(105px,10vw,155px) max(28px,calc((100vw - 1320px)/2));
}
.intro-copy{
  z-index:2;
  max-width:720px;
  padding:0;
}
.section-kicker{color:var(--green-dark);margin:0 0 28px}
.intro-copy h2,.story-copy h2,.philosophy-inner h2,.experience-copy h2,.legacy h2{
  font-size:clamp(39px,4.55vw,68px);
  line-height:1.03;
  letter-spacing:-.045em;
  margin:0 0 26px;
}
.story-bridge{
  color:#838a87!important;
  font-size:clamp(16px,1.25vw,19px)!important;
  line-height:1.65!important;
  margin:30px 0!important;
}
.green-rule{width:48px;height:2px;background:var(--green-dark);margin:30px 0}
.intro-copy>p,.story-copy>p,.philosophy-inner>p,.experience-copy>p,.legacy>p{
  font-size:clamp(16px,1.12vw,18.5px);
  line-height:1.76;
  color:#34433c;
}
.closing-lines{margin-top:34px;color:var(--ink)!important}
.welcome{color:var(--green-dark)!important;font-weight:700}
.intro-photo{
  position:sticky;
  top:calc(var(--nav-h) + 35px);
  margin:0;
  align-self:start;
  border-radius:24px;
  overflow:hidden;
  background:#f5f5f3;
  box-shadow:0 24px 70px rgba(7,27,19,.12);
}
.intro-photo:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(255,255,255,.2),transparent 22%);
}
.intro-photo img{
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center;
}

.story-section{
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(440px,.98fr);
  gap:clamp(35px,5vw,80px);
  align-items:start;
  background:#f4eee8;
  overflow:hidden;
  padding:clamp(110px,10vw,155px) max(28px,calc((100vw - 1320px)/2));
}
.story-copy{
  padding:0;
  max-width:730px;
  z-index:2;
}
.story-copy h2{font-size:clamp(40px,4.3vw,64px)}
.opening-line{font-weight:700;color:var(--ink)!important}
.story-copy blockquote{
  font-size:clamp(25px,2.7vw,39px);
  line-height:1.23;
  letter-spacing:-.025em;
  margin:46px 0;
  padding-left:27px;
  border-left:4px solid var(--green);
  font-weight:600;
}
.story-photo{
  position:sticky;
  top:calc(var(--nav-h) + 35px);
  margin:0;
  align-self:start;
  border-radius:24px;
  overflow:hidden;
  background:#ddc8b8;
  box-shadow:0 24px 70px rgba(58,30,12,.18);
}
.story-photo:before{
  content:"";
  position:absolute;
  z-index:2;
  inset:0;
  pointer-events:none;
  background:linear-gradient(0deg,rgba(0,0,0,.18),transparent 36%);
}
.story-photo img{
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center;
}
.story-photo figcaption{
  position:absolute;
  z-index:3;
  bottom:22px;
  right:25px;
  color:#fff;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  text-shadow:0 2px 12px rgba(0,0,0,.45);
}

.philosophy-section{
  background:#00140d;
  color:#fff;
  padding:clamp(110px,12vw,170px) 28px;
}
.philosophy-inner{max-width:1120px;margin:auto}
.philosophy-inner>p{color:rgba(255,255,255,.72);max-width:780px}
.philosophy-lead{margin-top:48px}
.big-belief{
  font-size:clamp(27px,3.3vw,47px)!important;
  line-height:1.18!important;
  color:#fff!important;
  font-weight:700;
  max-width:930px!important;
}
.challenge-list{display:flex;flex-wrap:wrap;gap:12px;margin:42px 0 70px}
.challenge-list span{
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  padding:12px 17px;
  color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.035);
}
.philosophy-inner h3{font-size:clamp(27px,3vw,42px);margin:0 0 32px}
.ingredients{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.ingredients article{
  min-height:190px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:25px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:rgba(255,255,255,.035);
}
.ingredients strong{color:var(--green);font-size:14px}
.ingredients span{font-size:19px;line-height:1.35;font-weight:600}

.experience-section{
  max-width:1160px;
  margin:auto;
  padding:clamp(105px,12vw,165px) 28px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.experience-copy{position:sticky;top:125px}
.everyone-won{
  font-size:clamp(28px,3vw,44px)!important;
  color:var(--ink)!important;
  font-weight:700;
  margin-top:35px;
}
.wins{display:grid;gap:20px}
.wins article{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:26px;
  padding:32px;
  border-radius:25px;
  background:linear-gradient(145deg,#f7fbf9,#ecf8f1);
  border:1px solid rgba(37,184,86,.13);
}
.wins span{font-size:13px;letter-spacing:.16em;color:var(--green-dark);font-weight:700}
.wins p{margin:0;font-size:20px;line-height:1.5;font-weight:600}

.legacy{
  padding:clamp(95px,11vw,150px) max(28px,calc((100vw - 1080px)/2));
  background:linear-gradient(180deg,#fff,#eef9f3);
}
.legacy>p{max-width:760px}
footer{
  background:#00140d;
  color:rgba(255,255,255,.55);
  text-align:center;
  padding:44px;
  font-size:13px;
}
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease,transform .8s ease;
}
.reveal.visible{opacity:1;transform:none}

@media(max-width:960px){
  .nav-links{display:none}
  .intro-section,.story-section,.experience-section{grid-template-columns:1fr}
  .intro-section,.story-section{padding-left:28px;padding-right:28px}
  .intro-copy,.story-copy{max-width:none;padding:0}
  .intro-photo,.story-photo{position:relative;top:auto;width:100%;order:2}
  .intro-photo:before{background:linear-gradient(180deg,rgba(255,255,255,.18),transparent 22%)}
  .story-photo:before{background:linear-gradient(0deg,rgba(0,0,0,.18),transparent 36%)}
  .experience-copy{position:static}
  .ingredients{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  :root{--nav-h:70px}
  .brand{width:130px}.brand>img{width:124px}
  .hero h1{font-size:44px}
  .intro-copy,.story-copy,.experience-section{padding-left:23px;padding-right:23px}
  .ingredients{grid-template-columns:1fr}
  .opening-logo{width:86vw}
  .wins article{grid-template-columns:45px 1fr;padding:24px}
  .story-copy blockquote{padding-left:20px}
}
@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important}
  .opening{display:none}
  .nav,.hero-content,.reveal{transform:none!important;opacity:1!important;transition:none!important}
  .scroll-cue span{animation:none}
  body.is-loading{overflow:auto}
}


/* ===== Build 2 / v1.2 refinements ===== */
.section-kicker{color:var(--green-dark)!important}
.nav .brand{gap:11px;width:auto}
.nav .brand>img{width:130px}
.nav-n{width:45px;height:42px;display:block;flex:0 0 auto;overflow:hidden}
.nav-n svg{width:100%;height:100%;display:block}
.nav-n-letter{
  transform-box:fill-box;
  transform-origin:center;
  animation:navNudge 3.2s ease-in-out infinite;
}
@keyframes navNudge{
  0%,18%,100%{opacity:1;transform:translateX(0)}
  26%{opacity:0;transform:translateX(42px)}
  27%{opacity:0;transform:translateX(-42px)}
  38%{opacity:1;transform:translateX(0)}
}
.story-bridge{display:none}
.philosophy-inner .section-kicker{margin-bottom:12px}
.philosophy-inner h2{margin-bottom:34px}
.big-belief{
  font-size:clamp(23px,2.35vw,35px)!important;
  color:var(--green)!important;
  line-height:1.25!important;
  max-width:820px!important;
  margin:10px 0 18px!important;
}
.ingredient-icon{
  width:48px;height:48px;
  display:grid;place-items:center;
  margin-bottom:22px;
}
.ingredient-icon svg,.step-icon svg{
  width:100%;height:100%;
  fill:none;stroke:var(--green);
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}
.ingredients article{justify-content:flex-start}
.ingredients strong{margin-top:auto;padding-top:20px}
.everyone-won{color:var(--green-dark)!important}

.chapter-heading{max-width:920px;margin:0 auto 70px;text-align:center}
.chapter-heading>p:last-child{
  max-width:710px;margin:22px auto 0;
  color:#5e6a64;font-size:18px;line-height:1.7
}
.chapter-heading h2{
  font-size:clamp(42px,5vw,72px);
  line-height:1.03;letter-spacing:-.045em;margin:0
}

.concept-section{padding:clamp(105px,11vw,160px) 28px;background:#f5faf7}
.concept-steps{
  max-width:1280px;margin:auto;
  display:grid;grid-template-columns:repeat(5,1fr);
  gap:14px;position:relative
}
.concept-steps:before{
  content:"";position:absolute;top:83px;left:8%;right:8%;
  height:1px;background:rgba(37,184,86,.28)
}
.concept-steps article{
  position:relative;z-index:1;
  min-height:360px;padding:24px 22px 28px;
  border-radius:22px;background:#fff;
  border:1px solid rgba(37,184,86,.14);
  box-shadow:0 18px 45px rgba(7,27,19,.055)
}
.step-no{font-size:12px;letter-spacing:.16em;color:var(--green-dark);font-weight:700}
.step-icon{
  width:58px;height:58px;margin:28px 0 30px;
  padding:12px;border-radius:50%;
  background:#effbf4;border:1px solid rgba(37,184,86,.2)
}
.concept-steps h3{font-size:21px;line-height:1.25;margin:0 0 14px}
.concept-steps p{font-size:15px;line-height:1.65;color:#65716b;margin:0}

.app-section{
  padding:clamp(110px,12vw,170px) 28px;
  background:linear-gradient(145deg,#00140d,#00291c);
  color:#fff;overflow:hidden
}
.light-heading h2{color:#fff}
.light-heading>p:last-child{color:rgba(255,255,255,.65)}
.device-stage{
  max-width:1050px;height:610px;margin:20px auto 0;
  display:flex;justify-content:center;align-items:flex-end;
  gap:clamp(10px,3vw,48px);perspective:1200px
}
.phone{
  width:260px;height:520px;padding:55px 24px 30px;
  border:9px solid #101614;border-radius:42px;
  background:linear-gradient(180deg,#fff,#edf8f1);
  color:var(--ink);box-shadow:0 35px 90px rgba(0,0,0,.45);
  display:flex;flex-direction:column;
  position:relative
}
.phone:before{
  content:"";position:absolute;top:15px;left:50%;
  width:78px;height:20px;border-radius:12px;
  background:#101614;transform:translateX(-50%)
}
.phone span{font-size:12px;color:var(--green-dark);text-transform:uppercase;letter-spacing:.15em;font-weight:700}
.phone strong{font-size:29px;line-height:1.1;margin-top:45px}
.phone i{font-style:normal;font-size:14px;color:#718079;margin-top:auto}
.phone-one{transform:rotateY(13deg) translateY(28px)}
.phone-two{transform:translateY(-30px);z-index:2}
.phone-three{transform:rotateY(-13deg) translateY(28px)}

.films-section{padding:clamp(110px,12vw,170px) 28px;background:#050706;color:#fff}
.films-heading h2{color:#fff}
.films-heading>p:last-child{color:rgba(255,255,255,.62)}
.main-film{max-width:1180px;margin:auto}
.video-frame{aspect-ratio:16/9;background:#000;border-radius:24px;overflow:hidden;box-shadow:0 35px 100px rgba(0,0,0,.55)}
.video-frame iframe{width:100%;height:100%;border:0}
.film-caption{display:flex;justify-content:space-between;align-items:end;padding:22px 3px 34px}
.film-caption span,.teaser-grid span{font-size:12px;text-transform:uppercase;letter-spacing:.15em;color:var(--green)}
.film-caption h3{font-size:27px;margin:0}
.teaser-grid{max-width:1180px;margin:auto;display:grid;grid-template-columns:repeat(5,1fr);gap:13px}
.teaser-grid article{
  min-height:165px;padding:20px;border-radius:18px;
  background:linear-gradient(150deg,#132219,#080e0a);
  border:1px solid rgba(255,255,255,.1);
  display:flex;flex-direction:column
}
.teaser-grid strong{margin-top:auto;font-size:17px;line-height:1.25}
.teaser-grid small{color:rgba(255,255,255,.45);margin-top:6px}

.journey-section{padding:clamp(110px,12vw,170px) 28px;background:#fff}
.journey-timeline{max-width:1160px;margin:auto;display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.journey-timeline article{padding:35px 28px;border-top:2px solid var(--green);position:relative}
.journey-timeline article:before{
  content:"";position:absolute;top:-8px;left:28px;width:14px;height:14px;
  border-radius:50%;background:var(--green)
}
.journey-timeline span{font-size:12px;color:var(--green-dark);letter-spacing:.14em;font-weight:700}
.journey-timeline h3{font-size:25px;margin:24px 0 12px}
.journey-timeline p{font-size:16px;line-height:1.65;color:#66716c}

.people-section{
  padding:clamp(110px,12vw,170px) max(28px,calc((100vw - 1120px)/2));
  background:#f4eee8;text-align:center
}
.people-section h2,.legacy h2,.memoriam-section h2{
  font-size:clamp(43px,5vw,72px);line-height:1.03;letter-spacing:-.045em;margin:0 0 25px
}
.people-section>p:not(.section-kicker){max-width:780px;margin:0 auto;font-size:18px;line-height:1.75;color:#5e625f}
.people-placeholder{
  height:400px;margin:65px auto 0;border-radius:30px;
  background:linear-gradient(135deg,rgba(0,0,0,.06),rgba(255,255,255,.22));
  border:1px dashed rgba(7,27,19,.22);
  display:grid;place-items:center;color:#7c7772
}

.legacy-link{
  display:inline-block;margin-top:24px;padding-bottom:5px;
  color:var(--green-dark);font-weight:700;border-bottom:1px solid var(--green-dark)
}
.memoriam-section{
  min-height:78vh;padding:120px 28px;
  display:grid;place-items:center;text-align:center;
  color:#fff;background:linear-gradient(145deg,#0d1511,#020504)
}
.memoriam-section>div{max-width:800px}
.memoriam-section p:not(.section-kicker){font-size:18px;line-height:1.75;color:rgba(255,255,255,.62)}
.closing-section{
  min-height:62vh;background:#00140d;color:#fff;
  display:grid;place-items:center;align-content:center;text-align:center;padding:70px 24px
}
.closing-mark{width:135px;filter:drop-shadow(0 0 35px rgba(0,217,108,.22));margin-bottom:30px}
.closing-section p{font-size:clamp(26px,3vw,42px);font-weight:600;margin:0}

@media(max-width:1050px){
  .concept-steps{grid-template-columns:repeat(2,1fr)}
  .concept-steps:before{display:none}
  .teaser-grid{grid-template-columns:repeat(2,1fr)}
  .journey-timeline{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .nav .brand>img{width:112px}
  .nav-n{width:38px;height:36px}
  .concept-steps{grid-template-columns:1fr}
  .device-stage{height:500px;gap:0;transform:scale(.78);margin:-35px -110px -40px}
  .phone{width:235px;height:465px}
  .teaser-grid,.journey-timeline{grid-template-columns:1fr}
  .film-caption{display:block}
  .film-caption h3{margin-top:8px}
}


/* v1.3 fixes */
.brand-wordmark{
  display:flex;
  flex-direction:column;
  line-height:.84;
  color:#101712;
  margin-left:2px;
}
.brand-wordmark span{
  font-size:13px;
  font-weight:400;
  letter-spacing:.045em;
}
.brand-wordmark strong{
  font-size:17px;
  font-weight:800;
  letter-spacing:.012em;
}
.main-film-link{display:block;color:inherit;text-decoration:none}
.video-poster{
  position:relative;
  min-height:clamp(390px,52vw,650px);
  border-radius:24px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 69% 45%,rgba(72,12,91,.56),transparent 31%),
    radial-gradient(circle at 45% 55%,rgba(0,217,108,.13),transparent 33%),
    linear-gradient(145deg,#111,#050706);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 35px 100px rgba(0,0,0,.5);
  transition:transform .3s ease,border-color .3s ease;
}
.main-film-link:hover .video-poster{
  transform:translateY(-3px);
  border-color:rgba(0,217,108,.35);
}
.poster-glow{
  position:absolute;
  width:48%;
  aspect-ratio:1;
  border-radius:50%;
  background:rgba(0,217,108,.075);
  filter:blur(45px);
}
.play-button{
  position:relative;
  z-index:2;
  width:94px;height:94px;
  border-radius:50%;
  display:grid;place-items:center;
  background:var(--green);
  box-shadow:0 15px 45px rgba(0,217,108,.26);
  transition:transform .25s ease;
}
.main-film-link:hover .play-button{transform:scale(1.07)}
.play-button span{
  width:0;height:0;
  border-top:13px solid transparent;
  border-bottom:13px solid transparent;
  border-left:21px solid #00140d;
  margin-left:5px;
}
.poster-copy{
  position:absolute;
  left:34px;bottom:30px;
  display:flex;flex-direction:column;
}
.poster-copy>span{
  color:var(--green);
  font-size:12px;text-transform:uppercase;letter-spacing:.15em
}
.poster-copy strong{font-size:28px;margin-top:7px}
.poster-copy small{color:rgba(255,255,255,.5);margin-top:5px}
.teaser-grid a{
  min-height:165px;padding:20px;border-radius:18px;
  background:linear-gradient(150deg,#132219,#080e0a);
  border:1px solid rgba(255,255,255,.1);
  display:flex;flex-direction:column;
  color:#fff;text-decoration:none;
  transition:transform .25s ease,border-color .25s ease,background .25s ease;
}
.teaser-grid a:hover{
  transform:translateY(-4px);
  border-color:rgba(0,217,108,.35);
  background:linear-gradient(150deg,#173223,#09120d);
}
.teaser-grid a span{
  font-size:12px;text-transform:uppercase;letter-spacing:.15em;color:var(--green)
}
.teaser-grid a strong{margin-top:auto;font-size:17px;line-height:1.25}
.teaser-grid a small{color:rgba(255,255,255,.45);margin-top:6px}
.video-note{
  max-width:1180px;margin:18px auto 0;
  color:rgba(255,255,255,.38);
  font-size:12px;line-height:1.5
}


/* ===== v1.4 — The real app ===== */
.app-real{padding-bottom:clamp(110px,12vw,180px)}
.app-demo-grid{max-width:1120px;margin:25px auto 130px;display:grid;grid-template-columns:.85fr 1.15fr;align-items:center;gap:80px}
.app-demo-copy h3,.app-screen-intro h3{font-size:clamp(38px,4vw,62px);line-height:1.04;letter-spacing:-.04em;margin:14px 0 22px;color:#fff}
.app-demo-copy p{font-size:18px;line-height:1.7;color:rgba(255,255,255,.66);max-width:470px}
.app-demo-label{font-size:12px;text-transform:uppercase;letter-spacing:.16em;color:var(--green);font-weight:700}
.app-flow-mini{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin:34px 0 26px}
.app-flow-mini span{padding:10px 13px;border:1px solid rgba(0,217,108,.28);border-radius:999px;font-size:12px;font-weight:700;color:#fff;background:rgba(0,217,108,.06)}
.app-flow-mini i{font-style:normal;color:var(--green)}
.app-demo-hint{font-size:13px!important;color:rgba(255,255,255,.4)!important}
.real-phone-wrap{display:flex;justify-content:center}
.real-phone{position:relative;width:min(370px,78vw);padding:26px 12px 68px;border-radius:58px;background:#111715;border:2px solid #2a302e;box-shadow:0 50px 120px rgba(0,0,0,.55),inset 0 0 0 2px #050706}
.real-phone video{display:block;width:100%;aspect-ratio:750/1334;object-fit:cover;background:#000;border-radius:32px}
.real-speaker{width:74px;height:7px;border-radius:99px;background:#050706;margin:0 auto 18px}
.real-home{position:absolute;width:42px;height:42px;border:3px solid #252b29;border-radius:50%;bottom:13px;left:50%;transform:translateX(-50%)}
.app-screen-story{max-width:1320px;margin:auto}
.app-screen-intro{max-width:760px;margin:0 auto 65px;text-align:center}
.screen-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;align-items:start}
.screen-strip figure{margin:0}
.screen-shot{padding:10px;border-radius:31px;background:#141a18;border:1px solid rgba(255,255,255,.09);box-shadow:0 24px 60px rgba(0,0,0,.3);transition:transform .3s ease}
.screen-strip figure:nth-child(2),.screen-strip figure:nth-child(4){margin-top:54px}
.screen-strip figure:hover .screen-shot{transform:translateY(-8px)}
.screen-shot img{width:100%;height:auto;display:block;border-radius:23px}
.screen-strip figcaption{padding:22px 8px 0;display:flex;flex-direction:column;gap:9px}
.screen-strip figcaption b{font-size:16px;color:#fff}
.screen-strip figcaption span{font-size:14px;line-height:1.55;color:rgba(255,255,255,.5)}
.app-closing-line{max-width:900px;margin:120px auto 0;text-align:center;border-top:1px solid rgba(255,255,255,.12);padding-top:70px}
.app-closing-line p{font-size:clamp(27px,3vw,42px);line-height:1.25;color:rgba(255,255,255,.6);margin:0}
.app-closing-line strong{color:#fff}
@media(max-width:900px){.app-demo-grid{grid-template-columns:1fr;gap:55px;text-align:center}.app-demo-copy p{margin-left:auto;margin-right:auto}.app-flow-mini{justify-content:center}.screen-strip{grid-template-columns:repeat(2,1fr)}.screen-strip figure:nth-child(2),.screen-strip figure:nth-child(4){margin-top:30px}}
@media(max-width:560px){.screen-strip{grid-template-columns:1fr;max-width:330px;margin:auto}.screen-strip figure:nth-child(2),.screen-strip figure:nth-child(4){margin-top:0}.app-demo-grid{margin-bottom:100px}.real-phone{width:min(330px,88vw)}}

/* ===== v1.5 — completed app story ===== */
.screen-story-copy{
  max-width:700px;margin:16px auto 0;color:rgba(255,255,255,.58);
  font-size:17px;line-height:1.7
}
.app-after-story{
  max-width:1240px;margin:125px auto 0;padding-top:95px;
  border-top:1px solid rgba(255,255,255,.12)
}
.after-flow{
  margin-top:55px;
  display:grid;grid-template-columns:repeat(5,1fr);gap:18px;
  align-items:start
}
.after-flow figure{margin:0}
.after-flow .screen-shot{
  border-radius:28px;overflow:hidden;
  background:#0c1510;padding:8px;
  box-shadow:0 25px 65px rgba(0,0,0,.35)
}
.after-flow .screen-shot img{display:block;width:100%;height:auto;border-radius:21px}
.after-flow figcaption{display:flex;flex-direction:column;padding:18px 5px 0}
.after-flow figcaption b{font-size:15px;color:#fff;margin-bottom:7px}
.after-flow figcaption span{font-size:13px;line-height:1.55;color:rgba(255,255,255,.5)}
.charity-note{
  max-width:820px;margin:70px auto 0;padding:28px 30px;
  border-left:2px solid var(--green);
  background:rgba(255,255,255,.035);
  color:rgba(255,255,255,.63);font-size:17px;line-height:1.7
}
.charity-note strong{color:#fff}
@media(max-width:1000px){
  .after-flow{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:700px){
  .after-flow{grid-template-columns:repeat(2,1fr);gap:14px}
  .app-after-story{margin-top:85px;padding-top:70px}
}

/* ===== v1.6 — tighter story + The Journey ===== */
.story-essence{margin:34px 0;padding:28px 30px;border-left:3px solid var(--green);background:rgba(37,184,86,.055)}
.story-essence p{margin:0 0 15px!important}.story-essence p:last-child{margin-bottom:0!important}
.story-essence .essence-line{font-size:22px!important;line-height:1.35!important;font-weight:700;color:var(--green-dark)!important}
.story-essence .extra-mile{font-weight:700;font-style:italic;color:var(--ink)!important}
.journey-v16{padding:0;background:#f7f5f1}
.journey-hero{padding:clamp(110px,12vw,170px) 28px;max-width:940px;margin:auto;text-align:center}
.journey-dates{margin:15px 0 20px;color:#6b756f;font-size:14px;text-transform:uppercase;letter-spacing:.16em;font-weight:700}
.journey-hero h2,.launch-copy h2{font-size:clamp(48px,6vw,84px);line-height:.98;letter-spacing:-.05em;margin:0 0 34px}
.journey-hero>p:not(.section-kicker):not(.journey-dates):not(.journey-thesis){max-width:690px;margin:9px auto;color:#626b66;font-size:18px;line-height:1.7}
.journey-mantra{display:flex;flex-wrap:wrap;justify-content:center;gap:9px;margin:36px auto 30px}
.journey-mantra span{padding:10px 15px;border:1px solid rgba(37,184,86,.28);border-radius:999px;color:var(--green-dark);font-weight:700;font-size:14px;background:#fff}
.journey-thesis{max-width:700px;margin:30px auto 0!important;font-size:22px!important;line-height:1.5!important;color:var(--ink)!important}
.journey-thesis strong{color:var(--green-dark)}
.journey-chapters{max-width:1180px;margin:0 auto;padding:0 28px 120px;display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.journey-chapter{min-height:430px;padding:38px 34px;border-radius:28px;background:#fff;border:1px solid rgba(7,27,19,.08);display:flex;flex-direction:column;justify-content:space-between;box-shadow:0 20px 55px rgba(7,27,19,.05)}
.journey-chapter-dark{background:#00291c;color:#fff}.journey-chapter-dark p{color:rgba(255,255,255,.64)!important}.journey-chapter-dark .journey-label{color:var(--green)!important}
.journey-year{font-size:12px;letter-spacing:.18em;color:var(--green-dark);font-weight:800}.journey-chapter-dark .journey-year{color:var(--green)}
.journey-label{font-size:12px!important;text-transform:uppercase;letter-spacing:.15em;color:var(--green-dark)!important;font-weight:700;margin:0 0 12px!important}
.journey-chapter h3{font-size:31px;line-height:1.08;letter-spacing:-.025em;margin:0 0 20px}
.journey-chapter p{font-size:16px;line-height:1.7;color:#626d67;margin:0 0 14px}
.launch-moment{padding:clamp(95px,10vw,145px) max(28px,calc((100vw - 1160px)/2));background:#07110c;color:#fff;display:grid;grid-template-columns:1.05fr .72fr;gap:80px;align-items:center}
.launch-copy .section-kicker{color:var(--green)!important}.launch-copy h2{color:#fff}
.launch-copy>p{font-size:18px;line-height:1.75;color:rgba(255,255,255,.68)}
.launch-copy blockquote{margin:38px 0;padding:0 0 0 24px;border-left:2px solid var(--green);font-size:clamp(21px,2.2vw,30px);line-height:1.4;font-weight:700;color:#fff}
.launch-copy .launch-note{font-size:14px;color:rgba(255,255,255,.43);font-style:italic;margin-top:34px}
.invitation-card{margin:0;padding:13px 13px 16px;background:#fff;border-radius:18px;transform:rotate(1.5deg);box-shadow:0 35px 90px rgba(0,0,0,.45)}
.invitation-card img{display:block;width:100%;max-height:610px;object-fit:cover;object-position:center 18%;border-radius:10px}
.invitation-card figcaption{padding:12px 6px 0;color:#6d746f;font-size:12px;letter-spacing:.04em}
.journey-end{padding:85px 28px 105px;max-width:920px;margin:auto;text-align:center;display:grid;grid-template-columns:auto 1fr auto;gap:18px;align-items:center}
.journey-end span,.journey-end strong{font-size:13px;text-transform:uppercase;letter-spacing:.12em}.journey-end i{height:1px;background:linear-gradient(90deg,#9ccdb0,var(--green-dark))}
.journey-end p{grid-column:1/-1;margin:22px 0 0;font-size:18px;color:#66706a}
@media(max-width:900px){.journey-chapters{grid-template-columns:1fr}.journey-chapter{min-height:330px}.launch-moment{grid-template-columns:1fr;gap:50px}.invitation-card{max-width:520px;margin:auto}}
@media(max-width:600px){.journey-end{grid-template-columns:1fr}.journey-end i{width:1px;height:45px;margin:auto}.journey-end p{grid-column:auto}.story-essence{padding:23px 20px}}

/* v1.8 */
.journey-v18{background:#f7f5f0;color:var(--ink);overflow:hidden}
.journey18-intro{max-width:880px;margin:auto;padding:140px 28px 100px;text-align:center}
.journey18-date{font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:#7c857f;margin:9px 0 25px}
.journey18-intro h2{font-size:clamp(50px,6vw,84px);line-height:.98;letter-spacing:-.055em;margin:0 0 34px}
.journey18-intro>p:last-child{max-width:740px;margin:auto;font-size:18px;line-height:1.75;color:#5d6862}
.journey18-prelude{max-width:1260px;margin:auto;padding:0 28px 120px;display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.prelude-copy{padding:55px;background:#082016;color:#fff;border-radius:26px;display:flex;flex-direction:column;justify-content:center}
.prelude-copy>span{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--green)}
.prelude-copy h3{font-size:clamp(34px,4vw,55px);line-height:1.02;letter-spacing:-.04em;margin:18px 0}
.prelude-copy p{color:rgba(255,255,255,.62);font-size:17px;line-height:1.7}
.prelude-photo{margin:0;border-radius:26px;overflow:hidden;min-height:460px}
.prelude-photo img{width:100%;height:100%;object-fit:cover}
.prelude-wide{grid-column:1/-1;min-height:520px}
.working-placeholder{grid-column:1/-1;border:1px dashed rgba(0,40,25,.24);border-radius:26px;padding:50px;text-align:center;background:#fff}
.working-placeholder span{display:block;color:var(--green-dark);font-size:11px;letter-spacing:.17em;margin-bottom:15px}
.working-placeholder strong{display:block;font-size:24px}.working-placeholder small{display:block;margin-top:8px;color:#8a918d}
.invitation-v18{max-width:700px;margin:0 auto 130px}
.launch18-head{background:#06130d;color:#fff;text-align:center;padding:125px 28px 75px}
.launch18-head span{color:var(--green);font-size:12px;text-transform:uppercase;letter-spacing:.18em;font-weight:700}
.launch18-head h3{font-size:clamp(58px,8vw,112px);letter-spacing:-.06em;line-height:.88;margin:25px 0 35px}
.launch18-head p{max-width:770px;margin:auto;color:rgba(255,255,255,.62);font-size:18px;line-height:1.72}
.launch18-gallery{background:#06130d;padding:0 24px 120px;display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.launch18-gallery .lg{margin:0;position:relative;overflow:hidden;min-height:480px;background:#111}
.launch18-gallery .lg img{width:100%;height:100%;object-fit:cover}.launch18-gallery .lg-hero,.launch18-gallery .lg-wide,.launch18-gallery .lg-johan{grid-column:1/-1;min-height:700px}
.launch18-gallery figcaption{position:absolute;left:26px;bottom:22px;color:#fff;font-size:14px;font-weight:600;text-shadow:0 2px 12px rgba(0,0,0,.6)}
.launch18-gallery .detail{min-height:360px}
.noticed-head{text-align:center;padding:130px 28px 70px;background:#fff}
.noticed-head h3{font-size:clamp(42px,5vw,72px);line-height:1;letter-spacing:-.05em;margin:0 0 26px}
.noticed-head>p:last-child{max-width:750px;margin:auto;color:#69726d;font-size:18px;line-height:1.7}
.press18{padding:0 28px 125px;background:#fff;display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:1280px;margin:auto}
.press18 figure{margin:0;background:#f4f4f1;padding:18px;border-radius:20px;align-self:start}.press18 img{width:100%;height:auto;display:block;border-radius:10px}
.press18 figcaption{font-size:12px;color:#717a75;padding:14px 5px 2px}.press18 figure:nth-child(4){grid-column:1/-1;max-width:780px;justify-self:center}
.journey18-close{padding:110px 28px 145px;text-align:center;background:#f0f8f3}
.journey18-close p{font-size:20px;line-height:1.65;color:#5c6761;margin:0 auto 12px;max-width:820px}.journey18-close strong{font-size:clamp(25px,3vw,42px);color:var(--ink)}
@media(max-width:800px){.journey18-prelude,.launch18-gallery,.press18{grid-template-columns:1fr}.prelude-wide,.launch18-gallery .lg-hero,.launch18-gallery .lg-wide,.launch18-gallery .lg-johan,.press18 figure:nth-child(4){grid-column:auto}.prelude-photo,.prelude-wide{min-height:380px}.launch18-gallery .lg,.launch18-gallery .lg-hero,.launch18-gallery .lg-wide,.launch18-gallery .lg-johan{min-height:430px}}

/* v1.9 safety fix: The Journey is too tall to use the global section reveal threshold. */
.journey-v18{
  opacity:1 !important;
  transform:none !important;
}

/* v1.10 focused corrections */
.working-photo-v110{
  grid-column:1/-1;
  margin:0;
  border-radius:26px;
  overflow:hidden;
  background:#07150e;
  box-shadow:0 20px 60px rgba(15,35,25,.08);
}
.working-photo-v110 img{width:100%;height:auto;display:block}
.working-photo-v110 figcaption{
  padding:18px 22px 21px;
  background:#07150e;
  color:rgba(255,255,255,.7);
  font-size:13px;
}
.memoriam-photo-v110{
  position:relative;
  width:100%;
  min-height:82vh;
  background:#050706;
  overflow:hidden;
}
.memoriam-photo-v110 img{
  width:100%;
  min-height:82vh;
  height:82vh;
  object-fit:cover;
  object-position:center;
  display:block;
}
@media(max-width:700px){
  .memoriam-photo-v110,.memoriam-photo-v110 img{min-height:68vh;height:68vh}
}

/* Final candidate refinements */
.working-photo-final{min-height:460px}
.working-photo-final img{width:100%;height:100%;object-fit:cover;display:block}
.memoriam-final{
  padding:clamp(90px,10vw,140px) 28px clamp(100px,11vw,150px);
  background:#f7f5f0;
  text-align:center;
}
.memoriam-final h2{
  margin:0 0 48px;
  font-size:clamp(42px,5vw,68px);
  line-height:1;
  letter-spacing:-.045em;
  color:var(--ink);
}
.memoriam-final img{
  display:block;
  width:min(760px,72vw);
  height:auto;
  max-height:72vh;
  object-fit:cover;
  margin:0 auto;
  border-radius:24px;
}
@media(max-width:800px){
  .working-photo-final{min-height:380px}
  .memoriam-final{padding:80px 20px 95px}
  .memoriam-final h2{margin-bottom:32px}
  .memoriam-final img{width:min(100%,680px);max-height:none;border-radius:18px}
}


/* ===== FINAL CANDIDATE refinements ===== */

/* More complete desktop navigation */
.nav-links{gap:clamp(14px,1.8vw,28px);font-size:11px}
.nav-links .contact-nav{
  margin-left:5px;
  padding-left:18px;
  border-left:1px solid rgba(7,27,19,.16);
}

/* Beetle: retain full composition width, but crop as a low panoramic banner */
.prelude-wide{
  height:clamp(250px,25vw,340px) !important;
  min-height:0 !important;
}
.prelude-wide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 58%;
}

/* Keep Red Devils image as a modest grid image */
.working-photo-final{
  min-height:0;
  height:460px;
}
.working-photo-final img{
  object-fit:cover;
  object-position:center;
}

/* Press: intentional 1+2 / 3+4 / centered 5 composition */
.press18{
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:start;
}
.press18 figure:nth-child(1){grid-column:1}
.press18 figure:nth-child(2){grid-column:2}
.press18 figure:nth-child(3){grid-column:1}
.press18 figure:nth-child(4){
  grid-column:2;
  max-width:none;
  justify-self:stretch;
}
.press18 figure:nth-child(5){
  grid-column:1/-1;
  width:min(66%,760px);
  justify-self:center;
}
.press18 figure:nth-child(5) img{
  max-height:820px;
  object-fit:contain;
  background:#fff;
}

/* Post-press turning point */
.turning-point{
  background:#07140e;
  color:#fff;
  text-align:center;
  padding:clamp(100px,10vw,150px) 28px;
}
.turning-point h3{
  max-width:900px;
  margin:0 auto 30px;
  font-size:clamp(42px,5vw,72px);
  line-height:1.02;
  letter-spacing:-.045em;
}
.turning-point>p:not(.section-kicker){
  max-width:710px;
  margin:12px auto;
  color:rgba(255,255,255,.64);
  font-size:18px;
  line-height:1.7;
}

/* Peru transition. The real Peru photograph can be dropped in without layout changes. */
.peru-transition{
  background:#07140e;
  color:#fff;
  padding:0 28px clamp(115px,12vw,170px);
}
.peru-transition{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(340px,.88fr);
  align-items:stretch;
  gap:0;
}
.peru-photo-placeholder{
  min-height:clamp(520px,62vw,820px);
  border-radius:30px 0 0 30px;
  background:
    radial-gradient(circle at 35% 35%,rgba(0,217,108,.16),transparent 30%),
    linear-gradient(145deg,#143526,#0a1e15 60%,#05100b);
  display:grid;
  place-items:center;
  border:1px dashed rgba(255,255,255,.16);
}
.peru-photo-placeholder span{
  font-size:11px;
  letter-spacing:.18em;
  color:rgba(255,255,255,.34);
}
.peru-copy{
  border-radius:0 30px 30px 0;
  background:#f3f8f5;
  color:var(--ink);
  padding:clamp(50px,6vw,90px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.peru-copy h3{
  font-size:clamp(42px,5vw,70px);
  line-height:1.02;
  letter-spacing:-.05em;
  margin:5px 0 30px;
}
.peru-copy>p:not(.section-kicker){
  font-size:clamp(18px,1.45vw,22px);
  line-height:1.65;
  color:#56635d;
}
.peru-copy .peru-end{
  margin-top:40px;
  color:var(--ink) !important;
}
.peru-copy .peru-end strong{color:var(--green-dark)}

/* Legacy is a warm bridge, not an extension of the GAN concept */
.legacy{
  padding-top:clamp(110px,11vw,155px);
  padding-bottom:clamp(110px,11vw,155px);
}
.legacy h2{max-width:820px}
.legacy>p{max-width:800px}

/* Keep In Memoriam quiet and paired with the image */
.memoriam-final{
  padding-top:95px;
  padding-bottom:110px;
}
.memoriam-final img{
  width:min(68vw,760px);
  max-height:72vh;
  object-fit:contain;
}

/* Contact-page utilities */
.contact-page{
  min-height:100vh;
  background:linear-gradient(160deg,#f8fbf9,#edf7f1);
  color:var(--ink);
}
.contact-shell{
  max-width:900px;
  margin:0 auto;
  padding:calc(var(--nav-h) + 110px) 28px 120px;
}
.contact-shell .section-kicker{margin-bottom:20px}
.contact-shell h1{
  font-size:clamp(48px,6vw,82px);
  line-height:.98;
  letter-spacing:-.05em;
  margin:0 0 35px;
}
.contact-shell .contact-lead{
  font-size:clamp(19px,1.5vw,23px);
  line-height:1.65;
  color:#52605a;
  max-width:780px;
}
.contact-card{
  margin-top:55px;
  background:#fff;
  border:1px solid rgba(37,184,86,.14);
  border-radius:24px;
  padding:36px;
  box-shadow:0 24px 70px rgba(7,27,19,.08);
}
.contact-card h2{margin:0 0 14px;font-size:28px}
.contact-card p{margin:7px 0;color:#59655f;line-height:1.6}
.contact-card a{color:var(--green-dark);font-weight:700}
.contact-back{
  display:inline-block;
  margin-top:38px;
  color:var(--green-dark);
  font-weight:700;
}

@media(max-width:1100px){
  .nav-links{gap:13px;font-size:10px}
}
@media(max-width:960px){
  .peru-transition{grid-template-columns:1fr}
  .peru-photo-placeholder{border-radius:25px 25px 0 0;min-height:58vh}
  .peru-copy{border-radius:0 0 25px 25px}
  .press18 figure:nth-child(1),
  .press18 figure:nth-child(2),
  .press18 figure:nth-child(3),
  .press18 figure:nth-child(4),
  .press18 figure:nth-child(5){
    grid-column:auto;
    width:auto;
    max-width:none;
  }
}
@media(max-width:800px){
  .working-photo-final{height:380px}
  .prelude-wide{height:250px !important}
}


/* ===== FINAL v3 — last four refinements ===== */
.peru-photo{
  min-height:clamp(520px,62vw,820px);
  overflow:hidden;
  border-radius:30px 0 0 30px;
  background:#07140e;
}
.peru-photo img{
  display:block;
  width:100%;
  height:100%;
  min-height:clamp(520px,62vw,820px);
  object-fit:cover;
  object-position:center center;
}

/* With the final overkill article removed, the four press pieces form a clean 2×2 grid. */
.press18 figure:nth-child(1),
.press18 figure:nth-child(2),
.press18 figure:nth-child(3),
.press18 figure:nth-child(4){
  grid-column:auto;
  width:auto;
  max-width:none;
  justify-self:stretch;
}

/* Contact photo: deliberately secondary to the invitation to get in touch. */
.contact-photo{
  width:min(54%,460px);
  margin:44px 0 0 auto;
}
.contact-photo img{
  display:block;
  width:100%;
  height:auto;
  max-height:420px;
  object-fit:cover;
  object-position:center 28%;
  border-radius:20px;
  box-shadow:0 18px 50px rgba(7,27,19,.10);
}
.contact-photo figcaption{
  margin-top:11px;
  font-size:12px;
  line-height:1.5;
  color:#7b8580;
  text-align:right;
}

@media(max-width:960px){
  .peru-photo{
    border-radius:25px 25px 0 0;
    min-height:58vh;
  }
  .peru-photo img{min-height:58vh}
}
@media(max-width:700px){
  .contact-photo{
    width:100%;
    margin-top:34px;
  }
  .contact-photo figcaption{text-align:left}
}


/* ===== FINAL v4 — two requested layout refinements only ===== */

/* Peru: headline first, no green kicker */
.peru-copy h3{
  margin-top:0;
}
.peru-copy .peru-lines{
  margin-top:20px;
  font-size:clamp(18px,1.45vw,22px);
  line-height:1.7;
  color:#56635d;
}
.peru-copy .peru-end{
  margin-top:42px;
}

/* Contact: intro text and image side-by-side, above the Get in touch card */
.contact-shell{
  max-width:1180px;
}
.contact-intro-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
  gap:clamp(34px,5vw,72px);
  align-items:start;
  margin-top:18px;
}
.contact-intro-copy{
  max-width:none;
}
.contact-intro-copy .contact-lead{
  max-width:none;
}
.contact-intro-photo{
  margin:0;
  align-self:start;
}
.contact-intro-photo img{
  width:100%;
  height:auto;
  max-height:360px;
  object-fit:cover;
  object-position:center 28%;
  border-radius:22px;
  box-shadow:0 18px 50px rgba(7,27,19,.10);
}
.contact-card{
  margin-top:48px;
}

@media(max-width:900px){
  .contact-intro-grid{
    grid-template-columns:1fr;
  }
  .contact-intro-photo{
    width:min(100%,560px);
  }
}


/* ===== FINAL v5 — breathing space after Johan turning point ===== */
/* Keeps the dark background flowing while allowing the message about Johan
   to land before the Peru / “The idea kept travelling” section enters. */
.turning-point{
  padding-bottom:clamp(240px,20vw,330px);
}

@media(max-width:700px){
  .turning-point{
    padding-bottom:clamp(150px,28vw,210px);
  }
}

.local-video-player{max-width:1180px;margin:0 auto}.local-video-wrap{aspect-ratio:16/9;background:#000;border-radius:24px;overflow:hidden;box-shadow:0 35px 100px rgba(0,0,0,.45)}.local-video-wrap video{display:block;width:100%;height:100%;object-fit:contain;background:#000}.player-caption{display:flex;flex-direction:column;gap:5px;padding:20px 4px 0}.player-caption span{color:var(--green);font-size:11px;text-transform:uppercase;letter-spacing:.15em}.player-caption strong{color:#fff;font-size:24px}.video-select-card{min-height:165px;padding:20px;border-radius:18px;background:linear-gradient(150deg,#132219,#080e0a);border:1px solid rgba(255,255,255,.1);display:flex;flex-direction:column;color:#fff;text-align:left;cursor:pointer;font:inherit}.video-select-card span{font-size:12px;text-transform:uppercase;letter-spacing:.15em;color:var(--green)}.video-select-card strong{margin-top:auto;font-size:17px}.video-select-card small{color:rgba(255,255,255,.45);margin-top:6px}.video-select-card.is-active{border-color:rgba(0,217,108,.65)}

/* ===== Mobile hamburger menu ===== */
.mobile-menu-toggle,.mobile-menu{display:none}
@media(max-width:800px){
  .nav{padding-left:18px;padding-right:18px}
  .nav-links{display:none!important}
  .mobile-menu-toggle{
    display:flex;position:relative;z-index:1003;width:44px;height:44px;margin-left:auto;
    border:0;background:transparent;border-radius:12px;align-items:center;justify-content:center;
    flex-direction:column;gap:5px;cursor:pointer;padding:0
  }
  .mobile-menu-toggle span{
    display:block;width:24px;height:2px;background:var(--ink);border-radius:2px;
    transition:transform .25s ease,opacity .2s ease
  }
  .mobile-menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .mobile-menu-toggle.is-open span:nth-child(2){opacity:0}
  .mobile-menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .mobile-menu{
    display:block;position:fixed;inset:0;z-index:1002;background:rgba(247,250,248,.985);
    opacity:0;visibility:hidden;pointer-events:none;transition:opacity .22s ease,visibility .22s ease
  }
  .mobile-menu.is-open{opacity:1;visibility:visible;pointer-events:auto}
  .mobile-menu-inner{
    min-height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;
    gap:18px;padding:100px 28px 60px
  }
  .mobile-menu-inner a{
    color:var(--ink);text-decoration:none;font-weight:750;font-size:clamp(28px,8vw,42px);
    letter-spacing:-.03em;line-height:1.05
  }
  .mobile-menu-inner a:last-child{
    margin-top:14px;padding-top:22px;border-top:1px solid rgba(7,27,19,.14);
    width:min(260px,72vw);text-align:center
  }
  body.menu-open{overflow:hidden}
}
