/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  /* Warm naturals */
  --bg:            #FDFCF9;
  --bg-warm:       #F8F4ED;
  --bg-sand:       #F2EDDF;
  --surface:       #FFFFFF;
  --surface-hover: #FEFDFB;

  /* Text */
  --text:          #3D3228;
  --text-secondary:#847866;
  --text-muted:    #B0A798;
  --text-on-dark:  #FBF9F5;
  --text-on-dark-secondary: rgba(251,249,245,0.65);

  /* Accent — warm terracotta */
  --accent:        #D0654A;
  --accent-hover:  #B8563D;
  --accent-light:  rgba(208,101,74,0.08);
  --accent-mid:    rgba(208,101,74,0.14);

  /* Status & feature colours */
  --sage:          #5E9968;
  --sage-light:    rgba(94,153,104,0.10);
  --sage-mid:      rgba(94,153,104,0.16);
  --amber:         #D49E42;
  --amber-light:   rgba(212,158,66,0.10);
  --peach:         #EEA070;
  --peach-light:   rgba(238,160,112,0.12);
  --sky:           #5DAACA;
  --sky-light:     rgba(93,170,202,0.10);

  /* Dark panels */
  --dark:          #353B34;
  --dark-warm:     #414740;
  --dark-surface:  rgba(255,255,255,0.07);

  /* Borders */
  --border:        #EBE5D9;
  --border-light:  #F3EEE5;
  --border-dark:   rgba(255,255,255,0.10);

  /* Typography — single family, weight contrast */
  --font-display:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --radius-full:   9999px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(53,59,52,0.04), 0 1px 2px rgba(53,59,52,0.02);
  --shadow:        0 4px 16px rgba(53,59,52,0.05), 0 1px 4px rgba(53,59,52,0.03);
  --shadow-lg:     0 12px 40px rgba(53,59,52,0.07), 0 4px 12px rgba(53,59,52,0.03);

  /* Transitions */
  --ease:          0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring:   0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peach);
}

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─────────────────────────────────────────
   DISCLAIMER — inline below hero
───────────────────────────────────────── */
.disclaimer-inline {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.disclaimer-warn {
  background: var(--accent-light);
  border-top-color: var(--accent-mid);
  border-bottom-color: var(--accent-mid);
  color: var(--accent);
}

/* ─────────────────────────────────────────
   INACTIVE / COMING-SOON LINKS
───────────────────────────────────────── */
.nav-inactive {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: default;
  user-select: none;
  opacity: 0.5;
}

.footer-link-inactive {
  font-size: 14px;
  color: rgba(250,249,246,0.25);
  cursor: default;
  user-select: none;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  background: rgba(255,255,255,0.94);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.navbar-logo span {
  font-weight: 400;
  color: var(--text-secondary);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--ease);
}

.navbar-links a:hover,
.navbar-links a[aria-current="page"] { color: var(--text); }

@media (max-width: 640px) {
  .navbar-links { display: none; }
}

/* ─────────────────────────────────────────
   DIRECTORY HERO
───────────────────────────────────────── */
.directory-hero {
  background: var(--bg);
  padding: 56px 20px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.directory-hero .eyebrow { margin-bottom: 12px; display: block; }

.directory-hero h1 {
  font-size: clamp(24px, 4vw, 40px);
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.directory-hero .subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.directory-hero .hero-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   SUBURB PILL NAV
───────────────────────────────────────── */
.suburb-nav-wrap {
  padding: 24px 0 20px;
}

.suburb-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.suburb-nav::-webkit-scrollbar { display: none; }

.suburb-pill {
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.suburb-pill:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.suburb-pill.active {
  background: var(--text);
  border-color: var(--text);
  color: white;
}

/* ─────────────────────────────────────────
   RESULTS META
───────────────────────────────────────── */
.results-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────
   CAFE CARDS GRID
───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 560px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─────────────────────────────────────────
   CAFE CARD
───────────────────────────────────────── */
.cafe-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.cafe-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.cafe-card-image {
  aspect-ratio: 4 / 3;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-sand);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.img-placeholder-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   BADGES
───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.badge-cruise {
  background: var(--dark);
  color: white;
}

.badge-open {
  background: var(--sage);
  color: white;
}

.badge-closed {
  background: rgba(44,36,24,0.5);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}

.badge-featured {
  background: var(--amber);
  color: white;
}

.badge-premium {
  background: var(--accent);
  color: white;
}

.badge-suburb {
  background: rgba(255,255,255,0.92);
  color: var(--text);
  backdrop-filter: blur(4px);
}

.badge-unverified {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-mid);
}

.badge-verifying {
  background: var(--amber-light);
  color: #A87E34;
  border: 1px solid rgba(212,158,66,0.35);
}

.badge-permanently-closed {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-mid);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   CAFE CARD BODY
───────────────────────────────────────── */
.cafe-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.card-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1.3;
  transition: color var(--ease);
}

.card-name:hover { color: var(--accent); }

.card-price {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  padding-top: 3px;
}

.card-suburb {
  font-size: 13px;
  color: var(--text-secondary);
}

.card-roaster {
  font-size: 13px;
  color: var(--peach);
}

.card-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
}

.feature-chip {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--bg-warm);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.feature-chip--sage {
  background: var(--sage-light);
  color: var(--sage);
  border-color: var(--sage-light);
}

.feature-chip--peach {
  background: var(--peach-light);
  color: #C07240;
  border-color: var(--peach-light);
}

.feature-chip--sky {
  background: var(--sky-light);
  color: #4888A8;
  border-color: var(--sky-light);
}

.feature-chip--amber {
  background: var(--amber-light);
  color: #A87E34;
  border-color: var(--amber-light);
}

/* ─────────────────────────────────────────
   COMPACT CARD (open-now grid)
───────────────────────────────────────── */
.compact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 560px) {
  .compact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .compact-grid { grid-template-columns: repeat(3, 1fr); }
}

.cafe-card-compact {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  align-items: center;
  gap: 14px;
}

.cafe-card-compact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.compact-main {
  flex: 1;
  min-width: 0;
}

.compact-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.compact-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--ease);
}

.compact-name:hover { color: var(--accent); }

.compact-distance {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.compact-price {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.compact-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cafe-card-highlighted {
  border-left: 3px solid var(--accent);
}

.compact-pick {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.compact-closes {
  font-size: 11px;
  color: var(--sage);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-muted);
}

.empty-state p { font-size: 15px; }

/* ─────────────────────────────────────────
   DIRECTORY SECTION
───────────────────────────────────────── */
.directory-section {
  padding: 0 0 64px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--ease), transform var(--ease);
  min-height: 44px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 12px 24px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--ease);
  min-height: 44px;
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--surface-hover);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 20px 32px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.footer-brand span {
  font-weight: 400;
  color: var(--text-on-dark-secondary);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
}

.footer-blurb {
  font-size: 13px;
  color: rgba(250,249,246,0.3);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-secondary);
  margin-bottom: 16px;
  font-style: normal;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(250,249,246,0.55);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-links a:hover { color: var(--text-on-dark); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(250,249,246,0.3);
}

/* ─────────────────────────────────────────
   SHOW PAGE — HERO
───────────────────────────────────────── */
.show-hero { padding-bottom: 32px; }

.show-hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

/* ─────────────────────────────────────────
   SHOW PAGE — BREADCRUMB
───────────────────────────────────────── */
.show-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 0 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease);
}

.breadcrumb-link:hover { color: var(--accent); }

/* ─────────────────────────────────────────
   SHOW PAGE — 2-COLUMN LAYOUT
───────────────────────────────────────── */
.show-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .show-layout {
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
  }
}

/* ─────────────────────────────────────────
   SHOW PAGE — PHOTO PLACEHOLDER
───────────────────────────────────────── */
.show-photo-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-sand);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  overflow: hidden;
}

.show-photo-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.show-photo-placeholder--closed {
  filter: grayscale(0.4) opacity(0.75);
}

.stamp-closed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  border: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  opacity: 0.88;
  pointer-events: none;
  white-space: nowrap;
}

@media (min-width: 600px) {
  .stamp-closed { font-size: 26px; padding: 12px 24px; }
}

/* ─────────────────────────────────────────
   SHOW PAGE — ABOUT + FEATURES
───────────────────────────────────────── */
.show-section-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.show-description {
  margin-bottom: 28px;
}

.show-description p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.show-features { margin-bottom: 28px; }

.features-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   SHOW PAGE — INFO PANEL (SIDEBAR)
───────────────────────────────────────── */
.show-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-panel {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.info-row:first-of-type { padding-top: 0; }
.info-row:last-of-type  { border-bottom: none; padding-bottom: 0; }

.info-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.info-hours {
  white-space: pre-line;
  display: block;
}

.info-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 2px;
  transition: color var(--ease);
}

.info-link:hover { color: var(--accent); }

.show-map-btn {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────────
   SHOW PAGE — BACK LINK
───────────────────────────────────────── */
.show-back {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* ─────────────────────────────────────────
   HOMEPAGE — HERO
───────────────────────────────────────── */
.home-hero {
  background: var(--bg-warm);
  padding: 72px 20px 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.home-hero .eyebrow { display: block; margin-bottom: 16px; }

.home-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.home-hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.home-hero-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ─────────────────────────────────────────
   HOMEPAGE — SECTIONS
───────────────────────────────────────── */
.home-section { padding: 52px 0 64px; }
.home-section-alt { background: var(--surface); }

.home-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.home-section-header h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-section-meta {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   OPEN DOT — pulsing live indicator
───────────────────────────────────────── */
.open-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  animation: open-pulse 2.4s ease-in-out infinite;
}

@keyframes open-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ─────────────────────────────────────────
   HOMEPAGE — CLOSED STATE
───────────────────────────────────────── */
.home-closed-state { padding: 48px 20px; }

.home-closed-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.home-closed-sub {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────
   HOMEPAGE — SECTION MORE LINK
───────────────────────────────────────── */
.section-more {
  margin-top: 28px;
  text-align: center;
}

/* ─────────────────────────────────────────
   HOMEPAGE — PICKS GRID (max 2-col)
───────────────────────────────────────── */
.picks-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .picks-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────
   HOMEPAGE — CRUISE TEASER
───────────────────────────────────────── */
.cruise-teaser {
  background: var(--dark);
  padding: 64px 20px;
}

.cruise-teaser-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cruise-teaser-inner h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cruise-teaser-inner p {
  font-size: 15px;
  color: var(--text-on-dark-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.cruise-teaser-pill {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-dark-secondary);
}

/* ─────────────────────────────────────────
   DIVIDER — replaces deco-rule
───────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 200px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─────────────────────────────────────────
   CRUISE SHIP ILLUSTRATION
───────────────────────────────────────── */
.cruise-ship-wrap {
  margin-top: 48px;
  opacity: 0.9;
}

.cruise-ship-svg {
  width: 100%;
  max-width: 640px;
  display: block;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   CRUISE TOGGLE — navbar pill button
───────────────────────────────────────── */
.cruise-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  text-decoration: none;
  min-height: 44px;
}

.cruise-toggle:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cruise-toggle.active {
  background: var(--dark);
}

.cruise-toggle svg {
  width: 15px;
  height: 15px;
}

/* ─────────────────────────────────────────
   CRUISE MODE BANNER
───────────────────────────────────────── */
.cruise-banner {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.cruise-icon {
  width: 44px;
  height: 44px;
  background: var(--peach);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.cruise-text h3 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  font-weight: 600;
}

.cruise-text p {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
}

.cruise-count {
  margin-left: auto;
  text-align: center;
  flex-shrink: 0;
}

.cruise-count strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-on-dark);
  line-height: 1;
  font-weight: 700;
}

.cruise-count span {
  font-size: 11px;
  color: var(--text-on-dark-secondary);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   CARD DISTANCE — cruise mode only
───────────────────────────────────────── */
.card-distance {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.card-distance svg {
  width: 14px;
  height: 14px;
}

/* ─────────────────────────────────────────
   CRUISE TEASER PILL — live state
───────────────────────────────────────── */
.cruise-teaser-pill--live {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}

.cruise-teaser-pill--live:hover {
  background: var(--accent);
  color: white;
}

/* ─────────────────────────────────────────
   CRUISE LANDING PAGE
───────────────────────────────────────── */
.cruise-landing-hero {
  background: var(--dark);
  padding: 80px 20px 64px;
  text-align: center;
}

.cruise-landing-hero .eyebrow {
  color: var(--peach);
}

.cruise-landing-hero h1 {
  font-size: clamp(26px, 5vw, 40px);
  color: var(--text-on-dark);
  margin: 16px 0;
}

.cruise-landing-hero p {
  font-size: 16px;
  color: var(--text-on-dark-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.cruise-landing-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 48px 0;
}

@media (min-width: 640px) {
  .cruise-landing-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.cruise-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.cruise-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cruise-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cruise-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.cruise-preview {
  padding: 48px 0 64px;
}

/* ─────────────────────────────────────────
   VISITOR BANNER
───────────────────────────────────────── */
.visitor-banner {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 20px;
  text-align: center;
}

.visitor-banner-text {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.visitor-banner-text strong {
  color: var(--text);
  font-weight: 600;
}

.cruise-preview h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 8px;
}

.cruise-preview .results-meta {
  margin-bottom: 28px;
}

/* ── Suburb pages ────────────────────── */
.suburb-content {
  max-width: 720px;
  margin-bottom: 40px;
}

.suburb-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.suburb-content h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

/* ── Cruise landing: cafe lists & tips ── */
.cruise-cafe-list,
.cruise-tips-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.cruise-cafe-list li,
.cruise-tips-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  color: var(--text-muted);
}

.cruise-cafe-list li:last-child,
.cruise-tips-list li:last-child {
  border-bottom: none;
}

.cruise-cafe-list a {
  font-weight: 500;
  color: var(--text);
}

.show-more-suburb {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
