:root {
  --sand:          #f7f3ec;
  --sand-border:   #e0d8c8;
  --sand-deep:     #ccc0a5;
  --teal:          #1e4b5e;
  --teal-mid:      #2a6478;
  --teal-light:    #3d7d94;
  --teal-glow:     #ddeef4;
  --amber:         #b8873a;
  --amber-light:   #cc9d4f;
  --ink:           #1c1917;
  --ink-60:        #5a534d;
  --ink-40:        #8a817a;
  --brand:         #1e4b5e;
  --brand-light:   #2a6478;
  --brand-dark:    #142f3c;
  --green:         #b8873a;
  --green-light:   #cc9d4f;
  --green-dark:    #8f6225;
  --text:          #1c1917;
  --muted:         #5a534d;
  --border:        #e0d8c8;
  --surface:       #f7f3ec;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* ─── NAV ─── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(13,31,39,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--amber);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.nav-phone {
  display: none; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.72); text-decoration: none;
  font-size: 0.88rem; font-weight: 600; transition: color 0.15s;
}
.nav-phone:hover { color: rgba(255,255,255,0.95); }
@media (min-width: 640px) { .nav-phone { display: flex; } }
.nav-cta {
  background: var(--amber); color: #fff; font-weight: 700;
  font-size: 0.88rem; padding: 10px 20px; border-radius: 10px;
  text-decoration: none; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 2px 12px rgba(184,135,58,0.35);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(184,135,58,0.45); }
.nav-cta:focus-visible { outline: 2px solid var(--amber-light); outline-offset: 3px; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 20px;
  font-size: 0.78rem; font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb-sep { opacity: 0.4; font-size: 0.7rem; }
.breadcrumb-current { color: rgba(255,255,255,0.75); font-weight: 500; }

/* ─── HERO ─── */
.hero {
  padding-top: 64px;
  background:
    radial-gradient(ellipse 65% 75% at 8% 10%, rgba(61,125,148,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 92% 95%, rgba(184,135,58,0.11) 0%, transparent 55%),
    linear-gradient(160deg, #0d1e27 0%, #142f3c 40%, #1e4b5e 100%);
  min-height: calc(100vh - 64px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  max-width: 820px; margin: 0 auto; padding: 48px 20px;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: start; position: relative; z-index: 1;
}
@media (min-width: 900px) {
  .hero-inner { padding: 64px 20px 72px; }
}

.trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-left: 2px solid rgba(184,135,58,0.55);
  border-radius: 99px; padding: 5px 14px 5px 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.88); font-weight: 500;
}
.trust-pill .dot {
  width: 6px; height: 6px;
  background: var(--amber-light); border-radius: 50%; flex-shrink: 0;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-left: 2px solid rgba(184,135,58,0.55);
  border-radius: 99px; padding: 5px 14px 5px 10px;
  font-size: 0.8rem; color: rgba(255,255,255,0.88); font-weight: 500;
}
.trust-badge svg { flex-shrink: 0; opacity: 0.75; }

.hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  color: #fff; margin-bottom: 18px;
  letter-spacing: -0.03em; line-height: 1.1;
}
.hero-lead {
  font-size: 1.05rem; color: rgba(255,255,255,0.68);
  line-height: 1.8; margin-bottom: 36px; max-width: 460px;
}
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.85rem; font-weight: 700; color: #fff; line-height: 1;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(184,135,58,0.52);
  display: inline-block;
}
.stat-label {
  font-size: 0.71rem; color: rgba(255,255,255,0.5);
  margin-top: 6px; line-height: 1.3; font-weight: 500; display: block;
}

/* ─── WIZARD CARD ─── */
.wizard-card {
  background: #fff; border-radius: 26px; padding: 24px;
  border: 1px solid var(--sand-border);
  box-shadow:
    0 2px 4px rgba(28,25,23,0.04),
    0 12px 40px rgba(28,25,23,0.11),
    0 40px 100px rgba(28,25,23,0.09);
}
@media (min-width: 640px) { .wizard-card { padding: 30px; } }

.step-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.step-counter { font-size: 0.74rem; font-weight: 700; color: var(--ink-40); text-transform: uppercase; letter-spacing: 0.07em; font-family: 'DM Sans', sans-serif; }
.step-pct { font-size: 0.74rem; font-weight: 700; color: var(--teal); font-family: 'DM Sans', sans-serif; }
.progress-track { height: 4px; background: #ede8e0; border-radius: 99px; margin-bottom: 22px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-light)); border-radius: 99px; transition: width 0.45s cubic-bezier(0.34,1.56,0.64,1); }

.step-question { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.step-hint { font-size: 0.73rem; color: var(--ink-40); text-align: center; margin-top: 10px; }

/* Option cards */
.opt-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.opt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.opt-grid-1 { display: flex; flex-direction: column; gap: 8px; }

.opt-card {
  cursor: pointer;
  border: 2px solid var(--sand-border);
  border-radius: 14px; background: #fff;
  padding: 14px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
  transition: border-color 0.18s, background 0.18s,
              transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.18s;
  user-select: none; -webkit-tap-highlight-color: transparent;
}
.opt-card:hover {
  border-color: var(--teal); background: var(--teal-glow);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 18px rgba(30,75,94,0.13);
}
.opt-card:active { transform: translateY(-1px) scale(1.0); }
.opt-card.selected {
  border-color: var(--teal); background: var(--teal-glow);
  box-shadow: 0 0 0 3px rgba(30,75,94,0.14);
}
.opt-card.opt-row { flex-direction: row; text-align: left; align-items: center; gap: 12px; padding: 14px 16px; }
.opt-icon { font-size: 1.55rem; line-height: 1; flex-shrink: 0; }
.opt-label { font-size: 0.87rem; font-weight: 700; color: var(--ink); line-height: 1.2; font-family: 'DM Sans', sans-serif; }
.opt-sub { font-size: 0.73rem; color: var(--ink-60); line-height: 1.3; font-family: 'DM Sans', sans-serif; }

/* Slide animation */
.step-slide { animation: stepIn 0.28s cubic-bezier(0.34,1.2,0.64,1) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ── WINDOW TYPE + COUNT STEP ── */
.win-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; margin-bottom: 14px; }

.win-card {
  border: 2px solid var(--sand-border); border-radius: 13px; background: #fff;
  padding: 10px 8px; display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  user-select: none;
}
.win-card.has-count {
  border-color: var(--teal); background: var(--teal-glow);
  box-shadow: 0 0 0 2px rgba(30,75,94,0.12);
}
.win-card svg { display: block; height: 58px; width: auto; max-width: 100%; }
.win-name { font-size: 0.75rem; font-weight: 700; color: var(--ink); text-align: center; line-height: 1.3; font-family: 'DM Sans', sans-serif; }
.win-counter {
  display: flex; align-items: center;
  border: 1.5px solid var(--sand-border); border-radius: 8px;
  overflow: hidden; background: var(--sand);
  width: 100%; max-width: 90px; margin-top: 2px;
}
.win-card.has-count .win-counter { border-color: rgba(30,75,94,0.28); background: rgba(221,238,244,0.55); }
.w-btn {
  flex: 0 0 28px; height: 28px; background: none; border: none;
  font-size: 1.05rem; font-weight: 700; cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.1s; line-height: 1;
  -webkit-tap-highlight-color: transparent; font-family: 'DM Sans', sans-serif;
}
.w-btn:hover:not(:disabled) { background: rgba(30,75,94,0.1); }
.w-btn:disabled { color: #c5bdb3; cursor: default; }
.w-val { flex: 1; text-align: center; font-size: 0.9rem; font-weight: 700; color: var(--ink); min-width: 0; font-family: 'DM Sans', sans-serif; }
.win-card.has-count .w-val { color: var(--teal); }

/* Win summary bar */
.win-summary-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--sand); border: 1.5px solid var(--sand-border);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.win-summary-bar.active { border-color: rgba(30,75,94,0.32); background: var(--teal-glow); }
.win-summary-text { font-size: 0.82rem; font-weight: 600; color: var(--ink-60); transition: color 0.2s; font-family: 'DM Sans', sans-serif; }
.win-summary-bar.active .win-summary-text { color: var(--teal); }

/* Buttons */
.btn-continue {
  width: 100%; background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: #fff; font-weight: 700; font-size: 0.97rem; padding: 14px 20px;
  border: none; border-radius: 12px; cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(30,75,94,0.25);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.15s;
}
.btn-continue:disabled { opacity: 0.35; cursor: not-allowed; box-shadow: none; }
.btn-continue:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,75,94,0.35); }
.btn-continue:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: #fff; font-weight: 700; font-size: 0.97rem; padding: 15px 20px;
  border: none; border-radius: 12px; cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(30,75,94,0.3);
  transition: transform 0.15s, box-shadow 0.15s; margin-top: 18px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,75,94,0.4); }
.btn-submit:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.btn-back {
  width: 100%; background: transparent; border: 2px solid var(--sand-border);
  border-radius: 11px; padding: 11px 20px; font-size: 0.87rem; font-weight: 600;
  color: var(--ink-60); cursor: pointer; font-family: 'DM Sans', sans-serif;
  margin-top: 8px; transition: border-color 0.15s, color 0.15s;
}
.btn-back:hover { border-color: var(--sand-deep); color: var(--ink); }
.btn-back:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* Form fields */
.field-label { display: block; font-size: 0.79rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; font-family: 'DM Sans', sans-serif; }
.field-input {
  width: 100%; border: 2px solid var(--sand-border); border-radius: 11px;
  padding: 11px 14px; font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
  color: var(--ink); background: #fff; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,75,94,0.1); }
.field-input.error { border-color: #ef4444; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 400px) { .field-row { grid-template-columns: 1fr; } }
.privacy-note { font-size: 0.71rem; color: var(--ink-40); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ─── SECTIONS ─── */
.section { padding: 80px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: var(--ink); margin-bottom: 12px; text-align: center; }
.section-sub { font-size: 1rem; color: var(--ink-60); text-align: center; max-width: 520px; margin: 0 auto 44px; line-height: 1.75; }
.card { background: #fff; border-radius: 18px; border: 1px solid var(--sand-border); box-shadow: 0 2px 6px rgba(28,25,23,0.04), 0 8px 24px rgba(28,25,23,0.06); }

/* ─── HOW IT WORKS ─── */
.steps-row { display: grid; grid-template-columns: 1fr; gap: 20px; position: relative; }
@media (min-width: 720px) {
  .steps-row { grid-template-columns: repeat(3, 1fr); }
  .steps-row::before {
    content: '';
    position: absolute;
    top: 51px;
    left: calc(33.33% - 10px);
    right: calc(33.33% - 10px);
    height: 2px;
    border-top: 2px dashed var(--sand-border);
    pointer-events: none; z-index: 0;
  }
}
.step-card { padding: 28px 24px; position: relative; z-index: 1; }
.step-badge {
  width: 46px; height: 46px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30,75,94,0.28);
}
.step-badge span { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1; }
.step-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: 0; color: var(--ink); }
.step-card p { font-size: 0.875rem; color: var(--ink-60); line-height: 1.7; }

/* ─── AREAS ─── */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .areas-grid { grid-template-columns: repeat(5, 1fr); } }
.area-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border: 1.5px solid var(--sand-border);
  border-radius: 12px; background: var(--sand); text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s, background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.area-pill:hover {
  border-color: var(--teal); background: var(--teal-glow);
  transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30,75,94,0.1);
}
.area-pill:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.area-pill.current {
  border-color: var(--teal); background: var(--teal-glow);
  pointer-events: none; cursor: default;
  box-shadow: 0 0 0 2px rgba(30,75,94,0.12);
}
.area-pill.current .area-name { color: var(--teal); }
.area-emoji-wrap { font-size: 1.2rem; flex-shrink: 0; line-height: 1; }
.area-name { font-size: 0.88rem; font-weight: 700; color: var(--ink); font-family: 'DM Sans', sans-serif; line-height: 1.2; }
.area-zip { font-size: 0.72rem; color: var(--ink-40); font-family: 'DM Sans', sans-serif; margin-top: 1px; }

/* ─── WHY US (checklist) ─── */
.why-wrap { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 860px) { .why-wrap { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
.why-header { display: flex; flex-direction: column; justify-content: center; padding-top: 4px; }
.why-header .section-title { text-align: left; margin-bottom: 14px; }
.why-header .section-sub { text-align: left; margin: 0; max-width: 360px; }
.features-checklist { display: flex; flex-direction: column; }
.check-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--sand-border);
}
.check-item:first-child { padding-top: 0; }
.check-item:last-child { border-bottom: none; }
.check-icon-wrap {
  width: 38px; height: 38px; background: var(--teal-glow);
  border: 1.5px solid rgba(30,75,94,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.check-title { font-size: 0.94rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.check-body { font-size: 0.84rem; color: var(--ink-60); line-height: 1.65; font-family: 'DM Sans', sans-serif; }

/* ─── FAQ ─── */
.faq-list { border-radius: 18px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--sand-border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--ink); text-align: left; transition: color 0.12s;
}
.faq-btn:hover { color: var(--teal); }
.faq-btn:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; }
.faq-chevron { transition: transform 0.28s ease; flex-shrink: 0; color: var(--ink-40); }
.faq-chevron.open { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 0.9rem; color: var(--ink-60); line-height: 1.75; font-family: 'DM Sans', sans-serif; }
.faq-body.open { max-height: 320px; }
.faq-body-inner { padding: 0 22px 18px; }

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  background:
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(61,125,148,0.18) 0%, transparent 65%),
    linear-gradient(160deg, #0d1e27 0%, #142f3c 50%, #1e4b5e 100%);
  padding: 88px 20px; text-align: center;
}
.bottom-cta h2 { font-family: 'Fraunces', serif; font-size: clamp(1.7rem, 4vw, 2.5rem); color: #fff; margin-bottom: 14px; }
.bottom-cta p { color: rgba(255,255,255,0.62); font-size: 1rem; margin-bottom: 32px; font-family: 'DM Sans', sans-serif; }
.btn-big-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: #fff; font-weight: 700; font-size: 1.05rem;
  padding: 16px 34px; border-radius: 14px; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 24px rgba(184,135,58,0.42);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-big-cta:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(184,135,58,0.52); }
.btn-big-cta:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ─── FOOTER ─── */
footer { background: #0d1f27; padding: 52px 20px 90px; color: rgba(255,255,255,0.44); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.footer-col p { font-size: 0.82rem; line-height: 1.75; font-family: 'DM Sans', sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a { color: rgba(255,255,255,0.44); font-size: 0.84rem; text-decoration: none; transition: color 0.12s; font-family: 'DM Sans', sans-serif; }
.footer-links a:hover { color: rgba(255,255,255,0.88); }
.footer-bottom { max-width: 1100px; margin: 36px auto 0; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 0.74rem; font-family: 'DM Sans', sans-serif; }

/* ─── MOBILE BAR ─── */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0d1f27; padding: 10px 14px;
  display: flex; gap: 8px; z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
}
.mobile-bar a {
  flex: 1; text-align: center; padding: 11px 8px; border-radius: 10px;
  font-weight: 700; font-size: 0.87rem; text-decoration: none;
  font-family: 'DM Sans', sans-serif; transition: opacity 0.15s;
}
.mobile-bar a:hover { opacity: 0.88; }
.mbar-call { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); color: #fff; }
.mbar-book { background: var(--amber); color: #fff; }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* ─── PROSE ─── */
.prose { font-size: 0.95rem; color: #3d3530; line-height: 1.85; font-family: 'DM Sans', sans-serif; }
.prose p { margin-bottom: 16px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--teal); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
