
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --purple: #111010;
    --purple-deep: #141312;
    --yellow: #FFE600;
    --yellow-pale: #FFFBE0;
    --black: #111010;
    --gray: #6B6B6B;
    --off-white: #FAFAF7;
  }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--yellow-pale) 26%, #FFF16B 52%, var(--yellow-pale) 78%, var(--off-white) 100%);
    z-index: -1;
    pointer-events: none;
  }

  /* ── STICKY HEADER ── */
  #sticky-header {
    position: fixed; top: 1.2rem; right: clamp(1rem, 5vw, 3rem);
    z-index: 90; display: flex; align-items: stretch; gap: 0.6rem;
    opacity: 0; transform: translateY(-8px);
    transition: opacity 0.45s, transform 0.45s;
    pointer-events: none;
  }
  #sticky-header.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
  #lang-toggle {
    height: 42px; padding: 0 0.4rem;
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    background: transparent;
    border: none;
  }
  .sticky-btn {
    height: 42px; padding: 0 0.95rem;
    border: 1px solid var(--black);
    background: var(--off-white);
    font-family: 'DM Sans', sans-serif; font-size: 0.74rem; font-weight: 500;
    letter-spacing: 0.1em; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    text-transform: none; color: var(--black); cursor: pointer;
    box-shadow: 3px 3px 0 0 var(--yellow);
    transition: box-shadow 0.2s ease, background-color 0.2s, color 0.2s;
    white-space: nowrap; -webkit-tap-highlight-color: transparent;
  }
  .sticky-btn:hover, .sticky-btn:active { box-shadow: 0 0 0 0 var(--yellow); }
  .lang-btn {
    font-family: inherit; font-size: 0.74rem; font-weight: 400;
    letter-spacing: 0.1em; background: none; border: none; cursor: pointer;
    color: rgba(17,16,16,0.35); padding: 0; line-height: 1;
    transition: color 0.15s; -webkit-tap-highlight-color: transparent;
    min-width: 22px; height: 100%; display: flex; align-items: center; justify-content: center;
  }
  .lang-btn:hover { color: var(--black); }
  .lang-btn.active { color: var(--black); font-weight: 600; }
  .lang-sep { font-size: 0.66rem; color: rgba(17,16,16,0.2); line-height: 1; }
  .sticky-btn:hover, .sticky-btn:active { box-shadow: 0 0 0 0 var(--yellow); }

  /* ── SIDE NAV ── */
  #side-nav {
    position: fixed; right: 0.8rem; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 10px;
    z-index: 89; opacity: 0; transition: opacity 0.5s;
  }
  #side-nav.visible { opacity: 1; }
  .nav-item {
    display: flex; align-items: center; justify-content: flex-end; gap: 8px;
    cursor: pointer; padding: 6px 0; -webkit-tap-highlight-color: transparent;
  }
  .nav-item-label {
    font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--black); opacity: 0; transform: translateX(4px);
    transition: opacity 0.2s, transform 0.2s; white-space: nowrap; pointer-events: none;
  }
  .nav-item:hover .nav-item-label { opacity: 0.5; transform: translateX(0); }
  .nav-line {
    height: 2px; background: var(--purple); width: 12px; opacity: 0.25;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s; border-radius: 1px;
  }
  .nav-item.active .nav-line { width: 24px; opacity: 0.9; }
  .nav-item:hover .nav-line { width: 20px; opacity: 0.55; }
  @media (max-width: 768px) { #side-nav { display: none; } }

  /* ── HERO ── */
  #hero {
    min-height: 100vh; min-height: 100svh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 0 clamp(1.5rem, 7vw, 10rem);
  }
  .hero-headline {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(4.5rem, 13vw, 14rem); line-height: 0.88;
    letter-spacing: -0.055em; color: var(--black); margin-bottom: 1.6rem;
  }
  .hero-sub {
    font-family: 'DM Sans', sans-serif; font-weight: 400;
    font-size: clamp(1.05rem, 3vw, 2rem); color: var(--purple);
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, transparent 58%, var(--yellow) 58%, var(--yellow) 94%, transparent 94%);
    padding: 0 0.35em;
  }

  /* ── SECTIONS ── */
  section { padding: 5rem clamp(1.5rem, 7vw, 10rem); }
  .section-label {
    font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--purple); margin-bottom: 2rem; display: block;
  }

  /* ── FLIP CARDS ── */
  #questions { padding-top: 6rem; padding-bottom: 6rem; display: flex; flex-direction: column; gap: 3rem; }
  .flip-wrap { display: flex; }
  .flip-wrap.left  { justify-content: flex-start; }
  .flip-wrap.right { justify-content: flex-end; }
  .flip-card {
    position: relative; width: min(560px, 90vw);
    display: grid; align-items: center;
    cursor: pointer; -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  }
  .flip-front, .flip-back {
    grid-area: 1 / 1;
    transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease;
  }
  .flip-front { padding: 1.4rem 0; border-bottom: 2px solid rgba(17,16,16,0.18); }
  .flip-card.flipped .flip-front {
    opacity: 0; transform: translateY(-10px); filter: blur(3px); pointer-events: none;
  }
  .flip-back {
    position: relative; padding: 2.2rem 2.4rem;
    opacity: 0; transform: translateY(10px); filter: blur(3px); pointer-events: none;
    display: flex; flex-direction: column; justify-content: center;
  }
  .flip-back::before {
    content: '';
    position: absolute; inset: -1.5rem -1rem;
    background:
      radial-gradient(ellipse 72% 80% at 50% 50%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.45) 48%, rgba(255,255,255,0) 74%),
      radial-gradient(ellipse 88% 88% at 42% 46%, rgba(17,16,16,0.22) 0%, rgba(17,16,16,0.08) 52%, rgba(17,16,16,0) 78%);
    filter: blur(8px);

    z-index: -1; pointer-events: none;
  }
  .flip-card.flipped .flip-back {
    opacity: 1; transform: translateY(0); filter: blur(0); pointer-events: auto;
  }
  .flip-front p {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: clamp(1.2rem, 3.4vw, 2.1rem); color: var(--black);
    line-height: 1.16; letter-spacing: -0.03em;
  }
  .flip-hint { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(17,16,16,0.4); margin-top: 0.7rem; display: block; }
  .flip-back p {
    font-family: 'DM Sans', sans-serif; font-weight: 400;
    font-size: clamp(0.92rem, 2.2vw, 1.05rem); color: var(--black);
    line-height: 1.72; text-align: center; letter-spacing: 0.005em;
  }
  @media (prefers-reduced-motion: reduce) {
    .flip-front, .flip-back { transition: opacity 0.01s linear; filter: none !important; transform: none !important; }
  }

  /* ── ABOUT ── */
  #about { padding-top: 6rem; }
  #questions { border-top: 1px solid rgba(17,16,16,0.12); }
  .about-headline {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(1.9rem, 5vw, 4.2rem); line-height: 1.02;
    letter-spacing: -0.045em; max-width: 18ch; margin-bottom: 3rem;
  }
  .about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3.5rem; max-width: 900px; }
  .about-body p { font-size: clamp(0.95rem, 1.5vw, 1.12rem); line-height: 1.78; color: #2A2A2A; font-weight: 400; }
  .about-body p:first-child { grid-column: 1 / -1; }
  .highlight { background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%); font-weight: 500; }
  @media (max-width: 640px) { .about-body { grid-template-columns: 1fr; } .about-body p:first-child { grid-column: 1; } }

  /* ── PROCESS ── */
  #process { border-top: 0.5px solid rgba(0,0,0,0.1); padding-top: 6rem; padding-bottom: 6rem; }
  .process-headline {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(1.9rem, 5vw, 4.2rem); line-height: 1.02;
    letter-spacing: -0.045em; max-width: 18ch; margin-bottom: 3rem;
  }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 2rem; }
  .process-step { padding: 1.5rem 0 0; border-top: 2.5px solid var(--yellow); }
  .step-num {
    font-family: 'Fraunces', serif; font-weight: 900;
    font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.9; color: var(--black);
    opacity: 0.07; display: block; margin-bottom: 1rem; letter-spacing: -0.03em; font-optical-sizing: auto;
  }
  .step-title {
    font-family: 'Fraunces', serif; font-weight: 900;
    font-size: clamp(1rem, 1.8vw, 1.35rem); letter-spacing: -0.01em;
    margin-bottom: 0.7rem; color: var(--black); font-optical-sizing: auto;
  }
  .step-body { font-size: clamp(0.88rem, 1.2vw, 1rem); line-height: 1.75; color: #555; font-weight: 300; }
  @media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; } }
  @media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; gap: 2rem; } }

  /* ── WHAT WE'LL BE DOING ── */
  #what-we-do { border-top: 1px solid rgba(17,16,16,0.12); padding-top: 6rem; padding-bottom: 6rem; }
  .what-we-do-headline {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(1.9rem, 5vw, 4.2rem); line-height: 1.02;
    letter-spacing: -0.045em; max-width: 18ch; margin-bottom: 3rem;
  }
  .what-we-do-list { display: flex; flex-direction: column; gap: 1.6rem; max-width: 760px; }
  .what-we-do-item {
    font-size: clamp(0.95rem, 1.5vw, 1.12rem); line-height: 1.78;
    color: #2A2A2A; font-weight: 400; max-width: 600px;
  }
  .what-we-do-item:nth-child(1) { margin-left: 0; }
  .what-we-do-item:nth-child(2) { margin-left: 2.5rem; }
  .what-we-do-item:nth-child(3) { margin-left: 1.2rem; }
  .what-we-do-item:nth-child(4) { margin-left: 3.5rem; }
  .what-we-do-closing {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem); letter-spacing: -0.02em;
    margin-top: 3.5rem; max-width: 36ch; color: var(--black);
    text-align: center; margin-left: auto; margin-right: auto;
  }
  @media (max-width: 640px) {
    .what-we-do-list { gap: 1.2rem; }
    .what-we-do-item { margin-left: 0 !important; max-width: none; }
  }

  /* ── ABOUT ME ── */
  #about-me { border-top: 1px solid rgba(17,16,16,0.12); padding-top: 6rem; padding-bottom: 6rem; }
  .about-me-body { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3.5rem; max-width: 900px; }
  .about-me-body p { font-size: clamp(0.95rem, 1.5vw, 1.12rem); line-height: 1.78; color: #2A2A2A; font-weight: 400; }
  @media (max-width: 640px) { .about-me-body { grid-template-columns: 1fr; } }

  /* ── JESTER QUESTIONS ── */
  #jester-questions { touch-action: pan-y; }
  .jester-inner { max-width: 680px; }
  .jester-display { min-height: 130px; display: flex; flex-direction: column; justify-content: center; margin: 2rem 0 1.2rem; }
  .jester-q {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(1.6rem, 4.5vw, 3.2rem); line-height: 1.08;
    letter-spacing: -0.045em; color: var(--black);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .jester-counter { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple); margin-top: 0.9rem; display: block; }
  .jester-controls { display: flex; align-items: center; gap: 1.4rem; margin-top: 1.5rem; }
  .jester-arrow {
    flex-shrink: 0; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--off-white); color: var(--black);
    border: 1px solid var(--black); border-radius: 50%;
    font-size: 1.1rem; line-height: 1; cursor: pointer;
    box-shadow: 3px 3px 0 0 var(--yellow);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  }
  .jester-arrow:hover, .jester-arrow:active { box-shadow: 0 0 0 0 var(--yellow); transform: translate(2px, 2px); }
  .jester-arrow:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
  .swipe-hint { display: flex; align-items: center; gap: 10px; opacity: 0.4; animation: swipe-breathe 2.8s ease-in-out infinite; }
  .swipe-line { display: block; width: 28px; height: 2px; background: var(--purple); }
  .swipe-hint small { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple); }
  @keyframes swipe-breathe { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.55; } }
  @media (max-width: 480px) { .swipe-hint { display: none; } .jester-controls { justify-content: space-between; width: 100%; max-width: 220px; } }
  @media (prefers-reduced-motion: reduce) { .swipe-hint { animation: none; } }

  /* ── WHO THIS IS FOR ── */
  #audience { border-top: 2px solid rgba(17,16,16,0.15); }
  .audience-headline {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(1.9rem, 5vw, 4.2rem); line-height: 1.02;
    letter-spacing: -0.045em; max-width: 18ch; margin-bottom: 3rem;
  }
  .audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .acard { border-left: 4px solid var(--purple); padding: 1.4rem 1.4rem 1.4rem 1.6rem; background: rgba(255,255,255,0.55); }
  .acard-label {
    display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--purple); margin-bottom: 0.9rem;
  }
  .acard-body {
    font-family: 'DM Sans', sans-serif; font-weight: 400;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem); line-height: 1.68; color: #1E1E1E;
  }
  @media (max-width: 640px) { .audience-grid { grid-template-columns: 1fr; } }


  /* ── CTA (dark band) ── */
  #cta {
    text-align: center; padding-top: 8rem; padding-bottom: 8rem;
    background: var(--purple-deep); color: var(--yellow);
  }
  .cta-headline {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(3.5rem, 12vw, 9rem); line-height: 0.9;
    letter-spacing: -0.06em; color: var(--yellow); margin-bottom: 1.6rem;
  }
  .cta-sub { font-size: clamp(0.95rem, 2vw, 1.15rem); color: rgba(255,251,224,0.75); font-weight: 400; line-height: 1.72; max-width: 36ch; margin: 0 auto 2.8rem; white-space: pre-line; }
  .cta-btn {
    display: inline-block; background: white; color: var(--black);
    font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.95rem;
    letter-spacing: 0.05em; padding: 0.95rem 2.2rem; border: 1px solid var(--black);
    box-shadow: 5px 5px 0 0 var(--yellow);
    transition: box-shadow 0.2s ease, background-color 0.2s, color 0.2s; cursor: pointer;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation; min-height: 48px;
  }
  .cta-btn:hover, .cta-btn:active { box-shadow: 0 0 0 0 var(--yellow); }

  /* ── FOOTER ── */
  footer {
    background: var(--black); color: rgba(255,255,255,0.55);
    padding: 3.5rem clamp(1.5rem, 7vw, 10rem);
    display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap;
  }
  .footer-left p { font-size: 0.82rem; line-height: 1.9; font-weight: 400; }
  .footer-left strong {
    font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 700;
    letter-spacing: -0.03em; color: var(--yellow); display: block; margin-bottom: 0.4rem;
  }
  .footer-right { display: flex; gap: 1.8rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-right a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
  .footer-right a:hover { color: var(--yellow); }
  @media (max-width: 640px) { footer { flex-direction: column; align-items: flex-start; } }

  /* ── COOKIE BANNER ── */
  #cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: rgba(250,250,247,0.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--purple);
    padding: 1rem clamp(1.5rem, 7vw, 6rem);
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  #cookie-banner.hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
  #cookie-banner p { font-size: 0.78rem; color: var(--gray); font-weight: 400; line-height: 1.55; max-width: 55ch; flex: 1; }
  .cookie-actions { display: flex; gap: 0.7rem; flex-shrink: 0; }
  .cookie-btn {
    font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1rem;
    border: 1px solid var(--black); background: transparent; color: var(--black);
    cursor: pointer; transition: background 0.15s, color 0.15s;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation; min-height: 44px; min-width: 72px;
  }
  .cookie-btn:hover, .cookie-btn:active { background: var(--yellow); color: var(--black); }
  .cookie-btn.primary { background: transparent; color: var(--black); border-color: var(--black); }
  .cookie-btn.primary:hover, .cookie-btn.primary:active { background: var(--yellow); color: var(--black); }
  @media (max-width: 640px) { #cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; } }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; background: rgba(17,16,16,0.78); z-index: 300;
    display: flex; align-items: center; justify-content: center; padding: 1.5rem;
    opacity: 0; pointer-events: none; transition: opacity 0.28s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--off-white); max-width: 480px; width: 100%;
    padding: clamp(1.8rem, 5vw, 3rem); position: relative;
    border: 2px solid var(--black);
    transform: translateY(16px); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    max-height: 90vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-close {
    position: absolute; top: 1rem; right: 1.2rem; background: none; border: none;
    font-size: 1.8rem; cursor: pointer; color: var(--gray); line-height: 1;
    transition: color 0.15s; -webkit-tap-highlight-color: transparent;
    min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
  }
  .modal-close:hover { color: var(--black); }
  .modal-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.9rem; display: block; }
  .modal h3 {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(1.7rem, 4vw, 2.2rem); line-height: 1.02;
    letter-spacing: -0.045em; margin-bottom: 0.7rem;
  }
  .modal > p { font-size: 0.92rem; line-height: 1.7; color: var(--gray); font-weight: 400; margin-bottom: 1.8rem; }
  .modal-form { display: flex; flex-direction: column; gap: 0.9rem; }
  .modal-form input, .modal-form textarea {
    width: 100%; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 400;
    padding: 0.85rem 1rem; border: 1.5px solid rgba(17,16,16,0.2); background: white; color: var(--black);
    outline: none; transition: border-color 0.2s; resize: none;
    border-radius: 0; -webkit-appearance: none; appearance: none;
  }
  .modal-form input:focus, .modal-form textarea:focus { border-color: var(--purple); }
  .modal-form textarea { height: 88px; }
  .modal-submit {
    align-self: flex-start; background: var(--black); color: white;
    font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.88rem;
    letter-spacing: 0.06em; padding: 0.85rem 1.8rem; border: 1px solid var(--black);
    box-shadow: 4px 4px 0 0 var(--yellow);
    cursor: pointer; transition: box-shadow 0.2s ease, color 0.2s;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation; min-height: 48px;
  }
  .modal-submit:hover, .modal-submit:active { box-shadow: 0 0 0 0 var(--yellow); color: var(--yellow); }

  /* ── LEGAL PAGES (imprint / privacy) ── */
  .legal-page {
    max-width: 720px; margin: 0 auto;
    padding: clamp(4rem, 10vh, 7rem) clamp(1.4rem, 6vw, 3rem) 6rem;
  }
  .legal-back {
    display: inline-block; margin-bottom: 2.5rem;
    font-size: 0.8rem; letter-spacing: 0.08em; color: var(--gray);
    text-decoration: none; border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  .legal-back:hover { color: var(--black); border-color: var(--yellow); }
  .legal-title {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1.05;
    margin: 0.6rem 0 3rem;
  }
  .legal-block { margin-bottom: 4rem; padding-top: 2.5rem; border-top: 1px solid rgba(17,16,16,0.14); }
  .legal-block:first-of-type { border-top: none; padding-top: 0; }
  .legal-block h2 {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 1.6rem;
  }
  .legal-block h3 {
    font-size: 0.86rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; margin: 1.8rem 0 0.5rem;
  }
  .legal-block h4 { font-size: 0.95rem; font-weight: 600; margin: 1.2rem 0 0.4rem; }
  .legal-block p { font-size: 0.98rem; line-height: 1.75; color: var(--gray); }
  .legal-block p strong, .legal-block p a { color: var(--black); }
  .legal-note {
    margin-top: 3rem; padding: 1rem 1.2rem;
    border: 1px dashed rgba(17,16,16,0.3);
    font-size: 0.82rem; line-height: 1.6; color: var(--gray);
  }
