/* ---------- Reset & tokens ---------- */
  *,*::before,*::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  :root {
    --bg: #ffffff;             /* pure white */
    --bg-2: #f6f6f5;           /* zinc-50 / panel */
    --surface: #ffffff;
    --surface-2: #fafafa;
    --border: #e7e7e4;
    --border-2: #d4d4d1;
    --fg: #18181b;             /* zinc-900 */
    --fg-2: #27272a;
    --muted: #6b7280;
    --muted-2: #9ca3af;
    --accent: #dc2626;         /* workshop red */
    --accent-2: #b91c1c;       /* hover */
    --accent-tint: rgba(220, 38, 38, 0.08);
    --accent-tint-2: rgba(220, 38, 38, 0.14);
    --ink: #0a0a0a;
    --success: #16a34a;

    --shadow-sm: 0 1px 2px rgba(24, 24, 27, 0.04);
    --shadow-md: 0 2px 8px rgba(24, 24, 27, 0.06);
    --shadow-lg: 0 12px 28px -12px rgba(24, 24, 27, 0.16);

    --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
    --font-body: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;

    --maxw: 1280px;
    --pad-x: clamp(20px, 4vw, 56px);
    --radius: 12px;
    --radius-lg: 18px;
  }

  body {
    font-family: var(--font-body);
    color: var(--fg);
    background: var(--bg);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; }

  ::selection { background: var(--accent); color: #fff; }

  /* ---------- Layout helpers ---------- */
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
  .eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: ""; width: 28px; height: 1px; background: currentColor;
  }
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin: 0;
    text-wrap: balance;
  }
  h2 { font-size: clamp(30px, 4vw, 50px); }
  h3 { font-size: clamp(20px, 1.8vw, 24px); letter-spacing: -0.01em; }
  p { margin: 0; }

  section { padding: clamp(64px, 7vw, 96px) 0; position: relative; }
  .section-head { max-width: 720px; margin-bottom: 48px; }
  .section-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }

  .grid { display: grid; gap: 24px; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--accent); color: #ffffff; box-shadow: var(--shadow-sm); }
  .btn-primary:hover { background: var(--accent-2); }
  .btn-ink { background: var(--ink); color: #ffffff; }
  .btn-ink:hover { background: #000; }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-2); }
  .btn-ghost:hover { border-color: var(--ink); background: rgba(26,24,20,0.04); }
  .btn svg { width: 18px; height: 18px; }

  /* ---------- Header ---------- */
  .top {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    background: rgba(255,255,255,0.85);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  .top.scrolled { border-color: var(--border); background: rgba(255,255,255,0.95); }
  .top-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-size: 20px; }
  .brand-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform .2s ease;
  }
  .brand-logo:hover { transform: scale(1.03); }
  .brand-mark {
    width: 38px; height: 38px; border-radius: 8px;
    background: var(--accent);
    color: #ffffff;
    display: grid; place-items: center;
    font-weight: 800; font-size: 18px; font-family: var(--font-display);
  }
  .brand small { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; font-weight: 500; margin-top: 1px; white-space: nowrap; }
  nav.primary { display: flex; gap: 4px; }
  nav.primary a {
    padding: 10px 14px; border-radius: 999px;
    color: var(--muted); font-size: 14px; font-weight: 500;
    transition: color .15s ease, background .15s ease;
    white-space: nowrap;
  }
  nav.primary a:hover { color: var(--ink); background: rgba(26,24,20,0.05); }
  nav.primary a[aria-current="page"] { color: var(--ink); background: rgba(26,24,20,0.06); }
  .top-right { display: flex; align-items: center; gap: 10px; }
  .phone-pill {
    position: relative;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 12px 9px 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--fg);
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
  }
  .phone-pill:hover { border-color: var(--border-2); }
  .phone-pill > * { white-space: nowrap; }
  .phone-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--success); box-shadow: 0 0 0 4px rgba(22,163,74,0.18); flex-shrink: 0; }
  .phone-pill.closed .dot { background: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.18); }
  .phone-pill .status-label { font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; font-size: 11px; }
  .phone-pill .status-detail { color: var(--muted); }
  .phone-pill .chev { width: 12px; height: 12px; color: var(--muted-2); transition: transform .2s ease; flex-shrink: 0; }
  .phone-pill:hover .chev,
  .phone-pill[aria-expanded="true"] .chev { transform: rotate(180deg); }
  .phone-pill .popover {
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 280px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.06);
    opacity: 0; transform: translateY(-4px) scale(0.98);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 60;
    text-align: left;
    white-space: normal;
  }
  .phone-pill:hover .popover,
  .phone-pill:focus-within .popover,
  .phone-pill[aria-expanded="true"] .popover { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  /* invisible bridge so the popover stays open while moving cursor from pill to popover */
  .phone-pill::before {
    content: ""; position: absolute;
    top: 100%; right: 0; left: 0;
    height: 12px;
    pointer-events: none;
  }
  .phone-pill:hover::before { pointer-events: auto; }
  .popover h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin: 0 0 12px; }
  .popover ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
  .popover li { display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: var(--fg-2); font-family: var(--font-mono); }
  .popover li.today { color: var(--accent); font-weight: 600; }
  .popover li .day { color: var(--muted); }
  .popover li.today .day { color: var(--accent); }
  .popover-foot {
    margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
    display: grid; gap: 6px;
    font-size: 13px;
  }
  .popover-foot a { display: flex; align-items: center; gap: 8px; color: var(--fg); font-weight: 500; }
  .popover-foot a:hover { color: var(--accent); }
  .popover-foot svg { width: 14px; height: 14px; color: var(--accent); }

  /* Tablet — keep pill visible but compact */
  @media (max-width: 1080px) {
    .phone-pill .status-detail { display: none; }
    nav.primary { gap: 0; }
    nav.primary a { padding: 10px 10px; font-size: 13px; }
  }
  @media (max-width: 980px) {
    nav.primary a { padding: 8px 8px; font-size: 12px; }
    .top-right .btn-primary { padding: 12px 16px; font-size: 13px; }
  }
  @media (max-width: 720px) {
    .phone-pill { padding: 7px 10px; gap: 6px; }
    .phone-pill .status-label { font-size: 10px; letter-spacing: 0.04em; }
    .phone-pill .chev { display: none; }
    .phone-pill .popover { right: -8px; min-width: 240px; }
  }
  @media (max-width: 1200px) {
    .brand small { display: none; }
  }
  @media (max-width: 860px) { nav.primary { display: none; } }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 6vw, 80px);
    overflow: clip;
    isolation: isolate;
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(50% 50% at 90% 0%, rgba(220,38,38,0.05), transparent 60%);
    z-index: -1;
  }
  .hero::after { display: none; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }
  @media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

  .hero h1 {
    font-size: clamp(40px, 5.4vw, 72px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .hero h1 .accent { color: var(--accent); }
  .hero-sub {
    color: var(--muted);
    font-size: clamp(17px, 1.4vw, 19px);
    max-width: 540px;
    margin-top: 28px;
  }
  .hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
  .hero-meta {
    display: flex; gap: 28px; margin-top: 48px; flex-wrap: wrap;
    padding-top: 28px; border-top: 1px solid var(--border);
  }
  .hero-meta div { display: flex; flex-direction: column; }
  .hero-meta strong { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
  .hero-meta span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .hero-visual img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.04);
  }
  .hero-visual::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15,13,10,0.55) 100%);
  }
  .hero-card {
    position: absolute; left: 16px; right: 16px; bottom: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .hero-card-left { display: flex; align-items: center; gap: 14px; }
  .hero-card-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--success); box-shadow: 0 0 0 5px rgba(22,163,74,0.2); }
  .hero-card-title { font-weight: 600; font-size: 14px; color: var(--ink); }
  .hero-card-sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
  .hero-card-time { font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 700; }

  /* ---------- Marquee / trust strip ---------- */
  .marquee {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
    overflow: hidden;
    background: var(--surface);
  }
  .marquee-track {
    display: flex; gap: 56px; align-items: center;
    animation: scroll 38s linear infinite;
    width: max-content;
  }
  .marquee-item {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 500;
    color: var(--muted);
    letter-spacing: -0.01em;
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: 56px;
  }
  .marquee-item::after { content: "·"; color: var(--accent); }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* ---------- Specialization showcase ---------- */
  .special {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .special-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 1024px) { .special-grid { grid-template-columns: 1fr; } }
  .special h2 .h { color: var(--accent); }
  .special-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
  .pill {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-tint);
    color: var(--accent);
    border: 1px solid rgba(249,115,22,0.3);
  }
  .special-body { color: var(--muted); margin-top: 24px; font-size: 18px; max-width: 540px; }
  .special-cta { margin-top: 32px; }
  .special-image {
    position: relative;
    aspect-ratio: 4/4.6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .special-image img { width: 100%; height: 100%; object-fit: cover; }
  .special-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--accent); color: #ffffff;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
    padding: 8px 12px; border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
  }
  .special-image-caption {
    position: absolute; left: 20px; right: 20px; bottom: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--fg-2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }
  .special-image-caption strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--ink); margin-bottom: 4px; }

  /* ---------- Services ---------- */
  .services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
  .services-head h2 { max-width: 700px; }
  .services-head p { color: var(--muted); max-width: 360px; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

  .service {
    background: var(--surface);
    padding: 36px 32px;
    display: flex; flex-direction: column;
    min-height: 260px;
    position: relative;
    transition: background .2s ease;
  }
  .service:hover { background: var(--surface-2); }
  .service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted-2);
    letter-spacing: 0.1em;
  }
  .service-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--accent-tint);
    color: var(--accent);
    display: grid; place-items: center;
    margin: 16px 0 20px;
  }
  .service-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .service h3 { font-size: 22px; margin-bottom: 10px; }
  .service p { color: var(--muted); font-size: 15px; flex-grow: 1; }
  .service-foot {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-2);
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono);
    font-size: 13px;
  }
  .service-foot .from { color: var(--muted); }
  .service-foot .price { color: var(--accent); font-weight: 700; font-size: 16px; }

  .services-note {
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted-2);
    letter-spacing: 0.04em;
  }

  /* ---------- HU/AU spotlight ---------- */
  /* ---------- HU/AU — workshop schedule panel ---------- */
  .huau {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .huau-panel {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 960px) { .huau-panel { grid-template-columns: 1fr; gap: 40px; } }
  .huau-status {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px 7px 12px;
    background: rgba(22,163,74,0.08);
    color: #15803d;
    border: 1px solid rgba(22,163,74,0.22);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .huau-status.closed { background: rgba(220,38,38,0.07); color: var(--accent); border-color: rgba(220,38,38,0.2); }
  .huau-status-dot { width: 8px; height: 8px; border-radius: 999px; background: currentColor; position: relative; }
  .huau-status-dot::after {
    content: ""; position: absolute; inset: -4px;
    border-radius: inherit;
    border: 2px solid currentColor;
    opacity: 0.35;
    animation: huauPulse 2s ease-out infinite;
  }
  @keyframes huauPulse {
    0% { transform: scale(0.7); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  .huau-panel h2 { margin: 22px 0 16px; font-size: clamp(34px, 4.4vw, 54px); }
  .huau-panel > div:first-child > p {
    color: var(--muted); font-size: 17px; max-width: 480px;
  }
  .huau-features { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 10px; }
  .huau-features li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 15px; color: var(--fg-2);
  }
  .huau-features li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
  .huau-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

  .huau-schedule {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
  }
  .schedule-head {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }
  .schedule-head .live {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent);
    font-weight: 600;
  }
  .schedule-head .live::before {
    content: ""; width: 6px; height: 6px; border-radius: 999px;
    background: currentColor;
    animation: liveBlink 1.4s ease-in-out infinite;
  }
  @keyframes liveBlink { 50% { opacity: 0.3; } }

  .schedule-row {
    display: grid;
    grid-template-columns: 38px 1fr 88px;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    font-family: var(--font-mono);
    font-size: 13px;
  }
  .schedule-row .day { font-weight: 700; color: var(--fg); letter-spacing: 0.04em; }
  .schedule-row .time { color: var(--muted); text-align: right; font-size: 12px; }
  .schedule-row.closed .day,
  .schedule-row.closed .time { color: var(--muted-2); }
  .schedule-row.today .day,
  .schedule-row.today .time { color: var(--accent); }

  .schedule-bar {
    position: relative;
    height: 8px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 999px;
  }
  .schedule-bar-fill {
    position: absolute;
    top: -1px; bottom: -1px;
    background: var(--fg);
    border-radius: 999px;
  }
  .schedule-row.today .schedule-bar-fill { background: var(--accent); }
  .schedule-row.closed .schedule-bar-fill {
    background: repeating-linear-gradient(45deg, var(--border) 0 4px, transparent 4px 8px);
    width: 100% !important;
    left: 0 !important;
    top: 0; bottom: 0;
  }
  .schedule-now {
    position: absolute;
    top: -6px; bottom: -6px;
    width: 2px;
    background: var(--ink);
    border-radius: 1px;
    z-index: 2;
  }
  .schedule-now::before {
    content: ""; position: absolute;
    top: -3px; left: -3px;
    width: 8px; height: 8px;
    background: var(--ink);
    border-radius: 999px;
    border: 2px solid var(--surface);
  }

  .schedule-axis {
    display: grid;
    grid-template-columns: 38px 1fr 88px;
    gap: 14px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted-2);
    letter-spacing: 0.06em;
  }
  .schedule-axis .axis-marks {
    display: flex; justify-content: space-between;
    padding: 0 1px;
  }
  @media (max-width: 480px) {
    .huau-schedule { padding: 22px; }
    .schedule-row { grid-template-columns: 32px 1fr 70px; gap: 10px; }
    .schedule-axis { grid-template-columns: 32px 1fr 70px; gap: 10px; }
  }

  /* ---------- Why us ---------- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

  .why {
    padding: 28px 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color .2s ease, transform .2s ease;
  }
  .why:hover { border-color: var(--accent); transform: translateY(-2px); }
  .why-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.06em;
  }
  .why h3 { font-size: 19px; margin: 18px 0 10px; }
  .why p { color: var(--muted); font-size: 14px; line-height: 1.55; }

  /* ---------- Team ---------- */
  .team-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
  }
  @media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }

  .team-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .team-card .photo {
    aspect-ratio: 16/10;
    background: var(--surface-2);
    overflow: hidden;
    position: relative;
  }
  .team-card.tall .photo { aspect-ratio: 4/4.4; }
  .team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
  .team-body { padding: 28px; }
  .team-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
  .team-body h3 { font-size: 26px; margin: 10px 0; }
  .team-body p { color: var(--muted); font-size: 15px; }
  .team-contact {
    margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 6px;
    font-family: var(--font-mono); font-size: 13px;
  }
  .team-contact a { color: var(--fg-2); }
  .team-contact a:hover { color: var(--accent); }

  /* ---------- Testimonials ---------- */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

  .testi {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex; flex-direction: column;
  }
  .stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 18px; }
  .stars svg { width: 16px; height: 16px; fill: currentColor; }
  .testi blockquote {
    margin: 0; font-size: 17px; color: var(--fg-2);
    font-family: var(--font-body);
    flex-grow: 1;
    line-height: 1.5;
  }
  .testi-author {
    margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px;
  }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--accent);
    display: grid; place-items: center; color: #ffffff; font-weight: 700; font-family: var(--font-display); font-size: 16px;
  }
  .testi-name { font-weight: 600; font-size: 14px; }
  .testi-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

  /* ---------- Side service strip (Ersatz / ABD) ---------- */
  .extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 800px) { .extras-grid { grid-template-columns: 1fr; } }
  .extra {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .extra h3 { font-size: 26px; margin-bottom: 14px; max-width: 360px; }
  .extra p { color: var(--muted); font-size: 15px; max-width: 420px; }
  .extra-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--accent-tint); color: var(--accent);
    display: grid; place-items: center; margin-bottom: 18px;
  }
  .extra-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  /* ---------- FAQ ---------- */
  .faq { display: grid; gap: 0; border-top: 1px solid var(--border); }
  .faq details {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .faq summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 500;
    color: var(--fg);
    letter-spacing: -0.01em;
    transition: color .2s ease;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+";
    font-family: var(--font-mono);
    font-size: 28px;
    line-height: 1;
    color: var(--accent);
    transition: transform .25s ease;
    flex-shrink: 0;
    width: 28px; text-align: center;
  }
  .faq details[open] summary::after { transform: rotate(45deg); }
  .faq summary:hover { color: var(--accent); }
  .faq-answer {
    color: var(--muted);
    font-size: 16px;
    padding: 16px 60px 0 0;
    max-width: 760px;
  }

  /* ---------- Contact ---------- */
  .contact {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  @media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; } }

  .contact-info { display: flex; flex-direction: column; }
  .contact-blocks { display: grid; gap: 20px; margin-top: 36px; }
  .contact-block {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 22px; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border);
  }
  .contact-block-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--accent-tint); color: var(--accent);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .contact-block-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .contact-block-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
  .contact-block-value { font-size: 17px; margin-top: 4px; }
  .contact-block-value a:hover { color: var(--accent); }
  .contact-block-meta { color: var(--muted); font-size: 13px; margin-top: 4px; font-family: var(--font-mono); }

  .map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    margin-top: 32px;
    aspect-ratio: 16/9;
    position: relative;
  }
  .map-wrap iframe { width: 100%; height: 100%; border: 0; }

  /* Form */
  .form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    position: sticky;
    top: 96px;
    align-self: start;
  }
  @media (max-width: 1000px) { .form-card { position: static; } }
  .form-card h3 { font-size: 28px; margin-bottom: 8px; }
  .form-card .sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
  .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  .field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
  .field input, .field textarea, .field select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--fg);
    font: inherit;
    font-size: 15px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  }
  .field textarea { min-height: 120px; resize: vertical; }
  .field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
  .form-card .btn { width: 100%; justify-content: center; padding: 18px; font-size: 16px; margin-top: 6px; }
  .form-note { font-size: 12px; color: var(--muted-2); margin-top: 14px; text-align: center; line-height: 1.5; }
  .form-success { display: none; text-align: center; padding: 20px 0; }
  .form-success svg { width: 48px; height: 48px; color: var(--success); margin: 0 auto 16px; display: block; }
  .form-success strong { display: block; font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
  .form-success p { color: var(--muted); }
  .form-card.sent .form-content { display: none; }
  .form-card.sent .form-success { display: block; }

  /* ---------- Footer ---------- */
  footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    background: var(--bg);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 16px; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; color: var(--fg-2); }
  .footer-col li a:hover { color: var(--accent); }
  .footer-blurb { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 320px; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px;
    flex-wrap: wrap; gap: 16px;
    font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.04em;
  }
  .footer-bottom a { color: var(--muted-2); }
  .footer-bottom a:hover { color: var(--fg); }

  /* ---------- Sticky mobile CTA ---------- */
  .mobile-cta {
    display: none;
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
    background: var(--accent); color: #ffffff;
    border-radius: 999px;
    padding: 16px 22px;
    font-weight: 700;
    align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(220,38,38,0.35);
  }
  @media (max-width: 720px) { .mobile-cta { display: flex; } body { padding-bottom: 96px; } }

  /* ---------- Image placeholder shimmer ---------- */
  .img-skel {
    background: linear-gradient(110deg, #e7e7e4 8%, #f6f6f5 18%, #e7e7e4 33%);
    background-size: 200% 100%;
    animation: shimmer 1.6s linear infinite;
  }
  @keyframes shimmer { to { background-position: -200% 0; } }

  /* ---------- Reveal animation ---------- */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ---------- Responsive refinements ---------- */
  /* Large desktop ≥1440 — sized via variables already */

  /* Tablet landscape and below */
  @media (max-width: 1100px) {
    .services-head { gap: 28px; }
    .hero-meta { gap: 22px; }
    .hero-meta strong { font-size: 22px; }
  }

  /* Tablet portrait */
  @media (max-width: 860px) {
    section { padding: 72px 0; }
    .section-head { margin-bottom: 40px; }
    .hero { padding: 80px 0 56px; }
    .hero h1 { font-size: clamp(40px, 9vw, 64px); }
    .hero-meta { margin-top: 36px; padding-top: 22px; gap: 18px 28px; }
    .hero-meta strong { font-size: 20px; }
    .hero-card { padding: 12px 14px; }
    .hero-card-title { font-size: 13px; }
    .hero-card-sub { font-size: 10px; }
    .hero-card-time { font-size: 12px; }
    .extras-grid { gap: 16px; }
    .extra { padding: 32px 28px; min-height: auto; }
    .form-card { padding: 28px; }
    .footer-grid { gap: 32px; padding-bottom: 36px; }
  }

  /* Phone */
  @media (max-width: 560px) {
    :root { --pad-x: 18px; }
    .hide-mobile { display: none; }
    section { padding: 64px 0; }
    h2 { font-size: clamp(28px, 8vw, 38px); }
    .hero { padding: 56px 0 40px; }
    .hero h1 { font-size: clamp(38px, 11vw, 54px); line-height: 1; }
    .hero-sub { margin-top: 22px; font-size: 16px; }
    .hero-cta { gap: 10px; margin-top: 28px; }
    .hero-cta .btn { padding: 14px 18px; font-size: 14px; flex: 1; min-width: 0; justify-content: center; }
    .hero-meta { gap: 14px 24px; margin-top: 32px; }
    .hero-meta strong { font-size: 18px; }
    .hero-meta span { font-size: 10px; }
    .hero-visual { aspect-ratio: 4/4.4; }
    .marquee-item { gap: 32px; font-size: 16px; }
    .marquee-track { gap: 32px; }
    .top-inner { height: 64px; }
    .brand small { display: none; }
    .brand-mark { width: 34px; height: 34px; }
    .top-right .btn { padding: 12px 16px; font-size: 13px; }
    .top-right .btn svg { width: 16px; height: 16px; }
    .services-head { margin-bottom: 32px; }
    .service { padding: 28px 22px; min-height: auto; }
    .service h3 { font-size: 20px; }
    .why { padding: 26px 22px; }
    .testi { padding: 26px 22px; }
    .testi blockquote { font-size: 15px; }
    .team-body { padding: 22px; }
    .team-body h3 { font-size: 22px; }
    .contact-block { padding: 18px; }
    .contact-block-icon { width: 36px; height: 36px; }
    .map-wrap { aspect-ratio: 4/3; margin-top: 24px; }
    .footer-grid { gap: 28px; padding-bottom: 28px; }
    .footer-bottom { font-size: 11px; gap: 12px; }
    .footer-bottom > div:last-child { gap: 16px; flex-wrap: wrap; }
    .huau-features li { font-size: 14px; }
    .faq summary { font-size: 17px; }
    .faq-answer { font-size: 15px; padding-right: 32px; }
    .form-card h3 { font-size: 22px; }
  }

  /* Very small */
  @media (max-width: 380px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; flex: none; }
    .hero h1 { font-size: 36px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .marquee-track { animation: none; }
  }

  /* ============================================================
     Sub-page extensions: breadcrumbs, service pages, blog, article
     ============================================================ */

  /* Breadcrumbs */
  .crumbs {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .crumbs a { color: var(--muted); transition: color .15s ease; }
  .crumbs a:hover { color: var(--accent); }
  .crumbs span.sep { color: var(--muted-2); }
  .crumbs .current { color: var(--fg); }

  /* Page hero (service/blog) */
  .page-hero {
    padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
    position: relative;
  }
  .page-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(40% 60% at 90% 0%, rgba(220,38,38,0.04), transparent 60%);
    z-index: -1;
  }
  .page-hero h1 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.02;
    margin-top: 12px;
    max-width: 880px;
  }
  .page-hero .lead {
    color: var(--muted);
    font-size: clamp(17px, 1.4vw, 19px);
    max-width: 640px;
    margin-top: 22px;
  }
  .page-hero .hero-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
    margin-top: 32px;
  }
  .page-hero .meta-row {
    display: flex; gap: 28px 36px; flex-wrap: wrap;
    padding-top: 24px; border-top: 1px solid var(--border);
    margin-top: 32px;
  }
  .page-hero .meta-row div { display: flex; flex-direction: column; gap: 2px; }
  .page-hero .meta-row strong { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
  .page-hero .meta-row span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

  /* Service page two-column body */
  .svc-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
  }
  @media (max-width: 960px) { .svc-body { grid-template-columns: 1fr; gap: 32px; } }
  .svc-main h2 { font-size: clamp(28px, 3vw, 36px); margin: 48px 0 16px; }
  .svc-main h2:first-child { margin-top: 0; }
  .svc-main h3 { font-size: 20px; margin: 24px 0 10px; }
  .svc-main p { color: var(--fg-2); margin-bottom: 14px; font-size: 16px; }
  .svc-main ul:not(.bare) {
    padding-left: 0;
    list-style: none;
    margin: 16px 0;
  }
  .svc-main ul:not(.bare) li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--fg-2);
    font-size: 16px;
  }
  .svc-main ul:not(.bare) li::before {
    content: ""; position: absolute;
    left: 0; top: 9px; width: 16px; height: 2px;
    background: var(--accent);
  }
  .svc-main .callout {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 22px 24px;
    border-radius: 8px;
    margin: 24px 0;
  }
  .svc-main .callout strong { display: block; font-family: var(--font-display); font-size: 17px; margin-bottom: 6px; color: var(--ink); }
  .svc-main .callout p { color: var(--muted); margin: 0; font-size: 15px; }

  /* Process steps */
  .steps { display: grid; gap: 12px; margin: 24px 0; counter-reset: step; }
  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 20px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
  }
  .step-num {
    width: 32px; height: 32px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    display: grid; place-items: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
  }
  .step h4 { font-size: 16px; font-family: var(--font-display); margin: 4px 0 4px; }
  .step p { color: var(--muted); margin: 0; font-size: 14px; }

  /* Sidebar (sticky info card) */
  .svc-side {
    align-self: start;
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
  }
  @media (max-width: 960px) { .svc-side { position: static; } }
  .info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
  }
  .info-card h3 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin: 0 0 16px;
  }
  .info-rows { display: grid; gap: 12px; }
  .info-row {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--border);
  }
  .info-row:last-child { border-bottom: 0; }
  .info-row .label { color: var(--muted); font-family: var(--font-mono); font-size: 12px; }
  .info-row .value { color: var(--ink); font-weight: 600; text-align: right; }
  .info-row .value.accent { color: var(--accent); }
  .info-card .btn { width: 100%; justify-content: center; margin-top: 16px; }

  .price-card {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--ink);
  }
  .price-card .label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
  }
  .price-card .price {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .price-card .price .from { font-size: 14px; font-family: var(--font-mono); color: rgba(255,255,255,0.6); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; vertical-align: 0.6em; margin-right: 6px; }
  .price-card .price .cur { font-size: 36px; vertical-align: 0.15em; margin-left: 4px; opacity: 0.9; }
  .price-card .note { color: rgba(255,255,255,0.55); font-size: 12px; margin-top: 12px; line-height: 1.5; }
  .price-card .btn { width: 100%; justify-content: center; margin-top: 18px; background: var(--accent); color: #fff; }
  .price-card .btn:hover { background: var(--accent-2); }

  /* Related services */
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  @media (max-width: 800px) { .related-grid { grid-template-columns: 1fr; } }
  .related {
    display: flex; flex-direction: column;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, transform .2s ease;
  }
  .related:hover { border-color: var(--accent); transform: translateY(-2px); }
  .related .eyebrow { font-size: 10px; color: var(--accent); margin-bottom: 8px; }
  .related .eyebrow::before { display: none; }
  .related h4 { font-family: var(--font-display); font-size: 18px; margin: 0 0 6px; letter-spacing: -0.01em; }
  .related p { color: var(--muted); font-size: 13px; margin: 0; }
  .related-arrow { margin-top: auto; padding-top: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--accent); }

  /* Final CTA banner */
  .cta-banner {
    background: var(--ink);
    color: #fff;
    padding: clamp(48px, 6vw, 72px) 0;
    text-align: center;
  }
  .cta-banner h2 { color: #fff; max-width: 760px; margin: 0 auto 16px; }
  .cta-banner p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 28px; font-size: 17px; }
  .cta-banner .btn-primary { background: var(--accent); color: #fff; }
  .cta-banner .btn-primary:hover { background: var(--accent-2); }
  .cta-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
  .cta-banner .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
  .cta-banner .row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

  /* ============= Blog ============= */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

  .blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, border-color .2s ease;
  }
  .blog-card:hover { transform: translateY(-3px); border-color: var(--border-2); }
  .blog-card .cover {
    aspect-ratio: 16/10;
    background: var(--surface-2);
    overflow: hidden;
    position: relative;
  }
  .blog-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
  .blog-card:hover .cover img { transform: scale(1.04); }
  .blog-card .cover-tag {
    position: absolute; left: 16px; top: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
  }
  .blog-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex-grow: 1; }
  .blog-card .meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .blog-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 0 0 10px;
  }
  .blog-card p { color: var(--muted); font-size: 14px; margin: 0; flex-grow: 1; }
  .blog-card .read-more {
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--accent);
  }

  .blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease;
  }
  .blog-featured:hover { border-color: var(--border-2); }
  .blog-featured .cover { aspect-ratio: 16/11; overflow: hidden; }
  .blog-featured .cover img { width: 100%; height: 100%; object-fit: cover; }
  .blog-featured .body { padding: 36px 40px; }
  .blog-featured .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 14px; }
  .blog-featured h3 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.02em; margin: 0 0 14px; line-height: 1.1; }
  .blog-featured p { color: var(--muted); font-size: 16px; margin: 0 0 20px; }
  .blog-featured .read-more { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--accent); }
  @media (max-width: 800px) {
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured .body { padding: 28px; }
  }

  /* Article (single blog post) */
  .article {
    max-width: 760px;
    margin: 0 auto;
  }
  .article header { margin-bottom: 32px; }
  .article header .meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
    display: flex; gap: 16px; flex-wrap: wrap;
  }
  .article header .meta .tag { color: var(--accent); }
  .article header h1 {
    font-size: clamp(32px, 4.4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0 0 20px;
  }
  .article header .lead { color: var(--muted); font-size: 19px; line-height: 1.5; max-width: 620px; }
  .article .cover {
    margin: 32px 0 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
  }
  .article .cover img { width: 100%; height: 100%; object-fit: cover; }
  .article-body { font-size: 17px; color: var(--fg-2); line-height: 1.65; }
  .article-body h2 { font-size: clamp(24px, 2.4vw, 30px); margin: 40px 0 14px; }
  .article-body h3 { font-size: 20px; margin: 28px 0 10px; }
  .article-body p { margin: 0 0 16px; }
  .article-body ul, .article-body ol { padding-left: 24px; margin: 16px 0; }
  .article-body ul li, .article-body ol li { margin-bottom: 8px; }
  .article-body blockquote {
    margin: 24px 0;
    padding: 18px 24px;
    border-left: 3px solid var(--accent);
    background: var(--bg-2);
    border-radius: 0 8px 8px 0;
    color: var(--fg);
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1.4;
  }
  .article-body strong { color: var(--ink); }
  .article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
  .article-body code {
    background: var(--bg-2);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.92em;
  }
  .article-footer {
    margin: 56px 0 0; padding: 28px 0 0;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  }

  /* Legal pages */
  .legal {
    max-width: 760px; margin: 0 auto;
    font-size: 15px; color: var(--fg-2); line-height: 1.6;
  }
  .legal h2 { font-size: 22px; margin: 36px 0 12px; }
  .legal h3 { font-size: 17px; margin: 22px 0 8px; }
  .legal p, .legal address { margin: 0 0 12px; font-style: normal; }
  .legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }



  /* Stretched link for clickable service cards on homepage */
  .service { position: relative; }
  .service-stretched {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
  }
  .service:has(.service-stretched:hover),
  .service:has(.service-stretched:focus-visible) {
    background: var(--surface-2);
  }
  .service:has(.service-stretched:focus-visible) { outline: 2px solid var(--accent); outline-offset: -2px; }

  /* Service card on hover: arrow appears */
  .service::after {
    content: "→";
    position: absolute;
    top: 24px; right: 24px;
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--muted-2);
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease, color .2s ease;
    transform: translateX(-4px);
  }
  .service:has(.service-stretched:hover)::after {
    opacity: 1;
    color: var(--accent);
    transform: translateX(0);
  }
