:root{
  --bg:#f5f7f8;
  --panel:#ffffff;
  --stroke:#e2e7ea;

  --text:#1f2933;
  --muted:#667085;

  /* Cyan theme (restored) */
  --brand:#4fb3ad;
  --brandDeep:#2f9f99;
  --char:#2b3440;

  --shadow:0 26px 70px rgba(0,0,0,.10);
  --shadow2:0 14px 34px rgba(0,0,0,.07);

  --r:18px;
  --r2:26px;

  --ease:cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

.container{width:min(1100px, calc(100% - 44px)); margin:0 auto}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(245,247,248,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brandWrap{display:flex; flex-direction:column; line-height:1;}
.brandLogo{
  font-family:"Cormorant Garamond", serif;
  font-weight:700;              
  font-size:42px;              
  letter-spacing:-0.025em;
  color:var(--char);
}

.brandTag{
  margin-top:4px;
  font-size:14px;              
  font-weight:900;
  letter-spacing:0.12em;       
  text-transform:uppercase;
  color:rgba(31,41,51,.6);
}
/* Offer pill */
.topOffer{
  display:flex;
  align-items:center;
  gap:10px;

  padding:10px 14px;
  border-radius:999px;

  background: rgba(79,179,173,.10);
  border: 1px solid rgba(79,179,173,.22);
  color: rgba(31,41,51,.82);
  font-weight:900;
  font-size:14px;

  box-shadow: 0 14px 28px rgba(0,0,0,.06);
  animation: floaty 3.2s var(--ease) infinite;
}
.topOffer__spark{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(79,179,173,.15);
}
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-1px); }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 16px;
  border-radius:999px;

  font-weight:900;
  text-decoration:none;
  border:1px solid var(--stroke);
  background: white;
  color: var(--text);

  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
  filter: brightness(1.01);
}
.btn--primary{
  border:none;
  background: var(--brandDeep);
  color:white;
}
.btn--pulse{
  animation:pulse 2.2s var(--ease) infinite;
}
@keyframes pulse{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-1px); box-shadow: 0 22px 54px rgba(79,179,173,.22); }
}

/* Hero */
.hero{
  padding: 70px 0 44px;
  background:
    radial-gradient(900px 320px at 50% 0%, rgba(79,179,173,.18), transparent 62%);
}
.hero__inner{ text-align:center; }

.pill{
  display:inline-block;
  background: rgba(255,255,255,.94);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow2);
  border-radius: 999px;
  padding: 10px 16px;
}
.pill--large{
  font-size: 18px;
  font-weight: 900;
  padding: 14px 22px;
  letter-spacing: -0.01em;
}

.h1{
  margin: 18px auto 12px;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--char);
}
.accent{ color: var(--brandDeep); }

.lead{
  max-width: 70ch;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

/* Booking */
.bookingTop{
  margin: 28px auto 0;
  max-width: 1040px;

  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--r2);

  padding: 18px;
  box-shadow: var(--shadow);
  text-align:left;
}
.bookingTop__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.bookingTop__title{
  font-weight: 950;
  font-size: 18px;
  letter-spacing:-0.02em;
}
.bookingTop__hint{
  font-weight: 900;
  font-size: 13px;
  color: var(--muted);
}

.calWrap{
  height: 740px;
  border-radius: 22px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(79,179,173,.10), rgba(255,255,255,1));
  border: 1px solid rgba(79,179,173,.22);
  box-shadow: 0 26px 60px rgba(0,0,0,.10);
}
.calWrap iframe{
  width:100%;
  height:100%;
  border:0;
  border-radius: 22px;
}

.microTrust{
  margin-top: 12px;
  display:flex;
  justify-content:center;
  gap: 8px;
  flex-wrap:wrap;
}
.chip{
  font-size: 12.5px;
  font-weight: 900;
  color: rgba(31,41,51,.78);
  background: rgba(79,179,173,.10);
  border: 1px solid rgba(79,179,173,.22);
  padding: 8px 10px;
  border-radius: 999px;
}

/* Sections */
.section{ padding: 62px 0; }
.sectionHead{ text-align:center; margin-bottom: 22px; }

.h2{
  margin:0 0 8px;
  font-size: clamp(26px,3.1vw,34px);
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--char);
}
.sub{
  margin:0 auto;
  max-width: 78ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.section--soft{
  background: linear-gradient(180deg, rgba(79,179,173,.06), rgba(245,247,248,1));
}

/* Snap cards */
.snapGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.snapCard{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.snapCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.snapImg{
  height: 150px;
  border-bottom: 1px solid var(--stroke);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Card 1 image */
.snapImg--system{
  background-image:
    linear-gradient(180deg, rgba(79,179,173,.10), rgba(255,255,255,0)),
    url("./images/calendar-1.png");
}

/* Card 2 image */
.snapImg--followup{
  background-image:
    linear-gradient(180deg, rgba(79,179,173,.10), rgba(255,255,255,0)),
    url("./images/calendar-2.png");
}

/* Card 3 image */
.snapImg--clarity{
  background-image:
    linear-gradient(180deg, rgba(79,179,173,.10), rgba(255,255,255,0)),
    url("./images/calendar-3.png");
}
.snapTitle{ padding: 14px 16px 0; font-weight: 950; letter-spacing:-0.01em; color:var(--char); }
.snapSub{
  padding: 8px 16px 16px;
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.65;
}

/* Growth Engine */
.engineGrid{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  gap: 14px;
}
.enginePhase{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow2);

  padding: 16px 18px;
  display:grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
}
.engineNum{
  font-weight: 950;
  font-size: 20px;
  color: var(--brandDeep);
}
.engineTitle{
  font-weight: 950;
  letter-spacing: -0.01em;
  color: var(--char);
}
.engineText{
  margin-top: 6px;
  color: var(--muted);
  font-size: 14.8px;
  line-height: 1.75;
}

/* Exclusive block */
.exclusiveBlock{
  margin: 22px auto 0;
  max-width: 980px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(79,179,173,.22);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  padding: 18px;
  text-align:center;
}
.exclusiveTitle{
  font-weight: 950;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--char);
}
.exclusiveSub{
  margin: 8px auto 14px;
  max-width: 78ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14.6px;
}


/* Meet the Director */
.directorCard{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;

  background: rgba(255,255,255,.92);
  border: 1px solid var(--stroke);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.directorMedia{
  display:flex;
  align-items:stretch;
}

.directorPhoto{
  width:100%;
  height:100%;
  min-height: 340px;
  object-fit: cover;

  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.06);
}

.directorContent{
  padding: 4px 6px;
}

.directorKicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(31,41,51,.62);
  margin-bottom: 10px;
}

.directorName{
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.03em;
  color: var(--char);
}

.directorRole{
  margin: 6px 0 14px;
  font-weight: 900;
  color: rgba(31,41,51,.65);
}

.directorText{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14.8px;
}

.directorCtas{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .directorCard{
    grid-template-columns: 1fr;
  }
  .directorPhoto{
    min-height: 260px;
  }
}

/* FAQ */
.faq{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  gap: 10px;
}
.faqItem{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
  padding: 14px 16px;
}
.faqItem summary{
  cursor:pointer;
  list-style:none;
  font-weight: 950;
  color: var(--char);
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqBody{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14.8px;
}

/* Footer */
.footer{
  padding: 44px 0 54px;
  border-top: 1px solid var(--stroke);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.footBrand{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:22px;
  color: var(--char);
}
.footSub{ font-size: 13px; color: var(--muted); }

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.delay-1{ transition-delay:.08s; }
.delay-2{ transition-delay:.16s; }

/* Responsive */
@media (max-width: 980px){
  .topOffer{ display:none; }
  .brandLogo{ font-size:32px; }
  .snapGrid{ grid-template-columns: 1fr; }
  .bookingTop{ text-align:left; }
  .calWrap{ height: 820px; }
}
