:root{
  --brand:#E87A00;
  --brand-deep:#C85F00;
  --ink:#1A1410;
  --cream:#FAF6EE;
  --paper:#FFFFFF;
  --muted:#6B6258;
  --line:#E8E0D5;
  --sky:#7DC8E8;
  --header-h:72px;
  --maxw:1200px;
}

*,*::before,*::after{box-sizing:border-box}
html,body{max-width:100%;overflow-x:hidden}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  color:var(--ink);
  background:var(--cream);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img,svg,video,iframe{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:'Fraunces',Georgia,serif;font-weight:600;line-height:1.08;margin:0}
p{margin:0 0 1em;overflow-wrap:break-word}
sup{font-size:.55em;vertical-align:super}

.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.eyebrow{
  font-family:'Inter',sans-serif;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.72rem;
  font-weight:600;
  color:var(--muted);
  margin:0 0 1rem;
}
.eyebrow-orange{color:var(--brand)}
.label{
  display:inline-block;
  font-family:'Inter',sans-serif;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.7rem;
  font-weight:700;
  color:var(--brand);
  margin-bottom:.6rem;
}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  font-family:'Inter',sans-serif;font-weight:600;font-size:.95rem;
  padding:.85rem 1.6rem;border-radius:50px;border:2px solid transparent;
  cursor:pointer;transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
  min-height:48px;text-align:center;
}
.btn-primary{background:var(--brand);color:#fff;box-shadow:0 8px 22px -8px rgba(232,122,0,.6)}
.btn-primary:hover{background:var(--brand-deep);transform:translateY(-2px);box-shadow:0 14px 28px -8px rgba(200,95,0,.7)}
.btn-ghost{background:transparent;border-color:var(--ink);color:var(--ink)}
.btn-ghost:hover{background:var(--ink);color:#fff;transform:translateY(-2px)}
.btn-light{background:#fff;color:var(--brand-deep)}
.btn-light:hover{transform:translateY(-2px);box-shadow:0 12px 24px -10px rgba(0,0,0,.4)}
.btn-text{display:inline-block;color:var(--brand-deep);font-weight:600;padding:0;min-height:auto;border:none}
.btn-text:hover{color:var(--ink)}
.btn:focus-visible,a:focus-visible,input:focus-visible,button:focus-visible{outline:3px solid var(--brand);outline-offset:2px}

/* PROMO */
.promo{background:var(--ink);color:var(--cream);text-align:center;font-size:.82rem;padding:.55rem 1rem}
.promo p{margin:0;letter-spacing:.01em}
.promo em{color:var(--brand);font-style:italic}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(250,246,238,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease,padding .3s ease;
}
.site-header.scrolled{box-shadow:0 6px 24px -16px rgba(0,0,0,.4)}
.header-inner{
  max-width:var(--maxw);margin:0 auto;padding:.6rem 20px;
  display:flex;align-items:center;gap:1rem;
}
.brand{display:flex;align-items:center;gap:.55rem;flex-shrink:0}
.brand-mark{width:42px;height:42px}
.brand-text{font-family:'Fraunces',serif;font-weight:600;font-size:1.05rem;line-height:1}
.primary-nav{margin-left:auto}
.primary-nav ul{display:flex;flex-wrap:wrap;gap:.2rem;list-style:none;margin:0;padding:0}
.primary-nav a{
  font-size:.82rem;font-weight:500;padding:.4rem .55rem;border-radius:6px;
  color:var(--ink);transition:color .2s,background .2s;white-space:nowrap;
}
.primary-nav a:hover{color:var(--brand)}
.header-cta{
  flex-shrink:0;background:var(--brand);color:#fff;font-weight:600;font-size:.85rem;
  padding:.55rem 1.2rem;border-radius:50px;transition:background .2s,transform .2s;
}
.header-cta:hover{background:var(--brand-deep);transform:translateY(-1px)}
.menu-toggle{
  display:none;flex-direction:column;gap:5px;background:none;border:none;
  cursor:pointer;padding:8px;margin-left:auto;
}
.menu-toggle span{width:24px;height:2px;background:var(--ink);transition:.3s;border-radius:2px}
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* HERO */
.hero{
  position:relative;min-height:82vh;display:flex;align-items:center;
  overflow:hidden;
}
.hero-media{position:absolute;inset:0;z-index:0}
.hero-img{
  width:100%;height:100%;object-fit:cover;object-position:28% 45%;
  filter:grayscale(.15);
}
.hero-wash{
  position:absolute;inset:0;
  background:
    linear-gradient(100deg,rgba(26,20,16,.18) 0%,rgba(26,20,16,.06) 35%,rgba(232,122,0,.78) 78%,rgba(200,95,0,.92) 100%);
}
.hero-content{
  position:relative;z-index:2;max-width:var(--maxw);width:100%;
  margin:0 auto;padding:3rem 20px;
  margin-left:auto;
}
.hero-content{display:flex;flex-direction:column;align-items:flex-end;text-align:right}
.hero-content .eyebrow,.hero-content h1,.hero-content .hero-sub,.hero-content .hero-actions,.hero-content .hero-stat{
  max-width:560px;
}
.hero .eyebrow{color:#fff;opacity:.95;text-shadow:0 1px 12px rgba(26,20,16,.4)}
.hero h1{
  color:#fff;font-size:clamp(2.4rem,6vw,4.4rem);font-weight:700;
  letter-spacing:-.01em;margin-bottom:1.2rem;
  text-shadow:0 2px 20px rgba(26,20,16,.3);
}
.swap{font-style:italic;display:inline-block}
.hero-sub{color:#fff;font-size:clamp(1rem,2vw,1.2rem);opacity:.97;margin-bottom:1.8rem;text-shadow:0 1px 14px rgba(26,20,16,.35)}
.hero-actions{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:flex-end;margin-bottom:1.4rem}
.hero .btn-ghost{border-color:#fff;color:#fff}
.hero .btn-ghost:hover{background:#fff;color:var(--brand-deep)}
.hero-stat{color:#fff;font-size:.85rem;opacity:.95;margin:0;text-shadow:0 1px 10px rgba(26,20,16,.4)}
.hero-stat strong{font-weight:700}

/* HOOK */
.hook{background:var(--ink);color:var(--cream)}
.hook-inner{
  max-width:var(--maxw);margin:0 auto;padding:2.6rem 20px;
  display:flex;align-items:center;gap:2.5rem;flex-wrap:wrap;
}
.hook-copy{flex:1 1 320px;min-width:0}
.hook-copy h2{color:#fff;font-size:clamp(1.6rem,3.5vw,2.4rem);margin:.2rem 0 .4rem}
.hook-copy p{margin:0;color:var(--line);opacity:.85}
.hook-form{flex:1 1 320px;min-width:0;display:flex;flex-wrap:wrap;gap:.6rem;align-items:center}
.hook-form input{
  flex:1 1 200px;min-width:0;padding:.85rem 1rem;border-radius:50px;border:2px solid transparent;
  font-size:1rem;font-family:inherit;
}
.hook-form input:focus{outline:none;border-color:var(--brand)}
.form-error{flex-basis:100%;color:#ffb87a;font-size:.8rem;margin:.2rem 0 0;min-height:1em}

/* FEATURED */
.featured{max-width:var(--maxw);margin:0 auto;padding:3.4rem 20px 1rem;text-align:center}
.featured-title{
  font-family:'Inter',sans-serif;text-transform:uppercase;letter-spacing:.18em;
  font-size:.75rem;font-weight:600;color:var(--muted);margin-bottom:1.8rem;
}
.logo-row{
  list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;
  align-items:center;justify-content:center;gap:1.4rem 2.4rem;
}
.logo-row li{display:flex}
.logo-row img{
  height:38px;width:auto;object-fit:contain;border-radius:8px;
  filter:grayscale(1);opacity:.7;transition:filter .3s,opacity .3s,transform .3s;
}
.logo-row li:hover img{filter:none;opacity:1;transform:translateY(-3px)}

/* ABOUT */
.about{
  max-width:var(--maxw);margin:0 auto;padding:4rem 20px;
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;
}
.about-media{position:relative;min-width:0}
.about-img{width:100%;border-radius:18px;box-shadow:0 30px 60px -30px rgba(26,20,16,.4);object-fit:cover;object-position:28% 45%;aspect-ratio:4/3}
.motif-tri{position:absolute;bottom:-26px;right:-14px;width:90px;opacity:.6;z-index:-1}
.about-copy{min-width:0}
.about-copy h2{font-size:clamp(1.6rem,3.4vw,2.4rem);margin-bottom:1.2rem}
.about-copy p{color:var(--ink);margin-bottom:1.4rem;max-width:60ch}

/* JOURNEY */
.journey{max-width:var(--maxw);margin:0 auto;padding:2rem 20px 4rem}
.journey-head{text-align:center;margin-bottom:3rem}
.journey-head h2{font-size:clamp(1.8rem,4vw,3rem)}
.panel{
  display:grid;grid-template-columns:1.05fr .95fr;gap:2.4rem;align-items:center;
  margin-bottom:3.5rem;
}
.panel-right{grid-template-columns:.95fr 1.05fr}
.panel-right .panel-img{order:2}
.panel-right .panel-text{order:1}
.panel-img{position:relative;min-width:0}
.panel-img img{
  width:100%;aspect-ratio:7/5;object-fit:cover;border-radius:18px;
  box-shadow:0 30px 60px -28px rgba(26,20,16,.45);
}
.panel-text{min-width:0}
.panel-num{
  font-family:'Fraunces',serif;font-size:3rem;font-weight:700;color:var(--brand);
  display:block;line-height:1;margin-bottom:.4rem;opacity:.85;
}
.panel-text h3{font-size:clamp(1.5rem,3vw,2.2rem);margin-bottom:.9rem}
.panel-text p{color:var(--ink);margin-bottom:1.3rem;max-width:54ch}

/* SUPERPOWER */
.superpower{
  position:relative;background:var(--brand);color:#fff;text-align:center;
  padding:5rem 20px;overflow:hidden;
}
.superpower blockquote{
  position:relative;z-index:2;max-width:900px;margin:0 auto;
  font-family:'Fraunces',serif;font-weight:600;
  font-size:clamp(1.6rem,4.2vw,3rem);line-height:1.25;
}
.superpower blockquote span{display:block;margin-top:.6rem;font-style:italic;opacity:.95}
.wave{position:absolute;left:0;width:100%;opacity:.35;z-index:1;pointer-events:none}
.wave-top{top:-10px;filter:brightness(0) invert(1)}
.wave-bottom{bottom:-10px;filter:brightness(0) invert(1)}

/* BOOK */
.book{
  max-width:var(--maxw);margin:0 auto;padding:4.5rem 20px;
  display:grid;grid-template-columns:.85fr 1.15fr;gap:3rem;align-items:center;
}
.book-media{position:relative;text-align:center;min-width:0}
.book-cover{
  width:100%;max-width:340px;margin:0 auto;
  filter:drop-shadow(0 30px 50px rgba(26,20,16,.35));
}
.book-ribbon{position:absolute;top:6px;left:50%;transform:translateX(-50%);width:180px;max-width:60%}
.book-copy{min-width:0}
.book-copy h2{font-size:clamp(1.7rem,3.6vw,2.6rem);margin-bottom:.6rem}
.book-title{font-family:'Fraunces',serif;font-size:1.3rem;color:var(--brand-deep);margin-bottom:.8rem}
.book-copy p{max-width:52ch}
.book-copy .btn-primary{margin:.8rem 0}
.amazon-link{display:flex;align-items:center;gap:.6rem;font-size:.85rem;color:var(--muted)}
.amazon-link img{height:26px;width:auto}

/* PODCAST */
.podcast{
  background:var(--paper);
}
.podcast{
  max-width:none;
  padding:4.5rem 20px;
}
.podcast{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;
  max-width:var(--maxw);margin:0 auto;
}
.podcast-media{position:relative;min-width:0;min-height:300px;display:flex;justify-content:center;align-items:center}
.podcast-cover{position:absolute;width:62%;max-width:300px;border-radius:14px;box-shadow:0 24px 50px -20px rgba(26,20,16,.5)}
.podcast-cover.back{transform:rotate(-7deg) translate(-22%,4%);z-index:1;opacity:.92}
.podcast-cover.front{transform:rotate(4deg) translate(18%,-2%);z-index:2}
.podcast-copy{min-width:0}
.podcast-copy h2{font-size:clamp(1.7rem,3.6vw,2.6rem);margin-bottom:.8rem}
.podcast-copy p{max-width:50ch}
.podcast-links{display:flex;flex-wrap:wrap;gap:.7rem;margin:1.4rem 0 1.2rem}
.podcast-links .btn{padding:.6rem 1.2rem;font-size:.85rem}

/* INSTAGRAM */
.insta{max-width:var(--maxw);margin:0 auto;padding:4rem 20px;text-align:center}
.insta h2{font-size:clamp(1.6rem,3.4vw,2.4rem);margin-bottom:1.6rem}
.insta-grid{
  display:grid;grid-template-columns:repeat(6,1fr);gap:10px;max-width:760px;
  margin:0 auto 1rem;
}
.insta-grid span{
  aspect-ratio:1;border-radius:12px;
  background:linear-gradient(135deg,rgba(232,122,0,.18),rgba(232,122,0,.05));
  border:1px dashed var(--line);
}
.insta-note{font-size:.8rem;color:var(--muted);margin-bottom:1.4rem}

/* NEWSLETTER */
.newsletter{
  background:linear-gradient(120deg,var(--brand),var(--brand-deep));
  color:#fff;padding:4.5rem 20px;text-align:center;
}
.news-inner{max-width:640px;margin:0 auto}
.news-icon{font-size:2.4rem;display:block;margin-bottom:.4rem}
.news-inner h2{color:#fff;font-size:clamp(2rem,4.5vw,3rem);margin-bottom:.8rem}
.news-inner p{color:#fff;opacity:.95;margin-bottom:1.8rem}
.news-form{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center}
.news-form input{
  flex:1 1 260px;min-width:0;max-width:360px;padding:.9rem 1.2rem;border-radius:50px;
  border:none;font-size:1rem;font-family:inherit;
}
.news-form input:focus{outline:3px solid rgba(255,255,255,.6);outline-offset:2px}
.news-form .form-error{color:#fff3e6}

/* FOOTER */
.site-footer{background:var(--cream);border-top:1px solid var(--line);padding:3.5rem 20px 2.5rem}
.footer-inner{
  max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2.5rem;
}
.footer-brand .brand-mark{width:48px;height:48px}
.footer-tag{font-size:.9rem;color:var(--muted);margin-top:1rem;max-width:30ch}
.footer-col h3{font-family:'Fraunces',serif;font-size:1.15rem;margin-bottom:1rem;font-style:italic}
.footer-col ul{list-style:none;margin:0;padding:0}
.footer-col li{margin-bottom:.55rem}
.footer-col a{font-size:.9rem;color:var(--ink);transition:color .2s}
.footer-col a:hover{color:var(--brand)}
.footer-contact p{font-size:.9rem;color:var(--muted);margin-bottom:1rem}
.footer-contact a{color:var(--brand-deep);font-weight:600}

/* TO TOP */
.to-top{
  position:fixed;bottom:24px;right:24px;width:46px;height:46px;border-radius:50%;
  background:var(--brand);color:#fff;border:none;font-size:1.2rem;cursor:pointer;
  box-shadow:0 8px 20px -6px rgba(232,122,0,.6);opacity:0;pointer-events:none;
  transition:opacity .3s,transform .3s;z-index:90;
}
.to-top.show{opacity:1;pointer-events:auto}
.to-top:hover{background:var(--brand-deep);transform:translateY(-3px)}

/* REVEAL */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}
.reveal.in{opacity:1;transform:none}

/* RESPONSIVE */
@media (max-width:1080px){
  .primary-nav a{font-size:.78rem;padding:.4rem .42rem}
}
@media (max-width:980px){
  .menu-toggle{display:flex}
  .header-cta{display:none}
  .primary-nav{
    position:absolute;top:100%;left:0;right:0;margin:0;
    background:var(--cream);border-bottom:1px solid var(--line);
    max-height:0;overflow:hidden;transition:max-height .35s ease;
  }
  .primary-nav.open{max-height:80vh;overflow-y:auto;box-shadow:0 20px 30px -16px rgba(0,0,0,.3)}
  .primary-nav ul{flex-direction:column;gap:0;padding:.6rem 20px 1.4rem}
  .primary-nav a{display:block;padding:.8rem .4rem;font-size:1rem;border-bottom:1px solid var(--line)}
  .header-inner{flex-wrap:nowrap}
  .brand{margin-right:auto}
}
@media (max-width:820px){
  .about,.book,.podcast{grid-template-columns:1fr;gap:2rem}
  .panel,.panel-right{grid-template-columns:1fr;gap:1.4rem}
  .panel-right .panel-img{order:1}
  .panel-right .panel-text{order:2}
  .hero{min-height:78vh}
  .hero-content{align-items:center;text-align:center;padding:2.5rem 20px}
  .hero-content .eyebrow,.hero-content h1,.hero-content .hero-sub,.hero-content .hero-actions,.hero-content .hero-stat{max-width:600px;margin-left:auto;margin-right:auto}
  .hero-actions{justify-content:center}
  /* darker top scrim so white text reads over the light part of the photo */
  .hero-wash{background:linear-gradient(180deg,rgba(26,20,16,.62) 0%,rgba(26,20,16,.42) 28%,rgba(214,107,8,.7) 64%,rgba(200,95,0,.94) 100%)}
  .footer-inner{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  body{font-size:16px}
  .promo p{font-size:.72rem}
  .insta-grid{grid-template-columns:repeat(3,1fr)}
  .footer-inner{grid-template-columns:1fr}
  .hook-inner{padding:2rem 20px}
  .logo-row{gap:1.2rem 1.6rem}
  .logo-row img{height:30px}
  .podcast-media{min-height:260px}
  .brand-text{font-size:.95rem}
  .brand-mark{width:36px;height:36px}
  .superpower{padding:3.4rem 20px}
  .superpower blockquote{font-size:clamp(1.5rem,6vw,2rem)}
  .hero h1{font-size:clamp(2.1rem,8.5vw,3rem)}
}
@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none;transition:none}
}