  /* ─────────────────────────────────────────────────────────
     Steady. — design tokens
     Stone & ochre. Restraint, not loudness.
     ───────────────────────────────────────────────────────── */
  :root {
    --warm-white:     #f5f0e8;
    --warm-white-2:   #efe8db;
    --parchment:      #e8dfc8;
    --parchment-soft: #efe7d4;
    --ochre:          #c4892a;
    --ochre-deep:     #a8741f;
    --ochre-hover:    #b07a23;
    --mid-tan:        #7a6645;
    --mid-tan-soft:   #9a8463;
    --dark-earth:     #2c2415;
    --dark-earth-2:   #1f1a0f;
    --line:           rgba(122,102,69,0.22);
    --line-strong:    rgba(122,102,69,0.45);

    --serif:   "Fraunces", Georgia, "Times New Roman", serif;
    --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --mono:    ui-monospace, "SF Mono", Menlo, Consolas, monospace;

    --maxw: 1240px;
    --gutter: clamp(20px, 5vw, 80px);

    --shadow-card: 0 1px 2px rgba(44,36,21,0.04), 0 8px 28px rgba(44,36,21,0.06);
    --shadow-card-h: 0 2px 4px rgba(44,36,21,0.06), 0 16px 40px rgba(44,36,21,0.10);

    /* Nav bar — print-style wordmark (cream bar, bold serif, ochre dot) */
    --nav-cream:       #f7f4f0;
    --nav-wordmark:    #2c2a26;
    --nav-wordmark-dot: #c49b66;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--warm-white);
    color: var(--dark-earth);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; }
  button { font: inherit; cursor: pointer; }

  /* Subtle paper grain — gives the warm white a felt-paper feel without
     looking textured. Drawn once as a data-URI so there's no extra request. */
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17, 0 0 0 0 0.14, 0 0 0 0 0.08, 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    position: relative;
    z-index: 2;
  }

  .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid-tan);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--mid-tan);
    display: inline-block;
  }

  .wordmark {
    font-family: var(--serif);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .wordmark .dot { color: var(--ochre); }

  /* ─────────────────────────────────────────────────────────
     Top nav — slim, sticky, becomes solid on scroll
     ───────────────────────────────────────────────────────── */
  .nav {
    position: sticky; top: 0;
    z-index: 50;
    background: var(--nav-cream);
    border-bottom: 1px solid transparent;
    transition: border-color .25s, background .25s, box-shadow .25s;
  }
  .nav.scrolled {
    border-bottom-color: var(--line);
    background: var(--nav-cream);
    box-shadow: 0 1px 0 rgba(44, 36, 21, 0.06);
  }
  .nav-row {
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .nav .wordmark {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    letter-spacing: -0.03em;
    color: var(--nav-wordmark);
  }
  .nav .wordmark .dot { color: var(--nav-wordmark-dot); }
  .nav a.wordmark { text-decoration: none; }
  .nav-links {
    display: flex; align-items: center; gap: 32px;
  }
  .nav-links a {
    font-size: 14px;
    text-decoration: none;
    color: var(--dark-earth);
    opacity: 0.78;
    transition: opacity .15s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-links .cta {
    background: var(--dark-earth);
    color: var(--warm-white);
    padding: 10px 18px;
    border-radius: 999px;
    opacity: 1;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .15s, transform .15s;
  }
  .nav-links .cta:hover { background: var(--ochre); transform: translateY(-1px); }

  @media (max-width: 760px) {
    .nav-links a:not(.cta) { display: none; }
    .nav-row { height: 60px; }
    .nav .wordmark { font-size: 22px; }
    .nav-links .cta { padding: 9px 14px; font-size: 13px; }
  }

  /* ─────────────────────────────────────────────────────────
     HERO
     The headline is the promise, not the wordmark. The wordmark
     is small in the nav. The big serif line is what you'd say
     to a worried son in London at 11pm.
     ───────────────────────────────────────────────────────── */
  .hero {
    padding: clamp(64px, 11vw, 140px) 0 clamp(72px, 12vw, 160px);
    position: relative;
    overflow: hidden;
  }

  /* Baobab photo (same asset as print flyers) behind hero — cream scrim
     from the copy side so type stays crisp; tree visible toward the right. */
  .hero-bg {
    position: absolute;
    right: -6%;
    top: 0;
    bottom: 0;
    width: min(70%, 760px);
    pointer-events: none;
    z-index: 0;
    background-color: var(--warm-white);
    background-image:
      linear-gradient(
        100deg,
        var(--warm-white) 0%,
        rgba(245, 240, 232, 0.97) 18%,
        rgba(245, 240, 232, 0.78) 36%,
        rgba(245, 240, 232, 0.32) 54%,
        rgba(245, 240, 232, 0) 72%
      ),
      linear-gradient(
        165deg,
        rgba(245, 242, 235, 0.55) 0%,
        rgba(245, 242, 235, 0.08) 45%,
        rgba(245, 242, 235, 0.4) 100%
      ),
      url("../assets/flyer-baobab.png");
    background-size: cover, cover, cover;
    background-position: center, center, 68% center;
    background-repeat: no-repeat;
  }
  @media (max-width: 900px) {
    .hero-bg {
      left: 0;
      right: 0;
      width: 100%;
      background-image:
        linear-gradient(
          180deg,
          var(--warm-white) 0%,
          rgba(245, 240, 232, 0.94) 42%,
          rgba(245, 240, 232, 0.62) 68%,
          rgba(245, 240, 232, 0.14) 88%
        ),
        linear-gradient(
          165deg,
          rgba(245, 242, 235, 0.5) 0%,
          rgba(245, 242, 235, 0.06) 50%,
          rgba(245, 242, 235, 0.35) 100%
        ),
        url("../assets/flyer-baobab.png");
      background-position: center, center, 50% 100%;
    }
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 72px);
    position: relative;
    z-index: 2;
  }
  .hero h1 {
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "SOFT" 30;
    font-weight: 400;
    font-size: clamp(48px, 7.4vw, 104px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 24px 0 32px;
    color: var(--dark-earth);
    text-wrap: balance;
  }
  .hero h1 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    color: var(--ochre);
  }
  .hero-lede {
    font-family: var(--serif);
    font-size: clamp(19px, 1.9vw, 22px);
    line-height: 1.55;
    color: var(--mid-tan);
    max-width: 520px;
    margin: 0 0 40px;
    font-weight: 400;
  }

  .cta-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  }
  .btn-wa {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--ochre);
    color: #fff;
    padding: 18px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.01em;
    box-shadow: 0 1px 2px rgba(168,116,31,0.2), 0 10px 24px rgba(196,137,42,0.28);
    transition: transform .15s, box-shadow .15s, background .15s;
  }
  .btn-wa:hover {
    background: var(--ochre-hover);
    transform: translateY(-2px);
    box-shadow: 0 1px 2px rgba(168,116,31,0.2), 0 16px 32px rgba(196,137,42,0.34);
  }
  .btn-wa svg { width: 20px; height: 20px; }

  /* ─────────────────────────────────────────────────────────
     THE DISTANCE — problem section, soft parchment, big serif
     ───────────────────────────────────────────────────────── */
  .distance {
    background: var(--parchment-soft);
    padding: clamp(80px, 12vw, 140px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .distance p.big {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.22;
    letter-spacing: -0.012em;
    color: var(--dark-earth);
    margin: 28px 0 0;
    max-width: 980px;
    text-wrap: balance;
  }
  .distance p.big .fade {
    color: var(--mid-tan-soft);
    font-style: italic;
  }
  .distance .signature {
    margin-top: 56px;
    display: flex; align-items: baseline; gap: 16px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--mid-tan);
  }
  .distance .signature::before {
    content: "";
    width: 40px; height: 1px;
    background: var(--mid-tan);
  }

  /* ─────────────────────────────────────────────────────────
     SERVICES — the offer. Three cards; category eyebrow + title.
     ───────────────────────────────────────────────────────── */
  .services { padding: clamp(80px, 12vw, 140px) 0; }
  .section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 32px; flex-wrap: wrap;
    margin-bottom: clamp(40px, 6vw, 72px);
  }
  .section-head h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-variation-settings: "opsz" 144;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 14px 0 0;
    text-wrap: balance;
    color: var(--dark-earth);
  }
  h2 .accent {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    color: var(--ochre);
  }
  .section-head .note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--ochre);
    text-decoration: none;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  @media (min-width: 760px) {
    .service-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  }

  .service {
    background: #fff;
    border: 1px solid var(--line);
    padding: clamp(28px, 3.2vw, 40px);
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    min-height: 480px;
  }
  .service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-h);
    border-color: var(--ochre);
  }
  .service.featured {
    background: var(--dark-earth);
    color: var(--warm-white);
    border-color: var(--dark-earth);
  }
  .service.featured .service-title,
  .service.featured .service-body { color: var(--warm-white); }
  .service.featured .service-category { color: var(--ochre); }
  .service.featured .service-bullets { border-top-color: rgba(245,240,232,0.18); }
  .service.featured .service-bullets li { color: rgba(245,240,232,0.88); }
  .service.featured .service-bullets li::before { color: var(--ochre); }
  .service.featured .badge {
    background: var(--ochre); color: #fff;
  }

  .service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ochre);
    margin-bottom: 20px;
  }
  .service-icon-wrap svg { width: 22px; height: 22px; }
  .service.featured .service-icon-wrap {
    border-color: rgba(245, 240, 232, 0.22);
    color: var(--ochre);
    background: rgba(255, 255, 255, 0.06);
  }
  .service-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 24px;
  }
  .service-category {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ochre);
    margin-bottom: 10px;
  }
  .service-title {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
    color: var(--dark-earth);
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .service-body {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--dark-earth);
    margin: 0 0 28px;
  }
  .service-bullets {
    list-style: none; padding: 20px 0 0; margin: auto 0 0;
    border-top: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 10px;
  }
  .service-bullets li {
    font-size: 14px;
    color: var(--dark-earth);
    padding-left: 18px;
    position: relative;
    line-height: 1.45;
  }
  .service-bullets li::before {
    content: "·";
    color: var(--ochre);
    font-family: var(--serif);
    font-size: 22px;
    position: absolute;
    left: 0; top: -6px;
  }
  .badge {
    position: absolute;
    top: 24px; right: 24px;
    background: var(--dark-earth);
    color: var(--warm-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* Bespoke / construction strip below the three cards */
  .bespoke {
    margin-top: 28px;
    background: var(--parchment);
    padding: 30px clamp(24px, 3vw, 40px);
    display: flex; flex-wrap: wrap; gap: 20px;
    align-items: center; justify-content: space-between;
  }
  .bespoke-intro {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
    min-width: min(100%, 260px);
  }
  .bespoke-title {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--dark-earth);
    margin: 0 0 4px;
    line-height: 1.1;
  }
  .bespoke-sub {
    font-size: 14px;
    color: var(--mid-tan);
    margin: 0;
  }
  .bespoke-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(122, 102, 69, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ochre);
  }
  .bespoke-icon svg { width: 22px; height: 22px; }
  .link-arrow {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--ochre);
    text-decoration: none;
    white-space: nowrap;
  }
  .link-arrow:hover { color: var(--ochre-deep); }

  /* ─────────────────────────────────────────────────────────
     HOW IT WORKS — the trust mechanism, made visible
     This is the section that converts. Numbered steps with
     one specific detail per step (24 hours, photos, voice note).
     ───────────────────────────────────────────────────────── */
  .how {
    background: var(--dark-earth);
    color: var(--warm-white);
    padding: clamp(80px, 12vw, 140px) 0;
    position: relative;
  }
  .how .eyebrow { color: rgba(245,240,232,0.5); }
  .how .eyebrow::before { background: rgba(245,240,232,0.5); }
  .how h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin: 16px 0 64px;
    color: var(--warm-white);
    max-width: 720px;
    text-wrap: balance;
  }
  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }
  @media (min-width: 760px) {
    .steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  }
  .step {
    border-top: 1px solid rgba(245,240,232,0.18);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    align-items: flex-start;
  }
  .step-icon {
    color: var(--ochre);
    margin-bottom: 14px;
    line-height: 0;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .step-icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: block;
  }
  .step-num {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.25;
    color: var(--ochre);
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
    min-height: calc(2 * 1.25em);
    display: flex;
    align-items: flex-start;
  }
  .step h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--warm-white);
    letter-spacing: -0.005em;
    min-height: calc(2 * 1.2em);
  }
  .step p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(245,240,232,0.72);
    margin: 0;
    padding-bottom: 18px;
    flex: 1 1 auto;
  }
  .step .detail {
    margin-top: auto;
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ochre);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid rgba(196,137,42,0.4);
    border-radius: 999px;
  }

  /* ─────────────────────────────────────────────────────────
     ABOUT — one person, on the ground
     ───────────────────────────────────────────────────────── */
  .about { padding: clamp(80px, 12vw, 140px) 0; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }
  @media (min-width: 880px) {
    .about-grid { grid-template-columns: 1fr 1.15fr; }
  }
  .about-nameplate {
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(28px, 5vw, 52px);
    background:
      linear-gradient(160deg, var(--parchment-soft) 0%, var(--warm-white) 42%, var(--parchment) 100%);
    border: 1px solid var(--line);
    border-radius: 2px;
    box-shadow: var(--shadow-card);
  }
  .about-nameplate-headline {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--dark-earth);
    text-wrap: balance;
    max-width: 11em;
  }
  .about-nameplate-headline::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--ochre);
    margin: 0 auto 22px;
    border-radius: 1px;
  }
  .about-text h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin: 18px 0 28px;
    color: var(--dark-earth);
  }
  .about-text p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--dark-earth);
    margin: 0 0 20px;
    max-width: 580px;
  }
  .about-text .pull {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--mid-tan);
    margin-top: 28px;
    border-left: 2px solid var(--ochre);
    padding-left: 20px;
  }

  /* ─────────────────────────────────────────────────────────
     FAQ — short answers to the obvious worry questions
     ───────────────────────────────────────────────────────── */
  .faq {
    background: var(--parchment-soft);
    padding: clamp(80px, 12vw, 140px) 0;
    border-top: 1px solid var(--line);
  }
  .faq h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    margin: 16px 0 56px;
    letter-spacing: -0.015em;
    line-height: 1.1;
    color: var(--dark-earth);
    max-width: 720px;
    text-wrap: balance;
  }
  .faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 900px;
  }
  .faq-item {
    border-top: 1px solid var(--line);
    padding: 22px 0;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--line); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 24px;
    font-family: var(--serif);
    font-size: clamp(20px, 2.2vw, 24px);
    color: var(--dark-earth);
    line-height: 1.3;
    transition: color .15s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--ochre); }
  .faq-item .plus {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border: 1px solid var(--mid-tan);
    border-radius: 50%;
    position: relative;
    margin-top: 6px;
    transition: transform .25s, border-color .25s;
  }
  .faq-item .plus::before,
  .faq-item .plus::after {
    content: "";
    position: absolute; top: 50%; left: 50%;
    width: 10px; height: 1px;
    background: var(--mid-tan);
    transform: translate(-50%, -50%);
    transition: transform .25s, background .25s;
  }
  .faq-item .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq-item[open] .plus { transform: rotate(180deg); border-color: var(--ochre); }
  .faq-item[open] .plus::before,
  .faq-item[open] .plus::after { background: var(--ochre); }
  .faq-item[open] .plus::after { transform: translate(-50%, -50%) rotate(0deg); }
  .faq-item .answer {
    padding-top: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--mid-tan);
    max-width: 720px;
  }

  /* ─────────────────────────────────────────────────────────
     CONTACT / FINAL CTA — ochre block, oversized phone
     ───────────────────────────────────────────────────────── */
  .contact {
    background: linear-gradient(165deg, var(--ochre) 0%, var(--ochre-deep) 55%, #8f5f18 100%);
    color: #fff;
    padding: clamp(88px, 12vw, 148px) 0 clamp(72px, 10vw, 112px);
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(70% 90% at 100% 0%, rgba(255,255,255,0.14), transparent 55%),
      radial-gradient(50% 70% at 0% 100%, rgba(31,26,15,0.35), transparent 52%),
      radial-gradient(ellipse 80% 50% at 50% 120%, rgba(255,255,255,0.06), transparent 45%);
    pointer-events: none;
  }
  .contact::after {
    content: "";
    position: absolute;
    top: 12%;
    right: 8%;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(48px, 7vw, 96px);
    position: relative;
    z-index: 2;
    align-items: start;
  }
  @media (min-width: 880px) {
    .contact-grid {
      grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
      gap: clamp(48px, 6vw, 88px);
      align-items: stretch;
    }
  }
  .contact-primary {
    max-width: 640px;
  }
  .contact .eyebrow { color: rgba(255,255,255,0.82); }
  .contact .eyebrow::before { background: rgba(255,255,255,0.75); }
  .contact .phone-big {
    font-family: var(--serif);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    font-size: clamp(44px, 8.2vw, 104px);
    line-height: 0.98;
    margin: clamp(16px, 2.5vw, 24px) 0 clamp(20px, 3vw, 28px);
    letter-spacing: -0.02em;
    font-feature-settings: "tnum" 1;
    color: #fff;
    text-decoration: none;
    display: block;
    width: fit-content;
    max-width: 100%;
    text-wrap: balance;
  }
  .contact .phone-big:hover { text-decoration: underline; text-underline-offset: clamp(6px, 1vw, 10px); text-decoration-thickness: 2px; }
  .contact .phone-big:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 6px;
    border-radius: 4px;
  }
  .contact .invite {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(19px, 2.1vw, 23px);
    line-height: 1.45;
    color: rgba(255,255,255,0.94);
    margin: 0 0 8px;
    max-width: 34em;
    text-wrap: pretty;
  }
  .contact-meta {
    margin: 0;
    padding: clamp(24px, 4vw, 32px) clamp(22px, 3.5vw, 28px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(31,26,15,0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.94);
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  @media (min-width: 880px) {
    .contact-meta {
      border-left: 1px solid rgba(255,255,255,0.22);
      border-radius: 20px;
    }
  }
  .contact-meta .label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-bottom: 8px;
  }
  .contact-meta .based {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    line-height: 1.2;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .contact-meta .meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
  }
  .contact-meta .meta-list li {
    position: relative;
    padding-left: 1.1em;
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
  }
  .contact-meta .meta-list li:last-child { margin-bottom: 0; }
  .contact-meta .meta-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
  }
  .contact-meta a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); }
  .contact-meta a:hover { border-bottom-color: #fff; }
  .contact-meta a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
    border-radius: 2px;
  }
  .contact-meta .web-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-weight: 500;
    font-size: 14px;
  }
  .contact-meta .web-row svg { flex-shrink: 0; opacity: 0.92; }

  .quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin-top: clamp(28px, 4vw, 40px);
    max-width: 520px;
  }
  .quick a:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }
  @media (max-width: 480px) {
    .quick { grid-template-columns: 1fr; }
    .quick a:last-child { grid-column: auto; }
  }
  .quick a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    padding: 14px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    backdrop-filter: blur(6px);
    min-height: 48px;
  }
  .quick a:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,26,15,0.2);
  }
  .quick a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }
  .quick a svg { width: 17px; height: 17px; flex-shrink: 0; }

  @media (max-width: 520px) {
    .contact-primary { max-width: none; text-align: center; }
    .contact-primary .eyebrow { justify-content: center; }
    .contact .phone-big { margin-left: auto; margin-right: auto; }
    .contact .invite { margin-left: auto; margin-right: auto; }
    .quick { margin-left: auto; margin-right: auto; }
  }

  /* ─────────────────────────────────────────────────────────
     Footer
     ───────────────────────────────────────────────────────── */
  .footer {
    background: var(--dark-earth-2);
    color: rgba(245,240,232,0.7);
    padding: 40px 0 32px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .footer-row {
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
    gap: 16px;
  }
  .footer .wordmark { color: rgba(245,240,232,0.85); font-size: 20px; }

  /* ─────────────────────────────────────────────────────────
     Sticky mobile CTA — diaspora reads on a phone, so put
     "Message me on WhatsApp" within thumb's reach at all times.
     ───────────────────────────────────────────────────────── */
  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(245,240,232,0), rgba(245,240,232,0.96) 32%);
    pointer-events: none;
  }
  .mobile-cta a {
    pointer-events: auto;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--ochre);
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(168,116,31,0.4), 0 2px 4px rgba(0,0,0,0.08);
  }
  @media (max-width: 760px) {
    .mobile-cta { display: block; }
    body { padding-bottom: 84px; }
  }

  /* ─────────────────────────────────────────────────────────
     Entrance animation — single, restrained reveal for the
     hero. Anything else feels gimmicky for this brand.
     ───────────────────────────────────────────────────────── */
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .rise > * { opacity: 0; animation: rise .8s ease forwards; }
  .rise > *:nth-child(1) { animation-delay: .05s; }
  .rise > *:nth-child(2) { animation-delay: .15s; }
  .rise > *:nth-child(3) { animation-delay: .28s; }
  .rise > *:nth-child(4) { animation-delay: .42s; }

  /* Scroll-reveal: .in class toggled by IntersectionObserver in js/steady.js */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
  }
