/* =====================================================
   Ka-Ching Assistant — styles
   Brand palette: Horizon Glow, Spruce Grove, Zirkon,
   Dwarf Pine, Burnt Maroon, Dark Green Velvet
   Type: Jost (free web stand-in for Futura PT)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&display=swap');

:root {
  /* Ka-Ching brand palette (sampled from Logo Set 1, July 2024) */
  --horizon-glow:     #C77B7B;
  --spruce-grove:     #94AEAB;
  --zirkon:           #974A4D;
  --dwarf-pine:       #577270;
  --burnt-maroon:     #5B2E33;
  --green-velvet:     #1F3D36;

  /* Surfaces */
  --cream:            #F2E8E0;   /* warm cream, brand background */
  --cream-soft:       #F8F1EA;
  --charcoal:         #2A2826;   /* near-black from cover slide */
  --pink-rail:        #F4D6D2;   /* the soft pink accent rail from brand sheets */

  /* Semantic */
  --bg:        var(--cream);
  --surface:   #FFFFFF;
  --ink:       var(--charcoal);
  --ink-soft:  #6C5F5A;
  --line:      #E5D9CC;
  --brand:     var(--burnt-maroon);
  --brand-2:   var(--green-velvet);
  --accent:    var(--horizon-glow);
  --leaf:      var(--dwarf-pine);
  --ok:        #2F7D4F;

  --shadow:    0 2px 6px rgba(42,40,38,.05), 0 8px 20px rgba(42,40,38,.04);
  --radius:    16px;
  --radius-l:  22px;

  --font-display: 'Jost', 'Futura', 'Trebuchet MS', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Jost', 'Futura', 'Trebuchet MS', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;             /* Futura PT Medium = body */
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;             /* Futura PT Heavy = headings */
  letter-spacing: -0.01em;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- App shell ---------- */
.app {
  max-width: 520px;
  margin: 0 auto;
  min-height: 100dvh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding-bottom: 96px;
}

/* ---------- Header ---------- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  padding: 12px 20px 10px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-header .back-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
}
.app-header.is-subpage .back-btn { display: inline-flex; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.brand-mark {
  width: 44px; height: 44px;
  background: url('assets/logo-badge.png') no-repeat center / contain;
  flex: 0 0 44px;
}

.brand-text { display:flex; flex-direction:column; min-width:0; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.1;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

/* ---------- Section wrappers ---------- */
.view { display: none; padding: 16px 20px 24px; }
.view.is-active { display: block; }

.view-title {
  font-size: 26px;
  font-weight: 800;
  margin: 4px 0 4px;
  letter-spacing: -0.02em;
  color: var(--brand-2);
}
.view-sub {
  color: var(--ink-soft);
  margin: 0 0 18px;
}

/* ---------- Home: hero ---------- */
.hero {
  background: var(--green-velvet);
  color: var(--cream);
  border-radius: var(--radius-l);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.hero .hero-friends {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  background: url('assets/logo-friends.png') no-repeat center / contain;
  opacity: .95;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.18));
  pointer-events: none;
}
.hero h1 {
  font-size: 28px;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  max-width: 60%;
  color: var(--cream);
}
.hero p {
  margin: 0 0 14px;
  color: var(--pink-rail);
  opacity: .95;
  font-size: 15px;
  max-width: 65%;
  font-weight: 500;
}
.hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--horizon-glow);
  color: white;
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
  position: relative;
  z-index: 1;
}
.hero .hero-cta:hover { background: var(--zirkon); }

/* ---------- Tile grid (home) ---------- */
.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 124px;
  transition: transform .05s ease;
  font-family: var(--font-body);
}
.tile:active { transform: scale(0.98); }
.tile-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--pink-rail);
  display: grid; place-items: center;
  font-size: 18px;
}
.tile-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.15;
  color: var(--brand-2);
  letter-spacing: -0.01em;
}
.tile-sub   { color: var(--ink-soft); font-size: 13px; }

.tile.tile-refer {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--horizon-glow) 0%, var(--zirkon) 100%);
  border-color: var(--zirkon);
  color: white;
}
.tile.tile-refer .tile-icon { background: rgba(255,255,255,.18); }
.tile.tile-refer .tile-title { color: white; }
.tile.tile-refer .tile-sub   { color: rgba(255,255,255,.92); }

/* ---------- Quick questions ---------- */
.quick-q { margin-top: 22px; }
.quick-q h2 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--leaf);
  margin: 0 0 10px;
  font-weight: 700;
}
.quick-q-list { display: flex; flex-direction: column; gap: 8px; }
.quick-q-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
}
.quick-q-item:hover { border-color: var(--brand); }
.quick-q-item .chev { color: var(--ink-soft); font-weight: 700; }

/* ---------- Generic cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-2);
}
.card .icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--pink-rail);
  display: grid; place-items: center;
  font-size: 16px;
}
.card p { margin: 0; color: var(--ink-soft); }
.card p strong { color: var(--ink); font-weight: 700; }

/* ---------- Lists ---------- */
.list-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
}
.list-item:hover { border-color: var(--brand); }
.list-item .li-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-2);
}
.list-item .li-sub  { color: var(--ink-soft); font-size: 13px; margin-top: 2px; }
.list-item .chev { color: var(--ink-soft); font-size: 18px; font-weight: 700; }

/* ---------- Gear steps ---------- */
.steps {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px 14px 14px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.steps ol { padding-left: 22px; margin: 4px 0; }
.steps li { margin: 8px 0; }
.steps li strong { color: var(--ink); font-weight: 700; }

.troubleshoot {
  background: #FAEAE5;
  border: 1px solid var(--pink-rail);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.troubleshoot h4 {
  margin: 0 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand);
  font-weight: 700;
}
.troubleshoot ul { margin: 0; padding-left: 18px; }
.troubleshoot li { margin: 4px 0; color: var(--ink-soft); }

/* ---------- Nearby pills ---------- */
.pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin: 0 -20px 14px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: none;
}
.pills::-webkit-scrollbar { display: none; }
.pill {
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}
.pill.is-active {
  background: var(--brand-2);
  color: var(--cream);
  border-color: var(--brand-2);
}

.venue {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}
.venue-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.venue-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-2);
}
.venue-walk {
  font-size: 11px;
  color: var(--brand);
  background: var(--pink-rail);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}
.venue-note { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }

/* ---------- Buttons & forms ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  min-height: 52px;
  letter-spacing: -0.005em;
}
.btn:hover { border-color: var(--brand); }
.btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--cream);
}
.btn.primary:hover { background: var(--brand-2); border-color: var(--brand-2); }
.btn.ghost  { background: transparent; }
.btn-row { display: flex; flex-direction: column; gap: 10px; }
.btn-row.two-col { flex-direction: row; flex-wrap: wrap; }
.btn-row.two-col .btn { flex: 1 1 calc(50% - 5px); }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-field .hint {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  width: 100%;
  font-weight: 500;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--brand); }
.form-field textarea { min-height: 90px; resize: vertical; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
}
.checkbox-row input { margin-top: 3px; }
.checkbox-row label { font-size: 14px; color: var(--ink-soft); font-weight: 500; }

/* ---------- Confirmation ---------- */
.success {
  background: #E8F1E8;
  border: 1px solid #BBD3BD;
  color: #1B4E2C;
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  margin-bottom: 16px;
}
.success .tick {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ok);
  color: white;
  display: grid; place-items: center;
  margin: 0 auto 10px;
  font-size: 28px;
  font-weight: 800;
}
.success h3 { margin: 0 0 6px; color: var(--ok); }

/* ---------- FAQ answer view ---------- */
.faq-answer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.faq-answer h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--brand-2);
}
.faq-answer p { margin: 0; color: var(--ink); font-weight: 500; }

.refer-nudge {
  background: linear-gradient(135deg, var(--horizon-glow) 0%, var(--zirkon) 100%);
  border: 1px solid var(--zirkon);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  color: white;
}
.refer-nudge .nudge-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px;
  flex: 0 0 40px;
}
.refer-nudge .nudge-text { flex: 1; font-size: 14px; }
.refer-nudge button {
  background: var(--cream);
  color: var(--brand);
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* ---------- Sticky footer CTA ---------- */
.sticky-footer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9;
  background: linear-gradient(to top, var(--bg) 65%, rgba(242,232,224,0));
  padding: 12px 20px 16px;
  display: flex;
  justify-content: center;
}
.sticky-footer .inner { max-width: 520px; width: 100%; }
.sticky-footer .btn { box-shadow: var(--shadow); }

/* ---------- Helpers ---------- */
.muted { color: var(--ink-soft); }
.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
  margin: 18px 0 8px;
}

/* The brand "rail" — small decorative stripe used at the bottom of cards in print */
.brand-rail {
  display: flex;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin: 18px 0 4px;
}
.brand-rail span { flex: 1; }
.brand-rail .r-charcoal { background: var(--charcoal); flex: 2; }
.brand-rail .r-pink     { background: var(--pink-rail); flex: 1; }

/* =====================================================
   Optimisation layer — added in v2
   ===================================================== */

/* ---------- Header chips (mode pill) ---------- */
.header-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}
.chip-mode { background: var(--cream-soft); }
.chip:hover { border-color: var(--brand); }

/* ---------- Hero updates ---------- */
.hero h1 { max-width: 70%; }                /* leave room for friends graphic */
.hero-compact { padding: 18px 22px 16px; }
.hero-compact h1 { font-size: 22px; max-width: 75%; margin-bottom: 12px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-incentive {
  font-size: 13px;
  color: var(--pink-rail);
  font-weight: 500;
}
.hero-friends-sm {
  width: 110px;
  height: 110px;
  bottom: -14px;
  right: -14px;
}
.hero-link {
  background: transparent;
  border: 0;
  color: var(--pink-rail);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  margin-top: 12px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: rgba(244,214,210,.5);
  text-underline-offset: 3px;
  position: relative;
  z-index: 1;
}
.hero-link:hover { color: white; }

/* ---------- Quick intent strip ---------- */
.intents {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0 -20px 18px;
  padding: 4px 20px 8px;
  scrollbar-width: none;
}
.intents::-webkit-scrollbar { display: none; }

.intent {
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 124px;
  text-align: left;
  font-family: var(--font-body);
  box-shadow: var(--shadow);
  transition: transform .05s ease, border-color .15s ease;
}
.intent:active { transform: scale(0.97); }
.intent:hover  { border-color: var(--brand); }
.intent-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 2px;
}
.intent-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-2);
  line-height: 1.1;
}
.intent-sub {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

/* ---------- Today at Ka-Ching ---------- */
.today {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.today-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.today-head h2 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin: 0;
}
.today-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(87,114,112,.18);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(87,114,112,.28); }
  50%      { box-shadow: 0 0 0 6px rgba(87,114,112,0); }
}
.today-list { display: flex; flex-direction: column; gap: 8px; }
.today-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(229,217,204,.7);
}
.today-item:first-child { border-top: 0; padding-top: 0; }
.today-when {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand);
  padding-top: 1px;
}
.today-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}
.today-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ---------- Report button on home ---------- */
.report-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-top: 18px;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow);
  font-family: var(--font-body);
}
.report-btn:hover { border-color: var(--brand); }
.report-btn > span:first-child { font-size: 22px; }
.report-btn > div { flex: 1; }
.report-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-2);
  font-size: 14px;
}
.report-sub { color: var(--ink-soft); font-size: 12px; }
.report-btn .chev { color: var(--ink-soft); font-weight: 700; }

/* ---------- Referral: incentive card + share row ---------- */
.incentive-card {
  background: linear-gradient(135deg, var(--horizon-glow) 0%, var(--zirkon) 100%);
  border-radius: var(--radius);
  padding: 16px;
  color: white;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.incentive-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  font-size: 22px;
  flex: 0 0 44px;
}
.incentive-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
}
.incentive-sub { font-size: 13px; opacity: .92; margin-top: 4px; }

.share-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.share-row .btn { flex: 1; }

.share-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  margin: 8px 0 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--font-display);
  font-weight: 600;
}
.share-divider::before,
.share-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---------- Wi-Fi tap-to-copy ---------- */
.wifi-rows { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.wifi-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream-soft);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}
.wifi-row:hover { border-color: var(--brand); }
.wifi-label {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
  font-weight: 700;
}
.wifi-value {
  font-family: 'Jost', monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-2);
  letter-spacing: .02em;
}
.wifi-copy {
  font-size: 11px;
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.wifi-note { font-size: 12px; color: var(--ink-soft); margin-top: 10px; }

/* Password row when it's a "see the board" pointer rather than a copyable value */
.wifi-row-info {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: var(--cream-soft);
  cursor: default;
}
.wifi-row-info .wifi-info-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--brand-2);
  line-height: 1.35;
}

/* ---------- Venue maps link ---------- */
.venue-maps {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.venue-maps:hover { text-decoration: underline; }

/* ---------- Toast ---------- */
.kc-toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--brand-2);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  box-shadow: 0 6px 20px rgba(31,61,54,.3);
}
.kc-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Team contact cards (Natalie + Greg) ---------- */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.team-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--brand-2);
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 2px;
  margin-bottom: 10px;
}
.team-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.team-link:hover { border-color: var(--brand); text-decoration: none; }
.team-link-sms   { color: var(--brand); }
.team-link-call  { color: var(--brand-2); }
.team-link-email { color: var(--leaf); word-break: break-all; }

/* ---------- Memberships strip (Cobot signup links) ---------- */
.memberships {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 6px;
}
.membership {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  min-height: 84px;
}
.membership:hover { border-color: var(--brand); text-decoration: none; }
.membership-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-2);
  letter-spacing: -0.01em;
}
.membership-cta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--brand);
}

/* ---------- Form: select control (matches inputs) ---------- */
.form-field select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  width: 100%;
  font-weight: 500;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
                    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.form-field select:focus { border-color: var(--brand); }

/* ---------- Desktop niceties (still mobile-first) ---------- */
@media (min-width: 600px) {
  .app { box-shadow: 0 0 40px rgba(42,40,38,.06); }
  body { background: #E8DED0; }
}
