
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root{
  --green-950:#002816;
  --green-900:#00371f;
  --green-800:#075034;
  --green-100:#e9f0eb;
  --cream:#f7f2e8;
  --paper:#fffdf8;
  --white:#ffffff;
  --gold:#e5aa18;
  --gold-hover:#f0bd3e;
  --gold-dark:#a97100;
  --ink:#173126;
  --muted:#607068;
  --line:#dfe6e1;
  --shadow:0 18px 48px rgba(0,40,22,.12);
  --radius:24px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Arial,sans-serif;color:var(--ink);background:var(--paper);line-height:1.65}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
.container{width:min(var(--max),calc(100% - 40px));margin:auto}
.eyebrow{font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;font-weight:700;color:var(--gold-dark);margin-bottom:12px}
h1,h2,h3{font-family:"Playfair Display",Georgia,serif;line-height:1.09;margin:0 0 18px}
h1{font-size:clamp(2.75rem,6vw,5.55rem)}
h2{font-size:clamp(2.05rem,4vw,3.55rem)}
h3{font-size:1.5rem}
p{margin:0 0 18px}
.lead{font-size:1.12rem}
.small{font-size:.92rem;color:var(--muted)}
.section{padding:94px 0}
.section-sm{padding:58px 0}
.bg-cream{background:var(--cream)}
.bg-green{background:var(--green-950);color:white}
.bg-white{background:white}
.center{text-align:center}
.max-copy{max-width:760px}
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{background:white;border:1px solid var(--line);border-radius:var(--radius);padding:30px;box-shadow:0 8px 26px rgba(0,40,22,.055)}
.card.dark{background:rgba(255,255,255,.075);border-color:rgba(255,255,255,.16);color:white}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;padding:14px 22px;border-radius:10px;font-weight:700;border:1px solid transparent;transition:.2s;cursor:pointer}
.btn-gold{background:var(--gold);color:var(--green-950)}
.btn-gold:hover{background:var(--gold-hover);transform:translateY(-1px)}
.btn-outline{border-color:rgba(255,255,255,.62);color:white}
.btn-outline-green{border-color:var(--green-900);color:var(--green-900)}
.link{font-weight:700;color:var(--green-800)}
.link::after{content:" →"}
.back-link{display:inline-flex;align-items:center;gap:8px;font-weight:700;color:var(--green-800);margin-bottom:30px}
.badge{display:inline-flex;padding:7px 12px;border-radius:999px;background:#fff0bf;color:var(--green-950);font-weight:700;font-size:.82rem}
.icon{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:var(--gold);color:var(--green-950);font-weight:800;margin-bottom:20px}

/* Header */
.site-header{position:sticky;top:0;z-index:40;background:rgba(255,253,248,.96);backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,40,22,.08)}
.nav{height:82px;display:flex;align-items:center;justify-content:space-between;gap:22px}
.logo img{width:185px;height:auto}
.nav-links{display:flex;align-items:center;gap:28px;font-weight:600;font-size:.94rem}
.menu-btn{display:none;background:none;border:none;font-size:1.6rem;color:var(--green-950)}

/* Hero */
.hero{min-height:720px;display:flex;align-items:center;color:white;position:relative;overflow:hidden;background:
linear-gradient(90deg,rgba(0,40,22,.98) 0%,rgba(0,40,22,.92) 45%,rgba(0,40,22,.48) 100%),
url("../images/hero-workspace.jpg") center/cover no-repeat}
.hero::after{content:"";position:absolute;left:-5%;right:-5%;bottom:-96px;height:150px;background:var(--paper);border-radius:50% 50% 0 0/100% 100% 0 0;border-top:4px solid var(--gold)}
.hero-content{position:relative;z-index:2;max-width:725px;padding:90px 0 132px}
.hero h1 span{color:var(--gold)}
.hero .lead{max-width:690px;color:rgba(255,255,255,.9)}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}

/* Editorial splits */
.split{display:grid;grid-template-columns:1.03fr .97fr;gap:58px;align-items:center}
.media-panel{min-height:470px;border-radius:30px;box-shadow:var(--shadow);background-position:center;background-size:cover}
.media-checkup{background-image:url("../images/checkup-focus.jpg")}
.media-bundles{background-image:url("../images/digital-bundles.jpg")}
.media-workshop{background-image:url("../images/workshop-face-to-face.jpg")}
.media-virtual{background-image:url("../images/workshop-virtual.jpg")}
.founder-photo{width:min(390px,100%);aspect-ratio:4/5;object-fit:cover;border-radius:30px;box-shadow:var(--shadow);margin:auto}

/* Check-up facts */
.feature-strip{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--line);border-radius:22px;overflow:hidden;background:white;box-shadow:var(--shadow)}
.feature-strip>div{padding:26px;text-align:center;border-right:1px solid var(--line)}
.feature-strip>div:last-child{border-right:none}
.feature-strip strong{display:block}
@media (max-width: 720px) {
  .feature-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-strip > div {
    min-height: auto;
    padding: 14px 10px;
    border-radius: 12px;
    text-align: center;
  }

  .feature-strip strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .feature-strip .small {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    line-height: 1.25;
  }
}
/* Customer journey system */
.journey-intro{max-width:890px;margin:0 auto 48px;text-align:center}
.journey-intro .philosophy{font-family:"Playfair Display",Georgia,serif;font-size:clamp(1.45rem,2.4vw,2.15rem);line-height:1.4;color:var(--green-900);margin:24px auto}
.journey{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:10px;align-items:stretch}
.journey-step{position:relative;background:white;border:1px solid var(--line);border-radius:20px;padding:24px 18px;min-height:205px}
.journey-step:not(:last-child)::after{content:"→";position:absolute;right:-18px;top:50%;transform:translateY(-50%);color:var(--gold-dark);font-weight:800;font-size:1.35rem;z-index:3}
.journey-number{font-weight:800;color:var(--gold-dark);font-size:.8rem;letter-spacing:.1em;margin-bottom:12px}
.journey-step h3{font-size:1.25rem}
.journey-step p{font-size:.92rem;color:var(--muted);margin-bottom:0}
.journey-note{max-width:850px;margin:38px auto 0;padding:24px 28px;border-left:4px solid var(--gold);background:white;border-radius:0 18px 18px 0}

/* Image overlays */
.overlay-section{position:relative;background:
linear-gradient(90deg,rgba(0,40,22,.98),rgba(0,40,22,.82)),
url("../images/workshop-face-to-face.jpg") center/cover no-repeat;color:white}

/* Workshop */
.event-card{display:grid;grid-template-columns:180px 1fr auto;align-items:stretch;overflow:hidden;padding:0}
.event-date{background:var(--green-950);color:white;display:grid;place-items:center;text-align:center;padding:25px}
.event-date strong{display:block;font-size:2.4rem;font-family:"Playfair Display"}
.event-details{padding:30px}
.event-action{padding:30px;display:flex;align-items:center}
.expired-note{display:none}
.no-workshops{display:none}

/* Products */
.product-card{padding:0;overflow:hidden}
.product-art{height:230px;background-image:linear-gradient(rgba(0,40,22,.08),rgba(0,40,22,.28)),url("../images/digital-bundles.jpg");background-size:cover;background-position:center}
.product-card:nth-child(2) .product-art{background-position:center}
.product-card:nth-child(3) .product-art{background-position:right center}
.product-body{padding:28px}
.price{font-size:1.25rem;font-weight:800;color:var(--gold-dark)}
.product-list{padding-left:19px;color:var(--muted)}

/* Forms */
.form-grid{display:grid;gap:16px}
.field label{display:block;font-weight:700;margin-bottom:7px}
.field input,.field textarea,.field select{width:100%;padding:14px 15px;border:1px solid #ccd8d1;border-radius:10px;background:white}
.field textarea{min-height:150px;resize:vertical}

/* Footer */
.footer{padding:64px 0 28px;background:var(--green-950);color:white}
.footer-grid{display:grid;grid-template-columns:1.6fr repeat(3,1fr);gap:35px}
.footer-logo{width:210px;margin-bottom:20px}
.footer h4{margin:0 0 14px}
.footer ul{list-style:none;padding:0;margin:0;display:grid;gap:9px;color:rgba(255,255,255,.76)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.15);margin-top:38px;padding-top:22px;color:rgba(255,255,255,.65);font-size:.9rem}

/* Page heroes */
.page-hero{padding:135px 0 88px;color:white;background:
linear-gradient(90deg,rgba(0,40,22,.98),rgba(0,40,22,.72)),
url("../images/hero-workspace.jpg") center/cover no-repeat}
.page-hero.workshop-hero{background-image:linear-gradient(90deg,rgba(0,40,22,.98),rgba(0,40,22,.60)),url("../images/workshop-face-to-face.jpg")}
.page-hero.bundles-hero{background-image:linear-gradient(90deg,rgba(0,40,22,.98),rgba(0,40,22,.65)),url("../images/digital-bundles.jpg")}
.page-hero p{max-width:690px;color:rgba(255,255,255,.9);font-size:1.08rem}
.policy{max-width:850px}
.policy h2{font-size:1.7rem;margin-top:36px}

/* Mobile */
@media(max-width:1050px){
  .journey{grid-template-columns:repeat(3,1fr);gap:20px}
  .journey-step:not(:last-child)::after{display:none}
}
@media(max-width:900px){
  .nav-links{display:none;position:absolute;top:82px;left:0;right:0;background:white;padding:24px;flex-direction:column;align-items:flex-start;border-bottom:1px solid var(--line)}
  .nav-links.open{display:flex}
  .menu-btn{display:block}
  .nav>.btn{display:none}
  .grid-3,.grid-2,.split,.footer-grid{grid-template-columns:1fr}
  .feature-strip{grid-template-columns:1fr 1fr}
  .feature-strip>div:nth-child(2){border-right:none}
  .feature-strip>div{border-bottom:1px solid var(--line)}
  .hero{min-height:650px;background-position:62% center}
  .hero-content{padding-top:70px}
  .event-card{grid-template-columns:1fr}
  .event-action{padding-top:0}
}
@media(max-width:620px){
  .container{width:min(100% - 24px,var(--max))}
  .section{padding:68px 0}
  .feature-strip,.journey{grid-template-columns:1fr}
  .feature-strip>div{border-right:none}
  .logo img{width:150px}
  h1{font-size:2.65rem}
  .media-panel{min-height:330px}
}


/* V1.2 brand and commerce additions */
.brand-lockup{display:flex;align-items:center;gap:12px}
.brand-mark {
  width: 150px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  display: block;
}@media (max-width: 720px) {
  .brand-mark {
    width: 120px;
    max-height: 48px;
  }
}
.brand-copy{display:flex;flex-direction:column;line-height:1}
.brand-name{font-family:"Playfair Display",Georgia,serif;font-size:1.45rem;font-weight:700;letter-spacing:.08em;color:var(--green-950)}
.brand-tagline{font-size:.62rem;text-transform:uppercase;letter-spacing:.18em;color:var(--muted);margin-top:5px}
.footer .brand-name,.footer .brand-tagline{color:white}
.footer .brand-tagline{color:rgba(255,255,255,.68)}
.workshop-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.workshop-card{padding:0;overflow:hidden}
.workshop-image{height:220px;background-size:cover;background-position:center}
.workshop-body{padding:27px}
.meta{display:flex;flex-wrap:wrap;gap:9px;margin:15px 0}
.meta span{font-size:.8rem;font-weight:700;padding:7px 10px;border-radius:999px;background:var(--green-100);color:var(--green-900)}
.outcome-list{padding-left:19px;color:var(--muted)}
.price-line{font-size:1.3rem;font-weight:800;color:var(--gold-dark);margin:14px 0}
.hub-choice{padding:0;overflow:hidden}
.hub-choice .choice-image{height:280px;background-size:cover;background-position:center}
.hub-choice .choice-body{padding:32px}
.thankyou-shell{min-height:70vh;display:grid;place-items:center;padding:80px 0;background:var(--cream)}
.thankyou-card{max-width:760px;text-align:center;background:white;border:1px solid var(--line);border-radius:30px;padding:45px;box-shadow:var(--shadow)}
.step-list{display:grid;gap:12px;text-align:left;margin:28px auto;max-width:580px}
.step-list div{padding:16px 18px;border-radius:14px;background:var(--cream)}
.notice{padding:18px 20px;border-left:4px solid var(--gold);background:#fff8df;border-radius:0 14px 14px 0;text-align:left}
.button-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:25px}
@media(max-width:900px){.workshop-grid{grid-template-columns:1fr}.brand-copy{display:none}}


/* Launch rebuild: consistent wordmark, mobile CTA, compact home layouts */
.brand-lockup{flex:0 0 auto}
.brand-mark{width:190px;max-height:64px;height:auto;object-fit:contain;object-position:left center}
.footer .brand-mark{width:205px;max-height:70px}
.mobile-nav-cta{display:none}
@media(max-width:900px){
  .brand-mark{width:165px;max-height:58px}
  .nav{height:84px}
  .nav-links{top:84px;gap:18px}
  .mobile-nav-cta{display:inline-flex;width:100%;justify-content:center;margin-top:4px;padding:13px 18px;border-radius:10px;background:var(--gold);color:var(--green-950);font-weight:800}
  .footer .brand-mark{width:190px;max-height:66px}
}
@media(max-width:620px){
  .brand-mark{width:172px;max-height:60px}
  .footer .brand-mark{width:190px;max-height:68px}
  .feature-strip{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;border:0;background:transparent;box-shadow:none;overflow:visible}
  .feature-strip>div{padding:12px 8px;border:1px solid var(--line)!important;border-radius:12px;background:white;box-shadow:0 5px 15px rgba(0,40,22,.05)}
  .feature-strip strong{font-size:.84rem;line-height:1.2}
  .feature-strip .small{font-size:.68rem;line-height:1.2;margin-top:3px}
  .journey{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
  .journey-step{min-height:0;padding:14px 8px;border-radius:14px;text-align:center}
  .journey-number{font-size:.64rem;margin-bottom:6px}
  .journey-step h3{font-size:.92rem;margin-bottom:5px}
  .journey-step p{font-size:.68rem;line-height:1.28}
  .journey-step:not(:last-child)::after{display:none}
}

/* Keep the product-page return link and product type comfortably separated on phones. */
@media (max-width:720px){
  .page-hero .back-link{
    display:flex;
    width:max-content;
    max-width:100%;
    margin-bottom:20px;
  }
  .page-hero .badge{
    display:flex;
    width:max-content;
    max-width:100%;
    margin-bottom:14px;
  }
}
