@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

:root{
  --bg:#FAF6EC;          /* warm cream */
  --surface:#FFFFFF;
  --ink:#1B2624;         /* deep slate-black */
  --ink-soft:#5C6B69;
  --deep:#24444B;        /* river-slate teal — primary accent / hero */
  --deep2:#325B63;
  --deep-soft:#E7EEEC;
  --accent:#D99A3D;      /* warm amber — CTA / highlight, complements the cool slate */
  --accent-deep:#B87C26;
  --accent-soft:#FBF0DC;
  --border:#E3DECC;
  --verify:#2E6B63;
  --radius:14px;
  --shadow:0 1px 2px rgba(27,38,36,.05),0 8px 24px -12px rgba(27,38,36,.18);
  --shadow-lg:0 2px 4px rgba(27,38,36,.06),0 20px 48px -16px rgba(27,38,36,.25);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition:none!important}}
body{font-family:'Nunito Sans',system-ui,sans-serif;background:var(--bg);color:var(--ink);font-size:16px;line-height:1.6}
h1,h2,h3{font-family:'Fraunces',Georgia,serif;line-height:1.15;letter-spacing:-.01em}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer}
.wrap{max-width:1140px;margin:0 auto;padding:0 24px}
.icon{width:18px;height:18px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round;flex:none}

/* ---------- top bar ---------- */
.topbar{position:sticky;top:0;z-index:100;background:rgba(36,68,75,.94);backdrop-filter:blur(10px);border-bottom:1px solid var(--deep);color:#FAF6EC}
.topbar-in{display:flex;align-items:center;gap:28px;height:68px}
.logo{display:flex;align-items:center;gap:10px;font-family:'Fraunces',serif;font-weight:700;font-size:1.25rem;color:#FAF6EC}
.logo-mark{width:34px;height:34px;flex:none}
.logo-word{white-space:nowrap}
.nav{display:flex;gap:24px;font-weight:600;font-size:.95rem;color:#CFE1E0;margin-left:8px}
.nav a{padding:8px 2px;border-bottom:2px solid transparent;transition:color .2s}
.nav a:hover,.nav a:focus-visible{color:var(--accent)}
.nav a[aria-current]{color:var(--accent);border-bottom-color:var(--accent)}
.top-quiet{margin-left:auto;color:#CFE1E0;font-weight:700;font-size:.9rem;padding:8px 4px;transition:color .2s;white-space:nowrap}
.top-quiet:hover,.top-quiet:focus-visible{color:var(--accent)}
.top-cta{margin-left:16px;background:var(--accent);color:#22201A;border:none;border-radius:999px;padding:11px 20px;font-weight:700;font-size:.9rem;transition:background .2s,transform .15s;display:flex;align-items:center;gap:8px;white-space:nowrap;flex:none}
.top-cta:hover{background:var(--accent-deep);color:#fff}
.top-cta:active{transform:scale(.97)}
.menu-btn{display:none;margin-left:auto;width:44px;height:44px;border-radius:10px;border:1px solid var(--border);background:var(--surface);align-items:center;justify-content:center;flex:none}
.mobile-nav{display:none;flex-direction:column;border-top:1px solid var(--deep);background:var(--surface);padding:8px 24px 16px}
.mobile-nav:not([hidden]){display:flex}
.mobile-nav a{padding:12px 4px;font-weight:700;color:var(--ink);border-bottom:1px solid var(--border);min-height:44px;display:flex;align-items:center}
.mobile-nav__cta{margin-top:10px;background:var(--deep);color:#fff!important;border-bottom:none!important;border-radius:12px;justify-content:center;font-weight:800;padding:12px}
:focus-visible{outline:3px solid var(--accent);outline-offset:2px;border-radius:4px}

/* ---------- hero ---------- */
.hero{position:relative;overflow:hidden;isolation:isolate;background:
  radial-gradient(900px 420px at 85% -10%, rgba(217,154,61,.26), transparent 60%),
  radial-gradient(700px 380px at -10% 15%, rgba(50,91,99,.28), transparent 55%),
  linear-gradient(180deg,#1E3A40 0%, #24444B 100%);color:#FAF6EC}
.hero-in{padding:72px 0 56px;text-align:center;position:relative}
.badge-row{display:inline-flex;align-items:center;gap:8px;background:rgba(250,246,236,.12);color:#CFE1E0;font-weight:700;font-size:.82rem;padding:7px 14px;border-radius:999px;margin-bottom:22px}
.badge-row .dot{width:8px;height:8px;border-radius:50%;background:var(--accent);flex:none}
.hero h1{font-size:clamp(2.1rem,5vw,3.4rem);font-weight:600;max-width:760px;margin:0 auto 16px;color:#FAF6EC}
.hero h1 em{font-style:normal;color:var(--accent)}
.hero p.sub{color:#CFE1E0;font-size:1.1rem;max-width:560px;margin:0 auto 34px}

.search{max-width:640px;margin:0 auto;background:var(--surface);border:1px solid var(--border);border-radius:999px;box-shadow:var(--shadow-lg);display:flex;align-items:center;padding:6px 6px 6px 22px;gap:12px}
.search svg{color:var(--ink-soft)}
.search input{border:none;outline:none;flex:1;font:inherit;font-size:1.05rem;min-width:0;background:transparent;color:var(--ink)}
.search input::placeholder{color:#8A9694}
.search button{background:var(--deep);color:#fff;border:none;border-radius:999px;padding:14px 28px;font-weight:800;font-size:1rem;transition:background .2s,transform .15s;display:flex;align-items:center;gap:8px}
.search button:hover{background:var(--deep2)}
.search button:active{transform:scale(.97)}

.chips{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:22px}
.chip{display:flex;align-items:center;gap:7px;background:rgba(250,246,236,.08);border:1px solid rgba(250,246,236,.3);border-radius:999px;padding:9px 16px;font-weight:700;font-size:.88rem;color:#EAF1EF;transition:border-color .2s,color .2s,background .2s;cursor:pointer;min-height:44px;text-decoration:none}
.chip:hover{border-color:var(--accent);color:var(--accent);background:rgba(217,154,61,.12)}

.stats{display:flex;gap:0;justify-content:center;margin-top:44px;flex-wrap:wrap}
.stat{padding:0 32px;border-right:1px solid rgba(250,246,236,.25);text-align:center}
.stat:last-child{border-right:none}
.stat b{display:block;font-family:'Fraunces',serif;font-size:1.7rem;font-weight:700;color:var(--accent)}
.stat span{font-size:.85rem;color:#CFE1E0;font-weight:600}

/* ---------- split hero ---------- */
.hero--split{padding:0}
.hero-split-in{position:relative;z-index:1;display:grid;grid-template-columns:46fr 54fr;gap:48px;align-items:center;padding:56px 0}
.hero-copy{text-align:left;position:relative;isolation:isolate}
.hero-copy .badge-row{margin-bottom:20px}
.hero-waterfall-stencil{position:absolute;z-index:-1;bottom:-3rem;left:-3.5rem;width:clamp(31rem,45vw,50rem);height:auto;opacity:.16;mix-blend-mode:screen;pointer-events:none;user-select:none}
@media (max-width:1023px){.hero-waterfall-stencil{left:50%;transform:translateX(-50%);bottom:-2rem}}
@media (max-width:767px){.hero-waterfall-stencil{width:26rem;bottom:-1rem;opacity:.12}}
.hero-title{font-size:clamp(2.6rem,4.4vw,3.6rem);font-weight:600;line-height:.98;text-wrap:balance;max-width:520px;margin:0 0 16px;color:#FAF6EC}
.hero-title em{font-style:normal;color:var(--accent)}
.hero-copy .sub{margin:0 0 28px;max-width:460px;color:#CFE1E0;font-size:1.1rem}
.hero-copy .search{margin:0 0 20px;max-width:none}
.hero-copy .chips{justify-content:flex-start;margin-top:0}
.trust-line{margin-top:20px;color:#CFE1E0;font-size:.85rem;font-weight:600;display:flex;align-items:center;gap:8px}
.trust-line::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--accent);flex:none}

/* ---------- hero map preview ---------- */
.hero-map-col{min-width:0}
/* This white component sits inside the dark hero — explicit ink reset so
   text doesn't inherit the hero's light color and go invisible. */
.map-preview{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-lg);border:1px solid var(--border);background:var(--surface);color:var(--ink)}
.map-preview__toggle{position:absolute;top:14px;right:14px;z-index:500;display:flex;background:rgba(255,255,255,.96);border-radius:999px;padding:4px;gap:2px;box-shadow:var(--shadow)}
.mp-toggle-btn{border:none;background:transparent;padding:8px 16px;border-radius:999px;font-weight:700;font-size:.85rem;color:var(--ink-soft);min-height:36px}
.mp-toggle-btn.is-active{background:var(--deep);color:#fff}
.map-preview__map{width:100%;height:520px}
.map-preview__list{list-style:none;height:520px;overflow-y:auto;padding:56px 10px 10px}
.mp-list-row{display:flex;align-items:center;gap:12px;padding:10px;border-radius:10px;cursor:pointer;transition:background .15s;min-height:44px}
.mp-list-row:hover{background:var(--accent-soft)}
.mp-list-row img{width:56px;height:56px;border-radius:8px;object-fit:cover;flex:none;background:var(--deep-soft)}
.mp-list-info{display:flex;flex-direction:column;min-width:0;flex:1}
.mp-list-name{font-weight:700;font-size:.92rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--ink)}
.mp-list-loc{font-size:.8rem;color:var(--ink-soft)}
.mp-list-price{font-weight:800;font-size:.85rem;color:var(--ink);flex:none}

.map-preview__card{position:absolute;left:16px;bottom:16px;width:min(280px,calc(100% - 32px));z-index:500;background:var(--surface);border-radius:14px;box-shadow:var(--shadow-lg);overflow:hidden;color:var(--ink)}
.mp-card-close{position:absolute;top:8px;right:8px;width:28px;height:28px;border-radius:50%;border:none;background:rgba(20,32,30,.6);color:#fff;font-size:1rem;line-height:1;z-index:2;cursor:pointer}
.mp-card-link{display:block;color:inherit}
.mp-card-img{width:100%;height:130px;object-fit:cover;display:block;background:var(--deep-soft)}
.mp-card-body{padding:14px 16px 16px}
.mp-card-body h3{font-size:1rem;font-weight:700;margin-bottom:2px;color:var(--ink)}
.mp-card-loc{font-size:.82rem;color:var(--ink-soft);margin-bottom:4px}
.mp-card-status{font-size:.8rem;color:var(--ink-soft);margin-bottom:8px}
.mp-card-tags{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:10px}
.mp-card-foot{display:flex;align-items:center;justify-content:space-between;font-size:.85rem}
.mp-card-verified{color:var(--verify);font-weight:800;font-size:.75rem}
.mp-card-foot b{color:var(--ink)}
.marker-cluster-small,.marker-cluster-medium,.marker-cluster-large{background-color:rgba(36,68,75,.25)!important}
.marker-cluster-small div,.marker-cluster-medium div,.marker-cluster-large div{background-color:var(--deep)!important;color:#fff!important;font-weight:800!important}

/* ---------- nearby (white section, breaks from the dark hero) ---------- */
.nearby-section{background:var(--surface)}

.link-btn{background:none;border:none;padding:0;color:var(--deep2);font-weight:700;font-size:inherit;font-family:inherit;cursor:pointer;text-decoration:underline;text-underline-offset:2px}
.link-btn:hover{color:var(--deep)}

/* ---------- trust / methodology ---------- */
.trust-panel{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);padding:40px}
.trust-panel__head h2{font-size:clamp(1.5rem,3vw,2rem);font-weight:600;margin-bottom:10px}
.trust-panel__head p{color:var(--ink-soft);max-width:640px}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin:28px 0}
.trust-stat{border-top:3px solid var(--accent);padding-top:12px}
.trust-stat b{display:block;font-family:'Fraunces',serif;font-size:1.6rem;font-weight:700}
.trust-stat span{font-size:.85rem;color:var(--ink-soft);font-weight:600}
.trust-note{font-size:.88rem;color:var(--ink-soft);border-top:1px solid var(--border);padding-top:20px}

/* ---------- map page search bar ---------- */
.map-search{max-width:520px;margin:18px 0 0;background:var(--surface);border:1px solid var(--border);border-radius:999px;box-shadow:var(--shadow);display:flex;align-items:center;padding:6px 6px 6px 18px;gap:10px}
.map-search svg{color:var(--ink-soft);flex:none}
.map-search input{border:none;outline:none;flex:1;font:inherit;font-size:.98rem;min-width:0;background:transparent;color:var(--ink)}
.map-search button{background:var(--deep);color:#fff;border:none;border-radius:999px;padding:11px 22px;font-weight:800;font-size:.92rem;min-height:44px}
.map-search button:hover{background:var(--deep2)}
#map-result-count{font-weight:700;color:var(--deep2)}

/* ---------- ad slot ---------- */
.adslot{margin:40px auto 0;max-width:728px;border:1px dashed var(--border);border-radius:10px;background:var(--surface);padding:26px;text-align:center;color:#A9A88C;font-size:.8rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase}

/* ---------- sections ---------- */
section{padding:64px 0}
.sec-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:30px;flex-wrap:wrap}
.sec-head h2{font-size:clamp(1.5rem,3vw,2.1rem);font-weight:600}
.sec-head p{color:var(--ink-soft);margin-top:6px;max-width:520px}
.sec-link{font-weight:800;color:var(--deep2);font-size:.95rem;display:flex;align-items:center;gap:6px;white-space:nowrap}
.sec-link:hover{color:var(--deep)}

/* ---------- listing cards ---------- */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s;display:flex;flex-direction:column;cursor:pointer}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.card-art{height:150px;position:relative}
.card-art svg{width:100%;height:100%;display:block}
.v-badge{position:absolute;top:12px;left:12px;background:rgba(255,255,255,.95);color:var(--verify);font-size:.75rem;font-weight:800;padding:5px 11px;border-radius:999px;display:flex;align-items:center;gap:5px;box-shadow:0 2px 8px rgba(0,0,0,.12)}
.v-badge svg{width:13px;height:13px;stroke-width:3}
.fav{position:absolute;top:10px;right:10px;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.92);border:none;display:flex;align-items:center;justify-content:center;color:var(--ink-soft);transition:color .2s,transform .15s}
.fav:hover{color:var(--deep)}
.fav:active{transform:scale(.9)}
.card-body{padding:18px 18px 20px;display:flex;flex-direction:column;gap:10px;flex:1}
.card-top{display:flex;justify-content:space-between;align-items:start;gap:10px}
.card-top h3{font-size:1.12rem;font-weight:600}
.loc{color:var(--ink-soft);font-size:.88rem;font-weight:600;display:flex;align-items:center;gap:5px;margin-top:3px}
.loc svg{width:14px;height:14px}
.tags{display:flex;flex-wrap:wrap;gap:6px}
.tag{font-size:.76rem;font-weight:700;color:var(--deep2);background:var(--deep-soft);border-radius:6px;padding:4px 9px}
.tag.alt{color:#8A5A0B;background:var(--accent-soft)}
.tag--warn{color:#8A5A0B;background:var(--accent-soft)}
.card-foot{margin-top:auto;padding-top:12px;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;font-size:.85rem;color:var(--ink-soft);font-weight:600}
.card-foot b{color:var(--ink);font-weight:800}
.open{color:var(--verify);display:flex;align-items:center;gap:5px}
.open .dot{width:7px;height:7px;border-radius:50%;background:var(--verify)}

/* ---------- states ---------- */
.states{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.state-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.state{display:flex;align-items:center;justify-content:space-between;border:1px solid var(--border);border-radius:12px;padding:16px 18px;font-weight:700;transition:border-color .2s,background .2s;background:var(--bg)}
.state:hover{border-color:var(--deep);background:#F1EDDF}
.state span{color:var(--ink-soft);font-size:.82rem;font-weight:700;background:var(--surface);border:1px solid var(--border);padding:3px 10px;border-radius:999px}

/* ---------- guides ---------- */
.guide-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.guide{border-radius:var(--radius);padding:26px;border:1px solid var(--border);background:var(--surface);box-shadow:var(--shadow);transition:transform .2s}
.guide:hover{transform:translateY(-3px)}
.guide .g-ic{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.guide h3{font-size:1.1rem;font-weight:600;margin-bottom:8px}
.guide p{color:var(--ink-soft);font-size:.93rem}
.guide a{display:inline-flex;align-items:center;gap:6px;margin-top:14px;font-weight:800;font-size:.9rem;color:var(--deep2)}

/* ---------- owner/submit CTA ---------- */
.owner{background:linear-gradient(115deg,#1E3A40 0%,#152A2E 60%),radial-gradient(600px 300px at 90% 0%,rgba(217,154,61,.2),transparent);background-blend-mode:screen;border-radius:20px;color:#FAF6EC;padding:52px 48px;display:flex;align-items:center;justify-content:space-between;gap:36px;flex-wrap:wrap;position:relative;overflow:hidden}
.owner::after{content:"";position:absolute;right:-60px;bottom:-80px;width:280px;height:280px;border-radius:50%;background:radial-gradient(circle at 35% 35%,rgba(217,154,61,.4),rgba(50,91,99,.3) 55%,transparent 75%)}
.owner h2{font-size:clamp(1.4rem,2.6vw,2rem);font-weight:600;max-width:460px}
.owner p{color:#CFE1E0;margin-top:10px;max-width:480px}
.owner .btns{display:flex;gap:12px;flex-wrap:wrap;position:relative;z-index:1}
.btn-solid{background:var(--accent);color:#22201A;border:none;border-radius:999px;padding:14px 26px;font-weight:800;font-size:.95rem;transition:background .2s}
.btn-solid:hover{background:#fff}
.btn-ghost{background:transparent;color:#FAF6EC;border:1.5px solid rgba(250,246,236,.4);border-radius:999px;padding:14px 26px;font-weight:800;font-size:.95rem;transition:border-color .2s}
.btn-ghost:hover{border-color:#FAF6EC}

/* ---------- FAQ ---------- */
.faq{max-width:760px;margin:0 auto}
.faq h2{text-align:center;margin-bottom:34px;font-size:clamp(1.5rem,3vw,2.1rem);font-weight:600}
details{background:var(--surface);border:1px solid var(--border);border-radius:12px;margin-bottom:12px;overflow:hidden}
summary{list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px;padding:18px 22px;font-weight:800;font-size:1rem;cursor:pointer}
summary::-webkit-details-marker{display:none}
summary svg{transition:transform .25s;color:var(--deep2);flex:none}
details[open] summary svg{transform:rotate(45deg)}
details .a{padding:0 22px 20px;color:var(--ink-soft);font-size:.95rem}

/* ---------- footer ---------- */
footer{background:#15292D;color:#B4C7C4;padding:56px 0 32px;margin-top:24px}
.foot-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.foot-grid h4{color:#FAF6EC;font-size:.85rem;text-transform:uppercase;letter-spacing:.1em;margin-bottom:14px}
.foot-grid a{display:block;padding:4px 0;font-size:.92rem;transition:color .2s}
.foot-grid a:hover{color:var(--accent)}
.foot-brand p{font-size:.92rem;max-width:280px;margin-top:12px}
.foot-bottom{border-top:1px solid rgba(250,246,236,.12);padding-top:24px;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:.85rem}

/* ---------- responsive ---------- */
@media (max-width:1023px){
  .hero-split-in{grid-template-columns:1fr;gap:32px;padding:40px 0}
  .hero-copy{text-align:center}
  .hero-title{margin-left:auto;margin-right:auto}
  .hero-copy .sub{margin-left:auto;margin-right:auto}
  .hero-copy .search{margin-left:auto;margin-right:auto;max-width:560px}
  .hero-copy .chips{justify-content:center}
  .trust-line{justify-content:center}
  .map-preview__map,.map-preview__list{height:380px}
  .grid3{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:960px){
  .grid3,.guide-grid{grid-template-columns:repeat(2,1fr)}
  .state-grid{grid-template-columns:repeat(3,1fr)}
  .foot-grid{grid-template-columns:1fr 1fr}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .nav,.top-quiet,.top-cta{display:none}
  .menu-btn{display:flex;margin-left:auto}
  .topbar-in{gap:12px}
  .logo{font-size:1.05rem}
  .logo-mark{width:28px;height:28px}
  .grid3,.guide-grid{grid-template-columns:1fr}
  .state-grid,.region-grid{grid-template-columns:repeat(2,1fr)}
  .search{flex-direction:column;border-radius:20px;padding:12px;gap:10px}
  .search input{width:100%;padding:8px 4px;text-align:center}
  .search button{width:100%;justify-content:center}
  .stat{padding:0 18px}
  .owner{padding:36px 28px}
  .foot-grid{grid-template-columns:1fr}
}

/* ---------- map page ---------- */
#falls-map{width:100%;height:70vh;min-height:480px;border-radius:var(--radius);border:1px solid var(--border);box-shadow:var(--shadow)}
.map-page-head{padding:32px 0 20px}
.map-legend{display:flex;gap:16px;flex-wrap:wrap;margin-top:14px;font-size:.85rem;color:var(--ink-soft);font-weight:600}
.leaflet-popup-content b{font-family:'Fraunces',serif;font-size:1.05rem}
.leaflet-popup-content a{color:var(--deep2);font-weight:800}

/* ---------- falls detail page ---------- */
.detail-hero{padding:44px 0 0}
.detail-title{font-size:clamp(1.8rem,4vw,2.6rem);font-weight:600;max-width:820px}
.detail-meta{display:flex;flex-wrap:wrap;gap:18px;margin:14px 0 26px;color:var(--ink-soft);font-weight:600;font-size:.95rem}
.detail-grid{display:grid;grid-template-columns:2fr 1fr;gap:36px;padding-bottom:56px;align-items:start}
.detail-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);padding:24px}
.detail-card + .detail-card{margin-top:20px}
.detail-card h2{font-size:1.15rem;font-weight:600;margin-bottom:12px}
.fact-row{display:flex;justify-content:space-between;gap:12px;padding:9px 0;border-bottom:1px solid var(--border);font-size:.92rem}
.fact-row:last-child{border-bottom:none}
.fact-row span:first-child{color:var(--ink-soft);font-weight:600}
.fact-row span:last-child{font-weight:700;text-align:right}
.unconfirmed{background:var(--accent-soft);color:#8A5A0B;font-weight:800;font-size:.72rem;padding:5px 10px;border-radius:999px;display:inline-flex;align-items:center;gap:5px;margin-bottom:16px}
.editor-block p{margin-top:10px;color:var(--ink-soft)}
.tip-list{display:flex;flex-direction:column;gap:8px;margin-top:10px}
.tip-list li{list-style:none;padding-left:20px;position:relative;font-size:.92rem;color:var(--ink-soft)}
.tip-list li::before{content:"✓";position:absolute;left:0;color:var(--deep2);font-weight:800}
@media (max-width:800px){.detail-grid{grid-template-columns:1fr}}

.crumbs{font-size:.8rem;color:var(--ink-soft);margin-bottom:12px}
.crumbs a{color:var(--deep2);font-weight:700}
.crumbs a:hover{text-decoration:underline}

.verdict{margin-top:16px;font-size:1.05rem;line-height:1.55;color:var(--ink);font-weight:600;max-width:64ch;border-left:3px solid var(--accent);padding-left:14px}

.detail-card h3.sub{font-family:'Nunito Sans',system-ui,sans-serif;font-size:.78rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--ink-soft);margin:18px 0 6px}
.detail-card h3.sub:first-of-type{margin-top:8px}
.detail-card p{color:var(--ink-soft);font-size:.95rem}
.detail-card .note{font-size:.86rem;color:var(--ink-soft)}
.detail-card .note a{color:var(--deep2);font-weight:700}
.detail-card .note a:hover{text-decoration:underline}

.editor-block :is(p,ul,ol){margin-bottom:12px}
.editor-block :is(p,li){color:var(--ink-soft);font-size:.95rem;line-height:1.7}
.editor-block ul,.editor-block ol{padding-left:20px}
.editor-block li{margin-bottom:6px}
.editor-block h3{font-size:1rem;margin:18px 0 8px;color:var(--ink)}
.editor-block :last-child{margin-bottom:0}

.faq{border-top:1px solid var(--border);padding:14px 0}
.faq:first-of-type{border-top:none;padding-top:4px}
.faq:last-of-type{padding-bottom:0}
.faq__q{font-size:.98rem;font-weight:600;margin-bottom:6px}
.faq__a{font-size:.92rem;color:var(--ink-soft)}

.nearby{list-style:none;display:flex;flex-direction:column;gap:12px}
.nearby li{display:flex;flex-direction:column;gap:2px;padding-bottom:12px;border-bottom:1px solid var(--border)}
.nearby li:last-child{border-bottom:none;padding-bottom:0}
.nearby a{font-weight:700;color:var(--deep2);font-size:.96rem}
.nearby a:hover{text-decoration:underline}
.nearby__meta{font-size:.82rem;color:var(--ink-soft)}

.ad-slot{margin:20px 0;text-align:center;min-height:0}
.ad-slot__label{display:block;font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;color:#9AA69A;margin-bottom:6px}
.ad-slot .adsbygoogle{display:block;margin:0 auto}

.region-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:16px;margin-top:20px}
.region-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:18px;box-shadow:var(--shadow);transition:transform .15s ease,box-shadow .15s ease}
.region-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.region-card h3{font-size:1.05rem;margin-bottom:4px}
.region-card p{font-size:.85rem;color:var(--ink-soft)}

.prose{max-width:70ch}
.prose h2{font-size:1.3rem;margin:28px 0 10px}
.prose h3{font-size:1.05rem;margin:20px 0 8px}
.prose p,.prose li{color:var(--ink-soft);line-height:1.75;margin-bottom:12px}
.prose ul,.prose ol{padding-left:22px}

/* ---------- confirmation badges ---------- */
.badge-confirmed,.badge-verified{font-weight:800;font-size:.72rem;padding:5px 11px;border-radius:999px;display:inline-flex;align-items:center;gap:6px;margin-bottom:16px;letter-spacing:.01em}
.badge-confirmed{background:var(--deep-soft);color:var(--verify);border:1px solid #C7DAD7}
.badge-verified{background:var(--verify);color:#fff}

/* ---------- generated waterfall artwork ---------- */
.falls-art{display:block;width:100%;height:100%;object-fit:cover}
.card-art{height:auto;aspect-ratio:400/150;max-height:230px}
.card-art__img{width:100%;height:100%;display:block}
.hero-art{width:100%;height:clamp(150px,22vw,260px);overflow:hidden;line-height:0;border-bottom:1px solid var(--border)}
.hero-art .falls-art{height:100%}
.falls-art--blank{background:linear-gradient(135deg,var(--accent-soft),var(--deep-soft))}

/* ---------- real photo (replaces the illustrated banner when present) ---------- */
.detail-photo-row{display:flex;align-items:flex-start;gap:16px;margin-top:16px}
.photo-trigger{flex:0 0 230px;width:230px;padding:0;border:none;background:none;cursor:zoom-in;
  border-radius:var(--radius);transition:transform .15s ease}
.photo-trigger:hover{transform:scale(1.02)}
.photo-trigger:focus-visible{outline:2px solid var(--deep);outline-offset:2px}
.detail-photo{display:block;width:100%;height:auto;aspect-ratio:3/2;object-fit:cover;
  object-position:center 75%;
  border-radius:var(--radius);border:2px solid var(--border);box-shadow:var(--shadow)}
.detail-photo-row .verdict--beside{margin-top:0;flex:1;min-width:0}
@media (max-width:640px){.detail-photo-row{flex-direction:column}.photo-trigger{flex-basis:auto;width:100%;max-width:280px}}

/* ---------- photo lightbox ---------- */
.photo-lightbox{border:none;padding:0;background:transparent;max-width:90vw;max-height:90vh;overscroll-behavior:contain}
.photo-lightbox::backdrop{background:rgba(10,16,15,.82)}
.photo-lightbox img{display:block;width:100%;height:100%;max-width:90vw;max-height:90vh;object-fit:contain;border-radius:var(--radius)}
.lightbox-close{position:fixed;top:18px;right:18px;width:40px;height:40px;border-radius:50%;
  border:none;background:rgba(10,16,15,.6);color:#fff;font-size:1.1rem;cursor:pointer;z-index:1}
.lightbox-close:hover{background:rgba(10,16,15,.85)}

/* --- guide pages ------------------------------------------------------- */
.stat-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.stat-table th, .stat-table td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.stat-table th { font-weight: 700; color: var(--ink-soft); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.stat-table tbody tr:hover { background: rgba(0,0,0,.02); }
.stat-table td a { font-weight: 600; }
.prose-list { margin: 12px 0 0 0; padding-left: 22px; }
.prose-list li { margin-bottom: 10px; line-height: 1.6; }
.guide-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.guide-card { display: block; padding: 20px; border: 1px solid var(--border); border-radius: 12px; background: #fff; text-decoration: none; color: inherit; transition: box-shadow .15s, transform .15s; }
.guide-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); transform: translateY(-2px); }
.guide-card h3 { margin: 0 0 6px; font-size: 1.08rem; }
.guide-card p { margin: 0; color: var(--ink-soft); font-size: .93rem; line-height: 1.5; }

/* --- static pages (about/contact/privacy/add-listing) ------------------ */
.static-hero{padding:52px 0 8px}
.static-hero h1{font-size:clamp(2rem,4vw,2.7rem);font-weight:600;max-width:720px}
.static-hero p{color:var(--ink-soft);max-width:640px;margin-top:12px;font-size:1.05rem}
.form-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);padding:32px;max-width:640px}
.form-row{display:flex;flex-direction:column;gap:6px;margin-bottom:18px}
.form-row label{font-weight:700;font-size:.9rem}
.form-row input,.form-row select,.form-row textarea{border:1px solid var(--border);border-radius:10px;padding:12px 14px;font:inherit;font-size:.95rem;background:var(--bg);color:var(--ink)}
.form-row textarea{min-height:120px;resize:vertical}
.form-submit{background:var(--deep);color:#fff;border:none;border-radius:999px;padding:13px 28px;font-weight:800;font-size:.95rem}
.form-submit:hover{background:var(--deep2)}
