/* ============================================================
   ALOHA KONA CONDOS — DIGITAL GUIDEBOOK
   Mobile-first, Touch Stay-style
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #1B4965;
  --primary-dk: #0d2d40;
  --accent:     #C4813D;
  --accent-lt:  #f5e8d8;
  --bg:         #FAFAF7;
  --surface:    #ffffff;
  --text:       #1a1a1a;
  --text-muted: #6b6b6b;
  --border:     #e8e4de;
  --green:      #2a7a4a;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --topbar-h:   56px;
  --bottom-h:   64px;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'Switzer', system-ui, sans-serif;
}

html { -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); overflow: hidden; height: 100dvh; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   SPLASH
   ============================================================ */
.splash {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dk);
}
.splash-bg {
  position: absolute; inset: 0;
  background: url('https://assets.hospitable.com/property_images/2193046/Sv17ENw7noR5jmxQs3tVmhwzNQmOvlyRUtOq8pda.jpg') center/cover no-repeat;
  opacity: .35;
}
.splash-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2rem 1.5rem; max-width: 380px;
}
.splash-logo {
  width: 100px; height: 100px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.4); margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.splash-title {
  font-family: var(--font-serif);
  font-size: 2rem; color: #fff; line-height: 1.2; margin-bottom: .4rem;
}
.splash-subtitle {
  font-size: .85rem; color: rgba(255,255,255,.7);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.splash-welcome {
  font-size: .95rem; color: rgba(255,255,255,.85);
  line-height: 1.6; margin-bottom: 2rem;
}
.splash-btn {
  background: var(--accent); color: #fff;
  padding: .9rem 2.5rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; letter-spacing: .02em;
  box-shadow: 0 4px 20px rgba(196,129,61,.5);
  transition: transform .15s, box-shadow .15s;
}
.splash-btn:active { transform: scale(.97); }

/* ============================================================
   APP SHELL
   ============================================================ */
.app {
  flex-direction: column; height: 100dvh;
  position: fixed; inset: 0;
}

/* TOP BAR */
.topbar {
  height: var(--topbar-h);
  background: var(--primary);
  display: flex; align-items: center; gap: .75rem;
  padding: 0 1rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  z-index: 20;
}
.topbar-logo {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3); flex-shrink: 0;
}
.topbar-title {
  flex: 1; font-family: var(--font-serif);
  font-size: 1.1rem; color: #fff; letter-spacing: .01em;
}
.menu-btn {
  width: 36px; height: 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-btn span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.85); border-radius: 2px;
  transition: .2s;
}

/* DRAWER */
.drawer {
  position: fixed; top: 0; left: -320px; bottom: 0;
  width: 300px; background: var(--surface);
  z-index: 50; transition: left .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.drawer.open { left: 0; }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 49; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer-overlay.show { opacity: 1; pointer-events: all; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1rem; background: var(--primary);
}
.drawer-logo { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); }
.drawer-close {
  color: rgba(255,255,255,.8); font-size: 1.2rem; padding: .4rem;
  line-height: 1;
}
.nav-list { list-style: none; padding: .5rem 0; flex: 1; }
.nav-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.25rem; color: var(--text);
  font-size: .95rem; font-weight: 500;
  transition: background .15s;
  border-radius: 0;
}
.nav-item:hover, .nav-item:active { background: var(--accent-lt); color: var(--accent); }
.nav-icon { font-size: 1.1rem; width: 24px; text-align: center; }

/* CONTENT AREA */
.content {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  padding-bottom: var(--bottom-h);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* SECTIONS */
.guide-section { display: none; }
.guide-section.active { display: block; }

/* SECTION HERO */
.section-hero {
  position: relative; height: 220px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.section-hero.short { height: 130px; }
.section-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%);
}
.section-hero-text {
  position: relative; z-index: 1; padding: 1.25rem 1.25rem 1.5rem;
  color: #fff;
}
.section-hero-text h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem; line-height: 1.1; margin-bottom: .3rem;
}
.section-hero-text p { font-size: .85rem; opacity: .85; }
.section-hero.short .section-hero-text { padding: 1rem 1.25rem; }
.section-hero.short h2 { font-size: 1.5rem; }

/* SECTION BODY */
.section-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.section-intro {
  font-size: .95rem; color: var(--text-muted); line-height: 1.6;
}
.subsection-title {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  margin-top: .5rem; padding-bottom: .4rem;
  border-bottom: 2px solid var(--accent-lt);
}

/* BOTTOM NAV */
.bottom-nav {
  height: var(--bottom-h);
  background: var(--surface); border-top: 1px solid var(--border);
  display: flex; align-items: stretch;
  flex-shrink: 0; z-index: 20;
  box-shadow: 0 -2px 12px rgba(0,0,0,.06);
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  color: var(--text-muted); font-size: .65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  transition: color .15s;
}
.bnav-item.active { color: var(--primary); }
.bnav-icon { font-size: 1.3rem; line-height: 1; }
.bnav-label { font-size: .62rem; }

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.welcome-card .lead {
  font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.5;
  color: var(--primary); margin-bottom: .75rem;
}
.welcome-card p { font-size: .95rem; line-height: 1.65; color: var(--text-muted); margin-bottom: .75rem; }
.welcome-card p:last-child { margin-bottom: 0; }
.signature { margin-top: 1rem; border-top: 1px solid var(--border); padding-top: .75rem; }
.signature p { color: var(--text-muted); font-size: .9rem; }
.sig-name { font-family: var(--font-serif); font-size: 1.2rem; color: var(--primary); }

.quick-facts {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
}
.card-title {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent); margin-bottom: 1rem;
}
.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.fact-item {
  display: flex; align-items: flex-start; gap: .6rem;
}
.fact-icon { font-size: 1.3rem; margin-top: 1px; flex-shrink: 0; }
.fact-label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.fact-value { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.3; }

.nav-cards { display: flex; flex-direction: column; gap: .6rem; }
.nav-card {
  display: flex; align-items: center; gap: .75rem;
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; box-shadow: var(--shadow);
  text-align: left; transition: transform .12s, box-shadow .12s;
  border: 1px solid var(--border);
}
.nav-card:active { transform: scale(.98); }
.nc-icon { font-size: 1.3rem; }
.nc-label { flex: 1; font-weight: 600; font-size: .95rem; }
.nc-arrow { color: var(--accent); font-size: 1rem; font-weight: 700; }

/* ============================================================
   INFO CARDS
   ============================================================ */
.info-card {
  display: flex; align-items: flex-start; gap: .9rem;
  background: var(--surface); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.info-card.accent-border { border-left: 4px solid var(--accent); }
.info-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }
.info-card-title { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.info-card-text { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* WiFi */
.wifi-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}
.wifi-header { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.wifi-icon { font-size: 1.3rem; }
.wifi-title { color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.wifi-detail { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.wifi-label { color: rgba(255,255,255,.55); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.wifi-value { color: #fff; font-size: 1rem; font-weight: 700; font-family: monospace; letter-spacing: .05em; }
.wifi-value.copyable { cursor: pointer; display: flex; align-items: center; gap: .5rem; }
.copy-hint { font-size: .65rem; font-family: var(--font-sans); font-weight: 400; color: rgba(255,255,255,.5); letter-spacing: normal; }

/* Tip box */
.tip-box {
  display: flex; gap: .75rem;
  background: #fffbf5; border: 1px solid #f0ddbf;
  border-radius: var(--radius-sm); padding: 1rem;
}
.tip-icon { font-size: 1.2rem; flex-shrink: 0; }
.tip-box p { font-size: .88rem; color: #7a5c35; line-height: 1.6; }
.tip-box a { color: var(--accent); text-decoration: underline; }
.tip-inline { font-size: .82rem; color: var(--text-muted); font-style: italic; margin-top: .5rem; }

/* ============================================================
   UNIT SECTION
   ============================================================ */
.unit-tabs {
  display: flex; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid var(--primary); flex-shrink: 0;
}
.unit-tab {
  flex: 1; padding: .65rem; font-size: .9rem; font-weight: 700;
  color: var(--primary); transition: background .15s, color .15s;
}
.unit-tab.active { background: var(--primary); color: #fff; }

.unit-content { display: none; flex-direction: column; gap: .75rem; }
.unit-content.active { display: flex; }

.unit-badge {
  display: inline-flex; align-items: center;
  background: var(--accent-lt); color: var(--accent);
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .35rem .85rem; border-radius: 50px;
  align-self: flex-start;
}
.remodel-notice {
  background: linear-gradient(135deg, #1B4965, #2a7a8a);
  color: #fff; border-radius: var(--radius-sm); padding: .85rem 1rem;
  font-size: .88rem; display: flex; align-items: center; gap: .5rem;
  line-height: 1.5;
}

/* Accordion */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1rem; font-size: .92rem; font-weight: 600;
  text-align: left; background: var(--surface); color: var(--text);
  transition: background .12s;
}
.accordion-btn:active { background: #f4f1ec; }
.acc-arrow { transition: transform .2s; flex-shrink: 0; color: var(--accent); }
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  background: #fafaf7;
}
.accordion-body.open { max-height: 600px; }
.accordion-body > * { padding: .9rem 1rem; font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.content-list { padding-left: 1.25rem; }
.content-list li { margin-bottom: .4rem; }

/* ============================================================
   RESORT CARDS
   ============================================================ */
.resort-card {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.resort-card-img { height: 160px; background-size: cover; background-position: center; }
.resort-card-body { padding: 1rem 1.25rem; }
.resort-card-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.resort-card-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PRACTICAL / CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.contact-grid.big { grid-template-columns: 1fr 1fr; }
.contact-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .2rem;
  background: var(--surface); border-radius: var(--radius);
  padding: 1rem .75rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .12s;
}
.contact-card:active { transform: scale(.97); }
.contact-card.whatsapp { border-color: #25D366; background: #f0fdf4; }
.contact-icon { font-size: 1.5rem; }
.contact-name { font-weight: 700; font-size: .9rem; }
.contact-role { font-size: .72rem; color: var(--text-muted); }
.contact-detail { font-size: .78rem; color: var(--primary); font-weight: 600; }
.contact-card.big .contact-icon { font-size: 1.8rem; }
.contact-card.big .contact-name { font-size: 1rem; }
.contact-card.big .contact-detail { font-size: .82rem; }

.emergency-list {
  background: var(--surface); border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid var(--border);
}
.emergency-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 1rem; font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.emergency-item:last-child { border-bottom: none; }
.emergency-item span { color: var(--text-muted); font-size: .85rem; }
.emergency-item a { font-weight: 700; color: #c0392b; font-size: .95rem; }

.website-link {
  text-align: center; margin-top: .5rem;
}
.website-link a {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff;
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow);
}

/* ============================================================
   HOUSE RULES
   ============================================================ */
.rules-list { display: flex; flex-direction: column; gap: .75rem; }
.rule-item {
  display: flex; gap: .9rem;
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 1rem; box-shadow: var(--shadow); border: 1px solid var(--border);
  align-items: flex-start;
}
.rule-icon { font-size: 1.4rem; flex-shrink: 0; }
.rule-item strong { font-size: .92rem; display: block; margin-bottom: .25rem; }
.rule-item p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
/* ============================================================
   AREA MAP
   ============================================================ */
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  padding: .75rem 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   TSUNAMI EVACUATION CARD
   ============================================================ */
.tsunami-card {
  background: #EBF4FF;
  border: 2px solid #1B4965;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
.tsunami-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: #1B4965;
  color: #fff;
  padding: 1rem 1.25rem;
}
.tsunami-icon { font-size: 1.8rem; flex-shrink: 0; }
.tsunami-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Instrument Serif', serif;
}
.tsunami-subtitle {
  font-size: .78rem;
  opacity: .85;
  margin-top: .1rem;
}
.tsunami-body {
  padding: 1.1rem 1.25rem;
}
.tsunami-body > p {
  font-size: .88rem;
  color: #1a2e3d;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.tsunami-steps {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1rem;
}
.tsunami-step {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  color: #1a2e3d;
  line-height: 1.5;
}
.step-num {
  background: #1B4965;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.tsunami-links {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tsunami-map-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #1B4965;
  color: #fff;
  padding: .55rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}
.tsunami-map-btn--outline {
  background: transparent;
  color: #1B4965;
  border: 2px solid #1B4965;
}
.tsunami-note {
  font-size: .78rem;
  color: #4a5568;
  background: rgba(27,73,101,.08);
  border-radius: 8px;
  padding: .65rem .9rem;
  line-height: 1.55;
  margin: 0;
}

.rules-section-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin: 1.5rem 0 .5rem;
  padding-left: .25rem;
}

/* ============================================================
   BEACHES / PLACES
   ============================================================ */
.place-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.place-card.nearby { border-left: 4px solid var(--green); }
.place-card-badge {
  display: inline-block; background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: .2rem .6rem; border-radius: 50px; margin-bottom: .6rem;
}
.place-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.place-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: .5rem; }
.map-link {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--primary); font-size: .8rem; font-weight: 600;
  border: 1px solid var(--primary); border-radius: 50px;
  padding: .25rem .75rem; margin-top: .25rem;
  transition: background .15s, color .15s;
}
.map-link:active { background: var(--primary); color: #fff; }

/* ============================================================
   ACTIVITIES — LINKS
   ============================================================ */
.link-list { display: flex; flex-direction: column; gap: .5rem; }
.link-item {
  display: flex; align-items: center; gap: .75rem;
  background: var(--surface); border-radius: var(--radius-sm);
  padding: .9rem 1rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  font-size: .9rem;
  transition: background .12s;
}
.link-item:active { background: var(--accent-lt); }
.link-item > span:first-child { font-size: 1.3rem; flex-shrink: 0; }
.link-item div { flex: 1; }
.link-item strong { display: block; font-size: .9rem; }
.link-item span { font-size: .78rem; color: var(--text-muted); }
.link-arrow { color: var(--accent); font-weight: 700; font-size: 1rem; }

/* ============================================================
   RESTAURANTS
   ============================================================ */
.restaurant-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; box-shadow: var(--shadow);
  border: 1px solid var(--border); position: relative;
}
.restaurant-card.must-try { border-left: 4px solid var(--accent); }
.restaurant-card.coming-soon { border-left: 4px solid #888; opacity: .85; }
.restaurant-badge--soon {
  background: #6b7280;
}
.restaurant-badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: .2rem .6rem; border-radius: 50px; margin-bottom: .5rem;
}
.restaurant-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.restaurant-meta { font-size: .78rem; color: var(--text-muted); margin-bottom: .5rem; }
.restaurant-meta a { color: var(--primary); font-weight: 600; }
.restaurant-card > p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: .4rem; }

/* ============================================================
   GROCERY
   ============================================================ */
.grocery-card {
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; box-shadow: var(--shadow);
  border: 1px solid var(--border); border-left: 4px solid var(--border);
}
.grocery-card.highlight { border-left-color: var(--accent); }
.grocery-name { font-weight: 700; font-size: .95rem; margin-bottom: .2rem; }
.grocery-detail { font-size: .82rem; color: var(--text-muted); margin-bottom: .25rem; }
.grocery-tip {
  font-size: .82rem; color: var(--accent); font-style: italic; margin-bottom: .4rem;
}

.market-list { display: flex; flex-direction: column; gap: .5rem; }
.market-item {
  background: var(--surface); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .15rem;
}
.market-item strong { font-size: .92rem; }
.market-time { font-size: .8rem; color: var(--accent); font-weight: 600; }
.market-loc { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   CHECK-OUT
   ============================================================ */
.checkout-checklist {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .1rem;
}
.check-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .65rem 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; cursor: pointer; line-height: 1.5;
}
.check-item:last-child { border-bottom: none; }
.check-item input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--primary); cursor: pointer;
}
.check-item em { color: var(--text-muted); font-size: .85rem; }

/* ============================================================
   DESKTOP — SIDEBAR LAYOUT
   ============================================================ */
@media (min-width: 768px) {
  body { overflow: hidden; }

  .splash-content { max-width: 460px; }
  .splash-title { font-size: 2.5rem; }

  .app { flex-direction: row; flex-wrap: nowrap; }

  .topbar { display: none; }
  .bottom-nav { display: none; }

  /* Sidebar always visible */
  .drawer {
    position: relative; left: 0; top: 0; bottom: 0;
    width: 260px; flex-shrink: 0;
    box-shadow: 2px 0 12px rgba(0,0,0,.08);
    overflow-y: auto; transition: none;
  }
  .drawer-overlay { display: none; }
  .drawer-close { display: none; }
  .drawer-header { padding: 1.5rem 1.25rem; }

  .content {
    flex: 1; overflow-y: auto; padding-bottom: 0;
  }

  .section-hero { height: 280px; }
  .section-hero.short { height: 150px; }
  .section-hero-text h2 { font-size: 2.2rem; }

  .section-body { padding: 2rem; max-width: 740px; }

  .fact-grid { grid-template-columns: repeat(4, 1fr); }

  .nav-cards { flex-direction: row; flex-wrap: wrap; }
  .nav-card { flex: 1; min-width: 160px; }

  .contact-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid.big { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
  .drawer { width: 280px; }
  .section-body { max-width: 820px; }
}

/* ============================================================
   RESORT PHOTO GRID (BBQ, Clubhouse etc.)
   ============================================================ */
.resort-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0 16px;
}
.resort-photo-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.resort-photo-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.resort-photo-label {
  font-size: 11px;
  color: var(--text-muted);
  padding: 6px 8px;
  line-height: 1.3;
}
.resort-photo-grid--two {
  grid-template-columns: 1fr 1fr;
}
.resort-photo-img--tall {
  height: 160px;
}
@media (max-width: 400px) {
  .resort-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   BEACH GEAR PHOTOS
   ============================================================ */
.gear-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
}
.gear-photo-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.gear-photo-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.gear-photo-label {
  font-size: 11px;
  color: var(--text-muted);
  padding: 6px 8px;
  line-height: 1.3;
}

/* ============================================================
   PARKING PHOTOS
   ============================================================ */
.parking-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.parking-photo-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.parking-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.parking-photo-label {
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 10px;
  line-height: 1.4;
}
@media (max-width: 400px) {
  .parking-photos {
    grid-template-columns: 1fr;
  }
  .parking-img {
    height: 200px;
  }
}

/* ── Section Maps ─────────────────────────────────────────────────── */
.section-map-wrap {
  margin: 24px 0 8px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  border: 1.5px solid rgba(27,73,101,0.12);
}
.section-map-label {
  background: #1B4965;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  letter-spacing: 0.02em;
}
.section-map {
  height: 320px;
  width: 100%;
}

/* Leaflet popup tweaks */
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
}
.leaflet-popup-tip {
  background: #fff !important;
}

/* ── Area Map Quick Links ─────────────────────────────────────────── */
.area-map-hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 16px 4px;
  padding: 14px;
  background: #1B4965;
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.area-map-category {
  margin: 20px 16px 0;
}
.area-map-category-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.area-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.area-map-pin {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: #fff;
  border: 1.5px solid rgba(27,73,101,0.15);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1B4965;
  text-decoration: none;
  line-height: 1.3;
  transition: background 0.15s, border-color 0.15s;
}
.area-map-pin:active {
  background: #f0f5f8;
}
.area-map-pin span {
  font-size: 11px;
  font-weight: 400;
  color: #888;
}
