:root {
    --bg: #f6f4ef;
    --fg: #161513;
    --fg-soft: #4a4842;
    --fg-mute: #8a8780;
    --rule: #d8d4c8;
    --rule-soft: #e6e2d6;
    --accent: #c2410c;
    --display: "Inter Tight", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
  }

  ::selection { background: var(--fg); color: var(--bg); }

  /* ---------- Layout primitives ---------- */
  .page { width: 100%; }
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
  }
  @media (max-width: 720px) {
    .container { padding: 0 24px; }
  }

  /* ---------- Nav ---------- */
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .brand {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .brand .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    display: inline-block;
  }
  .nav-links {
    display: flex;
    gap: 36px;
  }
  .nav-links a {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: lowercase;
    color: var(--fg-soft);
    text-decoration: none;
    font-family: var(--mono);
    font-weight: 300;
    position: relative;
    padding-bottom: 2px;
  }
  .nav-links a:hover { color: var(--fg); }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--fg);
    transition: right 320ms ease;
  }
  .nav-links a:hover::after { right: 0; }

  /* ---------- Hero ---------- */
  .hero {
    padding-top: 18vh;
    padding-bottom: 22vh;
    border-bottom: 1px solid var(--rule-soft);
    position: relative;
  }
  .hero-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14vh;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-mute);
  }
  .hero h1 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.024em;
    margin: 0;
    color: var(--fg);
    max-width: none;
    font-feature-settings: "ss01" 1, "cv11" 1;
  }
  .hero h1 + h1.hero-line-2 {
    margin-top: 18px;
  }
  .hero h1 .quote {
    font-style: normal;
    color: inherit;
  }
  .hero h1 .quote.accent {
    color: var(--accent);
  }
  .hero h1 em {
    font-style: normal;
    color: var(--fg-mute);
    font-weight: 600;
  }
  .hero h1 .punct { color: var(--accent); font-style: normal; }

  /* Secondary headline — the punchline beat right under the h1 */
  .hero-sub {
    margin-top: 32px;
    max-width: 28ch;
    font-family: var(--display);
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.018em;
    color: var(--fg);
    font-weight: 400;
  }
  /* Descriptive paragraph — the explanatory line under the punchline */
  .hero-sub.hero-desc {
    margin-top: 28px;
    max-width: 52ch;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    color: var(--fg-soft);
    font-weight: 300;
  }
  .hero-cta {
    margin-top: 48px;
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid var(--fg);
    padding-bottom: 8px;
    transition: gap 320ms ease, color 320ms ease;
    cursor: pointer;
  }
  .hero-cta .arrow {
    display: inline-block;
    transition: transform 320ms ease;
    color: var(--accent);
    font-size: 18px;
  }
  .hero-cta:hover { gap: 22px; }
  .hero-cta:hover .arrow { transform: translateX(4px); }

  /* ---------- Section frame ---------- */
  section.block {
    padding-top: 14vh;
    padding-bottom: 14vh;
    border-bottom: 1px solid var(--rule-soft);
  }
  .section-label {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-mute);
    margin-bottom: 64px;
  }
  .section-label .num { color: var(--accent); }
  .section-label .rule {
    flex: 1;
    height: 1px;
    background: var(--rule);
  }

  .grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
  }
  @media (max-width: 900px) {
    .grid-12 { grid-template-columns: 1fr; gap: 24px; }
  }

  h2.section-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
    color: var(--fg);
  }
  h2.section-title em {
    font-style: normal;
    font-weight: 600;
    color: var(--fg-mute);
  }

  .lede {
    font-family: var(--display);
    font-style: normal;
    font-weight: 500;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--fg);
    max-width: 22ch;
  }

  .body-prose {
    font-size: 17px;
    line-height: 1.7;
    color: var(--fg-soft);
    font-weight: 300;
    max-width: 56ch;
  }
  .body-prose p + p { margin-top: 1.2em; }

  /* ---------- Why list ---------- */
  .reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--rule-soft);
  }
  @media (max-width: 800px) {
    .reasons { grid-template-columns: 1fr; }
  }
  .reason {
    padding: 40px 40px 40px 0;
    border-bottom: 1px solid var(--rule-soft);
    border-right: 1px solid var(--rule-soft);
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    align-items: start;
  }
  .reason:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 40px; }
  @media (max-width: 800px) {
    .reason { padding: 32px 0 !important; border-right: none; }
  }
  .reason .idx {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--fg-mute);
    padding-top: 6px;
  }
  .reason h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.018em;
    margin: 0 0 10px;
    color: var(--fg);
  }
  .reason p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fg-soft);
    max-width: 38ch;
  }

  /* ---------- What you get / Why us — list ---------- */
  .item-list { border-top: 1px solid var(--rule-soft); }
  .item {
    display: grid;
    grid-template-columns: 64px 1fr 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--rule-soft);
    align-items: baseline;
  }
  @media (max-width: 800px) {
    .item { grid-template-columns: 48px 1fr; }
    .item .item-body { grid-column: 2; }
  }
  .item .item-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--fg-mute);
  }
  .item .item-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(20px, 2.1vw, 26px);
    line-height: 1.2;
    color: var(--fg);
    letter-spacing: -0.022em;
  }
  .item .item-body {
    font-size: 15px;
    line-height: 1.65;
    color: var(--fg-soft);
    max-width: 44ch;
  }

  /* ---------- The Model ---------- */
  .model {
    padding-top: 18vh;
    padding-bottom: 18vh;
    border-bottom: 1px solid var(--rule-soft);
  }
  .model-quote {
    font-family: var(--display);
    font-weight: 600;
    font-style: normal;
    font-size: clamp(32px, 4.4vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.032em;
    color: var(--fg);
    max-width: 18ch;
  }
  .model-quote .accent { color: var(--accent); font-style: normal; }
  .model-foot {
    margin-top: 56px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fg-soft);
    max-width: 44ch;
    font-weight: 300;
  }

  /* ---------- Footer ---------- */
  footer.foot {
    padding: 40px 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-mute);
  }
  footer.foot a {
    color: var(--fg-mute);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 240ms ease, border-color 240ms ease;
  }
  footer.foot a:hover {
    color: var(--fg);
    border-bottom-color: var(--rule);
  }

  /* ---------- Clients band ---------- */
  .clients {
    border-bottom: 1px solid var(--rule-soft);
    padding: 56px 0;
  }
  .clients-inner {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 56px;
    align-items: center;
  }
  @media (max-width: 720px) {
    .clients-inner { grid-template-columns: 1fr; gap: 28px; }
  }
  .clients-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-mute);
  }
  .clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: baseline;
  }
  .clients-list .c {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(18px, 1.7vw, 22px);
    letter-spacing: -0.018em;
    color: var(--fg);
    padding: 6px 28px;
    border-right: 1px solid var(--rule);
    line-height: 1;
  }
  .clients-list .c:first-child { padding-left: 0; }
  .clients-list .c:last-child { border-right: none; }
  @media (max-width: 720px) {
    .clients-list .c { padding: 6px 18px 6px 0; border-right: none; }
  }

  /* ---------- Booking ---------- */
  .overlay-card.wide {
    max-width: 760px;
    padding: 48px 56px 44px;
  }
  .booking-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    border-bottom: 1px solid var(--rule-soft);
    padding-bottom: 20px; margin-bottom: 28px;
  }
  .booking-head .meta {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--fg-mute);
  }
  .booking-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px;
  }
  @media (max-width: 720px) { .booking-grid { grid-template-columns: 1fr; } }
  .day-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .day {
    background: none; border: 1px solid var(--rule); cursor: pointer;
    padding: 14px 6px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
    color: var(--fg-soft); text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    transition: border-color 240ms ease, color 240ms ease, background 240ms ease;
  }
  .day .num { font-family: var(--display); font-size: 18px; letter-spacing: -0.02em; color: var(--fg); }
  .day:hover { border-color: var(--fg); }
  .day.sel { background: var(--fg); border-color: var(--fg); color: var(--bg); }
  .day.sel .num { color: var(--bg); }
  .day[disabled] { opacity: 0.3; cursor: not-allowed; }
  .slots {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    max-height: 260px; overflow: auto;
    padding-right: 4px;
  }
  .slot {
    background: none; border: 1px solid var(--rule); cursor: pointer;
    padding: 12px; font-family: var(--mono); font-size: 12px;
    color: var(--fg); text-align: center;
    transition: border-color 240ms ease, background 240ms ease, color 240ms ease;
  }
  .slot:hover { border-color: var(--fg); }
  .slot.sel { background: var(--fg); color: var(--bg); border-color: var(--fg); }
  .booking-summary {
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid var(--rule-soft);
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 24px;
  }
  .booking-summary .when {
    font-family: var(--display); font-weight: 500; font-size: 18px;
    letter-spacing: -0.018em; color: var(--fg);
  }
  .booking-summary .when .placeholder { color: var(--fg-mute); }
  .booking-summary .accent-dot { color: var(--accent); }
  .stepper { display: flex; gap: 18px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 24px; }
  .stepper .s { display: inline-flex; gap: 8px; align-items: baseline; }
  .stepper .s.active { color: var(--fg); }
  .stepper .s .n { color: var(--accent); }
  .stepper .sep { color: var(--rule); }

  /* ---------- Reveal ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 900ms ease, transform 900ms ease;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }

  /* ---------- Get in touch overlay ---------- */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(22, 21, 19, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
  }
  .overlay.open { opacity: 1; pointer-events: auto; }
  .overlay-card {
    background: var(--bg);
    width: 100%;
    max-width: 540px;
    padding: 56px 56px 48px;
    border: 1px solid var(--rule);
    transform: translateY(8px);
    transition: transform 320ms ease;
    position: relative;
  }
  .overlay.open .overlay-card { transform: none; }
  .overlay-card .close {
    position: absolute;
    top: 18px; right: 22px;
    background: none; border: 0; cursor: pointer;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-mute);
  }
  .overlay-card .close:hover { color: var(--fg); }
  .overlay-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.028em;
    margin: 0 0 8px;
  }
  .overlay-card .sub {
    color: var(--fg-soft); font-size: 14px; margin-bottom: 32px;
  }
  .field { margin-bottom: 22px; }
  .field label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-mute);
    margin-bottom: 8px;
  }
  .field input, .field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--rule);
    padding: 8px 0;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--fg);
    outline: none;
    transition: border-color 240ms ease;
    resize: none;
  }
  .field input:focus, .field textarea:focus {
    border-bottom-color: var(--fg);
  }
  .submit {
    margin-top: 12px;
    background: none; border: 0; cursor: pointer;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg);
    padding: 12px 0;
    border-bottom: 1px solid var(--fg);
    display: inline-flex; gap: 14px; align-items: baseline;
    transition: gap 320ms ease;
  }
  .submit .arrow { color: var(--accent); font-size: 16px; }
  .submit:hover { gap: 22px; }
  .submit[disabled] { opacity: 0.45; cursor: default; }

  .sent {
    font-family: var(--display);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.018em;
    color: var(--fg);
  }

  /* ---------- Tweaks panel — match the aesthetic ---------- */
  .tweaks-host { font-family: var(--sans); }

  /* Audience tag in brand */
  .brand-aud {
    margin-left: 8px;
    font-family: var(--mono);
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: lowercase;
    color: var(--fg-mute);
  }
