    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: #1E1B19;
      background: #fcf9f5;
      -webkit-font-smoothing: antialiased;
      letter-spacing: -0.015em;   /* subtle site-wide body-copy tightening (Inter) */
    }
    /* serif sub-headings without their own tracking shouldn't inherit the body value */
    .fav-title, .notes-title { letter-spacing: normal; }
    ::selection { background: #F2D7D3; }

    :root {
      --warm-white: #fcf9f5;
      --cream: #F6EFE3;
      --rose: #e85c67;
      --rose-dark: #d94f5a;
      --marigold: #F7A81E;
      --olive: #5E7444;
      --ink: #1E1B19;
      --muted: #3A332F;
      --max-w: 1160px;
      --px: clamp(20px, 5vw, 40px);
    }

    .container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

    /* Scroll reveal */
    [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    [data-reveal].revealed { opacity: 1; transform: none; }

    /* Marquee */
    @keyframes b29marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee-track { display: inline-block; animation: b29marquee 135s linear infinite; white-space: nowrap; }
    @media (prefers-reduced-motion: reduce) { .marquee-track { animation-play-state: paused; } }

    /* ── HEADER ── */
    .site-header {
      position: sticky; top: 0; z-index: 60;
      background: var(--warm-white);
      border-bottom: 1px solid #f2ece2;
    }
    .header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
    .wordmark { display: inline-flex; align-items: center; text-decoration: none; }
    .wordmark-img { height: 30px; width: auto; display: block; }
    .nav-toggle {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 11px;
    }
    .nav-toggle span { display: block; height: 2px; width: 22px; background: var(--ink); border-radius: 2px; }
    .site-nav { display: flex; align-items: center; gap: 26px; }
    .nav-link { font-weight: 600; font-size: 14px; color: var(--ink); text-decoration: none; transition: opacity .15s; }
    .nav-link:hover { opacity: 0.65; }
    .btn-nav-cta {
      background: var(--rose); color: var(--warm-white);
      font-weight: 700; font-size: 13.5px; letter-spacing: 0.01em;
      padding: 10px 18px; border-radius: 8px; text-decoration: none; transition: background-color .18s;
    }
    .btn-nav-cta:hover { background: var(--rose-dark); }

    /* ── PHOTO PLACEHOLDERS ── */
    .photo-block {
      position: relative; border-radius: 6px; overflow: hidden;
      background: repeating-linear-gradient(135deg, #F2D7D3 0 15px, #EFD0CB 15px 30px);
      display: flex; align-items: flex-end; justify-content: center; padding: 16px;
    }
    .photo-block--4-5 { aspect-ratio: 4/5; }
    .photo-block--4-3 { aspect-ratio: 4/3; }
    .photo-block--16-9 { aspect-ratio: 16/9; }
    .photo-block--1-1 { aspect-ratio: 1/1; }
    .photo-caption {
      font-family: 'DM Mono', monospace; letter-spacing: 0.06em; color: #8a5b56;
      background: rgba(251,246,239,0.9); padding: 6px 12px; border-radius: 20px;
    }
    .photo-caption--lg { font-size: 11.5px; }
    .photo-caption--sm { font-size: 11px; }
    .photo-block img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

    /* ── HERO ── */
    .hero-section { padding: clamp(48px,7vw,84px) 0 0; }
    .hero-topbar {
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      padding-bottom: 22px; margin-bottom: clamp(32px,5vw,52px);
      border-bottom: 1px solid rgba(30,27,25,0.14);
    }
    .hero-topbar-label { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
    .hero-grid { display: flex; flex-wrap: wrap; gap: clamp(32px,5vw,64px); align-items: center; }
    .hero-photo-col { order: 2; flex: 0 0 clamp(280px,40%,460px); min-width: 260px; }
    .hero-copy-col { order: 1; flex: 1 1 380px; min-width: 300px; }
    .eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; }
    .eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #6f8a3f; flex: none; }
    .eyebrow-text { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
    .hero-h1 {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(44px,6.4vw,76px); line-height: 1.0; letter-spacing: -0.035em;
      color: var(--ink); margin: 0 0 26px;
    }
    .hero-body { font-size: clamp(17px,1.8vw,19px); line-height: 1.6; color: var(--muted); max-width: 34rem; margin: 0 0 32px; }
    .hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
    .btn-rose {
      display: inline-block; font-weight: 700; font-size: 15px;
      padding: 14px 26px; border-radius: 9px; background: var(--rose); color: var(--warm-white);
      text-decoration: none; transition: background-color .18s, transform .18s;
    }
    .btn-rose:hover { background: var(--rose-dark); transform: translateY(-2px); }
    .btn-meet { font-weight: 600; font-size: 15px; color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--ink); padding-bottom: 2px; }
    .marquee-band {
      margin-top: clamp(48px,7vw,80px);
      border-top: 1px solid rgba(30,27,25,0.12); border-bottom: 1px solid rgba(30,27,25,0.12);
      padding: 18px 0; overflow: hidden; white-space: nowrap;
    }
    .marquee-item { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 24px; color: var(--olive); padding: 0 26px; letter-spacing: -0.02em; }
    .marquee-sep { color: var(--rose); font-size: 20px; padding: 0 6px; }

    /* ── SHARED SECTION STYLES ── */
    .section-label { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
    .section-h2 {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(30px,4.4vw,46px); line-height: 1.06; letter-spacing: -0.03em;
      color: var(--ink); margin: 0 0 16px;
    }
    .section-intro { font-size: clamp(16px,1.8vw,18px); line-height: 1.6; color: var(--muted); }
    .section-hdr { max-width: 640px; margin: 0 auto clamp(40px,5vw,56px); text-align: center; }

    /* ── INTRO BRIDGE ── */
    .intro-bridge { background: var(--cream); padding: clamp(64px,9vw,110px) 0; }
    .bridge-inner { max-width: 820px; margin: 0 auto; text-align: center; }
    .bridge-quote {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(24px,3.4vw,38px); line-height: 1.32; letter-spacing: -0.02em;
      color: var(--ink);
    }

    /* ── ABOUT ── */
    .about-section { background: var(--warm-white); padding: clamp(64px,9vw,112px) 0; }
    .about-grid { display: flex; flex-wrap: wrap; gap: clamp(32px,5vw,64px); align-items: flex-start; }
    .about-photo-col { flex: 0 0 clamp(260px,36%,420px); min-width: 260px; }
    .about-copy-col { flex: 1 1 380px; min-width: 300px; padding-top: 8px; }
    .about-h2 {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(32px,4.6vw,48px); line-height: 1.06; letter-spacing: -0.03em;
      color: var(--ink); margin: 0 0 24px;
    }
    .about-p { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 0 0 18px; }
    .btn-outline {
      display: inline-block; font-weight: 700; font-size: 15px;
      padding: 13px 24px; border-radius: 9px; background: transparent;
      color: var(--ink); border: 2px solid var(--ink); text-decoration: none;
      transition: background-color .18s, color .18s;
    }
    .btn-outline:hover { background: var(--ink); color: var(--warm-white); }

    /* ── WAYS TO HANG OUT ── */
    .hangout-section { background: var(--cream); padding: clamp(64px,9vw,112px) 0; }
    .hangout-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: clamp(16px,2vw,22px);
    }
    .hangout-card {
      background: var(--warm-white); border: 1px solid rgba(30,27,25,0.1);
      border-radius: 12px; padding: 30px 32px; display: flex; flex-direction: column;
      transition: transform .18s, box-shadow .2s;
    }
    .hangout-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(30,27,25,0.10); }
    .hangout-card--dashed { background: transparent; border: 1px dashed rgba(58,51,47,0.4); }
    .hangout-card--dashed:hover { border-color: rgba(58,51,47,0.7); box-shadow: none; }
    .card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
    .card-title { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 24px; letter-spacing: -0.01em; color: var(--ink); }
    .badge { font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
    .badge--olive { background: var(--olive); color: var(--warm-white); }
    .badge--outline { background: transparent; color: var(--muted); border: 1px solid rgba(58,51,47,0.4); }
    .card-body { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; flex: 1; }
    .btn-rose-sm {
      align-self: flex-start; font-weight: 700; font-size: 14px;
      padding: 11px 20px; border-radius: 8px; background: var(--rose); color: var(--warm-white);
      text-decoration: none; transition: background-color .18s;
    }
    .btn-rose-sm:hover { background: var(--rose-dark); }
    .btn-outline-sm {
      align-self: flex-start; font-weight: 700; font-size: 14px;
      padding: 11px 20px; border-radius: 8px; background: transparent;
      color: var(--ink); border: 2px solid var(--ink); text-decoration: none;
      transition: background-color .18s, color .18s;
    }
    .btn-outline-sm:hover { background: var(--ink); color: var(--warm-white); }
    .btn-ghost-sm {
      align-self: flex-start; font-weight: 700; font-size: 14px;
      padding: 11px 20px; border-radius: 8px; background: transparent;
      color: var(--muted); border: 2px solid rgba(58,51,47,0.35); text-decoration: none;
      transition: border-color .18s;
    }
    .btn-ghost-sm:hover { border-color: var(--muted); }

    /* ── FAVORITES ── */
    .favorites-section { background: var(--warm-white); padding: clamp(64px,9vw,112px) 0; }
    .fav-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(16px,2vw,22px); }
    .fav-card {
      background: var(--cream); border-radius: 12px; overflow: hidden;
      padding: 26px 28px; transition: transform .18s, box-shadow .2s;
    }
    .fav-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(30,27,25,0.09); }
    .fav-photo { margin: -26px -28px 22px; }
    .fav-photo .photo-block { border-radius: 0; }
    .fav-cat { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); margin: 0 0 10px; }
    .fav-title { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 20px; color: var(--ink); margin: 0 0 8px; }
    .fav-body { font-size: 15px; line-height: 1.6; color: var(--muted); }

    /* ── YOUTUBE ── */
    .youtube-section { background: var(--cream); padding: clamp(64px,9vw,112px) 0; }
    .yt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px,2vw,24px); margin-bottom: 36px; }
    .yt-thumb { text-decoration: none; color: var(--ink); display: block; transition: transform .18s; }
    .yt-thumb:hover { transform: translateY(-4px); }
    .yt-thumb-img { border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
    .yt-thumb-img .photo-block { border-radius: 0; }
    .yt-title { font-weight: 600; font-size: 16px; color: var(--ink); }
    .yt-footer { display: flex; flex-direction: column; align-items: center; gap: 14px; }
    .yt-also { font-size: 14px; color: var(--muted); }
    .yt-also a { color: var(--rose); font-weight: 600; text-decoration: none; }
    .yt-also a:hover { text-decoration: underline; }

    /* ── STUDIO NOTES ── */
    .studio-notes-section { background: var(--warm-white); padding: clamp(64px,9vw,112px) 0; }
    .notes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px,2vw,22px); margin-bottom: 36px; }
    .notes-card {
      background: var(--cream); border-radius: 12px; overflow: hidden; padding: 28px 30px;
      display: flex; flex-direction: column; transition: transform .18s, box-shadow .2s;
    }
    .notes-photo { margin: -28px -30px 22px; }
    .notes-photo .photo-block { border-radius: 0; }
    .notes-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(30,27,25,0.09); }
    .notes-issue { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
    .notes-title { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 22px; line-height: 1.15; color: var(--ink); margin: 0 0 12px; }
    .notes-preview { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 20px; flex: 1; }
    .notes-link { font-weight: 700; font-size: 14px; color: var(--rose); text-decoration: none; border-bottom: 2px solid transparent; align-self: flex-start; padding-bottom: 1px; transition: border-bottom-color .18s; }
    .notes-link:hover { border-bottom-color: var(--rose); }

    /* ── CTA BAND ── */
    .cta-band { background: var(--rose); padding: clamp(64px,9vw,110px) 0; }
    .cta-band-layout {
      max-width: 1000px; margin: 0 auto;
      display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
      gap: clamp(28px,5vw,60px); align-items: center;
    }
    .cta-band-cover img {
      display: block; width: 100%; max-width: 380px; margin: 0 auto;
      border-radius: 0; box-shadow: 0 24px 60px rgba(30,27,25,0.28);
    }
    .cta-band-inner { text-align: left; }
    .cta-band .email-form { justify-content: flex-start; }
    .cta-band-inner .cta-band-body { margin-left: 0; margin-right: 0; }
    .cta-band h2 {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(32px,4.6vw,50px); line-height: 1.04; letter-spacing: -0.03em;
      color: var(--warm-white); margin: 0 0 18px;
    }
    .cta-band-body { font-size: clamp(16px,1.9vw,18px); line-height: 1.6; color: var(--warm-white); margin: 0 auto 30px; max-width: 34rem; }
    .email-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 14px; }
    .email-input {
      flex: 1 1 260px; max-width: 340px; padding: 14px 16px;
      font-size: 16px; font-family: 'Inter', sans-serif;
      border-radius: 9px; border: 2px solid transparent;
      background: var(--warm-white); color: var(--ink);
    }
    .email-input:focus { outline: none; border-color: rgba(30,27,25,0.3); }
    .btn-email-sub {
      font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
      padding: 14px 26px; border-radius: 9px; border: 0; cursor: pointer;
      background: var(--warm-white); color: var(--rose); transition: background-color .18s;
    }
    .btn-email-sub:hover { background: var(--cream); }
    .cta-fine { font-size: 13.5px; opacity: 0.9; color: var(--warm-white); }

    /* ── INSTAGRAM ── */
    .instagram-section { background: var(--warm-white); padding: clamp(64px,9vw,112px) 0; }
    .ig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 36px; }
    .ig-post {
      display: block; aspect-ratio: 1/1; border-radius: 10px; overflow: hidden;
      background: repeating-linear-gradient(135deg, #F2D7D3 0 12px, #EFD0CB 12px 24px);
      transition: opacity .18s;
    }
    .ig-post:hover { opacity: 0.8; }

    /* ── FOOTER ── */
    .site-footer { background: var(--olive); color: var(--warm-white); padding: clamp(56px,7vw,80px) 0 40px; }
    .footer-tagline {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(28px,4.6vw,48px); line-height: 1.08; letter-spacing: -0.025em;
      text-align: center; margin: 0 0 clamp(40px,5vw,56px); color: var(--warm-white);
    }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 32px; }
    .footer-col { display: flex; flex-direction: column; gap: 10px; }
    .footer-col-head { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 6px; opacity: 0.75; color: var(--warm-white); }
    .footer-link { color: var(--warm-white); font-weight: 500; font-size: 15px; text-decoration: none; transition: color .18s; }
    .footer-link:hover { color: var(--cream); }
    .footer-email-form { display: flex; gap: 8px; }
    .footer-email-input {
      flex: 1 1 auto; min-width: 0; padding: 11px 13px;
      font-size: 15px; font-family: 'Inter', sans-serif;
      border-radius: 8px; border: 2px solid transparent;
      background: var(--warm-white); color: var(--ink);
    }
    .footer-email-input:focus { outline: none; }
    .btn-footer-join {
      font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
      padding: 11px 18px; border-radius: 8px; border: 0; cursor: pointer;
      background: var(--rose); color: var(--warm-white); transition: background-color .18s;
    }
    .btn-footer-join:hover { background: var(--rose-dark); }
    .footer-bottom {
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
      margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18);
    }
    .footer-badge { font-family: 'DM Serif Display', serif; font-size: 17px; letter-spacing: 0.04em; border: 2px solid var(--warm-white); border-radius: 8px; padding: 2px 9px; color: var(--warm-white); }
    .footer-legal { font-size: 13.5px; opacity: 0.9; color: var(--warm-white); }
    .footer-legal a { color: var(--warm-white); }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .nav-toggle { display: inline-flex; }
      .site-nav {
        position: fixed; top: 64px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--warm-white);
        border-bottom: 1px solid rgba(30,27,25,0.1);
        padding: 8px 24px 20px;
        box-shadow: 0 12px 24px rgba(30,27,25,0.08);
        transform: translateY(-135%); transition: transform .25s ease; z-index: 40;
      }
      .site-nav.open { transform: translateY(0); }
      .nav-link { font-size: 15px; padding: 13px 0; border-bottom: 1px solid rgba(30,27,25,0.07); }
      .btn-nav-cta { margin-top: 8px; text-align: center; }
      .hangout-grid { grid-template-columns: 1fr; }
      .cta-band-layout { grid-template-columns: 1fr; gap: clamp(24px,6vw,36px); }
      .cta-band-cover { order: -1; }
      .cta-band-cover img { max-width: 300px; }
      .cta-band-inner { text-align: center; }
      .cta-band .email-form { justify-content: center; }
      .cta-band-inner .cta-band-body { margin-left: auto; margin-right: auto; }
    }
    @media (max-width: 600px) {
      .hero-photo-col { order: 1; flex: 1 1 100%; }
      .hero-copy-col { order: 2; flex: 1 1 100%; min-width: 0; }
    }

    /* ── SUBPAGES (/about, /audit) ── */
    .page-hero { padding: clamp(52px,7vw,92px) 0 clamp(28px,4vw,44px); }
    .page-hero .container { max-width: 940px; }
    /* Narrow the hero to match a page's content column so left edges align */
    .page-hero--narrow .container { max-width: 640px; }
    .page-hero--prose .container { max-width: 720px; }
    .page-badge {
      display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--rose); background: #f7dee0;
      padding: 6px 14px; border-radius: 100px; margin: 0 0 16px;
    }
    .page-h1 {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(40px,6vw,68px); line-height: 1.02; letter-spacing: -0.035em;
      color: var(--ink); margin: 12px 0 0;
    }
    .page-lead { font-size: clamp(18px,2.1vw,21px); line-height: 1.6; color: var(--muted); max-width: 40rem; margin: 22px 0 0; }
    /* Contact's intro flows into a form (not more prose), so it reads smaller */
    .contact-lead { font-size: clamp(15px,1.6vw,17px); max-width: 34rem; }
    .prose-section { padding: clamp(24px,4vw,44px) 0; }
    .prose-section .container { max-width: 720px; }
    .prose-h2 {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(26px,3.4vw,34px); letter-spacing: -0.02em; color: var(--ink); margin: 0 0 14px;
    }
    .prose-h2--lg { font-size: clamp(30px,4vw,40px); }
    .prose p { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 0 0 18px; }
    .prose p:last-child { margin-bottom: 0; }
    .prose a { color: var(--rose); font-weight: 600; }
    .check-list + p, .belief-list + p { margin-top: 22px; }
    .belief-list, .check-list { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 13px; }
    .belief-list li, .check-list li { position: relative; padding-left: 28px; font-size: 18px; line-height: 1.55; color: var(--muted); }
    .belief-list li::before { content: '✻'; position: absolute; left: 0; top: 1px; color: var(--rose); }
    .check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--olive); }
    .about-portrait { margin: clamp(24px,4vw,40px) auto 0; max-width: 520px; }
    .prose-section--cream { background: var(--cream); padding: clamp(40px,6vw,64px) 0; margin: clamp(16px,3vw,28px) 0; }
    .waitlist { background: var(--rose); padding: clamp(52px,8vw,96px) 0; text-align: center; }
    .waitlist .container { max-width: 620px; }
    .waitlist h2 {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(30px,4.4vw,46px); line-height: 1.05; letter-spacing: -0.03em;
      color: var(--warm-white); margin: 0 0 14px;
    }
    .waitlist p { color: var(--warm-white); font-size: clamp(16px,1.9vw,18px); line-height: 1.6; margin: 0 auto 26px; max-width: 34rem; }
    .waitlist .email-form { justify-content: center; }
    .waitlist .cta-fine { font-size: 12px; }

    /* ── LEGAL PAGES (/privacy, /terms) ── */
    .legal-updated { font-size: 14px; color: var(--muted); opacity: 0.8; margin: 22px 0 0; }
    .legal-section { padding: clamp(20px,3vw,32px) 0; }
    .legal-section .container { max-width: 720px; }
    .legal-section:not(:last-of-type) { border-bottom: 1px solid rgba(30,27,25,0.08); }
    .legal-section h2 {
      font-family: 'DM Serif Display', serif; font-weight: 400;
      font-size: clamp(22px,2.8vw,28px); letter-spacing: -0.02em; color: var(--ink); margin: 0 0 14px;
    }
    .legal-section p, .legal-section li { font-size: 16.5px; line-height: 1.7; color: var(--muted); }
    .legal-section p { margin: 0 0 16px; }
    .legal-section p:last-child { margin-bottom: 0; }
    .legal-section ul { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 8px; }
    .legal-section a { color: var(--rose); }

    /* ── COOKIE BANNER ── */
    .cookie-banner {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
      background: var(--ink); color: var(--warm-white);
      box-shadow: 0 -8px 24px rgba(30,27,25,0.18);
    }
    .cookie-banner-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 16px var(--px);
      display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between;
    }
    .cookie-banner-text { font-size: 14px; line-height: 1.5; color: var(--warm-white); margin: 0; flex: 1 1 260px; }
    .cookie-banner-text a { color: var(--warm-white); text-decoration: underline; }
    .btn-cookie-accept {
      font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
      padding: 10px 20px; border-radius: 8px; border: 0; cursor: pointer; flex: none;
      background: var(--rose); color: var(--warm-white); transition: background-color .18s;
    }
    .btn-cookie-accept:hover { background: var(--rose-dark); }

    /* ── CONTACT PAGE (/contact) ── */
    .contact-section { padding: clamp(20px,3vw,36px) 0 clamp(56px,8vw,88px); }
    .contact-section .container { max-width: 640px; }
    .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
    .form-status { padding: 14px 18px; border-radius: 10px; font-size: 15px; font-weight: 600; line-height: 1.5; margin: 0 0 24px; }
    .form-status--ok { background: #e7f0dc; color: #3f5220; border: 1px solid rgba(94,116,68,0.4); }
    .form-status--err { background: #f7dee0; color: #a83f4b; border: 1px solid rgba(232,92,103,0.4); }
    .contact-form { display: grid; gap: 20px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    @media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
    .form-field { display: grid; gap: 8px; }
    .form-label { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--muted); }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 13px 15px;
      font-size: 16px; font-family: 'Inter', sans-serif; color: var(--ink);
      background: var(--warm-white); border: 1.5px solid rgba(30,27,25,0.16); border-radius: 9px;
      transition: border-color .18s, box-shadow .18s;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(232,92,103,0.14);
    }
    .form-textarea { min-height: 160px; resize: vertical; line-height: 1.5; }
    .form-select { appearance: none; cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233A332F' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
    }
    .btn-contact-submit {
      justify-self: start; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
      padding: 14px 30px; border-radius: 9px; border: 0; cursor: pointer;
      background: var(--rose); color: var(--warm-white); transition: background-color .18s, transform .18s;
    }
    .btn-contact-submit:hover { background: var(--rose-dark); transform: translateY(-2px); }
    .contact-alt { margin-top: 8px; text-align: center; }
    .contact-alt-sep {
      display: flex; align-items: center; gap: 16px; margin: clamp(36px,5vw,52px) 0 clamp(24px,3vw,32px);
      color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    }
    .contact-alt-sep::before, .contact-alt-sep::after { content: ''; flex: 1; height: 1px; background: rgba(30,27,25,0.12); }
    .contact-alt p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 6px; }
    .contact-alt a { color: var(--rose); font-weight: 600; text-decoration: none; }
    .contact-alt a:hover { text-decoration: underline; }
    .contact-socials { margin-top: 20px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
    .contact-socials a { font-weight: 600; font-size: 14px; color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(30,27,25,0.25); }
    .contact-socials a:hover { color: var(--rose); border-color: var(--rose); }
