:root {
      --bg: #f6f2e9;
      --paper: #fffdf8;
      --ink: #171717;
      --muted: #6a675f;
      --line: #ded8cc;
      --accent: #ff5a36;
      --accent-dark: #dc3c1d;
      --green: #1f7a5b;
      --shadow: 0 16px 50px rgba(34, 26, 14, 0.08);
      --radius: 22px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 85% 12%, rgba(255, 90, 54, 0.08), transparent 28%),
        var(--bg);
      color: var(--ink);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }

    .wrap {
      width: min(1220px, calc(100% - 40px));
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(246, 242, 233, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(222, 216, 204, 0.8);
    }

    .nav {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 18px;
      font-weight: 850;
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: #fff;
      font-size: 18px;
      font-weight: 900;
    }

    .nav-actions {
      display: flex;
      gap: 9px;
      align-items: center;
    }

    .btn {
      border: 0;
      border-radius: 999px;
      min-height: 46px;
      padding: 0 20px;
      cursor: pointer;
      font-weight: 800;
      transition: 160ms ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn:hover { transform: translateY(-1px); }
    .btn-light { background: transparent; border: 1px solid var(--line); color: var(--ink); }
    .btn-dark { background: var(--ink); color: #fff; }
    .btn-accent { background: var(--accent); color: #fff; box-shadow: 0 9px 24px rgba(255, 90, 54, .23); }
    .btn-accent:hover { background: var(--accent-dark); }
    .btn-instagram { background: #fff; color: var(--ink); border: 1px solid var(--line); }

    .insta-dot {
      width: 19px;
      height: 19px;
      display: inline-grid;
      place-items: center;
      border-radius: 6px;
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      color: white;
      font-size: 12px;
      font-weight: 900;
    }

    .hero { padding: 0 0 66px; }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
      gap: 48px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.55);
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .02em;
      margin-bottom: 22px;
    }

    .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

    h1 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(48px, 6.5vw, 82px);
      line-height: .97;
      letter-spacing: -0.065em;
      font-weight: 900;
    }

    h1 em { color: var(--accent); font-style: normal; }

    .hero-copy {
      max-width: 680px;
      margin-top: 26px;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 21px);
      line-height: 1.55;
    }

    .search-card {
      margin-top: 32px;
      background: var(--paper);
      border: 1px solid var(--line);
      padding: 11px;
      border-radius: 999px;
      display: flex;
      gap: 10px;
      box-shadow: var(--shadow);
      max-width: 760px;
    }

    .search-card input {
      flex: 1;
      min-width: 0;
      border: 0;
      outline: 0;
      background: transparent;
      padding: 0 10px 0 14px;
      color: var(--ink);
      min-height: 52px;
    }

    .search-card input::placeholder { color: #918c81; }

    .microcopy {
      color: var(--muted);
      font-size: 13px;
      margin: 12px 0 0 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .hero-contact { margin-top: 22px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .hero-contact small { color: var(--muted); }

    /* MAP */
    .map-column {
      min-width: 0;
    }

    .map-shell {
      position: relative;
      height: 585px;
      border: 1px solid var(--line);
      border-radius: 30px;
      overflow: hidden;
      background: #e9e6df;
      box-shadow: var(--shadow);
    }

    .map-caption {
      color: var(--muted);
      font-size: 13px;
      margin: 12px 8px 0;
    }

    #map { position: absolute; inset: 0; }

    .map-topbar {
      position: absolute;
      z-index: 4;
      top: 16px;
      left: 16px;
      right: 64px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      pointer-events: none;
    }

    .map-hint, .map-demo-label {
      pointer-events: auto;
      background: rgba(255,253,248,.95);
      border: 1px solid rgba(222,216,204,.9);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 30px rgba(0,0,0,.08);
      border-radius: 14px;
      padding: 10px 12px;
      font-size: 12px;
      font-weight: 800;
    }

    .map-hint { max-width: 250px; }
    .map-hint span { color: var(--accent); }
    .map-demo-label { color: var(--muted); }

    .map-sheet {
      position: absolute;
      z-index: 5;
      left: 16px;
      right: 16px;
      bottom: 16px;
      background: rgba(255,253,248,.97);
      border: 1px solid rgba(222,216,204,.95);
      border-radius: 19px;
      padding: 17px;
      box-shadow: 0 14px 45px rgba(0,0,0,.14);
      backdrop-filter: blur(16px);
      transform: translateY(calc(100% + 34px));
      opacity: 0;
      transition: 220ms ease;
    }

    .map-sheet.show { transform: translateY(0); opacity: 1; }

    .map-sheet-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
    }

    .map-sheet-kicker { color: var(--green); font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
    .map-sheet h3 { margin: 3px 0 4px; font-size: 20px; letter-spacing: -.03em; }
    .map-sheet-address { color: var(--muted); font-size: 13px; }

    .sheet-close {
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: white;
      cursor: pointer;
    }

    .map-sheet-body {
      margin-top: 13px;
      padding-top: 13px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
    }

    .map-sheet-copy { color: #4b4740; font-size: 13px; max-width: 330px; }
    .map-sheet .btn { min-height: 42px; padding: 0 15px; font-size: 13px; }

    .rating-row { display: flex; gap: 7px; margin-top: 10px; flex-wrap: wrap; }
    .rating-chip { border-radius: 999px; padding: 5px 9px; background: #f1ece4; font-size: 11px; font-weight: 800; }

    .maplibregl-ctrl-top-right { top: 58px; right: 4px; }
    .maplibregl-ctrl-group { border-radius: 12px !important; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.12) !important; }
    .maplibregl-ctrl-attrib { font-size: 10px; }

    .section { padding: 72px 0; }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section h2 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(34px, 5vw, 54px);
      letter-spacing: -.05em;
      line-height: 1.02;
    }

    .section-intro { max-width: 520px; color: var(--muted); font-size: 16px; }

    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

    .step {
      background: rgba(255,255,255,.48);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      min-height: 230px;
    }

    .step-num {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: #fff;
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 34px;
    }

    .step h3 { font-size: 21px; margin: 0 0 9px; letter-spacing: -.025em; }
    .step p { margin: 0; color: var(--muted); line-height: 1.6; }

    .criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .criterion {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255,255,255,.42);
    }
    .criterion-icon { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; font-weight: 900; }
    .criterion strong { display: block; margin-bottom: 3px; }
    .criterion span { color: var(--muted); font-size: 13px; }

    .manifesto {
      background: var(--ink);
      color: white;
      border-radius: 32px;
      padding: clamp(34px, 6vw, 70px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .manifesto h2 { color: white; }
    .manifesto p { color: #c7c2b9; font-size: 18px; line-height: 1.65; margin: 0; }
    .manifesto strong { color: white; }

    .contact-strip {
      margin-top: 26px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cta { text-align: center; padding: 88px 0 96px; }
    .cta-inner { background: var(--accent); color: white; border-radius: 32px; padding: 64px 24px; box-shadow: 0 30px 80px rgba(255,90,54,.18); }
    .cta h2 { margin: 0 auto; max-width: 740px; font-size: clamp(38px, 6vw, 62px); line-height: 1.03; letter-spacing: -.055em; }
    .cta p { max-width: 650px; margin: 18px auto 28px; color: rgba(255,255,255,.88); font-size: 18px; }
    .cta .btn { background: white; color: var(--ink); min-height: 54px; padding: 0 26px; }



    .contact-section {
      padding: 0 0 96px;
      scroll-margin-top: 92px;
    }

    .contact-card {
      position: relative;
      overflow: hidden;
      min-height: 300px;
      border: 2px solid var(--ink);
      border-radius: 32px;
      background: var(--accent);
      color: var(--ink);
      display: grid;
      grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
      align-items: center;
      gap: 34px;
      padding: clamp(34px, 6vw, 68px);
      box-shadow: 0 28px 70px rgba(255,90,54,.2);
    }

    .contact-question {
      font-size: clamp(150px, 22vw, 280px);
      line-height: .72;
      font-weight: 950;
      letter-spacing: -.08em;
      color: transparent;
      -webkit-text-stroke: 3px var(--ink);
      text-stroke: 3px var(--ink);
      user-select: none;
      justify-self: center;
      transform: translateY(-4px);
    }

    .contact-copy { position: relative; z-index: 1; }
    .contact-kicker {
      display: inline-flex;
      border: 1.5px solid var(--ink);
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .contact-copy h2 {
      margin: 16px 0 10px;
      font-size: clamp(38px, 6vw, 64px);
      line-height: 1;
      letter-spacing: -.055em;
    }
    .contact-copy p {
      margin: 0;
      max-width: 560px;
      font-size: 18px;
      font-weight: 650;
    }
    .contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
    .contact-choice {
      min-width: 132px;
      background: var(--paper);
      color: var(--ink);
      border: 2px solid var(--ink);
    }
    .contact-choice:hover { background: var(--ink); color: white; }


    /* REVIEW OF THE YEAR */
    .award-section { padding: 0 0 96px; }
    .award-shell {
      width: min(900px, 100%);
      margin: 0 auto;
      background: rgba(255,255,255,.5);
      border: 1px solid var(--line);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .award-head { padding: 28px 30px 22px; border-bottom: 1px solid var(--line); }
    .award-head h2 { margin: 0; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.02; letter-spacing: -.045em; }
    .award-head p { color: var(--muted); margin: 10px 0 0; max-width: 690px; }
    .award-list { display: grid; }
    .award-item {
      display: grid;
      grid-template-columns: 76px 1fr;
      min-height: 94px;
      border-bottom: 1px solid var(--line);
      background: var(--paper);
    }
    .award-item:last-child { border-bottom: 0; }
    .award-votes {
      border-right: 1px solid var(--line);
      display: grid;
      grid-template-rows: 1fr 1fr;
      align-items: stretch;
      background: rgba(246,242,233,.72);
    }
    .award-vote {
      appearance: none;
      border: 0;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-weight: 900;
      font-size: 13px;
      transition: 150ms ease;
    }
    .award-vote:first-child { border-bottom: 1px solid var(--line); }
    .award-vote .arrow { font-size: 18px; line-height: 1; }
    .award-vote:hover { background: rgba(23,23,23,.05); color: var(--ink); }
    .award-vote.active-up { color: var(--accent); background: rgba(255,90,54,.08); }
    .award-vote.active-down { color: #53657a; background: rgba(83,101,122,.08); }
    .award-location {
      appearance: none;
      width: 100%;
      border: 0;
      background: transparent;
      padding: 20px 24px;
      cursor: pointer;
      text-align: left;
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .award-location:hover { background: rgba(255,90,54,.045); }
    .award-place { min-width: 0; }
    .award-place strong { display: block; font-size: 17px; letter-spacing: -.02em; }
    .award-place span { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }
    .award-open { color: var(--muted); font-size: 20px; flex: 0 0 auto; }
    .demo-pill {
      display: inline-flex !important;
      width: fit-content;
      margin: 6px 0 0 !important;
      padding: 4px 8px;
      border-radius: 999px;
      background: #f0ece3;
      color: #6a675f !important;
      font-size: 10px !important;
      font-weight: 900;
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .award-empty, .award-loading { padding: 34px 30px; color: var(--muted); }
    .award-detail-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
    .award-detail-chip { padding: 7px 10px; background: #f0ece3; border-radius: 999px; font-size: 12px; font-weight: 800; }
    .award-detail-review { font-size: 17px; line-height: 1.7; color: #302e2a; white-space: pre-wrap; }
    .award-demo-note { margin-top: 18px; padding: 13px 14px; border-radius: 14px; background: #fff3d8; color: #70541f; font-size: 12px; line-height: 1.5; }

    @media (max-width: 600px) {
      .award-section { padding-bottom: 64px; }
      .award-head { padding: 24px 20px 18px; }
      .award-item { grid-template-columns: 66px 1fr; }
      .award-location { padding: 18px 16px; }
    }

    footer { padding: 26px 0 38px; color: var(--muted); font-size: 13px; }
    .footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; }
    .footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
    .footer-links a { font-weight: 800; color: var(--ink); }

    /* MODALS */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      place-items: center;
      padding: 20px;
      background: rgba(20,20,20,.55);
      backdrop-filter: blur(8px);
    }
    .modal.open { display: grid; }

    .modal-card {
      width: min(620px, 100%);
      max-height: min(90vh, 760px);
      overflow: auto;
      background: var(--paper);
      border-radius: 26px;
      padding: 28px;
      box-shadow: 0 30px 90px rgba(0,0,0,.25);
      position: relative;
    }

    .modal-card h3 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.04em; }
    .modal-card > p { color: var(--muted); margin: 0 0 22px; }

    .close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: transparent;
      cursor: pointer;
      font-size: 20px;
    }

    .form-field { display: grid; gap: 7px; margin-bottom: 14px; }
    .form-field label { font-size: 13px; font-weight: 800; }
    .form-field input, .form-field textarea {
      width: 100%;
      border: 1px solid var(--line);
      background: white;
      border-radius: 14px;
      min-height: 50px;
      padding: 12px 14px;
      outline: 0;
      resize: vertical;
    }
    .form-field textarea { min-height: 110px; }
    .form-field input:focus, .form-field textarea:focus { border-color: var(--ink); }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-field select {
      width: 100%;
      border: 1px solid var(--line);
      background: white;
      border-radius: 14px;
      min-height: 50px;
      padding: 10px 14px;
      outline: 0;
    }
    .form-field input[type="file"] { padding: 10px; background: #fff; }
    .form-help { color: var(--muted); font-size: 12px; line-height: 1.45; }
    .verification-box { border: 1px dashed #b8b0a2; background: #faf7f0; border-radius: 16px; padding: 16px; margin: 16px 0; }
    .verification-box strong { display: block; margin-bottom: 5px; }
    .verification-box p { margin: 0; color: var(--muted); font-size: 13px; }
    .submit-status { min-height: 22px; margin-top: 12px; font-size: 13px; color: var(--muted); }
    .submit-status.success { color: var(--green); font-weight: 800; }
    .submit-status.error { color: #b42318; font-weight: 800; }

    /* TURNSTILE */
    .captcha-block {
      margin-top: 18px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255,255,255,.45);
    }
    .captcha-help { margin: 8px 0 0; font-size: 12px; color: var(--muted); }
    #turnstile-container { min-height: 65px; }
    #reviewSubmitButton:disabled { opacity: .5; cursor: not-allowed; }

    /* MAP FULLSCREEN */
    .map-fullscreen-btn {
      position: absolute; top: 16px; right: 16px; z-index: 20;
      width: 44px; height: 44px; border: 1px solid rgba(222,216,204,.95);
      border-radius: 14px; background: rgba(255,253,248,.96); color: #1d1c19;
      font-size: 22px; font-weight: 800; line-height: 1; cursor: pointer;
      box-shadow: 0 8px 30px rgba(0,0,0,.10); backdrop-filter: blur(12px);
    }
    .map-fullscreen-btn:hover { transform: scale(1.04); }
    .map-shell.is-fullscreen {
      position: fixed; inset: 0; width: 100vw; height: 100dvh !important;
      z-index: 99999; border: 0; border-radius: 0 !important; box-shadow: none;
    }
    body.map-fullscreen-open { overflow: hidden; }
    .review-list { display: grid; gap: 12px; margin-top: 10px; }
    .review-card { border: 1px solid var(--line); border-radius: 16px; padding: 15px; background: #fff; }
    .review-card-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; font-size: 13px; }
    .review-card-score { font-weight: 900; color: var(--green); }
    .review-card p { margin: 0; color: #45413b; font-size: 13px; line-height: 1.55; }
    .review-report { margin-top: 10px; padding: 0; border: 0; background: transparent; color: var(--muted); font: inherit; font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
    .review-report:hover { color: var(--ink); }
    .legal-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.45; color: #45413b; }
    .legal-check input { margin-top: 3px; flex: 0 0 auto; }
    .report-legal-note { padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: #fffaf1; font-size: 12px; color: #5b554b; line-height: 1.5; }
    .honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

    .notice { background: #f0ece3; border-radius: 14px; padding: 13px 14px; color: #5a554d; font-size: 13px; margin: 16px 0; }
    .modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
    .result { display: none; margin-top: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: white; }
    .result.show { display: block; }

    .search-status { margin-top: 12px; min-height: 20px; color: var(--muted); font-size: 13px; }

    @media (max-width: 1020px) {
      .hero-grid, .manifesto { grid-template-columns: 1fr; }
      .hero-grid { gap: 34px; }
      .hero { padding-top: 0; }
      .map-shell { height: 560px; }
      .steps, .criteria-grid { grid-template-columns: 1fr; }
      .section-head { display: block; }
      .section-intro { margin-top: 18px; }
    }

    @media (max-width: 760px) {
      .contact-card { grid-template-columns: 1fr; gap: 18px; }
      .contact-question { justify-self: start; font-size: 150px; }

      .nav-actions .nav-search { display: none; }
    }

    @media (max-width: 600px) {
      .wrap { width: min(100% - 24px, 1220px); }
      .nav { min-height: 64px; }
      .brand { font-size: 16px; }
      .brand-mark { width: 32px; height: 32px; }
      .nav-actions .btn-dark { min-height: 40px; padding: 0 13px; font-size: 12px; }
      .hero { padding-top: 0; }
      h1 { font-size: 48px; }
      .search-card { border-radius: 20px; display: grid; }
      .search-card .btn { width: 100%; min-height: 50px; }
      .map-shell { height: 540px; border-radius: 22px; }
      .map-topbar { top: 12px; left: 12px; right: 54px; }
      .map-demo-label { display: none; }
      .map-sheet { left: 10px; right: 10px; bottom: 10px; }
      .map-sheet-body { display: grid; }
      .map-sheet .btn { width: 100%; }
      .section { padding: 54px 0; }
      .manifesto { padding: 32px 24px; gap: 30px; }
      .cta { padding-top: 54px; }
      .cta-inner { padding: 46px 20px; }
      .form-row { grid-template-columns: 1fr; }
      .modal-actions { display: grid; }
      .modal-actions .btn { width: 100%; }
    }

.award-turnstile-host {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100001;
}
.eyebrow-modal { margin-bottom: 14px; }
.demo-pill-inline {
  display: inline-flex !important;
  margin-left: 6px !important;
}
