:root{
  --bg: #ffffff;
  --ink: #0f0f10;
  --ink-soft: #5a5c60;
  --ink-faint: #97999e;
  --hair: #e9e9ec;
  --accent: #2f7fe0;          /* light blue */
  --accent-bright: #4c92ef;
  --accent-wash: #eef4fd;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", -apple-system, sans-serif;
  --maxw: 1080px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:96px; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }

body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  font-weight:400;
  font-size:17px;
  line-height:1.65;
  letter-spacing:-0.005em;
}

::selection{ background:var(--accent-wash); color:var(--ink); }

a{ color:inherit; text-decoration:none; }

/* ---------- Nav ---------- */
header.nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  background:rgba(255,255,255,0.78);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .4s ease;
}
header.nav.scrolled{ border-bottom:1px solid var(--hair); }
.nav-inner{
  max-width:var(--maxw); margin:0 auto;
  padding:22px 32px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.brand{
  font-family:var(--serif);
  font-weight:500;
  font-size:18px;
  letter-spacing:-0.01em;
  white-space:nowrap;
}
.brand .dot{ color:var(--accent); }
nav ul{ list-style:none; display:flex; gap:30px; }
nav a{
  font-size:13.5px; font-weight:500; letter-spacing:0.01em;
  color:var(--ink-soft);
  position:relative; padding:4px 0;
  transition:color .25s ease;
}
nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1.5px;
  background:var(--accent); transition:right .3s ease;
}
nav a:hover{ color:var(--ink); }
nav a:hover::after, nav a.active::after{ right:0; }
nav a.active{ color:var(--ink); }

/* ---------- Layout shell ---------- */
main{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }

section{
  padding:120px 0;
}

/* Two-column editorial grid */
.row{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:48px;
}
.col-label{ position:relative; }
.num{
  font-family:var(--serif);
  font-size:14px; font-weight:400;
  color:var(--accent);
  letter-spacing:0.04em;
  display:block; margin-bottom:10px;
}
.label{
  font-size:13px; font-weight:600;
  letter-spacing:0.14em; text-transform:uppercase;
  color:var(--ink-faint);
}
.sticky-label{ position:sticky; top:120px; }

/* ---------- Hero / About ---------- */
.hero{ padding-top:180px; padding-bottom:120px; }
.eyebrow{
  font-size:13px; font-weight:600; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--accent); margin-bottom:26px;
}
h1{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(44px, 8vw, 92px);
  line-height:1.02;
  letter-spacing:-0.022em;
  margin-bottom:34px;
}
h1 em{ font-style:italic; color:var(--accent); }
.lede{
  font-size:clamp(20px, 2.4vw, 25px);
  line-height:1.5;
  color:var(--ink);
  max-width:30ch;
  font-weight:400;
}

.about-body{ max-width:60ch; }
.about-body p{ margin-bottom:22px; color:var(--ink); }
.about-body p:last-child{ margin-bottom:0; }
.about-body a.inline{
  color:var(--accent);
  border-bottom:1px solid var(--accent-wash);
  transition:border-color .25s ease;
}
.about-body a.inline:hover{ border-bottom-color:var(--accent); }

h2{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(28px, 4vw, 38px);
  line-height:1.1;
  letter-spacing:-0.015em;
  margin-bottom:26px;
}

/* "Together we can" list */
.together{ margin-top:40px; }
.together h3{
  font-size:13px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--ink-faint); margin-bottom:20px;
}
.together ul{ list-style:none; display:grid; gap:0; }
.together li{
  display:flex; align-items:baseline; gap:16px;
  padding:16px 0;
  border-top:1px solid var(--hair);
  font-size:18px;
}
.together li:last-child{ border-bottom:1px solid var(--hair); }
.together li .mark{
  color:var(--accent); font-family:var(--serif); font-size:14px;
  flex-shrink:0; width:14px;
}

/* ---------- Placeholder sections ---------- */
.soon{
  display:flex; align-items:center; gap:14px;
  color:var(--ink-faint);
  font-size:18px;
}
.soon .pulse{
  width:9px; height:9px; border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 0 rgba(47,127,224,0.5);
  animation:pulse 2.4s ease-out infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(47,127,224,0.4); }
  70%{ box-shadow:0 0 0 12px rgba(47,127,224,0); }
  100%{ box-shadow:0 0 0 0 rgba(47,127,224,0); }
}
.soon-note{ margin-top:18px; color:var(--ink-soft); max-width:46ch; font-size:16px; }

/* ---------- Contact ---------- */
.contact-lede{ font-size:clamp(22px,3vw,30px); font-family:var(--serif); font-weight:300; line-height:1.3; max-width:20ch; letter-spacing:-0.01em; }
.contact-body{ margin-top:34px; font-size:19px; line-height:1.6; max-width:48ch; }
.contact-body a.inline{ color:var(--accent); border-bottom:1px solid var(--accent-wash); transition:border-color .25s ease; }
.contact-body a.inline:hover{ border-bottom-color:var(--accent); }
p.book-note{ margin-top:22px; }
.channels{ margin-top:8px; }
.channel{
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 0;
  border-top:1px solid var(--hair);
  transition:padding-left .3s ease;
}
.channel:last-of-type{ border-bottom:1px solid var(--hair); }
a.channel:hover{ padding-left:10px; }
.channel-name{ font-size:14px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-faint); }
.channel-val{ display:flex; align-items:center; gap:14px; font-size:18px; }
.channel-val .arrow{ color:var(--accent); transition:transform .3s ease; }
a.channel:hover .arrow{ transform:translateX(5px); }

.book{
  margin-top:44px;
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
}
.book-btn{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--accent);
  color:#fff;
  font-family:var(--sans); font-weight:600; font-size:16px; letter-spacing:0.01em;
  padding:15px 26px;
  border:none; border-radius:999px;
  cursor:not-allowed;
  opacity:0.55;
  transition:transform .25s ease, opacity .25s ease;
}
.book-note{ font-size:14px; color:var(--ink-faint); }

/* ---------- Footer ---------- */
footer{
  max-width:var(--maxw); margin:0 auto;
  padding:48px 32px 64px;
  border-top:1px solid var(--hair);
  display:flex; justify-content:space-between; align-items:center;
  color:var(--ink-faint); font-size:13px; flex-wrap:wrap; gap:12px;
}

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in{ opacity:1; transform:none; }
.d1{ transition-delay:.08s; } .d2{ transition-delay:.16s; } .d3{ transition-delay:.24s; } .d4{ transition-delay:.32s; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
  .soon .pulse{ animation:none; }
}

/* ---------- Responsive ---------- */
@media (max-width:760px){
  body{ font-size:16px; }
  .nav-inner{ padding:18px 22px; }
  nav ul{ gap:18px; }
  nav a{ font-size:12.5px; }
  main{ padding:0 22px; }
  section{ padding:84px 0; }
  .hero{ padding-top:140px; padding-bottom:84px; }
  .row{ grid-template-columns:1fr; gap:24px; }
  .sticky-label{ position:static; }
  .col-label{ display:flex; align-items:baseline; gap:14px; }
  .num{ margin-bottom:0; }
  footer{ padding:40px 22px 52px; }
}
@media (max-width:520px){
  nav ul{ gap:14px; }
  nav a span.hide-xs{ display:none; }
}
