/* ============ THEME TOKENS ============ */
  :root {
    --accent: #ffe100;
    --accent-ink: #111111;
    --cta: #1f5bff;
    --cta-ink: #ffffff;
    --bg: #ffffff;
    --ink: #111111;
    --muted: #5b6470;
    --tint: #d1e8ff;
    --card: #ffffff;
    --line: #e7ebf1;
    --field: #f5f7fa;
    --footer: #111111;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --head-weight: 700;
    --head-spacing: -0.02em;
    --pill: 100px;
    --radius: 22px;
    /* map category colors — constant across themes */
    --cat-eats: #e0962f;
    --cat-see: #2f6bff;
    --cat-free: #15a866;
  }
  [data-theme="editorial"] {
    --accent-ink: #111111;
    --cta: #111111;
    --bg: #f7f2e8;
    --ink: #16130d;
    --muted: #6b6253;
    --tint: #ece2cf;
    --card: #fffdf8;
    --line: #e2d8c4;
    --field: #efe8d9;
    --footer: #16130d;
    --font-head: 'Instrument Serif', serif;
    --head-weight: 400;
    --head-spacing: 0;
  }
  [data-theme="sunset"] {
    --accent-ink: #2a1118;
    --cta: #ff5a3c;
    --bg: #fff7f3;
    --ink: #2a1118;
    --muted: #936b62;
    --tint: #ffe1d3;
    --card: #ffffff;
    --line: #f3ddd2;
    --field: #fdeee7;
    --footer: #2a1118;
    --font-head: 'Syne', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: background .3s ease, color .3s ease;
  }
  h1, h2, h3 { font-family: var(--font-head); font-weight: var(--head-weight); letter-spacing: var(--head-spacing); line-height: 1.05; }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 92px 0; }
  .section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; display: flex; flex-direction: column; gap: 14px; }
  .section__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }
  .section__title { font-size: clamp(1.9rem, 4.5vw, 3rem); }
  .section__sub { color: var(--muted); font-size: 1.05rem; text-wrap: pretty; }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    border-radius: var(--pill); padding: 15px 30px;
    font-family: var(--font-body); font-size: 16px; font-weight: 600;
    text-decoration: none; cursor: pointer; border: 2px solid transparent;
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .btn:active { transform: scale(0.97); }
  .btn--accent { background: var(--accent); color: var(--accent-ink); }
  .btn--accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px color-mix(in oklab, var(--accent) 70%, transparent); }
  .btn--cta { background: var(--cta); color: var(--cta-ink); }
  .btn--cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px color-mix(in oklab, var(--cta) 60%, transparent); }
  .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.85); }
  .btn--outline:hover { background: #fff; color: #111; transform: translateY(-2px); }
  .btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

  /* ============ HERO ============ */
  .hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; padding: 40px 24px; background: #000; }
  .hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
  .hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.62)); pointer-events: none; }
  .hero__content { position: relative; z-index: 2; max-width: 760px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
  .hero__eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; opacity: .92; }
  .hero h1 { font-family: var(--font-head); font-weight: var(--head-weight); font-size: clamp(2.5rem, 7vw, 4.6rem); letter-spacing: var(--head-spacing); text-wrap: balance; }
  .hero__sub { font-size: clamp(1rem, 2.2vw, 1.2rem); opacity: .92; max-width: 520px; }
  .hero__proof { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; opacity: .9; }
  .hero__dots { display: inline-flex; }
  .hero__dots span { width: 24px; height: 24px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); margin-left: -8px; background: rgba(255,255,255,.18); backdrop-filter: blur(2px); }
  .hero__buttons { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-top: 4px; }
  .scrolldown { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; opacity: .8; animation: bob 1.8s ease-in-out infinite; }
  @keyframes bob { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(7px);} }

  /* ============ FOLLOW ============ */
  .follow { background: var(--bg); }
  .follow__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 220px)); gap: 16px; justify-content: center; }
  .pcard {
    display: flex; flex-direction: column; gap: 14px; padding: 24px 22px; aspect-ratio: 1 / 1;
    border: 1px solid var(--line); border-radius: var(--radius); background: var(--card);
    text-decoration: none; color: var(--ink);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .pcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(0,0,0,.35); border-color: transparent; }
  .pcard__top { display: flex; align-items: center; justify-content: space-between; }
  .pcard__icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--ink); color: var(--bg); }
  .pcard__icon svg { width: 22px; height: 22px; }
  .pcard__count { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 1.9rem; letter-spacing: var(--head-spacing); }
  .pcard__handle { color: var(--muted); font-size: .92rem; margin-top: -8px; }
  .pcard__cta { margin-top: auto; font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; color: #e0962f; }
  body.hide-counts .pcard__count { display: none; }
  body.hide-counts .pcard__handle { margin-top: 0; }

  /* ============ ABOUT (vintage) ============ */
  .about { background: #fcf3e2; text-align: center; }
  .about__panel { max-width: 760px; margin: 0 auto; padding: 0; position: relative; }
  .about__eyebrow { position: relative; font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(1.5rem, 3.6vw, 2.15rem); color: #b4661a; line-height: 1; margin-bottom: 6px; }
  .about__rule { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 auto 26px; color: #c07d28; }
  .about__rule::before, .about__rule::after { content: ""; height: 1px; width: 46px; background: currentColor; opacity: .5; }
  .about__rule span { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
  .about__inner { position: relative; display: flex; flex-direction: column; gap: 22px; }
  .about__inner p { font-size: clamp(1.12rem, 2.2vw, 1.32rem); line-height: 1.72; color: #3a2a15; text-wrap: pretty; }
  .about__inner p.lead { font-family: 'Instrument Serif', serif; font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.4; color: #6b3e12; }
  .about__inner strong { color: #b4661a; font-weight: 700; }

  /* ============ SERVICES ============ */
  .tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
  .tier { position: relative; display: flex; flex-direction: column; gap: 18px; padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); transition: transform .2s ease, box-shadow .2s ease; }
  .tier:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -26px rgba(0,0,0,.3); }
  .tier--featured { border-color: var(--ink); box-shadow: 0 22px 50px -28px rgba(0,0,0,.4); }
  .tier__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--pill); white-space: nowrap; }
  .tier__name { font-size: 1.45rem; }
  .tier__tag { color: var(--muted); font-size: .95rem; margin-top: -10px; }
  .tier__price { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 1.15rem; letter-spacing: var(--head-spacing); }
  .tier__price span { color: var(--muted); font-weight: 500; font-size: .82rem; font-family: var(--font-body); }
  .tier ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .tier li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
  .tier li svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; color: var(--cta); }
  .tier .btn { width: 100%; margin-top: 4px; }

  /* ============ MAP ============ */
  .map { background: var(--bg); }
  .map__filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
  .chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--pill); border: 1px solid var(--line); background: var(--card); color: var(--ink); font-size: .92rem; font-weight: 600; cursor: pointer; transition: all .16s ease; }
  .chip .dot { width: 10px; height: 10px; border-radius: 50%; }
  .chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
  .map__layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 22px; align-items: stretch; }
  .map__canvas { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 540px; border: 1px solid var(--line); background: #e8ece6; }
  #leafletMap { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
  .map__reset { position: absolute; top: 14px; right: 14px; z-index: 500; display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px 9px 11px; border: none; border-radius: 999px; background: var(--ink); color: var(--bg); font-family: var(--font-body); font-weight: 600; font-size: .86rem; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.22); opacity: 0; transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease; }
  .map__reset:not([hidden]) { opacity: 1; transform: none; }
  .map__reset[hidden] { display: none; }
  .map__reset svg { width: 15px; height: 15px; }
  .map__reset:hover { background: var(--cat-eats); }
  .leaflet-container { font-family: var(--font-body); background: #e8ece6; }
  .leaflet-control-attribution { font-size: 10px; }
  .marker-pin { position: relative; }
  .marker-pin .pin__dot { width: 28px; height: 28px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,.35); border: 2px solid #fff; transition: transform .15s ease; }
  .marker-pin .pin__dot b { transform: rotate(45deg); color: #fff; font-size: 12px; font-weight: 700; font-family: var(--font-body); }
  .marker-pin:hover .pin__dot, .marker-pin.is-active .pin__dot { transform: rotate(-45deg) scale(1.2); }
  .marker-pin.is-active .pin__dot { box-shadow: 0 0 0 4px rgba(31,91,255,.25), 0 4px 10px rgba(0,0,0,.35); z-index: 5; }
  .map__side { display: flex; flex-direction: column; gap: 16px; min-height: 540px; }
  .map__detail { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 22px; flex: 0 0 auto; }
  .map__detail .mtag { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--pill); color: #fff; }
  .map__detail h3 { font-size: 1.5rem; margin: 14px 0 4px; }
  .map__detail .mhood { color: var(--muted); font-size: .9rem; font-weight: 600; }
  .map__detail .mblurb { margin-top: 12px; color: var(--ink); font-size: 1rem; line-height: 1.55; }
  .map__detail.is-empty .mtag, .map__detail.is-empty h3, .map__detail.is-empty .mhood, .map__detail.is-empty .mblurb, .map__detail.is-empty .mreel { display: none; }
  .map__detail .mreel { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
  .mreel__label { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
  .mreel__frame { position: relative; display: block; width: 180px; aspect-ratio: 9 / 19; border-radius: 16px; overflow: hidden; background: #f0efec; box-shadow: 0 6px 18px rgba(0,0,0,.12); }
  .mreel__crop { position: absolute; inset: 0; overflow: hidden; }
  .mreel__crop iframe { position: absolute; top: -54px; left: 0; width: 100%; height: 640px; border: 0; pointer-events: none; }
  .mreel__hit { position: absolute; inset: 0; background: transparent; border: none; cursor: pointer; z-index: 2; }
  .mreel__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; transition: transform .15s ease; z-index: 3; }
  .mreel__frame:hover .mreel__play { transform: scale(1.06); }
  .mreel__play svg { width: 52px; height: 52px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }
  .mreel__ig { position: absolute; top: 9px; right: 9px; width: 22px; height: 22px; pointer-events: none; filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); z-index: 3; }
  .mreel__ig svg { width: 100%; height: 100%; }
  .reel-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; }
  .reel-modal[hidden] { display: none; }
  .reel-modal__backdrop { position: absolute; inset: 0; background: rgba(12,12,14,.74); backdrop-filter: blur(3px); }
  .reel-modal__body { position: relative; z-index: 1; width: min(94vw, 340px); }
  .reel-modal__x { position: absolute; top: -46px; right: 0; width: 36px; height: 36px; border-radius: 50%; border: none; background: #fff; color: #111; font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .reel-modal__embed { background: #fff; border-radius: 14px; overflow: hidden; height: min(86vh, 620px); }
  .reel-modal__embed iframe { width: 100%; height: 100%; border: 0; display: block; }
  .mreel__cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .92rem; color: var(--cta); text-decoration: none; }
  .mreel__cta:hover { text-decoration: underline; }
  .map__detail .mhint { display: none; color: var(--muted); font-size: .98rem; }
  .map__detail.is-empty .mhint { display: block; }
  .map__list { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); overflow: hidden; flex: 1 1 auto; }
  .map__list ul { list-style: none; max-height: 340px; overflow-y: auto; }
  .map__list li { display: flex; gap: 12px; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--line); cursor: pointer; transition: background .14s ease; }
  .map__list li:last-child { border-bottom: none; }
  .map__list li:hover, .map__list li.is-active { background: var(--field); }
  .map__list li.is-hidden { display: none; }
  .map__list .mnum { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
  .map__list .mname { font-weight: 600; font-size: .96rem; }
  .map__list .msmall { color: var(--muted); font-size: .8rem; }

  /* ============ CONTACT ============ */
  .contact { background: var(--bg); padding-top: 60px; }
  .map { padding-bottom: 60px; }
  .card { width: 100%; max-width: 560px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 24px 60px -30px rgba(0,0,0,.35); padding: 46px 40px; text-align: center; }
  .card h2 { font-size: clamp(1.7rem, 4.5vw, 2.3rem); margin-bottom: 12px; }
  .card__sub { color: var(--muted); font-size: 1rem; line-height: 1.55; max-width: 430px; margin: 0 auto 30px; text-wrap: pretty; }
  .form { display: flex; flex-direction: column; gap: 13px; text-align: left; }
  .form input, .form textarea { width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink); background: var(--field); border: 1.5px solid var(--line); border-radius: 15px; padding: 15px 17px; transition: border-color .16s ease, background .16s ease; resize: vertical; }
  .form input::placeholder, .form textarea::placeholder { color: color-mix(in oklab, var(--muted) 80%, transparent); }
  .form input:focus, .form textarea:focus { outline: none; border-color: var(--cta); background: var(--card); }
  .form textarea { min-height: 116px; }
  .form .btn--cta { align-self: center; margin-top: 8px; width: 100%; max-width: 240px; background: #e0962f; color: #fff; }
  .form .btn--cta:hover { box-shadow: 0 12px 30px -10px color-mix(in oklab, #e0962f 60%, transparent); }
  .form .btn--cta:disabled { opacity: .7; cursor: default; }
  .form__success { display: none; flex-direction: column; align-items: center; gap: 8px; padding: 22px 0 4px; }
  .form__success.show { display: flex; }
  .form__success .check { width: 52px; height: 52px; border-radius: 50%; background: var(--cta); color: #fff; display: flex; align-items: center; justify-content: center; }
  .form__success strong { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 1.3rem; }
  .form__success p { color: var(--muted); font-size: .95rem; }

  /* ============ FOOTER ============ */
  .footer { background: var(--footer); color: #fff; text-align: center; padding: 54px 24px 46px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .footer__mark { width: 92px; height: 92px; border-radius: 50%; background: #e0962f; color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: var(--head-weight); font-size: 2.4rem; }
  .footer__name { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 17px; }
  .footer__email { font-size: 13px; opacity: .72; text-decoration: none; color: #fff; }
  .footer__email:hover { opacity: 1; text-decoration: underline; }

  /* ============ STICKY BAR ============ */
  .sticky { position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 140%); z-index: 50; display: flex; align-items: center; gap: 14px; padding: 11px 12px 11px 20px; border-radius: var(--pill); background: var(--ink); color: var(--bg); box-shadow: 0 14px 40px -12px rgba(0,0,0,.5); transition: transform .35s cubic-bezier(.2,.8,.2,1); max-width: calc(100% - 32px); }
  .sticky.show { transform: translate(-50%, 0); }
  .sticky__txt { font-size: .92rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sticky__txt b { font-family: var(--font-head); }
  .sticky .btn { padding: 10px 20px; font-size: 14px; }
  .sticky__x { background: none; border: none; color: var(--bg); opacity: .6; cursor: pointer; font-size: 18px; line-height: 1; padding: 4px; }
  .sticky__x:hover { opacity: 1; }

  /* ============ REVEAL ============ */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .scrolldown { animation: none; } }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 920px) {
    .follow__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .pcard { aspect-ratio: auto; padding: 20px 18px; gap: 12px; }
    .pcard__count { font-size: 1.5rem; }
    .pcard__cta { margin-top: 14px; }
    .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .map__layout { grid-template-columns: 1fr; }
    .map__side { min-height: 0; }
    .map__canvas { min-height: 420px; }
  }
  @media (max-width: 540px) {
    .section { padding: 68px 0; }
    .follow__grid { grid-template-columns: 1fr; }
    .pcard { aspect-ratio: auto; flex-direction: row; align-items: center; gap: 14px; padding: 16px 18px; }
    .pcard__top { order: 1; }
    .pcard__icon { width: 40px; height: 40px; border-radius: 12px; }
    .pcard__body { order: 2; flex: 1; display: flex; flex-direction: column; }
    .pcard__count { font-size: 1.35rem; }
    .pcard__handle { margin-top: 0; font-size: .86rem; }
    .pcard__cta { order: 3; margin-top: 0; font-size: .9rem; white-space: nowrap; }
    .card { padding: 34px 22px; }
    .hero__buttons { width: 100%; } .hero__buttons .btn { flex: 1; min-width: 150px; }
    .sticky__txt { display: none; }
    .sticky { padding: 10px; }
  }