  :root {
    --bg: #fafaf8;
    --bg-elev: #f4f3ee;
    --bg-card: #ffffff;
    --bg-deep: #ebe9e1;
    --text: #0a0a0a;
    --text-muted: #525252;
    --text-soft: #8a8a8a;
    --border: rgba(10, 10, 10, 0.08);
    --border-strong: rgba(10, 10, 10, 0.18);
    --accent: #047857;
    --accent-hover: #065f46;
    --accent-soft: rgba(4, 120, 87, 0.10);
    --accent-text: #ffffff;
    --warm: #ea580c;
    --warm-soft: rgba(234, 88, 12, 0.10);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --font: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;
    --hand: 'Caveat', cursive;
    --container: 1100px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --focus: 0 0 0 3px rgba(4, 120, 87, 0.3);
    --hairline: rgba(10, 10, 10, 0.14);
    --section-pad: 104px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    font-size: 16px;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
  }
  ::selection { background: var(--accent); color: var(--accent-text); }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  img { max-width: 100%; display: block; }
  :focus-visible { outline: none; box-shadow: var(--focus); border-radius: 8px; }
  .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
  .serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }
  .hand { font-family: var(--hand); font-weight: 500; letter-spacing: 0; }

  /* ============ NAV ============ */
  .nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background: color-mix(in oklab, var(--bg) 80%, transparent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .nav.scrolled { border-bottom-color: var(--hairline); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 15px;
    letter-spacing: -0.02em;
  }
  .logo .mark {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--accent); color: var(--accent-text);
    display: grid; place-items: center;
    font-weight: 600; font-size: 14px;
    transition: transform 0.3s var(--ease);
  }
  .logo:hover .mark { transform: rotate(-6deg) scale(1.05); }
  .nav-right { display: flex; align-items: center; gap: 6px; }
  .nav-cta {
    padding: 9px 18px; border-radius: 999px;
    background: var(--text); color: var(--bg);
    font-size: 14px; font-weight: 500;
    transition: opacity 0.15s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 38px;
  }
  .nav-cta:hover { transform: translateY(-1px); opacity: 0.92; }
  .nav-cta .live {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    animation: liveDot 2s infinite;
  }
  @keyframes liveDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
    70% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
  }
  /* ============ HERO ============ */
  .hero {
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
  }
  .hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 75% 20%, var(--accent-soft), transparent 60%);
    z-index: 0;
    pointer-events: none;
  }
  .hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .hero-text { min-width: 0; }

  /* Hero showcase — a real live project as proof */
  .hero-showcase {
    position: relative;
    perspective: 1200px;
    align-self: center;
  }
  .showcase-card {
    display: block;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.5deg);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    text-decoration: none;
    color: inherit;
  }
  .showcase-card:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 60px var(--accent-soft);
  }
  .showcase-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elev);
  }
  .showcase-bar .dot {
    width: 9px; height: 9px; border-radius: 50%;
  }
  .showcase-bar .dot.r { background: #ef4444; }
  .showcase-bar .dot.y { background: #eab308; }
  .showcase-bar .dot.g { background: #22c55e; }
  .showcase-bar .url {
    margin-left: 8px;
    flex: 1;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-family: var(--font);
    font-size: 11px;
    color: var(--text-soft);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .showcase-bar .url svg { width: 10px; height: 10px; color: var(--accent); }
  .showcase-screen {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--accent-soft), var(--warm-soft) 200%);
    overflow: hidden;
  }
  .showcase-screen svg { width: 100%; height: 100%; display: block; }
  .showcase-live {
    position: absolute; top: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px; border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.04em;
    z-index: 2;
  }
  .showcase-live::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: liveDot 2s infinite;
  }
  .showcase-meta {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
  }
  .showcase-meta .name {
    font-size: 14px; font-weight: 600;
    letter-spacing: -0.01em;
  }
  .showcase-meta .stats {
    font-size: 12px;
    color: var(--text-soft);
  }
  .showcase-meta .stats strong {
    color: var(--text); font-weight: 600;
  }
  .showcase-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-soft);
    display: inline-flex; align-items: center; gap: 6px;
    justify-content: center;
    width: 100%;
  }
  .showcase-caption svg { width: 12px; height: 12px; color: var(--accent); }

  /* Inline greeting with avatar */
  .hero-greet {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 8px 18px 8px 8px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  }
  .hero-greet:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
  }
  .hero-greet .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-elev);
    box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 4px var(--accent-soft);
  }
  .hero-greet .greet-text {
    display: flex; flex-direction: column;
    line-height: 1.2;
  }
  .hero-greet .greet-line {
    font-size: 14px; font-weight: 500;
    color: var(--text);
    display: inline-flex; align-items: center; gap: 7px;
  }
  .hero-greet .wave {
    display: inline-block;
    font-size: 15px;
    transform-origin: 70% 70%;
    animation: wave 2.5s ease-in-out 0.6s 2;
  }
  .hero-greet .greet-sub {
    font-size: 11.5px; color: var(--text-soft);
    margin-top: 2px;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .hero-greet .pulse-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    animation: liveDot 2s infinite;
  }

  /* Trust bar */
  .trust-bar {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: 18px 0;
  }
  .trust-item {
    padding: 4px 20px;
    border-right: 1px solid var(--border);
  }
  .trust-item:last-child { border-right: none; }
  .trust-item .v {
    font-size: 22px; font-weight: 600;
    letter-spacing: -0.025em; line-height: 1;
    margin-bottom: 5px;
  }
  .trust-item .l {
    font-size: 12px; color: var(--text-soft);
  }

  .hero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px 6px 8px; border-radius: var(--radius-pill);
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 13px; font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
  }
  .hero-pill .ok {
    padding: 3px 9px; border-radius: 999px;
    background: var(--accent-soft); color: var(--accent);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.02em;
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 7.2vw, 78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
  }
  .hero h1 .wave { display: inline-block; animation: wave 2.5s ease-in-out 1; transform-origin: 70% 70%; }
  @keyframes wave {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(14deg); }
    40% { transform: rotate(-8deg); }
    60% { transform: rotate(14deg); }
    80% { transform: rotate(-4deg); }
  }
  .hero h1 .grad {
    color: var(--accent);
    font-style: italic;
    font-family: var(--serif);
    font-weight: 400;
  }
  .hero .sub {
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 50ch;
    margin-bottom: 26px;
  }
  .hero .sub strong { color: var(--text); font-weight: 500; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 999px;
    font-weight: 500; font-size: 15px;
    letter-spacing: -0.005em;
    min-height: 46px;
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
    border: 1px solid transparent;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--accent); color: var(--accent-text);
    box-shadow: 0 4px 16px rgba(4,120,87,0.2);
  }
  .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(4,120,87,0.3);
  }
  .btn-ghost { border-color: var(--border-strong); color: var(--text); }
  .btn-ghost:hover { background: var(--bg-elev); border-color: var(--text-muted); }
  .btn .arrow { transition: transform 0.2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  .hand-note {
    font-family: var(--hand);
    font-size: 19px; color: var(--text-soft);
    transform: rotate(-2deg);
    display: inline-flex; align-items: center; gap: 4px;
  }
  .hand-arrow {
    display: inline-block;
    width: 22px; height: 22px;
    transform: rotate(-30deg);
  }

  /* "Currently into" pills */
  .currently {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex; flex-wrap: wrap;
    align-items: center; gap: 8px;
  }
  .currently .lbl {
    font-family: var(--font);
    font-size: 11px; font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.06em;
    margin-right: 4px;
  }
  .currently .pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 13px; font-weight: 500;
    color: var(--text);
    transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
  }
  .currently .pill:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
  }
  .currently .pill svg {
    width: 12px; height: 12px;
    color: var(--accent);
  }

  /* Hand-drawn marker highlight */
  .marker-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .marker-highlight::before {
    content: '';
    position: absolute;
    left: -2px; right: -2px;
    bottom: 6px;
    height: 0.30em;
    background: var(--accent-soft);
    z-index: -1;
    transform: skew(-1deg);
    border-radius: 1px;
  }

  /* Floating "since" pin */
  .since-pin {
    position: absolute;
    top: 0; right: 0;
    transform: rotate(3deg);
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px;
    background: var(--bg-card);
    border: 1px solid var(--hairline);
    border-radius: 999px;
    font-family: var(--hand);
    font-size: 15px; color: var(--text-soft);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    z-index: 3;
  }
  .since-pin svg { width: 14px; height: 14px; }

  /* Scroll hint */
  .scroll-hint {
    margin-top: 40px;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: 0.05em;
  }
  .scroll-hint .arrow-wrap {
    width: 20px; height: 26px;
    border: 1.5px solid var(--text-soft);
    border-radius: 12px;
    position: relative;
    display: inline-block;
  }
  .scroll-hint .arrow-wrap::before {
    content: '';
    position: absolute;
    top: 5px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 6px;
    background: var(--text-soft);
    border-radius: 2px;
    animation: scrollPulse 1.8s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0% { opacity: 1; top: 5px; }
    100% { opacity: 0; top: 14px; }
  }

  /* ============ SECTIONS ============ */
  section { padding: var(--section-pad) 0; position: relative; }
  .section-head { margin-bottom: 48px; max-width: 700px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--accent);
    font-weight: 500; margin-bottom: 14px;
  }
  .eyebrow::before {
    content: ''; width: 18px; height: 1px;
    background: var(--accent);
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.012em;
    margin-bottom: 14px;
  }
  .section-title .serif-i {
    color: var(--accent);
    font-weight: 400;
  }
  /* Editorial kicker row: 0N · EYEBROW ──────────── */
  .ed-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }
  .ed-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1;
    color: var(--accent);
  }
  .ed-kicker .eyebrow { margin-bottom: 0; }
  .ed-kicker .eyebrow::before { display: none; }
  .ed-rule {
    flex: 1;
    height: 1px;
    background: var(--hairline);
  }
  .section-head[style*="center"] .ed-kicker { justify-content: center; }
  .section-head[style*="center"] .ed-rule { display: none; }
  .section-sub {
    color: var(--text-muted); font-size: 16px;
    line-height: 1.55; max-width: 56ch;
  }

  /* ============ ABOUT BLOCK ============ */
  .about-strip {
    background: var(--bg-elev);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: 72px 0;
  }
  .about-strip-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
  }
  .about-quote {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--text);
  }
  .about-quote .accent { color: var(--accent); }
  .about-sig {
    margin-top: 18px;
    display: flex; align-items: center; gap: 12px;
  }
  .about-sig .name {
    font-family: var(--hand);
    font-size: 26px; color: var(--accent);
    transform: rotate(-2deg);
  }
  .about-sig .meta {
    font-size: 13px; color: var(--text-soft);
  }
  .about-facts {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .about-fact {
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--hairline);
  }
  .about-fact .icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--accent-soft); color: var(--accent);
    display: grid; place-items: center;
    margin-bottom: 12px;
  }
  .about-fact .icon svg { width: 16px; height: 16px; }
  .about-fact h5 {
    font-size: 14px; font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.015em;
  }
  .about-fact p {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.5;
  }

  /* ============ WORK ============ */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .project {
    display: flex; flex-direction: column;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--hairline);
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
    position: relative;
  }
  .project:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
  }

  /* Featured project spans full row, horizontal layout */
  .project.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }
  .project.featured .project-visual {
    height: 100%;
    min-height: 360px;
    border-bottom: none;
    border-right: 1px solid var(--hairline);
  }
  .project.featured .project-body {
    padding: 32px 32px 28px;
  }
  .project.featured .project-title {
    font-size: 38px;
    letter-spacing: -0.01em;
  }
  .project.featured .project-desc {
    font-size: 15.5px;
    margin-bottom: 24px;
  }
  .project.featured .project-metrics {
    gap: 32px;
    padding: 18px 0;
  }
  .project.featured .project-metric .v {
    font-size: 26px;
  }
  .project-featured-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 999px;
    background: var(--accent); color: var(--accent-text);
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    width: fit-content;
  }
  .project-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--text); color: var(--bg);
    font-size: 13px; font-weight: 500;
    transition: transform 0.15s, background 0.15s;
    width: fit-content;
  }
  .project-cta:hover { transform: translateY(-2px); }
  .project-cta svg { width: 12px; height: 12px; transition: transform 0.2s; }
  .project:hover .project-cta svg { transform: translate(2px, -2px); }

  .project-visual {
    height: 200px;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--hairline);
    overflow: hidden;
    position: relative;
  }
  .project-visual svg { width: 100%; height: 100%; display: block; }
  .project-visual .live-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    padding: 5px 10px; border-radius: 999px;
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 500;
  }
  .project-visual .live-badge::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: liveDot 2s infinite;
  }
  .project-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
  .project-head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 12px; margin-bottom: 6px;
  }
  .project-title {
    font-family: var(--serif);
    font-size: 24px; font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.1;
  }
  .project-year {
    font-size: 12px;
    color: var(--text-soft); white-space: nowrap;
  }
  .project-domain {
    font-size: 13px; color: var(--text-soft);
    margin-bottom: 12px;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .project-domain svg { width: 12px; height: 12px; }
  .project-desc {
    color: var(--text-muted); font-size: 14px;
    line-height: 1.6; margin-bottom: 18px;
    flex: 1;
  }
  .project-metrics {
    display: flex; gap: 22px;
    padding: 14px 0;
    border-top: 1px solid var(--hairline);
    margin-bottom: 16px;
  }
  .project-metric .v {
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.02em; line-height: 1;
    color: var(--text);
  }
  .project-metric .l {
    font-size: 11px;
    color: var(--text-soft); margin-top: 4px;
  }
  .project-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500;
    color: var(--accent);
    width: fit-content;
  }
  .project-link svg { width: 12px; height: 12px; transition: transform 0.2s; }
  .project:hover .project-link svg { transform: translate(2px, -2px); }

  /* ============ HOW IT WORKS ============ */
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .how-step {
    padding: 30px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--hairline);
    transition: border-color 0.2s, transform 0.2s var(--ease);
  }
  .how-step:hover { transform: translateY(-3px); border-color: var(--accent); }
  .how-step .step-meta {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
  }
  .how-step .num {
    font-family: var(--serif); font-style: italic;
    font-size: 42px; line-height: 1;
    color: var(--accent);
    letter-spacing: -0.02em;
  }
  .how-step .dur {
    font-size: 11px; color: var(--accent);
    padding: 4px 10px; border-radius: 999px;
    background: var(--accent-soft);
    font-weight: 500;
  }
  .how-step h4 {
    font-family: var(--serif);
    font-size: 22px; font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -0.005em;
    line-height: 1.15;
  }
  .how-step p {
    color: var(--text-muted); font-size: 14px;
    line-height: 1.6;
  }

  /* ============ PROMISES ============ */
  .promises {
    background: var(--bg-elev);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .promise-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .promise {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--hairline);
    display: flex; gap: 16px;
    align-items: flex-start;
  }
  .promise .ico {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .promise .ico svg { width: 17px; height: 17px; }
  .promise h4 {
    font-family: var(--serif);
    font-size: 19px; font-weight: 400;
    margin-bottom: 4px;
    letter-spacing: -0.005em;
    line-height: 1.2;
  }
  .promise p {
    color: var(--text-muted); font-size: 13.5px;
    line-height: 1.55;
  }

  /* ============ TESTIMONIALS ============ */
  .testi-note {
    margin-bottom: 28px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    background: var(--bg-elev);
    color: var(--text-soft);
    font-family: var(--hand); font-size: 17px;
    display: inline-flex; align-items: center; gap: 8px;
    transform: rotate(-1deg);
  }
  .testi-note svg { width: 16px; height: 16px; flex-shrink: 0; }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .testi {
    padding: 28px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--hairline);
    display: flex; flex-direction: column;
    transition: transform 0.2s var(--ease), border-color 0.2s;
    position: relative;
  }
  .testi:hover { transform: translateY(-2px); border-color: var(--border-strong); }
  .testi.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--accent-soft) 300%);
    border-color: var(--accent);
  }
  .testi.featured .testi-quote { font-size: 22px; }
  .testi-badge {
    position: absolute; top: 14px; right: 14px;
    font-size: 10px; font-weight: 600;
    padding: 3px 8px; border-radius: 4px;
    background: var(--accent); color: var(--accent-text);
    letter-spacing: 0.05em;
  }
  .testi-project {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; color: var(--text-soft);
    margin-top: 4px;
  }
  .testi-project:hover { color: var(--accent); }
  .testi-project svg { width: 11px; height: 11px; }
  .testi-stars {
    color: var(--accent); letter-spacing: 1.5px;
    margin-bottom: 14px; font-size: 13px;
  }
  .testi-quote {
    font-family: var(--serif); font-style: italic;
    font-size: 19px; line-height: 1.4;
    color: var(--text); margin-bottom: 20px;
    flex: 1;
    letter-spacing: -0.005em;
  }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent);
    color: var(--accent-text);
    display: grid; place-items: center;
    font-weight: 600; font-size: 13px;
  }
  .testi-name { font-weight: 600; font-size: 14px; }
  .testi-role { font-size: 12px; color: var(--text-soft); margin-top: 2px; }

  /* ============ FINAL CTA ============ */
  .final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at center, var(--accent-soft), transparent 70%);
    z-index: 0;
  }
  .final-cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
  .final-cta h3 {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 400; line-height: 1.03;
    letter-spacing: -0.015em;
    margin-bottom: 22px;
  }
  .final-cta h3 .serif-i {
    color: var(--accent); font-weight: 400;
  }
  .final-cta p {
    color: var(--text-muted); font-size: 17px;
    line-height: 1.55; margin-bottom: 32px;
    max-width: 48ch; margin-left: auto; margin-right: auto;
  }
  .final-cta .micro {
    margin-top: 22px;
    font-size: 13px; color: var(--text-soft);
    display: inline-flex; align-items: center; gap: 16px;
    flex-wrap: wrap; justify-content: center;
  }
  .final-cta .micro .sep { width: 1px; height: 12px; background: var(--border-strong); }
  .final-cta .micro .ok { color: var(--accent); }

  /* ============ CONTACT ============ */
  .contact {
    background: var(--bg-deep);
    border-top: 1px solid var(--hairline);
  }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 56px; align-items: start;
  }
  .contact-info h3 {
    font-family: var(--serif);
    font-size: clamp(30px, 3.4vw, 40px); font-weight: 400;
    letter-spacing: -0.01em; line-height: 1.1;
    margin-bottom: 14px;
  }
  .contact-info h3 .serif-i { color: var(--accent); font-weight: 400; }
  .contact-info p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; line-height: 1.6; }
  .contact-list { display: grid; gap: 10px; }
  .contact-list a {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px; border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color 0.15s, transform 0.15s var(--ease);
    font-size: 14px;
    min-height: 56px;
  }
  .contact-list a:hover { border-color: var(--accent); transform: translateX(3px); }
  .contact-list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
  .contact-list .meta {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-soft);
  }

  .form {
    padding: 32px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--hairline);
  }
  .form h4 {
    font-size: 18px; font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.015em;
  }
  .form .lede {
    color: var(--text-muted); font-size: 14px;
    margin-bottom: 24px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .field { margin-bottom: 16px; }
  .field label {
    display: block;
    font-size: 13px; font-weight: 500;
    color: var(--text); margin-bottom: 7px;
  }
  .field input, .field textarea, .field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--hairline);
    background: var(--bg);
    color: var(--text);
    font-family: inherit; font-size: 14.5px;
    transition: border-color 0.15s, box-shadow 0.15s;
    min-height: 46px;
  }
  .field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }
  .field textarea { resize: vertical; min-height: 110px; line-height: 1.5; padding-top: 12px; }
  .form .btn-primary { width: 100%; justify-content: center; padding: 14px; margin-top: 4px; }
  .form-status {
    margin-top: 14px;
    font-size: 13px; text-align: center;
    color: var(--accent); min-height: 18px;
  }

  /* ============ FOOTER ============ */
  footer {
    padding: 36px 0 28px;
    border-top: 1px solid var(--hairline);
    background: var(--bg);
  }
  .foot-grid {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap;
    gap: 18px;
  }
  .foot-left {
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap;
  }
  .foot-grid .sig {
    font-family: var(--hand);
    font-size: 22px; color: var(--accent);
    transform: rotate(-2deg);
  }
  .foot-grid p { color: var(--text-soft); font-size: 13px; }
  .foot-social { display: flex; gap: 4px; }
  .foot-social a {
    width: 36px; height: 36px; border-radius: 8px;
    display: grid; place-items: center;
    color: var(--text-soft);
    transition: color 0.15s, background 0.15s;
  }
  .foot-social a:hover { color: var(--accent); background: var(--bg-elev); }
  .foot-social svg { width: 15px; height: 15px; }

  /* ============ SERVICES ============ */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .service-card {
    position: relative;
    padding: 30px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--hairline);
    display: flex; flex-direction: column;
    transition: border-color 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
  }
  .service-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
  }
  .service-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-soft);
  }
  .service-featured-badge {
    position: absolute; top: -10px; right: 22px;
    background: var(--accent); color: var(--accent-text);
    font-size: 11px; font-weight: 600;
    padding: 4px 12px; border-radius: 999px;
    letter-spacing: 0.04em;
  }
  .service-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .service-icon svg { width: 22px; height: 22px; }
  .service-tag {
    font-size: 11px; color: var(--text-soft);
    margin-bottom: 6px;
    font-family: var(--font-mono);
  }
  .service-card h3 {
    font-family: var(--serif);
    font-size: 26px; font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .service-card > p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 22px;
    flex: 1;
  }
  .service-link {
    padding-top: 14px;
    border-top: 1px solid var(--hairline);
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500;
    color: var(--accent);
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 10px; }
  .service-link svg { width: 12px; height: 12px; }

  /* ============ FAQ ============ */
  .faq-list {
    max-width: 720px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--hairline);
    padding: 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--hairline); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    font-size: 18px; font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    transition: color 0.15s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '';
    width: 12px; height: 12px;
    border-right: 2px solid var(--text-soft);
    border-bottom: 2px solid var(--text-soft);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.25s var(--ease), border-color 0.15s;
    margin-top: -4px;
  }
  .faq-item[open] summary {
    color: var(--accent);
  }
  .faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 4px;
    border-color: var(--accent);
  }
  .faq-item summary:hover { color: var(--accent); }
  .faq-item summary:hover::after { border-color: var(--accent); }
  .faq-item p {
    padding: 0 0 22px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
    max-width: 62ch;
  }

  /* ============ ENTRANCE ANIMATIONS ============ */
  .reveal,
  .reveal-up,
  .reveal-down,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-blur {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .reveal,
  .reveal-up { transform: translateY(28px); }
  .reveal-down { transform: translateY(-28px); }
  .reveal-left { transform: translateX(-36px); }
  .reveal-right { transform: translateX(36px); }
  .reveal-scale { transform: scale(0.94); }
  .reveal-blur { transform: translateY(20px); filter: blur(8px); }

  .reveal.in,
  .reveal-up.in,
  .reveal-down.in,
  .reveal-left.in,
  .reveal-right.in,
  .reveal-scale.in,
  .reveal-blur.in {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
  }

  /* Stagger children inside containers */
  .stagger > *,
  .stagger-cards > * {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .stagger.in > *,
  .stagger-cards.in > * {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .stagger.in > *:nth-child(1)  { transition-delay: 0ms; }
  .stagger.in > *:nth-child(2)  { transition-delay: 80ms; }
  .stagger.in > *:nth-child(3)  { transition-delay: 160ms; }
  .stagger.in > *:nth-child(4)  { transition-delay: 240ms; }
  .stagger.in > *:nth-child(5)  { transition-delay: 320ms; }
  .stagger.in > *:nth-child(6)  { transition-delay: 400ms; }
  .stagger.in > *:nth-child(7)  { transition-delay: 480ms; }
  .stagger.in > *:nth-child(8)  { transition-delay: 560ms; }

  /* Hero load-in (no scroll needed) */
  .hero-anim .hero-greet,
  .hero-anim h1,
  .hero-anim .sub,
  .hero-anim .hero-actions,
  .hero-anim .currently,
  .hero-anim .trust-bar {
    opacity: 0;
    transform: translateY(18px);
    animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-anim .hero-greet { animation-delay: 0.05s; }
  .hero-anim h1 { animation-delay: 0.2s; }
  .hero-anim .sub { animation-delay: 0.4s; }
  .hero-anim .hero-actions { animation-delay: 0.55s; }
  .hero-anim .currently { animation-delay: 0.7s; }
  .hero-anim .trust-bar { animation-delay: 0.85s; }
  @keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Hero showcase slides in from right */
  .hero-showcase {
    opacity: 0;
    transform: translateX(40px) rotate(3deg);
    animation: showcaseIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
  }
  @keyframes showcaseIn {
    to { opacity: 1; transform: translateX(0) rotate(1.5deg); }
  }

  /* Respect users who don't want motion */
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-up, .reveal-down, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur,
    .stagger > *, .stagger-cards > *,
    .hero-anim > *, .hero-showcase, .showcase-card {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
      animation: none !important;
      transition: none !important;
    }
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 920px) {
    .hero { padding: 56px 0 48px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-showcase { max-width: 380px; margin: 0 auto; }
    .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
    .trust-bar { grid-template-columns: repeat(2, 1fr); padding: 14px 0; }
    .trust-item { padding: 10px 14px; }
    .trust-item:nth-child(2n) { border-right: none; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
    .how-grid, .promise-grid, .testi-grid, .services-grid { grid-template-columns: 1fr; }
    .testi.featured { grid-column: span 1; }
    .testi.featured .testi-quote { font-size: 18px; }
    .projects-grid { grid-template-columns: 1fr; }
    .project.featured { grid-template-columns: 1fr; grid-column: 1 / -1; }
    .project.featured .project-visual {
      min-height: auto;
      height: 240px;
      border-right: none;
      border-bottom: 1px solid var(--hairline);
    }
    .project.featured .project-body { padding: 24px; }
    .project.featured .project-title { font-size: 22px; }
    .about-facts { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 64px 0; }
    .final-cta { padding: 72px 0; }
    .about-strip { padding: 48px 0; }
  }
  @media (max-width: 540px) {
    .about-facts { grid-template-columns: 1fr; }
    .hero h1 { font-size: 36px; }
  }

  /* ============ LEGAL PAGES ============ */
  .legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 24px 88px;
  }
  .legal .eyebrow { margin-bottom: 14px; }
  .legal h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.012em;
    margin-bottom: 10px;
  }
  .legal .legal-meta {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--hairline);
  }
  .legal h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.005em;
    margin: 34px 0 12px;
  }
  .legal p,
  .legal li {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.7;
  }
  .legal p { margin-bottom: 14px; }
  .legal ul { margin: 0 0 14px; padding-left: 22px; }
  .legal li { margin-bottom: 6px; }
  .legal a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .legal strong { color: var(--text); font-weight: 600; }
  .legal-foot {
    border-top: 1px solid var(--hairline);
    padding: 28px 0;
    text-align: center;
  }
  .legal-foot a {
    color: var(--text-soft);
    font-size: 13px;
    margin: 0 10px;
  }
  .legal-foot a:hover { color: var(--accent); }

  /* Footer policy links */
  .foot-links { display: flex; gap: 16px; }
  .foot-link {
    color: var(--text-soft);
    font-size: 13px;
  }
  .foot-link:hover { color: var(--accent); }
