  @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,400&family=Roboto+Mono:wght@400;500&display=swap');

  :root {
    --paper: #ffffff;
    --paper-raised: #f4f4f4;
    --ink: #0d0d0d;
    --ink-soft: #454545;
    --ink-faint: #7a7a7a;
    --line: #e2e2e2;
    --line-strong: #c2c2c2;
    --accent: #d1272f;
    --accent-ink: #ffffff;
    --accent2: #8a1c1c;
    --font-display: 'Roboto', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Roboto', ui-sans-serif, system-ui, sans-serif;
    --font-mono: 'Roboto Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --paper: #0a0a0a;
      --paper-raised: #171717;
      --ink: #f2f2f2;
      --ink-soft: #c4c4c4;
      --ink-faint: #8a8a8a;
      --line: #2a2a2a;
      --line-strong: #3c3c3c;
      --accent: #ff5b52;
      --accent-ink: #141414;
      --accent2: #ff8a80;
    }
  }

  :root[data-theme="dark"] {
    --paper: #0a0a0a;
    --paper-raised: #171717;
    --ink: #f2f2f2;
    --ink-soft: #c4c4c4;
    --ink-faint: #8a8a8a;
    --line: #2a2a2a;
    --line-strong: #3c3c3c;
    --accent: #ff5b52;
    --accent-ink: #141414;
    --accent2: #ff8a80;
  }

  * { box-sizing: border-box; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    margin: 0;
    padding-inline: max(20px, calc((100vw - 1080px) / 2));
    padding-block: 0 80px;
    -webkit-font-smoothing: antialiased;
    position: relative;
  }

  .bg-anim {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
  }
  .bg-anim span {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.16;
    will-change: transform;
  }
  .bg-anim span:nth-child(1) {
    width: 420px; height: 420px;
    background: var(--accent);
    top: -120px; left: -100px;
    animation: driftOne 26s ease-in-out infinite alternate;
  }
  .bg-anim span:nth-child(2) {
    width: 380px; height: 380px;
    background: var(--accent2);
    bottom: -140px; right: -80px;
    animation: driftTwo 32s ease-in-out infinite alternate;
  }
  .bg-anim span:nth-child(3) {
    width: 300px; height: 300px;
    background: var(--accent);
    top: 40%; right: 10%;
    animation: driftThree 22s ease-in-out infinite alternate;
  }
  @keyframes driftOne {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(80px, 60px) scale(1.15); }
  }
  @keyframes driftTwo {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-60px, -50px) scale(1.1); }
  }
  @keyframes driftThree {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-50px, 70px) scale(0.9); }
  }
  @media (prefers-reduced-motion: reduce) {
    .bg-anim span { animation: none; }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
  .work-card.reveal, .service.reveal {
    transform: translateY(24px) scale(0.96) rotate(-1.5deg);
  }
  .work-card.reveal:nth-child(even), .service.reveal:nth-child(even) {
    transform: translateY(24px) scale(0.96) rotate(1.5deg);
  }
  .work-card.reveal.in, .service.reveal.in { transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .work-card.reveal, .service.reveal, .work-card.reveal:nth-child(even), .service.reveal:nth-child(even) { transform: none; }
  }

  /* Depth: cards get real elevation instead of a flat border */
  .work-card, .service, .rate-banner, .case-shot, .about-photo, .fact-card, .rate-factors > div, .case-meta > div, .review-card {
    box-shadow: 0 10px 30px -20px rgba(0,0,0,0.5), 0 2px 8px -4px rgba(0,0,0,0.25);
  }
  :root:not([data-theme="light"]) .work-card,
  :root:not([data-theme="light"]) .service,
  :root:not([data-theme="light"]) .rate-banner,
  :root:not([data-theme="light"]) .case-shot,
  :root:not([data-theme="light"]) .about-photo,
  :root:not([data-theme="light"]) .fact-card,
  :root:not([data-theme="light"]) .rate-factors > div,
  :root:not([data-theme="light"]) .case-meta > div,
  :root:not([data-theme="light"]) .review-card {
    box-shadow: 0 12px 32px -18px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02) inset;
  }
  .btn.primary {
    box-shadow: 0 8px 20px -10px var(--accent);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  }
  .btn.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px var(--accent); }
  .btn { transition: transform 0.2s ease, background 0.2s ease; }
  .btn:hover { transform: translateY(-2px); }

  a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
  a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

  .label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }

  .wrap { max-width: 1080px; margin: 0 auto; }

  /* Header */
  header.site {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 22px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 10px;
  }
  .mark { display: flex; align-items: baseline; gap: 10px; }
  .mark .name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; text-decoration: none; color: inherit; }
  .mark .agency { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-faint); }
  nav.site { display: flex; gap: 26px; font-family: var(--font-mono); font-size: 0.8rem; }
  nav.site a { color: var(--ink-soft); text-decoration: none; }
  nav.site a:hover { color: var(--ink); }

  /* Hero */
  .hero {
    padding-block: 64px 56px;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }
  @media (min-width: 900px) {
    .hero { width: 70%; margin-inline: auto; }
  }

  .hero-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .hero-role {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    letter-spacing: 0.02em;
    color: var(--accent2);
    margin-bottom: 10px;
  }

  .avatar {
    position: relative;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.9rem;
    flex-shrink: 0;
    border: 2px solid var(--accent);
    margin-bottom: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  .avatar:hover { transform: scale(1.04); border-color: var(--accent2); }
  .avatar::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: spin 12s linear infinite;
  }
  .avatar:hover::before { opacity: 0.5; }
  @keyframes spin { to { transform: rotate(360deg); } }
  @media (prefers-reduced-motion: reduce) { .avatar::before { animation: none; } }
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    filter: contrast(1.05) saturate(1.05);
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
  }
  .hero .avatar { animation: heroIn 0.7s ease both; }
  .hero-name { animation: heroIn 0.7s ease 0.08s both; }
  .hero-role { animation: heroIn 0.7s ease 0.16s both; }
  .hero h1 { animation: heroIn 0.7s ease 0.24s both; }
  .hero p.dek { animation: heroIn 0.7s ease 0.32s both; }
  .hero .cta-row { animation: heroIn 0.7s ease 0.4s both; }
  @media (prefers-reduced-motion: reduce) {
    .hero .avatar, .hero-name, .hero-role, .hero h1, .hero p.dek, .hero .cta-row { animation: none; }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    line-height: 1.07;
    letter-spacing: -0.01em;
    margin: 6px 0 18px;
    text-wrap: balance;
    max-width: 18ch;
  }
  .hero h1 em { font-style: italic; color: var(--accent); }
  .hero p.dek {
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 56ch;
  }
  .hero .cta-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }

  .btn {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 3px;
    text-decoration: none;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
  }
  .btn.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
  .btn.primary:hover { filter: brightness(1.06); }
  .btn:hover { background: var(--paper-raised); }

  /* Speaking banner */
  .banner-shot {
    position: relative;
    max-height: 420px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }
  .banner-shot img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    filter: contrast(1.08) saturate(1.08);
  }
  .banner-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.05) 55%);
  }
  .banner-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px max(20px, calc((100vw - 1080px) / 2 + 20px));
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    max-width: 46ch;
  }

  /* About */
  .about-top {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 28px;
  }
  @media (max-width: 760px) { .about-top { grid-template-columns: 1fr; gap: 24px; } .about-top .about-photo { max-width: 240px; margin: 0 auto; } }
  .about-photo { border-radius: 6px; overflow: hidden; border: 1px solid var(--line-strong); }
  .about-photo img { width: 100%; height: 100%; display: block; object-fit: cover; filter: contrast(1.05) saturate(1.05); }
  .about-top .about-photo img { aspect-ratio: 3/4; }
  .about-photo-wide { max-height: 320px; margin-bottom: 34px; }
  .about-photo-wide img { aspect-ratio: 16/7; object-position: center 22%; }
  @media (max-width: 640px) { .about-photo-wide { max-height: 220px; } }
  .about-text p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
  .about-text p:last-child { margin-bottom: 0; }

  .facts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  @media (max-width: 900px) { .facts-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .facts-grid { grid-template-columns: 1fr; } }
  .fact-card {
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-top: 3px solid var(--fc, var(--accent));
    border-radius: 6px;
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .fact-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -16px var(--fc, var(--accent)); }
  .fact-card .fk { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fc, var(--accent)); }
  .fact-card .fv { font-size: 0.92rem; line-height: 1.4; }

  /* Section shell */
  section { padding-block: 56px; border-bottom: 1px solid var(--line); }
  section:last-of-type { border-bottom: none; }
  .section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
  .section-head h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin: 0;
    letter-spacing: -0.01em;
  }

  /* Services */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
  @media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }
  .service {
    background: var(--paper);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    transition: background 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
    z-index: 1;
  }
  .service:hover {
    transform: scale(1.06);
    z-index: 5;
    box-shadow: 0 24px 50px -20px rgba(0,0,0,0.55);
  }
  .service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--sc, var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .service:hover::before { opacity: 0.06; }
  .service .num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--sc, var(--accent));
    display: inline-block;
    width: 26px; height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--sc, var(--accent));
    transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
  }
  .service:hover .num { background: var(--sc, var(--accent)); color: #fff; }
  .service.in .num { animation: spinIn 0.6s ease 0.1s both; }
  @keyframes spinIn {
    from { opacity: 0; transform: rotate(-120deg) scale(0.4); }
    to   { opacity: 1; transform: rotate(0) scale(1); }
  }
  @media (prefers-reduced-motion: reduce) { .service.in .num { animation: none; } }
  /* Each service gets its own hover motion for its number badge */
  .service:hover .svc-icon-cal   { transform: scale(1.15); }
  .service:hover .svc-icon-list  { transform: translateX(4px); }
  .service:hover .svc-icon-bars  { transform: scale(1.15); }
  .service:hover .svc-icon-spin  { transform: rotate(180deg); }
  .service:hover .svc-icon-door  { transform: translateY(-3px) scale(1.1); }
  .service:hover .svc-icon-pulse { animation: svcPulse 0.9s ease infinite; }
  @keyframes svcPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--sc, var(--accent)); }
    50% { transform: scale(1.15); box-shadow: 0 0 0 6px transparent; }
  }
  .service:hover h3 { color: var(--sc, var(--accent)); }
  .service h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; margin: 0; transition: color 0.3s ease, font-size 0.35s ease; position: relative; z-index: 1; }
  .service:hover h3 { font-size: 1.3rem; }
  .service p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; position: relative; z-index: 1; transition: font-size 0.35s ease, color 0.35s ease; }
  .service:hover p { font-size: 0.98rem; color: var(--ink); }
  .service .tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 8px; position: relative; z-index: 1; }
  @media (prefers-reduced-motion: reduce) {
    .service .num, .service:hover .num { transition: none; animation: none; transform: none; }
  }
  .tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.02em; color: var(--ink-faint); border: 1px solid var(--line-strong); padding: 2px 7px; border-radius: 2px; }

  /* Process */
  .process-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
  .process-list li { display: grid; grid-template-columns: 64px 1fr auto 40px; gap: 18px; align-items: center; padding-block: 20px; border-top: 1px solid var(--line); }
  .process-list li:first-child { border-top: none; }
  @media (max-width: 640px) { .process-list li { grid-template-columns: 40px 1fr 32px; } .process-list li .dur { display: none; } }
  .step-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    color: var(--ink-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  }
  .step-icon svg { width: 17px; height: 17px; }
  .process-list li:hover .step-icon { color: var(--accent); border-color: var(--accent); transform: scale(1.1) rotate(8deg); }
  @media (max-width: 640px) { .step-icon { width: 28px; height: 28px; } .step-icon svg { width: 14px; height: 14px; } }
  .process-list .step-num { font-family: var(--font-mono); font-size: 0.9rem; color: var(--accent); padding-top: 3px; display: inline-block; }
  .process-list li.in .step-num { animation: spinIn 0.6s ease 0.1s both; }
  @media (prefers-reduced-motion: reduce) { .process-list li.in .step-num { animation: none; } }
  .process-list h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; margin: 0 0 6px; }
  .process-list p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; max-width: 56ch; }
  .process-list .dur { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-faint); white-space: nowrap; padding-top: 4px; }

  /* Work */
  .work-note { font-size: 0.88rem; color: var(--ink-faint); margin: -18px 0 30px; max-width: 62ch; line-height: 1.5; }

  .work-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border: 1px solid var(--accent);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: var(--paper-raised);
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 16px 40px -20px rgba(0,0,0,0.55);
  }
  .work-feature:hover { transform: translateY(-4px); box-shadow: 0 20px 48px -18px var(--accent); }
  @media (max-width: 760px) { .work-feature { grid-template-columns: 1fr; } }
  .work-feature-shot { background: var(--paper); overflow: hidden; cursor: zoom-in; }
  .work-feature-shot img { width: 100%; height: 100%; display: block; object-fit: cover; min-height: 260px; transition: transform 0.4s ease; }
  .work-feature:hover .work-feature-shot img { transform: scale(1.04); }
  .work-feature-body { padding: 28px 30px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
  .work-feature-body .kicker { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
  .work-feature-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; margin: 0; }
  .work-feature-body p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
  .work-feature-body .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }

  .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 760px) { .work-grid { grid-template-columns: 1fr; } }
  .work-card {
    border: 1px solid var(--line-strong);
    background: var(--paper-raised);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .work-card:hover, .work-card:focus-visible {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 24px -12px rgba(0,0,0,0.25);
  }
  .work-card .shot { aspect-ratio: 4 / 3; background: var(--paper); position: relative; border-bottom: 1px solid var(--line); overflow: hidden; display: block; cursor: zoom-in; }
  .work-card .shot svg { width: 100%; height: 100%; display: block; }
  .work-card .shot img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
  .work-card:hover .shot img { transform: scale(1.05); }
  .work-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .work-card .kicker { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent2); }
  .work-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin: 0; }
  .work-card h3 a { color: inherit; text-decoration: none; }
  .work-card h3 a:hover { color: var(--accent); }
  .work-card p { margin: 0; color: var(--ink-soft); font-size: 0.87rem; line-height: 1.5; }
  .work-card .meta { margin-top: auto; padding-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
  .work-card .meta a.tag { text-decoration: none; }
  .work-card .meta a.tag:hover { border-color: var(--accent); color: var(--accent); }

  .shot-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sc, var(--accent));
  }
  .shot-placeholder span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.01em;
  }

  /* Reviews */
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }
  .review-card {
    background: var(--paper-raised);
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -18px var(--accent); }
  .review-empty {
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .review-empty p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; max-width: 32ch; }
  .review-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 10px; }
  .review-quote { font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; }
  .review-who { display: flex; flex-direction: column; gap: 2px; }
  .review-name { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
  .review-role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-faint); }

  /* Rates */
  .rate-banner {
    border: 1px solid var(--line-strong);
    background: var(--paper-raised);
    border-radius: 6px;
    padding: 40px clamp(24px, 5vw, 56px);
    text-align: center;
  }
  .rate-range {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }
  .rate-range span { color: var(--accent); }
  .rate-range sup { font-family: var(--font-mono); font-size: 1rem; font-weight: 400; color: var(--ink-faint); }
  .rate-banner > p { font-size: 1rem; line-height: 1.6; color: var(--ink-soft); max-width: 56ch; margin: 0 auto 30px; }
  .rate-factors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    text-align: left;
    margin-bottom: 30px;
  }
  @media (max-width: 700px) { .rate-factors { grid-template-columns: 1fr 1fr; } }
  .rate-factors > div { background: var(--paper); padding: 16px 18px; }
  .rate-factors .fk { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent2); margin-bottom: 6px; }
  .rate-factors .fv { font-size: 0.86rem; line-height: 1.4; color: var(--ink-soft); }

  /* Contact */
  #contact { padding-block: 90px; }
  .contact-block { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
  .contact-block h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    max-width: 18ch;
    line-height: 1.1;
    margin: 0;
    text-wrap: balance;
  }
  .contact-links { display: flex; flex-direction: column; gap: 14px; font-family: var(--font-mono); font-size: 1.05rem; }
  .contact-links a { color: var(--ink); transition: color 0.2s ease; }
  .contact-links a:hover { color: var(--accent); }

  .contact-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  @media (max-width: 700px) { .contact-photos { grid-template-columns: repeat(2, 1fr); } }
  .contact-photos img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--line-strong);
    display: block;
    transition: transform 0.3s ease;
  }
  .contact-photos img:hover { transform: translateY(-4px) scale(1.02); }

  footer.site { padding-top: 26px; display: flex; justify-content: space-between; color: var(--ink-faint); font-family: var(--font-mono); font-size: 0.72rem; flex-wrap: wrap; gap: 8px; }
  footer.site a { color: var(--ink-faint); }

  /* Price estimate modal */
  .modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto;
  }
  .modal.open { display: flex; }
  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    animation: fadeIn 0.2s ease both;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .modal-panel {
    position: relative;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    max-width: 520px;
    width: 100%;
    padding: 32px clamp(20px, 4vw, 36px) 30px;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
    animation: modalIn 0.3s ease both;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to   { opacity: 1; transform: none; }
  }
  @media (prefers-reduced-motion: reduce) { .modal-backdrop, .modal-panel { animation: none; } }
  .modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--ink-faint);
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .modal-close:hover { color: var(--accent); transform: rotate(90deg); }
  .modal-panel h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 0 8px;
    padding-right: 24px;
  }
  .modal-sub { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; margin: 0 0 24px; }
  .pf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .pf-group label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint); }
  .pf-group select, .pf-group input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid var(--line-strong);
    background: var(--paper-raised);
    color: var(--ink);
  }
  .pf-group select:focus, .pf-group input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
  #calc-btn { width: 100%; justify-content: center; margin-top: 6px; cursor: pointer; }
  #send-btn { width: 100%; justify-content: center; cursor: pointer; }
  .price-result {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    animation: modalIn 0.4s ease both;
  }
  .price-result-range {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    text-align: center;
    margin-bottom: 10px;
  }
  .price-result-range span { color: var(--accent); }
  .price-result > p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; margin: 0 0 16px; }
  .pf-status { font-size: 0.86rem; margin-top: 10px; color: var(--accent2); }
  .pf-status.pf-error { color: var(--accent); }

  /* Case study pages */
  .back-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-soft); text-decoration: none; margin-bottom: 18px; }
  .back-link:hover { color: var(--accent); }
  .case-hero { padding-block: 40px 30px; border-bottom: 1px solid var(--line); }
  .case-hero .kicker { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent2); margin-bottom: 10px; display: block; }
  .case-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 14px; letter-spacing: -0.01em; }
  .case-hero p { font-size: 1.05rem; line-height: 1.6; color: var(--ink-soft); max-width: 62ch; margin: 0 0 22px; }
  .case-shot { border-radius: 6px; overflow: hidden; border: 1px solid var(--line-strong); margin-block: 30px; cursor: zoom-in; }
  .case-shot img { width: 100%; display: block; }
  .case-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-block: 30px; }
  @media (max-width: 700px) { .case-meta { grid-template-columns: 1fr 1fr; } }
  .case-meta div { background: var(--paper-raised); padding: 16px 18px; }
  .case-meta .fk { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
  .case-meta .fv { font-size: 0.92rem; }
  .case-body h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; margin: 32px 0 12px; }
  .case-body p, .case-body li { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); }
  .case-body ul { padding-left: 20px; margin: 0 0 16px; }
  .case-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
