/* Generated by scripts/extract-css.py — do not edit directly.
 * Source of truth is the inline <style> block in index.html, which the six
 * main pages carry verbatim. Re-run the script after changing it.
 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --plum: #2A1B34;
    --plum-mid: #3E2A4E;
    --plum-soft: #5A4169;
    --coral: #F0553C;
    --coral-light: #FF8163;
    --coral-deep: #C4351F;
    --cream: #F7F1E6;
    --cream-dark: #EDE4D3;
    --white: #FFFFFF;
    --text-dark: #2A1B34;
    --text-mid: #5C5064;
    --text-light: #8B7F94;
    --line: #E4DAC8;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --shadow-sm: 0 2px 10px rgba(42,27,52,0.06);
    --shadow-md: 0 10px 34px rgba(42,27,52,0.10);
    --shadow-lg: 0 24px 60px rgba(42,27,52,0.16);
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--cream); color: var(--text-dark); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1 !important; transform: none !important; } *, *::before, *::after { transition-duration: .01ms !important; } }

  .container { max-width: 1080px; margin: 0 auto; }
  section { padding: clamp(4rem, 8vw, 7rem) 2rem; }
  .skip { position: absolute; left: -999px; top: 0; background: var(--coral); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0; z-index: 500; font-weight: 600; }
  .skip:focus { left: 0; }
  :focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

  .eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 0.9rem; }
  .section-title { font-family: var(--serif); font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 600; color: var(--plum); line-height: 1.18; margin-bottom: 1rem; letter-spacing: -0.01em; }
  .section-title em { font-style: italic; color: var(--coral); }
  .section-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 580px; line-height: 1.75; margin-bottom: 3rem; }
  .divider { width: 52px; height: 3px; background: var(--coral); border-radius: 2px; margin: 1.25rem 0; }

  /* BUTTONS */
  .btn-primary { background: var(--coral); color: #2A1B34; padding: 15px 32px; border-radius: 6px; font-family: var(--sans); font-size: 15px; font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; transition: background .2s, transform .18s, box-shadow .2s; box-shadow: 0 10px 26px -10px rgba(240,85,60,.6); }
  .btn-primary:hover { background: var(--coral-light); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(240,85,60,.7); }
  .btn-ghost { border: 1.5px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); padding: 15px 30px; border-radius: 6px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: .5rem; transition: border-color .2s, color .2s, background .2s; }
  .btn-ghost:hover { border-color: var(--coral); color: var(--coral-light); }
  .btn-ghost.dark { border-color: var(--line); color: var(--text-dark); }
  .btn-ghost.dark:hover { border-color: var(--coral); color: var(--coral-deep); }

  /* NAV */
  nav { position: sticky; top: 0; z-index: 100; background: rgba(42,27,52,0.92); backdrop-filter: saturate(150%) blur(12px); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 78px; transition: box-shadow .3s, height .3s; }
  nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.28); }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo svg { width: 42px; height: 42px; border-radius: 11px; }
  .nav-logo .lt { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--cream); line-height: 1.05; }
  .nav-logo .lt small { display: block; font-family: var(--sans); font-weight: 400; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(247,241,230,0.55); margin-top: 2px; }
  .nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
  .nav-links > li > a { color: rgba(247,241,230,0.78); font-size: 14px; font-weight: 400; letter-spacing: 0.02em; transition: color .2s; cursor: pointer; }
  .nav-links > li > a:hover { color: var(--coral-light); }
  .nav-cta { background: var(--coral); color: #2A1B34 !important; padding: 9px 20px; border-radius: 6px; font-weight: 600 !important; transition: background .2s; }
  .nav-cta:hover { background: var(--coral-light); }
  .has-dropdown { position: relative; }
  .nav-dropdown { display: none; position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%); min-width: 300px; }
  .has-dropdown:hover .nav-dropdown, .has-dropdown:focus-within .nav-dropdown { display: block; }
  .nav-dropdown-inner { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
  .nav-drop-item { display: flex; flex-direction: column; gap: 2px; padding: 12px 16px; border-bottom: 1px solid var(--line); transition: background .15s; }
  .nav-drop-item:last-child { border-bottom: none; }
  .nav-drop-item:hover { background: var(--cream); }
  .nav-drop-item.feat { background: rgba(240,85,60,0.07); }
  .drop-label { font-size: 13px; font-weight: 600; color: var(--plum); }
  .nav-drop-item.feat .drop-label { color: var(--coral-deep); }
  .drop-desc { font-size: 11px; color: var(--text-light); }
  .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: .3s; border-radius: 2px; }

  /* HERO */
  .hero { background: var(--plum); color: var(--cream); padding: clamp(4.5rem, 8vw, 7rem) 2rem 0; text-align: center; position: relative; overflow: hidden; }
  .hero-glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; top: -320px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(240,85,60,0.55), rgba(240,85,60,0) 62%); pointer-events: none; }
  .hero-glow2 { position: absolute; width: 420px; height: 420px; border-radius: 50%; bottom: -160px; right: -120px; background: radial-gradient(circle, rgba(90,65,105,0.7), transparent 65%); pointer-events: none; }
  .hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding-bottom: clamp(4rem, 8vw, 6.5rem); }
  .hero-eyebrow { display: inline-block; font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral-light); margin-bottom: 1.6rem; border: 1px solid rgba(240,85,60,0.45); padding: 7px 18px; border-radius: 100px; }
  .hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 600; line-height: 1.12; letter-spacing: -0.015em; margin: 0 auto 1.6rem; max-width: 16ch; color: #FFF7EC; }
  .hero h1 em { font-style: italic; color: var(--coral); }
  .hero-sub { font-size: 1.15rem; color: rgba(247,241,230,0.72); max-width: 600px; margin: 0 auto 2.6rem; font-weight: 300; line-height: 1.75; }
  .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .hero-proof { margin-top: 3.2rem; display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); flex-wrap: wrap; }
  .proof-item { text-align: center; }
  .proof-num { font-family: var(--serif); font-size: 2.1rem; font-weight: 600; color: var(--coral-light); display: block; line-height: 1; }
  .proof-label { font-size: 11.5px; color: rgba(247,241,230,0.5); letter-spacing: 0.04em; text-transform: uppercase; margin-top: .4rem; }
  .hero-skyline { position: relative; z-index: 1; width: 100%; height: auto; display: block; margin-bottom: -1px; }

  /* TRUST STRIP */
  .trust { background: var(--plum-mid); padding: 1.3rem 2rem; }
  .trust-inner { max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem 2.2rem; font-size: 12.5px; letter-spacing: .04em; color: rgba(247,241,230,0.65); text-align: center; }
  .trust-inner b { color: var(--coral-light); font-weight: 500; }
  .trust-inner .sep { color: rgba(247,241,230,0.25); }

  /* PROBLEM */
  .problem { background: var(--white); }
  .problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
  .problem-card { background: var(--cream); border-left: 3px solid var(--coral); border-radius: 0 8px 8px 0; padding: 1.6rem; }
  .problem-card h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--plum); margin-bottom: .5rem; font-weight: 600; }
  .problem-card p { font-size: .92rem; color: var(--text-mid); line-height: 1.7; }
  .problem-stat { background: var(--plum); color: var(--cream); border-radius: 12px; padding: 2.2rem; margin-top: 2.6rem; display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; }
  .problem-stat-num { font-family: var(--serif); font-size: 3.2rem; font-weight: 600; color: var(--coral-light); white-space: nowrap; line-height: 1; }
  .problem-stat-text { font-size: 1rem; color: rgba(247,241,230,0.82); line-height: 1.7; flex: 1; min-width: 260px; }

  /* SERVICES */
  .services { background: var(--cream); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
  .service-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.9rem; transition: box-shadow .25s, transform .25s; }
  .service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .service-no { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--coral); }
  .service-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--plum); margin: .7rem 0 .5rem; font-weight: 600; line-height: 1.25; }
  .service-card p { font-size: .93rem; color: var(--text-mid); line-height: 1.7; }

  /* PRICING */
  .pricing { background: var(--white); }
  .free-call { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 2rem; text-align: center; margin-bottom: 1.6rem; }
  .free-call-badge { display: inline-block; background: var(--plum); color: var(--cream); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 6px 15px; border-radius: 100px; margin-bottom: 1rem; }
  .free-call h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--plum); margin-bottom: .5rem; }
  .free-call p { font-size: .95rem; color: var(--text-mid); max-width: 520px; margin: 0 auto 1.3rem; line-height: 1.7; }
  .plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-bottom: 1.6rem; }
  .plan { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 2rem; position: relative; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
  .plan:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .plan.featured { border: 2px solid var(--coral); box-shadow: var(--shadow-md); }
  .plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--coral); color: #2A1B34; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
  .plan-tier { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: .5rem; }
  .plan-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--plum); margin-bottom: .6rem; }
  .plan-price { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--plum); line-height: 1; }
  .plan-price span { font-size: 1rem; color: var(--text-light); font-family: var(--sans); font-weight: 400; }
  .plan-setup { font-size: .85rem; color: var(--text-light); margin: .5rem 0 1.2rem; }
  .plan-list { list-style: none; font-size: .9rem; color: var(--text-mid); margin-bottom: 1.6rem; flex: 1; }
  .plan-list li { padding: 5px 0 5px 1.4rem; position: relative; }
  .plan-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
  .btn-outline { border: 1.5px solid var(--line); color: var(--plum); padding: 13px; border-radius: 6px; font-weight: 600; font-size: 14px; display: block; text-align: center; transition: border-color .2s, color .2s, background .2s; }
  .btn-outline:hover { border-color: var(--coral); color: var(--coral-deep); background: var(--cream); }
  .plan.featured .btn-outline { background: var(--coral); color: #2A1B34; border-color: var(--coral); }
  .plan.featured .btn-outline:hover { background: var(--coral-light); border-color: var(--coral-light); }

  /* OWN IT CARD */
  .ownit { background: var(--plum); border-radius: 12px; padding: 2.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: center; }
  .ownit-left .plan-tier { color: var(--coral-light); }
  .ownit-left h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); margin-bottom: .5rem; }
  .ownit-left p { font-size: .9rem; color: rgba(247,241,230,0.65); line-height: 1.7; }
  .ownit-options { display: flex; flex-direction: column; gap: 1rem; }
  .ownit-option { background: rgba(247,241,230,0.06); border: 1px solid rgba(247,241,230,0.16); border-radius: 8px; padding: 1.1rem 1.3rem; }
  .ownit-option-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-light); margin-bottom: 4px; font-weight: 600; }
  .ownit-option-price { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); font-weight: 600; }
  .ownit-option-price span { font-size: .85rem; color: rgba(247,241,230,0.5); font-family: var(--sans); font-weight: 300; }
  .ownit-note { font-size: 12px; color: rgba(247,241,230,0.5); margin-top: 2px; }
  @media (max-width: 620px) { .ownit { grid-template-columns: 1fr; } }

  /* ABOUT */
  .about { background: var(--cream); }
  .about-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
  @media (max-width: 760px) { .about-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
  .founders { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 1.6rem; }
  .founder { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1.3rem; text-align: center; }
  .founder-av { width: 62px; height: 62px; border-radius: 16px; margin: 0 auto .8rem; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.4rem; color: #fff; }
  .founder-av.j { background: linear-gradient(135deg, var(--coral-light), var(--coral)); }
  .founder-av.b { background: linear-gradient(135deg, var(--plum-soft), var(--plum-mid)); }
  .founder .fn { font-family: var(--serif); font-weight: 600; color: var(--plum); font-size: 1.05rem; }
  .founder .fr { font-size: 11px; color: var(--text-light); letter-spacing: .03em; }
  .about-credentials { display: flex; flex-direction: column; gap: .9rem; }
  .credential { display: flex; align-items: flex-start; gap: 11px; }
  .credential-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); flex-shrink: 0; margin-top: 9px; }
  .credential p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }
  .credential strong { color: var(--plum); font-weight: 600; }
  .about-text p { font-size: 1.02rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.2rem; }
  .about-text p strong { color: var(--plum); font-weight: 600; }
  .bio-dropdown { margin: 1.5rem 0 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white); }
  .bio-dropdown summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--plum); list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; }
  .bio-dropdown summary::-webkit-details-marker { display: none; }
  .bio-dropdown summary::after { content: '+'; font-size: 1.4rem; color: var(--coral); font-weight: 300; }
  .bio-dropdown[open] summary::after { content: '\2013'; }
  .bio-content { padding: 0 1.25rem 1.25rem; }
  .bio-content p { font-size: .92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
  .bio-content p:last-child { margin-bottom: 0; }

  /* CTA */
  .cta { background: var(--plum); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
  .cta .hero-glow { top: auto; bottom: -360px; }
  .cta .container { position: relative; z-index: 2; }
  .cta .section-title { color: #FFF7EC; max-width: 560px; margin: 0 auto 1rem; }
  .cta .section-title em { color: var(--coral-light); }
  .cta p { color: rgba(247,241,230,0.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; line-height: 1.75; }
  .cta-contact { margin-top: 2rem; font-size: .9rem; color: rgba(247,241,230,0.5); }
  .cta-contact a { color: var(--coral-light); }

  /* FOOTER */
  footer { background: #1C1223; color: rgba(247,241,230,0.45); padding: 2.2rem; text-align: center; font-size: .82rem; }
  footer a { color: rgba(247,241,230,0.6); }
  footer a:hover { color: var(--coral-light); }
  footer .fpay { display: inline-flex; align-items: center; gap: .45rem; }
  footer .fpay .d { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

  /* reveal */
  .js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }

  @media (max-width: 860px) {
    .nav-links { display: none; position: fixed; inset: 78px 0 auto 0; background: var(--plum); flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 2rem 2rem; box-shadow: var(--shadow-lg); }
    .nav-links.open { display: flex; }
    .nav-links > li { border-bottom: 1px solid rgba(247,241,230,0.1); }
    .nav-links > li > a { display: block; padding: 1rem 0; font-size: 1.05rem; }
    .nav-dropdown { display: none !important; }
    .nav-cta { text-align: center; margin-top: 1rem; }
    .menu-toggle { display: block; }
  }

  /* ===== MULTI-PAGE ADDITIONS ===== */
  .nav-links > li > a[aria-current="page"] { color: var(--coral-light); }

  /* interior page hero */
  .page-hero { background: var(--plum); color: var(--cream); padding: clamp(3.5rem, 7vw, 5.5rem) 2rem clamp(3rem, 6vw, 4.5rem); text-align: center; position: relative; overflow: hidden; }
  .page-hero .inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
  .page-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 4.8vw, 3.7rem); font-weight: 600; line-height: 1.14; letter-spacing: -0.015em; color: #FFF7EC; margin: 0 auto 1.1rem; max-width: 18ch; }
  .page-hero h1 em { font-style: italic; color: var(--coral); }
  .page-hero p { color: rgba(247,241,230,0.72); font-size: 1.12rem; font-weight: 300; line-height: 1.7; max-width: 580px; margin: 0 auto; }
  .page-hero .hero-eyebrow { margin-bottom: 1.4rem; }

  /* section variants */
  .section-alt { background: var(--white); }
  .center-head { text-align: center; }
  .center-head .section-sub { margin-left: auto; margin-right: auto; }

  /* service detail rows */
  .svc-rows { border-top: 1px solid var(--line); }
  .svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); padding: clamp(2rem, 4.5vw, 3.2rem) 0; border-bottom: 1px solid var(--line); align-items: start; }
  @media (max-width: 760px) { .svc-row { grid-template-columns: 1fr; gap: 1.4rem; } }
  .svc-row .svc-no { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--coral); margin-bottom: .8rem; }
  .svc-row h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 600; color: var(--plum); line-height: 1.2; max-width: 16ch; }
  .svc-row .svc-desc { color: var(--text-mid); margin-top: .9rem; max-width: 44ch; line-height: 1.75; }
  .svc-list { list-style: none; }
  .svc-list li { padding: 8px 0 8px 1.5rem; position: relative; color: var(--text-mid); font-size: .95rem; border-bottom: 1px solid var(--line); }
  .svc-list li:last-child { border-bottom: none; }
  .svc-list li::before { content: ''; position: absolute; left: 0; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }

  /* two-column included list */
  .incl { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 2.5rem; max-width: 780px; margin: 0 auto; text-align: left; }
  @media (max-width: 640px) { .incl { grid-template-columns: 1fr; } }
  .incl li { list-style: none; padding: 9px 0 9px 1.6rem; position: relative; color: var(--text-mid); border-bottom: 1px solid var(--line); }
  .incl li::before { content: ''; position: absolute; left: 0; top: 17px; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

  /* WORK cards */
  .work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
  .work-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: box-shadow .25s, transform .25s; }
  .work-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .work-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; }
  .work-thumb svg { width: 100%; height: 100%; display: block; }
  .work-badge { position: absolute; top: .85rem; left: .85rem; font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; background: rgba(42,27,52,0.82); color: var(--cream); padding: .3rem .7rem; border-radius: 100px; backdrop-filter: blur(4px); }
  .work-body { padding: 1.5rem; }
  .work-body h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--plum); font-weight: 600; margin-bottom: .35rem; }
  .work-body p { font-size: .92rem; color: var(--text-mid); line-height: 1.6; }
  .tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
  .tags span { font-size: 11px; color: var(--text-light); border: 1px solid var(--line); padding: .25rem .6rem; border-radius: 100px; }

  /* scorecard */
  .scorecard { background: var(--plum); border-radius: 12px; padding: clamp(1.8rem, 4vw, 2.8rem); color: var(--cream); }
  .scorecard h3 { font-family: var(--serif); color: #FFF7EC; font-size: 1.6rem; margin-bottom: 1.5rem; }
  .score-cols { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 2.5rem; }
  @media (max-width: 640px) { .score-cols { grid-template-columns: 1fr; } }
  .score-cols li { list-style: none; padding: 9px 0 9px 1.7rem; position: relative; color: rgba(247,241,230,0.85); font-size: .95rem; border-bottom: 1px solid rgba(247,241,230,0.12); }
  .score-cols li::before { content: ''; position: absolute; left: 0; top: 15px; width: 16px; height: 16px; border-radius: 5px; background: var(--coral); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; }

  /* CONTACT */
  .contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
  @media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-list { list-style: none; display: grid; gap: 1.3rem; margin-bottom: 1.6rem; }
  .contact-list .k { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-deep); display: block; margin-bottom: .2rem; }
  .contact-list .v { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--plum); }
  .contact-list a.v:hover { color: var(--coral-deep); }
  .map-embed { width: 100%; aspect-ratio: 5/4; border: 1px solid var(--line); border-radius: 12px; filter: grayscale(.12); }
  .form { display: grid; gap: 1.2rem; }
  .field label { display: block; font-weight: 600; font-size: .92rem; color: var(--plum); margin-bottom: .5rem; }
  .field input, .field textarea { width: 100%; background: var(--white); border: 1.5px solid var(--line); border-radius: 8px; padding: .95rem 1.05rem; font: inherit; font-size: 1rem; color: var(--text-dark); min-height: 52px; transition: border-color .2s; }
  .field textarea { min-height: 150px; resize: vertical; }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--coral); }
  .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .err { color: var(--coral-deep); font-size: .88rem; margin-top: .4rem; display: none; font-weight: 500; }
  .err.show { display: block; }
  .form-note { font-size: .88rem; color: var(--text-light); }
  .form-status { display: none; padding: 1.6rem; border-radius: 12px; background: var(--cream); border: 1px solid var(--line); }
  .form-status.show { display: block; }
  .form-status strong { color: var(--plum); font-family: var(--serif); font-size: 1.15rem; }

  /* PROSE (legal) */
  .prose { max-width: 760px; margin: 0 auto; }
  .prose h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--plum); margin: 2.4rem 0 .7rem; }
  .prose p, .prose li { color: var(--text-mid); line-height: 1.8; margin-bottom: .8rem; }
  .prose a { color: var(--coral-deep); font-weight: 600; }
  .prose .lede { font-size: 1.1rem; color: var(--text-mid); }

  /* FAQ (accordion) */
  .faq { max-width: 820px; margin: 0 auto; }
  .faq details { border: 1px solid var(--line); border-radius: 10px; background: var(--white); margin-bottom: .8rem; overflow: hidden; }
  .faq summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--serif); font-weight: 600; color: var(--plum); font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: '+'; font-size: 1.5rem; color: var(--coral); font-weight: 300; line-height: 1; }
  .faq details[open] summary::after { content: '\2013'; }
  .faq .fa { padding: 0 1.3rem 1.3rem; color: var(--text-mid); line-height: 1.7; max-width: 66ch; }

  /* 404 */
  .big404 { font-family: var(--serif); font-size: clamp(5rem, 18vw, 11rem); font-weight: 700; color: var(--coral-light); line-height: .9; }

  /* RICH FOOTER */
  .footer-rich { background: #1C1223; color: rgba(247,241,230,0.5); padding: clamp(3rem, 6vw, 4.5rem) 2rem 2rem; }
  .footer-cols { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.7fr .8fr .8fr 1fr; gap: 2.2rem; }
  @media (max-width: 820px) { .footer-cols { grid-template-columns: 1fr 1fr; } .footer-cols .fbrand { grid-column: 1 / -1; } }
  @media (max-width: 500px) { .footer-cols { grid-template-columns: 1fr; } }
  .footer-rich .fbrand .nav-logo { margin-bottom: 1rem; }
  .footer-rich .fbrand .nav-logo .lt, .footer-rich .fbrand .nav-logo .lt small { color: var(--cream); }
  .footer-rich .fbrand p { font-size: .92rem; max-width: 32ch; line-height: 1.7; margin-bottom: 1.3rem; }
  .footer-rich h4 { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-light); margin-bottom: 1rem; }
  .footer-rich ul { list-style: none; display: grid; gap: .6rem; }
  .footer-rich a { color: rgba(247,241,230,0.6); font-size: .9rem; }
  .footer-rich a:hover { color: var(--coral-light); }
  .footer-rich .fbottom { max-width: 1080px; margin: 2.5rem auto 0; padding-top: 1.6rem; border-top: 1px solid rgba(247,241,230,0.12); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .82rem; color: rgba(247,241,230,0.4); }
  .footer-rich .fpay { display: inline-flex; align-items: center; gap: .45rem; }
  .footer-rich .fpay .d { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
