:root{
  --cream:#f4efe6;
  --cream2:#efe6d9;
  --taupe:#6a6258;
  --taupe2:#5e584f;
  --ink:#2b2a27;
  --muted:rgba(43,42,39,.62);
  --muted2:rgba(43,42,39,.45);
  --line:rgba(43,42,39,.14);
  --gold:#d2b27a;
  --gold2:#caa866;
  --shadow:0 12px 30px rgba(0,0,0,.12);
  --r:26px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--cream);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{max-width:1120px;margin:0 auto;padding:0 24px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--taupe);
}
.header-inner{position:relative;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 0}
.brand{display:flex;align-items:center;gap:12px;color:rgba(244,239,230,.95);font-size:14px;line-height:1.25}
.brand-logo{width:54px;height:auto;flex:0 0 auto}
.brand-text{display:block}
.brand-line{display:block}
.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(244,239,230,.18);
  border-radius:14px;
  background:rgba(244,239,230,.04);
  padding:0;
  cursor:pointer;
  transition:background-color 180ms ease,border-color 180ms ease,transform 180ms ease;
}
.nav-toggle:hover{background:rgba(244,239,230,.12);border-color:rgba(244,239,230,.34);transform:translateY(-1px)}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background:rgba(244,239,230,.95);
  transition:transform 180ms ease,opacity 180ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.nav{display:flex;gap:12px;white-space:nowrap;color:rgba(244,239,230,.86);font-size:13px}
.nav a{
  opacity:.92;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  transition:background-color 180ms ease,color 180ms ease,border-color 180ms ease,opacity 180ms ease,transform 180ms ease;
}
.nav a:hover{
  opacity:1;
  color:var(--ink);
  background:var(--gold);
  border-color:rgba(244,239,230,.35);
  transform:translateY(-1px);
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 22px;border-radius:999px;
  font-size:13px;border:1px solid transparent;
  transition:background-color 180ms ease,color 180ms ease,border-color 180ms ease,box-shadow 180ms ease,transform 180ms ease;
}
.btn-gold{background:var(--gold);color:var(--ink)}
.btn-gold:hover{
  background:var(--ink);
  color:rgba(244,239,230,.96);
  border-color:rgba(244,239,230,.18);
  box-shadow:0 14px 28px rgba(0,0,0,.18);
  transform:translateY(-2px);
}
.btn-ghost{background:transparent;border-color:rgba(244,239,230,.22);color:rgba(244,239,230,.95)}
.btn-ghost:hover{
  background:rgba(244,239,230,.96);
  color:var(--ink);
  border-color:rgba(244,239,230,.96);
  box-shadow:0 14px 28px rgba(0,0,0,.14);
  transform:translateY(-2px);
}

/* Typography */
.h1,.h2,.h3{
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-weight:500;letter-spacing:-.02em;margin:0;
}
.h1{font-size:clamp(44px,5vw,66px);line-height:.98;color:rgba(244,239,230,.97)}
.h2{font-size:clamp(34px,3.4vw,44px);line-height:1.05;color:rgba(43,42,39,.78)}
.h3{font-size:28px;line-height:1.1;color:rgba(43,42,39,.80)}

.eyebrow{font-size:11px;letter-spacing:.12em;text-transform:uppercase;margin:0 0 14px;color:rgba(244,239,230,.62)}
.eyebrow.muted{color:rgba(43,42,39,.45)}
.lead{margin:0;color:rgba(244,239,230,.74);max-width:520px;line-height:1.65;font-size:14px}
.muted-text{margin:0;color:rgba(43,42,39,.62);line-height:1.65}
.tiny-muted{font-size:12px;color:rgba(43,42,39,.52);line-height:1.5}

/* Sections */
.section{padding:64px 0}
.section-cream{background:var(--cream)}
.section-cream2{background:var(--cream2)}
.section-dark{background:#6a635a;color:rgba(244,239,230,.95)}

.section-head{margin-bottom:34px}
.section-head.center{text-align:center;max-width:860px;margin-left:auto;margin-right:auto}

/* Hero */
.hero{background:var(--taupe);padding:42px 0 68px}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:46px;align-items:start}
.hero-left{padding-top:64px}
.hero-actions{display:flex;gap:14px;margin-top:24px}

/* Slider */
.slider{position:relative}
.slider-viewport{height:520px;overflow:hidden;border-radius:22px;touch-action:pan-y}
.slider-track{display:grid;gap:16px;will-change:transform}
.slide-card{overflow:hidden;border-radius:22px;background:var(--cream2);box-shadow:var(--shadow)}
.slide-card img{width:100%;height:100%;object-fit:cover}
.slide-small{height:170px}
.slide-large{height:240px}

/* Stacking cards */
.stack{position:relative;padding-bottom:84px}
.stack-card{
  position:sticky;top:110px;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:var(--cream);
  box-shadow:0 8px 22px rgba(0,0,0,.10);
  overflow:hidden;
}
.stack-card + .stack-card{margin-top:-74px}
.stack-card-inner{display:grid;grid-template-columns:1.15fr .85fr;gap:34px;padding:44px;align-items:start}
.stack-media img{width:100%;height:320px;border-radius:22px;object-fit:cover}
.stack-content{display:flex;flex-direction:column;align-items:flex-start;padding-bottom:28px}
.stack-content .btn{margin-top:18px}
.stack-content .tiny-muted{margin-top:16px;line-height:1.7}

/* Industry updates */
.post-card{display:grid;grid-template-columns:1.05fr .95fr;gap:28px;align-items:stretch;border-radius:var(--r);overflow:hidden;border:1px solid var(--line);background:rgba(244,239,230,.55)}
.post-media img{width:100%;height:100%;min-height:260px;object-fit:cover}
.post-body{padding:34px}
.tag{display:inline-block;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:rgba(43,42,39,.46);margin-bottom:10px}
.post-meta{display:flex;gap:12px;align-items:center;margin-top:18px}
.avatar{width:34px;height:34px;border-radius:999px;background:rgba(43,42,39,.10)}
.meta-name{font-size:13px;color:rgba(43,42,39,.70)}

/* FAQ */
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:36px 54px}
.faq-item{
  padding:20px 22px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(244,239,230,.46);
  transition:transform 180ms ease,box-shadow 180ms ease,border-color 180ms ease,background-color 180ms ease;
}
.faq-item:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.08);
  border-color:rgba(210,178,122,.55);
  background:rgba(244,239,230,.74);
}
.faq-item[open]{
  border-color:rgba(210,178,122,.75);
  background:rgba(244,239,230,.9);
  box-shadow:0 16px 32px rgba(0,0,0,.10);
}
.faq-item .muted-text{margin-top:14px}
.faq-q{
  position:relative;
  display:block;
  padding-right:34px;
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-size:20px;
  color:rgba(43,42,39,.78);
  margin:0;
  cursor:pointer;
  list-style:none;
}
.faq-q::-webkit-details-marker{display:none}
.faq-q::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(43,42,39,.06);
  color:rgba(43,42,39,.72);
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:18px;
  transition:background-color 180ms ease,color 180ms ease,transform 180ms ease;
}
.faq-item:hover .faq-q::after{background:var(--gold);color:var(--ink)}
.faq-item[open] .faq-q::after{
  content:"-";
  background:var(--ink);
  color:rgba(244,239,230,.96);
}

/* Impact */
.section-dark .h2{color:rgba(244,239,230,.95)}
.h3.light{color:rgba(244,239,230,.96)}
.impact-head{max-width:920px}
.impact-intro{
  margin:18px auto 0;
  max-width:740px;
  color:rgba(244,239,230,.76);
  line-height:1.7;
}
.impact-panel{
  max-width:1040px;
  margin:0 auto;
  padding:38px;
  border-radius:var(--r);
  background:rgba(0,0,0,.12);
  border:1px solid rgba(244,239,230,.14);
}
.impact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.impact-card{
  padding:24px;
  border-radius:22px;
  background:rgba(244,239,230,.07);
  border:1px solid rgba(244,239,230,.12);
}
.impact-card p{
  margin:14px 0 0;
  color:rgba(244,239,230,.74);
  line-height:1.7;
}
.impact-source{
  margin:20px 0 0;
  color:rgba(244,239,230,.62);
  line-height:1.6;
}
.impact-source a{
  color:rgba(244,239,230,.96);
  text-decoration:underline;
  text-underline-offset:4px;
}
.impact-link{display:flex;width:fit-content;margin:22px auto 0}

/* Split card */
.split-card{display:grid;grid-template-columns:1.05fr .95fr;gap:0;border-radius:var(--r);overflow:hidden;border:1px solid var(--line);background:rgba(244,239,230,.55)}
.split-media{display:flex;align-items:center;justify-content:center;background:rgba(244,239,230,.34)}
.split-media img{width:100%;height:100%;min-height:360px;object-fit:cover}
.split-body{padding:44px;display:flex;flex-direction:column;justify-content:center}

/* Contact */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;text-align:center}
.contact-item{padding:26px;border-radius:22px;border:1px solid var(--line);background:rgba(244,239,230,.55)}
.contact-icon{font-size:26px;margin-bottom:12px}
.contact-title{font-weight:600;color:rgba(43,42,39,.72);margin-bottom:6px}
.contact-link{display:inline-block;margin-top:10px;color:rgba(43,42,39,.70);text-decoration:underline;text-underline-offset:4px}
.contact-link:hover{color:var(--ink)}

/* Footer */
.footer{background:#5f6b5d;color:rgba(244,239,230,.92);padding:56px 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:24px;justify-items:center;text-align:center}
.footer-links-wrap{display:grid;gap:14px;justify-items:center}
.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:18px 28px;font-size:20px}
.footer-brand{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:14px;opacity:.92}
.footer-logo{width:84px;height:auto;flex:0 0 auto}
.footer-name{letter-spacing:.06em;font-weight:600;font-size:24px}
.footer-bottom{margin-top:32px;border-top:1px solid rgba(244,239,230,.14);padding-top:18px;display:flex;justify-content:center;gap:16px 28px;font-size:12px;flex-wrap:wrap;text-align:center}
.footer .tiny-muted{color:rgba(244,239,230,.92)}

/* Responsive */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  .hero{padding:18px 0 42px}
  .hero-left{padding-top:8px}
  .section{padding:48px 0}
  .header-inner{align-items:center;justify-content:center;gap:10px;padding:12px 0}
  .brand{flex:0 1 auto;gap:10px;min-width:0;justify-content:center}
  .brand-logo{width:44px}
  .brand-text{font-size:12px;line-height:1.15}
  .nav-toggle{display:block;order:2;flex:0 0 auto;margin-left:0}
  .site-header .btn{display:none}
  .nav{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    z-index:20;
    width:100%;
    margin-top:0;
    padding:10px;
    gap:6px;
    border-radius:24px;
    background:rgba(244,239,230,.97);
    border:1px solid rgba(210,178,122,.38);
    box-shadow:0 18px 42px rgba(0,0,0,.22);
    flex-direction:column;
    white-space:normal;
  }
  .nav.is-open{display:flex}
  .nav a{
    width:100%;
    padding:14px 16px;
    text-align:center;
    color:var(--ink);
    background:rgba(43,42,39,.04);
    border-color:rgba(43,42,39,.06);
  }
  .slider-viewport{height:420px}
  .slide-small{height:140px}
  .slide-large{height:200px}
  .hero-actions{justify-content:center;flex-wrap:wrap}
  .btn{justify-content:center;text-align:center}
  .hero-actions .btn,
  .stack-content .btn,
  .split-body .btn,
  .impact-link{margin-left:auto;margin-right:auto}
  .hero-actions .btn{min-width:220px}
  .stack{padding-bottom:52px}
  .stack-card{position:sticky;top:74px}
  .stack-card + .stack-card{margin-top:-18px}
  .stack-card-inner{grid-template-columns:1fr;gap:18px;padding:22px}
  .stack-media img{height:220px}
  .stack-content{padding-bottom:10px}
  .stack-content .h3{font-size:24px}
  .stack-content .btn{margin-top:14px}
  .stack-content .tiny-muted{margin-top:12px;line-height:1.6}
  .post-card{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
  .impact-grid{grid-template-columns:1fr}
  .impact-panel{padding:28px}
  .split-card{grid-template-columns:1fr}
  .split-media{padding:20px}
  .split-media img{height:auto;min-height:0;max-height:260px;object-fit:contain}
  .split-body .btn{min-width:220px}
  .contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-logo{width:64px}
  .footer-name{font-size:18px}
  .footer-links{gap:12px 20px;font-size:16px}
  .footer-bottom{justify-content:center}
}
