/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --sage:     #5B7FA6;
  --sage-d:   #3f6089;
  --sage-l:   #d0e8f8;
  --cream:    #F4F6F9;
  --cream-d:  #e8ecf2;
  --mauve:    #7B92B2;
  --mauve-l:  #d4e4f5;
  --charcoal: #1E2A38;
  --mid:      #5a6878;
  --border:   #D5DCE8;
  --white:    #ffffff;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --shadow: 0 2px 16px rgba(30,42,56,0.08);
  --shadow-lg: 0 8px 40px rgba(30,42,56,0.12);
  --max-w: 1100px;
  --nav-h: 68px;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
p { color: var(--mid); max-width: 65ch; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Section headings ──────────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}
.section-heading { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

/* ── Divider ───────────────────────────────────────────────────────────────── */
.divider { width: 48px; height: 2px; background: var(--sage); margin: 20px auto; border: none; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(91,127,166,0.4); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--sage); color: var(--sage); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── Nav ───────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(244,246,249,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--charcoal); }
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--mid); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.25s; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 60% 40%, var(--sage-l) 0%, var(--cream) 65%);
  padding: 80px 0;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-bottom: 20px;
  display: block;
}
.hero h1 { margin-bottom: 24px; color: var(--charcoal); }
.hero p   { font-size: 1.1rem; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-orb {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--mauve-l), var(--sage-l) 60%, var(--cream-d));
  box-shadow: 0 24px 80px rgba(91,127,166,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-orb::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
}
.hero-orb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
}
.hero-orb-icon { font-size: 5rem; line-height: 1; filter: drop-shadow(0 4px 12px rgba(91,127,166,0.3)); }
.hero-orb-text { font-family: var(--font-head); font-size: 1.2rem; color: var(--sage-d); font-style: italic; }

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── Icon circle ───────────────────────────────────────────────────────────── */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* ── Step counter (how it works) ───────────────────────────────────────────── */
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* ── Pricing card ──────────────────────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--sage);
  padding: 48px 40px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.pricing-amount { font-family: var(--font-head); font-size: 3.5rem; color: var(--sage); line-height: 1; margin: 20px 0 8px; }
.pricing-unit   { font-size: 0.9rem; color: var(--mid); margin-bottom: 32px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; text-align: left; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.pricing-features li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }

/* ── CTA strip ─────────────────────────────────────────────────────────────── */
.cta-strip { background: var(--sage); color: var(--white); padding: 60px 0; text-align: center; }
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p  { color: rgba(255,255,255,0.85); margin: 0 auto 32px; max-width: 50ch; }
.cta-strip .btn { background: var(--white); color: var(--sage-d); }
.cta-strip .btn:hover { background: var(--cream); }

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testimonials-bg { background: linear-gradient(135deg, var(--cream-d), var(--cream)); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--sage-l);
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}
.testimonial-text { font-style: italic; font-size: 1.05rem; margin-bottom: 20px; padding-top: 24px; color: var(--charcoal); max-width: none; }
.testimonial-author { font-weight: 600; color: var(--charcoal); font-size: 0.9rem; }
.testimonial-service { font-size: 0.8rem; color: var(--mauve); }

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer { background: var(--charcoal); color: rgba(255,255,255,0.55); padding: 48px 0; font-size: 0.88rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--white); }

/* ── Page header ───────────────────────────────────────────────────────────── */
.page-header {
  background: radial-gradient(ellipse at 50% 0%, var(--sage-l) 0%, var(--cream) 70%);
  padding: 72px 0 56px;
  text-align: center;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { margin: 0 auto; font-size: 1.1rem; }

/* ── Booking wizard ────────────────────────────────────────────────────────── */
.wizard-wrap { max-width: 720px; margin: 0 auto; }
.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.step-dot { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-dot-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
  background: var(--white);
  transition: all 0.2s;
}
.step-dot.active .step-dot-circle  { border-color: var(--sage); background: var(--sage); color: var(--white); }
.step-dot.done .step-dot-circle    { border-color: var(--sage); background: var(--sage-l); color: var(--sage-d); }
.step-dot-label { font-size: 0.72rem; color: var(--mid); font-weight: 500; }
.step-dot.active .step-dot-label   { color: var(--charcoal); }
.step-line { flex: 1; height: 2px; background: var(--border); max-width: 80px; margin: 0 8px; margin-bottom: 24px; }
.step-line.done { background: var(--sage-l); }

.step-panel { display: none; }
.step-panel.active { display: block; }

/* ── Booking calendar ──────────────────────────────────────────────────────── */
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-nav h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--charcoal); }
.cal-nav-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.9rem;
  color: var(--mid);
  transition: all 0.15s;
}
.cal-nav-btn:hover { border-color: var(--sage); color: var(--sage); }
.cal-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-header {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mid);
  padding: 8px 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid transparent;
  background: var(--white);
}
.cal-cell:empty, .cal-cell.cal-empty { background: transparent; cursor: default; border-color: transparent; }
.cal-cell.cal-past { color: var(--border); background: transparent; cursor: not-allowed; border-color: transparent; }
.cal-cell.cal-available { color: #1a5c2a; background: #e8f5e9; border-color: #c8e6c9; }
.cal-cell.cal-available:hover { border-color: #43a047; background: #c8e6c9; }
.cal-cell.cal-low { color: #7c5000; background: #fff8e1; border-color: #ffe082; }
.cal-cell.cal-low:hover { border-color: #ffb300; }
.cal-cell.cal-full { color: #8b1a1a; background: #fde8e8; border-color: #f5c6c6; cursor: not-allowed; }
.cal-cell.cal-blocked { color: var(--mid); background: var(--cream-d); border-color: transparent; cursor: not-allowed; }
.cal-cell.cal-selected { border-color: var(--sage) !important; background: var(--sage) !important; color: white !important; }
.cal-cell.cal-today { font-weight: 700; }

.cal-legend { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 14px; font-size: 0.78rem; color: var(--mid); }
.cal-legend-item { display: flex; align-items: center; gap: 6px; }
.cal-legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.leg-avail { background: #c8e6c9; }
.leg-low   { background: #ffe082; }
.leg-full  { background: #f5c6c6; }

.avail-banner {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.avail-banner.show { display: block; }
.avail-banner.avail-ok   { background: #e8f5e9; color: #1a5c2a; }
.avail-banner.avail-low  { background: #fff8e1; color: #7c5000; }
.avail-banner.avail-none { background: #fde8e8; color: #8b1a1a; }

/* ── Seats selector ────────────────────────────────────────────────────────── */
.seats-selector { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.seats-btn {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all 0.15s;
}
.seats-btn:hover  { border-color: var(--sage); color: var(--sage); }
.seats-btn.selected { border-color: var(--sage); background: var(--sage); color: white; }

/* ── Form elements ─────────────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 90px; }

.step-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }

/* ── Booking summary box ───────────────────────────────────────────────────── */
.booking-summary {
  background: var(--cream-d);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.booking-summary-row { display: flex; justify-content: space-between; padding: 5px 0; }
.booking-summary-row strong { color: var(--charcoal); }
.booking-summary-row span { color: var(--mid); }

/* ── Reminder box ──────────────────────────────────────────────────────────── */
.reminder-box {
  background: var(--sage-l);
  border-left: 3px solid var(--sage);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ── Confirmation screen ───────────────────────────────────────────────────── */
.confirm-screen { text-align: center; padding: 48px 0; }
.confirm-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sage-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
}
.confirm-screen h2 { margin-bottom: 12px; }
.confirm-screen p { margin: 0 auto 24px; }
.confirm-detail {
  background: var(--cream-d);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px auto;
  max-width: 420px;
  text-align: left;
}
.confirm-detail-row { display: flex; gap: 12px; padding: 6px 0; font-size: 0.9rem; }
.confirm-detail-label { color: var(--mid); min-width: 90px; }
.confirm-detail-value { color: var(--charcoal); font-weight: 500; }

/* ── Error message ─────────────────────────────────────────────────────────── */
.error-msg {
  background: #fde8e8;
  border-left: 3px solid #e53e3e;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #742a2a;
  margin-top: 16px;
  display: none;
}
.error-msg.show { display: block; }

/* ── Admin panel ───────────────────────────────────────────────────────────── */
.admin-header { background: var(--charcoal); padding: 20px 0; margin-bottom: 32px; }
.admin-header h1 { color: var(--white); font-size: 1.5rem; margin: 0; }
.admin-header-inner { display: flex; align-items: center; justify-content: space-between; }

.tabs { display: flex; gap: 4px; margin-bottom: 32px; flex-wrap: wrap; }
.tab {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: all 0.15s;
}
.tab:hover  { background: var(--cream-d); color: var(--charcoal); }
.tab.active { background: var(--sage); color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); font-size: 0.88rem; }
.admin-table th { background: var(--cream-d); padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mid); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--cream-d); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--cream); }

.status-pill { display: inline-flex; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.status-pending   { background: #fff3cd; color: #856404; }
.status-confirmed { background: var(--sage-l); color: var(--sage-d); }
.status-completed { background: #d1ecf1; color: #0c5460; }
.status-cancelled { background: #f8d7da; color: #721c24; }

.admin-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }

.capacity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-d);
}
.capacity-row:last-child { border-bottom: none; }
.capacity-date { font-weight: 600; color: var(--charcoal); min-width: 130px; font-size: 0.9rem; }
.capacity-bar-wrap { flex: 1; height: 8px; background: var(--cream-d); border-radius: 4px; overflow: hidden; }
.capacity-bar { height: 100%; border-radius: 4px; background: var(--sage); transition: width 0.3s; }
.capacity-bar.cap-full { background: #e53e3e; }
.capacity-bar.cap-low  { background: #d69e2e; }
.capacity-label { font-size: 0.82rem; color: var(--mid); min-width: 70px; text-align: right; }

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 30%, var(--sage-l) 0%, var(--cream) 70%);
}
.login-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.login-card h2 { margin-bottom: 8px; }
.login-card p  { margin-bottom: 28px; }

.url-box {
  background: var(--cream-d);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: monospace;
  font-size: 0.8rem;
  word-break: break-all;
  color: var(--charcoal);
  margin: 16px 0;
  border: 1px solid var(--border);
  text-align: left;
}
.copy-btn { margin-top: 4px; }

.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.settings-group { display: flex; flex-direction: column; gap: 6px; }
.settings-group label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.settings-group input, .settings-group select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.settings-group input:focus, .settings-group select:focus { border-color: var(--sage); }
.settings-help { font-size: 0.78rem; color: var(--mid); }

.blocked-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.blocked-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fde8e8;
  color: #742a2a;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 500;
}
.blocked-chip button { background: none; border: none; color: #742a2a; font-size: 1rem; line-height: 1; padding: 0; cursor: pointer; }

.filter-row { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }
.filter-select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
}
.filter-select:focus { border-color: var(--sage); }

.notes-input {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--charcoal);
  width: 100%;
  margin-top: 6px;
  outline: none;
  resize: none;
}
.notes-input:focus { border-color: var(--sage); }

/* ── Service area city chips ───────────────────────────────────────────────── */
.cities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 12px;
}
.city-chip {
  display: inline-flex;
  padding: 8px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: var(--shadow);
  transition: all 0.15s;
}
.city-chip:hover { border-color: var(--sage); color: var(--sage); }

/* ── FAQ accordion ─────────────────────────────────────────────────────────── */
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--sage); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--sage);
  font-weight: 400;
  transition: background 0.15s;
}
.faq-question:hover .faq-toggle { background: var(--sage-l); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
}
.faq-answer.open { display: block; }
.faq-answer p { color: var(--mid); font-size: 0.95rem; max-width: none; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .settings-grid { grid-template-columns: 1fr; }
  .admin-table { font-size: 0.8rem; }
  .pricing-card { padding: 36px 24px; }
}
