:root{
  --black:#0a0a0a;
  --warmwhite:#f5f1e7;
  --darkgray:#171717;
  --midgray:#2a2a2a;
  --linegray:rgba(245,241,231,0.14);
  --blue:#2e4bff;
  --lime:#d4ff3d;
  --serif:'Cormorant Garamond', serif;
  --display:'Archivo Black', sans-serif;
  --body:'Inter', sans-serif;
  --hand:'Caveat', cursive;
  --ease:cubic-bezier(.16,.84,.44,1);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth; overflow-x:hidden; max-width:100%;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}
body{
  background:var(--black);
  color:var(--warmwhite);
  font-family:var(--body);
  overflow-x:hidden;
  line-height:1.5;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}
::selection{background:var(--lime);color:var(--black);}
:focus-visible{outline:2px solid var(--lime); outline-offset:3px;}

.eyebrow{
  font-family:var(--body); font-weight:700; font-size:.72rem;
  letter-spacing:.18em; text-transform:uppercase; color:var(--lime);
  display:inline-flex; align-items:center; gap:.5rem;
}
.eyebrow::before{content:'';width:18px;height:1px;background:var(--lime);}

.wrap{max-width:1320px; margin:0 auto; padding:0 6vw;}
@media(max-width:700px){.wrap{padding:0 7.5vw;}}
@media(max-width:420px){.wrap{padding:0 8vw;}}

/* ---------- Loader ---------- */
#loader{
  position:fixed; inset:0; background:var(--black); z-index:9999;
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:1.2rem;
  transition:opacity .8s var(--ease), visibility .8s var(--ease);
}
#loader.done{opacity:0; visibility:hidden; pointer-events:none;}
.loader-mark{font-family:var(--serif); font-style:italic; font-size:1.6rem; letter-spacing:.02em;}
.loader-bar{width:180px; height:1px; background:var(--linegray); position:relative; overflow:hidden;}
.loader-bar::after{content:'';position:absolute; inset:0; background:var(--lime); transform:translateX(-100%); animation:loadbar 1.4s var(--ease) forwards;}
@keyframes loadbar{to{transform:translateX(0);}}

/* ---------- Placeholder image system ---------- */
.ph{
  position:relative; width:100%; height:100%; overflow:hidden;
  background:var(--fallback, linear-gradient(155deg,#232323,#0a0a0a));
  display:flex; align-items:flex-end;
}
.ph img{width:100%; height:100%; object-fit:cover; display:block;}
.ph[data-tone="warm"]{--fallback:linear-gradient(160deg,#2c2620,#12100c);}
.ph[data-tone="blue"]{--fallback:linear-gradient(160deg,#2e4bff,#0d1550);}
.ph[data-tone="lime"]{--fallback:linear-gradient(160deg,#3a4a12,#101208);}
.ph[data-tone="stone"]{--fallback:linear-gradient(160deg,#3a3630,#151310);}
.ph-label{
  font-size:.68rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  color:rgba(245,241,231,0.55); padding:.9rem 1rem; line-height:1.4;
  border-top:1px solid var(--linegray); width:100%;
}
.ph-icon{position:absolute; top:1rem; right:1rem; width:26px; height:26px; opacity:.35;}
.ph[style*="--bg-img"] .ph-icon{display:none;}

/* ---------- Nav ---------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:500;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.4rem 6vw; transition:background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom:1px solid transparent;
}
header.scrolled{background:rgba(10,10,10,0.85); backdrop-filter:blur(10px); padding:.9rem 6vw; border-color:var(--linegray);}
.logo{font-family:var(--serif); font-style:italic; font-size:1.35rem; letter-spacing:.01em;}
.logo small{display:block; font-family:var(--body); font-style:normal; font-size:.55rem; letter-spacing:.28em; text-transform:uppercase; color:var(--lime); margin-top:.15rem;}
nav.links{display:flex; gap:2.2rem; font-size:.8rem; letter-spacing:.02em;}
nav.links a{position:relative; padding-bottom:2px;}
nav.links a::after{content:'';position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--lime); transition:width .3s var(--ease);}
nav.links a:hover::after{width:100%;}
@media(max-width:900px){nav.links{display:none;}}

/* Mobile hamburger + drawer */
.hamburger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; padding:0; margin-left:.6rem;
}
.hamburger span{display:block; width:22px; height:2px; background:var(--warmwhite); transition:transform .3s var(--ease), opacity .3s var(--ease); margin:0 auto;}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
@media(max-width:900px){.hamburger{display:flex;}}

.mobile-drawer{
  position:fixed; inset:0; z-index:600; background:var(--black);
  display:flex; flex-direction:column; justify-content:center; gap:2rem; padding:0 8vw;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:opacity .35s var(--ease), visibility .35s var(--ease), transform .35s var(--ease);
}
.mobile-drawer.open{opacity:1; visibility:visible; transform:translateY(0);}
.mobile-drawer a{font-family:var(--serif); font-style:italic; font-size:2rem;}
.mobile-drawer .btn{margin-top:1rem; align-self:flex-start;}
.mobile-drawer-close{position:absolute; top:1.4rem; right:6vw; width:44px; height:44px; display:flex; align-items:center; justify-content:center;}
.btn{
  display:inline-flex; align-items:center; gap:.55rem;
  font-size:.78rem; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
  padding:.85rem 1.5rem; border-radius:2px; transition:transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.btn-lime{background:var(--lime); color:var(--black);}
.btn-lime:hover{background:var(--warmwhite); transform:translateY(-2px);}
@media(max-width:420px){
  header .btn{padding:.7rem 1rem; font-size:.66rem; white-space:nowrap;}
}
.btn-outline{border:1px solid var(--linegray); color:var(--warmwhite);}
.btn-outline:hover{border-color:var(--lime); color:var(--lime); transform:translateY(-2px);}

/* ---------- Hero ---------- */
.hero{position:relative; height:100vh; min-height:640px; overflow:hidden; display:flex; align-items:flex-end;}
.hero-slide{position:absolute; inset:0; opacity:0; transition:opacity 1.6s var(--ease); z-index:1;}
.hero-slide.active{opacity:1; z-index:2;}
.hero-slide .ph{width:100%; height:100%; transform:scale(1.08); transition:transform 8s linear;}
.hero-slide.active .ph{transform:scale(1);}
.hero::before{content:''; position:absolute; inset:0; z-index:3; background:linear-gradient(180deg, rgba(10,10,10,.15) 0%, rgba(10,10,10,.1) 40%, rgba(10,10,10,.92) 100%); pointer-events:none;}
.hero-content{position:relative; z-index:4; width:100%; padding:0 6vw 5.5rem;}
@media(max-width:700px){
  .hero-content{padding:6.5rem 6vw 4rem;}
}
.hero-eyebrow{color:var(--lime); font-size:.75rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; margin-bottom:1.1rem; display:block;}
.hero h1{
  font-family:var(--display); text-transform:uppercase;
  font-size:clamp(2.8rem, 8.4vw, 6.6rem); line-height:.92; letter-spacing:-.01em;
  max-width:14ch;
}
.hero h1 .accent{color:var(--lime);}
.hero h1 .dot{color:var(--blue);}
.hero-sub{font-family:var(--serif); font-style:italic; font-size:clamp(1.1rem,2vw,1.5rem); color:var(--warmwhite); opacity:.85; max-width:34ch; margin-top:1.4rem;}
.hero-row{display:flex; align-items:center; justify-content:space-between; gap:2rem; margin-top:2.6rem; flex-wrap:wrap;}
.hero-tags{display:flex; gap:.6rem; flex-wrap:wrap; font-size:.72rem; letter-spacing:.03em; text-transform:uppercase; color:rgba(245,241,231,.6);}
.hero-tags span{border:1px solid var(--linegray); padding:.4rem .8rem; border-radius:20px;}
.hero-dots{position:absolute; z-index:4; right:6vw; bottom:2.4rem; display:flex; gap:.5rem;}
.hero-dots button{width:22px; height:2px; background:var(--linegray); transition:background .3s;}
.hero-dots button.active{background:var(--lime);}
.scroll-cue{position:absolute; left:6vw; bottom:2.4rem; z-index:4; display:flex; align-items:center; gap:.6rem; font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(245,241,231,.55);}
.scroll-cue .line{width:1px; height:34px; background:linear-gradient(var(--lime), transparent); animation:scrolldown 1.8s var(--ease) infinite;}
@keyframes scrolldown{0%{transform:scaleY(0); transform-origin:top;}50%{transform:scaleY(1); transform-origin:top;}50.1%{transform-origin:bottom;}100%{transform:scaleY(0); transform-origin:bottom;}}

/* ---------- Reveal ---------- */
.reveal{opacity:0; transform:translateY(36px); transition:opacity .9s var(--ease), transform .9s var(--ease);}
.reveal.in{opacity:1; transform:translateY(0);}
.reveal-scale{opacity:0; transform:scale(1.06); transition:opacity 1s var(--ease), transform 1.1s var(--ease);}
.reveal-scale.in{opacity:1; transform:scale(1);}
.stagger .reveal:nth-child(1){transition-delay:0s;}
.stagger .reveal:nth-child(2){transition-delay:.1s;}
.stagger .reveal:nth-child(3){transition-delay:.2s;}
.stagger .reveal:nth-child(4){transition-delay:.3s;}
.stagger .reveal:nth-child(5){transition-delay:.4s;}
.stagger .reveal:nth-child(6){transition-delay:.5s;}
.stagger .reveal:nth-child(7){transition-delay:.6s;}

section{position:relative;}

/* ---------- Recent Work banner ---------- */
.recentwork{height:78vh; min-height:480px; position:relative;}
.recentwork .ph{height:100%;}
.rw-overlay{position:absolute; left:0; bottom:0; z-index:2; padding:3rem 6vw; width:100%; background:linear-gradient(0deg, rgba(10,10,10,.85), transparent);}
.rw-overlay .eyebrow{margin-bottom:.8rem;}
.rw-overlay h3{font-family:var(--serif); font-size:clamp(1.8rem,4vw,3.2rem); font-weight:500;}
.rw-overlay p{color:rgba(245,241,231,.65); margin-top:.4rem; font-size:.9rem;}
.rw-arrow{position:absolute; right:6vw; bottom:3rem; z-index:2; width:52px; height:52px; border:1px solid var(--linegray); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:background .3s, transform .3s; }
.recentwork:hover .rw-arrow{background:var(--lime); transform:rotate(45deg); border-color:var(--lime);}
.recentwork:hover .rw-arrow svg{stroke:var(--black);}

/* ---------- Founder note ---------- */
.founder{padding-top:9rem; padding-bottom:9rem; display:grid; grid-template-columns:1.1fr .9fr; gap:5vw; align-items:center;}
@media(max-width:860px){.founder{grid-template-columns:1fr; gap:2.5rem; padding-top:6rem; padding-bottom:6rem;}}
.founder-photo{aspect-ratio:4/5;}
.founder-text .eyebrow{margin-bottom:1.6rem;}
.founder-text h2{font-family:var(--serif); font-weight:400; font-size:clamp(1.8rem,3.4vw,2.9rem); line-height:1.28;}
.founder-text h2 em{font-style:italic; color:var(--lime);}
.founder-sig{margin-top:2.2rem; font-family:var(--hand); font-size:1.6rem; color:var(--warmwhite);}
.founder-role{font-size:.75rem; letter-spacing:.06em; text-transform:uppercase; color:rgba(245,241,231,.5); margin-top:.3rem;}

/* ---------- Perspective / Why look the same ---------- */
.perspective{background:var(--warmwhite); color:var(--black); padding:8rem 0;}
.perspective-grid{display:grid; grid-template-columns:1.3fr .7fr; gap:5vw; align-items:end;}
@media(max-width:860px){.perspective-grid{grid-template-columns:1fr; gap:2.5rem;}}
.perspective h2{font-family:var(--display); text-transform:uppercase; font-size:clamp(2rem,5.2vw,4.2rem); line-height:1; letter-spacing:-.01em;}
.perspective h2 .circle{position:relative; display:inline-block;}
.perspective h2 .circle::after{content:''; position:absolute; left:-6%; right:-6%; top:-8%; bottom:-2%; border:3px solid var(--blue); border-radius:50%; transform:rotate(-3deg); pointer-events:none;}
.perspective-body{font-size:1.02rem; color:rgba(10,10,10,.72); max-width:36ch;}
.perspective-body p+p{margin-top:1rem;}
.perspective .eyebrow{color:var(--blue); margin-bottom:1.4rem;}
.perspective .eyebrow::before{background:var(--blue);}

/* ---------- Services ---------- */
.services{padding-top:9rem; padding-bottom:9rem;}
.services-head{display:flex; justify-content:space-between; align-items:flex-end; gap:2rem; margin-bottom:4rem; flex-wrap:wrap;}
.services-head h2{font-family:var(--serif); font-weight:400; font-size:clamp(2rem,4vw,3.2rem); max-width:16ch;}
.services-head p{max-width:32ch; color:rgba(245,241,231,.6); font-size:.92rem;}
.service-list{border-top:1px solid var(--linegray);}
.service-row{
  display:grid; grid-template-columns:70px 1fr 1fr auto; align-items:center; gap:2rem;
  padding:1.9rem 0; border-bottom:1px solid var(--linegray); transition:background .35s var(--ease);
}
.service-row:hover{background:rgba(245,241,231,.03);}
.service-row .num{font-family:var(--serif); font-style:italic; font-size:1rem; color:rgba(245,241,231,.4);}
.service-row h3{font-size:clamp(1.15rem,2.2vw,1.6rem); font-weight:600; letter-spacing:-.01em;}
.service-row p{font-size:.85rem; color:rgba(245,241,231,.55); max-width:36ch;}
.service-row .arrow{width:44px; height:44px; border:1px solid var(--linegray); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:all .35s var(--ease); flex-shrink:0;}
.service-row:hover .arrow{background:var(--lime); border-color:var(--lime); transform:rotate(45deg);}
.service-row:hover .arrow svg{stroke:var(--black);}
@media(max-width:760px){
  .service-row{grid-template-columns:40px 1fr auto; }
  .service-row p{display:none;}
}

/* ---------- Client Result ---------- */
.results{background:var(--blue); color:var(--warmwhite); padding:7rem 0;}
.results .eyebrow{color:var(--black); }
.results .eyebrow::before{background:var(--black);}
.results-head{font-family:var(--serif); font-style:italic; font-size:clamp(1.5rem,2.6vw,2.1rem); max-width:36ch; margin-top:1.2rem; margin-bottom:4rem;}
.stat-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(245,241,231,.2);}
.stat{background:var(--blue); padding:2.6rem 1.8rem;}
.stat .num{font-family:var(--display); font-size:clamp(2.4rem,5.5vw,4rem); line-height:1;}
.stat .label{margin-top:.9rem; font-size:.78rem; letter-spacing:.04em; text-transform:uppercase; color:rgba(245,241,231,.75);}
.stat .client{margin-top:.4rem; font-size:.72rem; color:rgba(245,241,231,.5);}
@media(max-width:760px){.stat-grid{grid-template-columns:1fr;}}
.trusted-by{margin-top:3.5rem; padding-top:2.2rem; border-top:1px solid rgba(245,241,231,.2);}
.trusted-label{font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(245,241,231,.6); display:block; margin-bottom:1.1rem;}
.trusted-list{display:flex; flex-wrap:wrap; gap:1.6rem 2.4rem;}
.trusted-list span{font-family:var(--serif); font-style:italic; font-size:1.15rem; color:rgba(245,241,231,.85);}
.trusted-list img{height:34px; width:auto; max-width:140px; object-fit:contain; filter:grayscale(1) brightness(1.6); opacity:.7; transition:filter .35s var(--ease), opacity .35s var(--ease);}
.trusted-list img:hover{filter:grayscale(0) brightness(1); opacity:1;}

/* ---------- Behind the scene ---------- */
.bts{padding-top:9rem; padding-bottom:9rem;}
.bts-head{display:flex; justify-content:space-between; align-items:flex-end; gap:2rem; margin-bottom:3rem; flex-wrap:wrap;}
.bts-head h2{font-family:var(--serif); font-weight:400; font-style:italic; font-size:clamp(1.9rem,3.6vw,2.8rem); max-width:20ch;}
.bts-grid{columns:4 220px; column-gap:.6rem;}
.bts-grid .ph{border-radius:2px; overflow:hidden; break-inside:avoid; margin-bottom:.6rem; transition:transform .6s var(--ease);}
.bts-grid .ph:hover{transform:scale(1.02); filter:brightness(1.08);}
@media(max-width:860px){.bts-grid{columns:2 160px;}}

/* ---------- Portfolio masonry ---------- */
.portfolio{padding-top:9rem; padding-bottom:9rem;}
.portfolio-head{margin-bottom:2.4rem;}
.portfolio-head h2{font-family:var(--display); text-transform:uppercase; font-size:clamp(2.1rem,5vw,3.8rem); letter-spacing:-.01em;}
.filters{display:flex; gap:.6rem; flex-wrap:wrap; margin:2.2rem 0 3rem;}
.filter-btn{font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; padding:.6rem 1.1rem; border:1px solid var(--linegray); border-radius:20px; transition:all .3s var(--ease);}
.filter-btn.active, .filter-btn:hover{background:var(--lime); color:var(--black); border-color:var(--lime);}
.masonry{columns:3 260px; column-gap:.7rem;}
.masonry .item{break-inside:avoid; margin-bottom:.7rem; position:relative; overflow:hidden; border-radius:2px; cursor:zoom-in;}
.masonry .item .ph{transition:transform .7s var(--ease);}
.masonry .item:hover .ph{transform:scale(1.06);}
.grid-video{width:100%; height:100%; object-fit:cover; display:block; background:#111;}
.play-badge{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:44px; height:44px; border-radius:50%; background:rgba(10,10,10,.55); backdrop-filter:blur(2px);
  display:flex; align-items:center; justify-content:center; color:var(--warmwhite); font-size:.85rem;
  pointer-events:none;
}
.masonry .item .tag{position:absolute; left:.9rem; bottom:.9rem; font-size:.66rem; letter-spacing:.05em; text-transform:uppercase; background:rgba(10,10,10,.6); backdrop-filter:blur(4px); padding:.4rem .7rem; opacity:0; transform:translateY(6px); transition:all .3s var(--ease);}
.masonry .item:hover .tag{opacity:1; transform:translateY(0);}
.masonry .item.hide{display:none;}
@media(max-width:700px){.masonry{columns:2 160px;}}

/* lightbox */
.lightbox{position:fixed; inset:0; background:rgba(10,10,10,.96); z-index:2000; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:opacity .35s var(--ease), visibility .35s var(--ease);}
.lightbox.open{opacity:1; visibility:visible;}
.lightbox-inner{width:min(84vw,900px); aspect-ratio:4/5; max-height:82vh;}
.lightbox-inner .ph{border-radius:2px;}
.lightbox-close{position:absolute; top:2rem; right:2rem; width:44px; height:44px; border:1px solid var(--linegray); border-radius:50%; display:flex; align-items:center; justify-content:center;}
.lightbox-close:hover{background:var(--lime); border-color:var(--lime); color:var(--black);}
.lightbox-nav{position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border:1px solid var(--linegray); border-radius:50%; display:flex; align-items:center; justify-content:center;}
.lightbox-nav:hover{background:var(--lime); border-color:var(--lime); color:var(--black);}
.lightbox-nav.prev{left:2rem;} .lightbox-nav.next{right:2rem;}
@media(max-width:700px){.lightbox-nav{display:none;}}

/* ---------- Why choose ---------- */
.why{padding-top:9rem; padding-bottom:9rem; display:grid; grid-template-columns:.9fr 1.1fr; gap:5vw;}
@media(max-width:860px){.why{grid-template-columns:1fr; gap:2.5rem; padding-top:6rem; padding-bottom:6rem;}}
.why-head h2{font-family:var(--serif); font-weight:400; font-size:clamp(1.9rem,3.6vw,3rem); line-height:1.2;}
.why-list{display:flex; flex-direction:column;}
.why-item{padding:2rem 0; border-top:1px solid var(--linegray);}
.why-item:last-child{border-bottom:1px solid var(--linegray);}
.why-item .n{font-family:var(--serif); font-style:italic; color:var(--lime); font-size:.95rem;}
.why-item h4{font-size:1.2rem; font-weight:700; margin-top:.6rem;}
.why-item p{margin-top:.5rem; color:rgba(245,241,231,.6); font-size:.9rem; max-width:48ch;}

/* ---------- Sticky note ---------- */
.note-section{padding:7rem 0; display:flex; justify-content:center;}
.sticky-note{
  background:var(--lime); color:var(--black); width:min(78vw,460px); padding:3rem 2.6rem 2.4rem;
  transform:rotate(-2.5deg); position:relative; box-shadow:0 30px 60px rgba(0,0,0,.4);
}
.sticky-note::before{content:''; position:absolute; top:-14px; left:50%; transform:translateX(-50%) rotate(-8deg); width:70px; height:26px; background:rgba(245,241,231,.5); backdrop-filter:blur(2px);}
.sticky-note p{font-family:var(--hand); font-size:clamp(1.6rem,3.4vw,2.3rem); line-height:1.25; font-weight:700;}
.sticky-note .src{margin-top:1.6rem; font-family:var(--body); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; opacity:.65;}

/* ---------- Final CTA ---------- */
.finalcta{padding:8rem 0 7rem; text-align:center;}
.finalcta h2{font-family:var(--display); text-transform:uppercase; font-size:clamp(2.3rem,7vw,5.2rem); line-height:.98; letter-spacing:-.01em;}
.finalcta h2 .lime{color:var(--lime);}
.finalcta .under{width:180px; height:2px; background:var(--blue); margin:1.6rem auto 0;}
.finalcta p{max-width:44ch; margin:1.8rem auto 0; color:rgba(245,241,231,.65);}
.finalcta .btns{display:flex; gap:1rem; justify-content:center; margin-top:2.6rem; flex-wrap:wrap;}

/* ---------- Footer ---------- */
footer{border-top:1px solid var(--linegray); padding:3rem 0 2.2rem;}
.footer-grid{display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:2rem;}
.footer-loc{font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; color:rgba(245,241,231,.5);}
.footer-links{display:flex; gap:1.4rem; font-size:.78rem; color:rgba(245,241,231,.7);}
.footer-links a:hover{color:var(--lime);}
.footer-bottom{margin-top:2rem; padding-top:1.4rem; border-top:1px solid var(--linegray); display:flex; justify-content:space-between; font-size:.7rem; color:rgba(245,241,231,.4); flex-wrap:wrap; gap:.5rem;}

/* ---------- Sticky WhatsApp ---------- */
.wa-float{
  position:fixed; right:1.6rem; bottom:1.6rem; z-index:400;
  display:flex; align-items:center; gap:.7rem;
  background:var(--lime); color:var(--black); padding:.85rem 1.3rem .85rem 1rem; border-radius:40px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  transform:translateY(120%); transition:transform .5s var(--ease), background .3s;
  font-size:.8rem; font-weight:700;
}
.wa-float.show{transform:translateY(0);}
.wa-float:hover{background:var(--warmwhite);}
.wa-float svg{width:20px; height:20px;}
@media(max-width:600px){.wa-float span{display:none;} .wa-float{padding:.85rem;}}

/* Utility icon */
.icon{width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:1.6;}

/* ============================================================
   BLOG — index listing + article page
============================================================= */
.blog-index-hero{padding:9rem 0 3rem;}
.blog-index-hero .eyebrow{margin-bottom:1.2rem;}
.blog-index-hero h1{font-family:var(--display); text-transform:uppercase; font-size:clamp(2.2rem,5.5vw,4rem); letter-spacing:-.01em;}
.blog-index-hero p{font-family:var(--serif); font-style:italic; font-size:clamp(1.05rem,1.8vw,1.3rem); color:rgba(245,241,231,.7); max-width:44ch; margin-top:1.2rem;}

.post-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:2.4rem; padding-bottom:7rem;}
.post-card{display:block; border:1px solid var(--linegray); border-radius:2px; overflow:hidden; transition:transform .4s var(--ease), border-color .4s var(--ease);}
.post-card:hover{transform:translateY(-4px); border-color:rgba(212,255,61,.4);}
.post-card .thumb{aspect-ratio:4/3; overflow:hidden;}
.post-card .thumb img{width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease);}
.post-card:hover .thumb img{transform:scale(1.05);}
.post-card .post-body{padding:1.6rem 1.6rem 2rem;}
.post-card .post-meta{font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:var(--lime); margin-bottom:.7rem; display:block;}
.post-card h3{font-family:var(--serif); font-weight:500; font-size:1.35rem; line-height:1.3;}
.post-card p{margin-top:.7rem; font-size:.88rem; color:rgba(245,241,231,.6); line-height:1.6;}

/* Article page */
.article-hero{padding:8.5rem 0 0;}
.article-hero .eyebrow{margin-bottom:1.4rem;}
.article-hero h1{font-family:var(--serif); font-weight:500; font-size:clamp(2rem,4.6vw,3.4rem); line-height:1.15; max-width:20ch;}
.article-byline{margin-top:1.6rem; font-size:.82rem; color:rgba(245,241,231,.55); display:flex; gap:.6rem; flex-wrap:wrap; align-items:center;}
.article-byline .dot{width:4px; height:4px; border-radius:50%; background:rgba(245,241,231,.4);}
.article-hero-img{margin-top:3rem; aspect-ratio:16/9; border-radius:2px; overflow:hidden;}
.article-hero-img img{width:100%; height:100%; object-fit:cover;}

.article-body{max-width:720px; margin:0 auto; padding:4rem 6vw 2rem;}
.article-body p{font-size:1.05rem; line-height:1.85; color:rgba(245,241,231,.85); margin-bottom:1.5rem;}
.article-body h2{font-family:var(--serif); font-weight:500; font-size:clamp(1.5rem,3vw,2rem); margin:3rem 0 1.2rem; line-height:1.3;}
.article-body ul{margin:0 0 1.8rem; padding-left:1.3rem;}
.article-body li{font-size:1.02rem; line-height:1.75; color:rgba(245,241,231,.8); margin-bottom:.8rem;}
.article-body li strong{color:var(--warmwhite);}
.article-body figure{margin:2.6rem 0;}
.article-body figure img{width:100%; border-radius:2px; display:block;}
.article-body figcaption{font-size:.78rem; color:rgba(245,241,231,.5); margin-top:.8rem; text-align:center; font-style:italic; font-family:var(--serif);}
.article-gallery{display:grid; grid-template-columns:1fr 1fr; gap:.8rem; margin:2.6rem 0 .8rem;}
.article-gallery img{width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:2px; display:block;}
@media(max-width:600px){.article-gallery{grid-template-columns:1fr;}}

.article-cta{
  background:var(--blue); color:var(--warmwhite); border-radius:2px; padding:2.4rem;
  margin:3rem 0; text-align:center;
}
.article-cta h3{font-family:var(--serif); font-style:italic; font-size:1.4rem; margin-bottom:1.2rem;}
.article-cta .btn-lime{background:var(--lime); color:var(--black);}

.article-related{border-top:1px solid var(--linegray); margin-top:2rem; padding-top:2.4rem;}
.article-related .eyebrow{margin-bottom:1.4rem;}
.related-links{display:flex; flex-direction:column; gap:.9rem;}
.related-links a{
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
  padding:1rem 0; border-bottom:1px solid var(--linegray); font-size:.95rem; transition:color .3s;
}
.related-links a:hover{color:var(--lime);}

.article-footer-cta{padding:5rem 0 7rem; text-align:center; max-width:720px; margin:0 auto;}
.article-footer-cta h2{font-family:var(--display); text-transform:uppercase; font-size:clamp(1.8rem,4.5vw,2.8rem); letter-spacing:-.01em;}
.article-footer-cta p{color:rgba(245,241,231,.65); margin:1.2rem 0 2rem;}
