/* ============================================================
   Prestto — getprestto.com
   Design system adopted from Claude Design export.
   Production extensions added at bottom (marked PRODUCTION).
   ============================================================ */

:root {
  --pine: #0F3D3A;
  --pine-light: #1A5551;
  --amber: #C2761C;
  --amber-soft: #FBF2E4;
  --ink: #141A19;
  --muted: #5E6A67;
  --wash: #F5F7F5;
  --paper: #FFFFFF;
  --line: #DCE3E0;

  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1120px;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(15, 61, 58, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 61, 58, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 61, 58, 0.14);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Language switching ---------- */
html[lang="en"] .es { display: none !important; }
html[lang="es"] .en { display: none !important; }

/* ---------- Typography ---------- */
h1, h2, h3.serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--pine);
}
h1 { font-size: 2rem; }
h2 { font-size: 2rem; }
a { color: var(--pine); text-decoration: none; }
a:hover { color: var(--amber); }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.lead { font-size: 1.125rem; color: var(--muted); max-width: 42rem; }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section-wash { background: var(--wash); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--amber); color: #fff; }
.btn-primary:hover { background: #A96414; color: #fff; transform: scale(1.02); box-shadow: 0 10px 24px rgba(194, 118, 28, 0.32); }
.btn-secondary { background: transparent; color: var(--pine); border: 1.5px solid var(--pine); }
.btn-secondary:hover { background: var(--pine); color: #fff; transform: scale(1.02); box-shadow: var(--shadow-md); }
.btn-light { background: #fff; color: var(--pine); }
.btn-light:hover { transform: scale(1.02); box-shadow: 0 10px 24px rgba(0,0,0,0.25); color: var(--pine); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--pine);
  line-height: 1;
}
.wordmark .dot { color: var(--amber); }
.wordmark:hover { color: var(--pine); }

.nav-links { display: none; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.9375rem; font-weight: 500; color: var(--ink); }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-toggle button.active { background: var(--pine); color: #fff; }

.nav-cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--pine);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  z-index: 99;
  padding: 8px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  border-bottom: 1px solid var(--wash);
}
.mobile-menu a.active { color: var(--amber); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero { padding: 140px 0 80px; overflow: hidden; }
.hero-grid { display: grid; gap: 56px; align-items: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 20px; }
.hero .lead { margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-anim { opacity: 0; transform: translateY(16px); animation: heroIn 0.4s ease-out forwards; }
.hero-anim.d1 { animation-delay: 0.05s; }
.hero-anim.d2 { animation-delay: 0.2s; }
.hero-anim.d3 { animation-delay: 0.35s; }
.hero-anim.d4 { animation-delay: 0.5s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* Phone mockup */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-wrap::before {
  content: "";
  position: absolute;
  inset: -40px -20px;
  background:
    radial-gradient(circle at 30% 20%, rgba(194,118,28,0.10), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(15,61,58,0.08), transparent 55%);
  border-radius: 40px;
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 320px;
  background: var(--pine);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
}
.phone-screen {
  background: var(--wash);
  border-radius: 26px;
  padding: 18px 14px 20px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.phone-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-header-name { font-size: 0.8125rem; font-weight: 600; color: var(--pine); line-height: 1.3; }
.phone-header-status { font-size: 0.6875rem; color: var(--muted); }

.bubble {
  max-width: 82%;
  padding: 10px 14px;
  font-size: 0.8125rem;
  line-height: 1.45;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(10px);
  animation: heroIn 0.4s ease-out forwards;
}
.bubble.in { align-self: flex-start; background: #fff; color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.bubble.out { align-self: flex-end; background: var(--pine); color: #fff; border-bottom-right-radius: 4px; }
.bubble.b1 { animation-delay: 0.6s; }
.bubble.b2 { animation-delay: 0.9s; }
.bubble.b3 { animation-delay: 1.2s; }
.bubble.b4 { animation-delay: 1.5s; }
.bubble.b5 { animation-delay: 1.8s; }
.bubble .time { display: block; font-size: 0.625rem; opacity: 0.6; margin-top: 4px; }
.bubble a { color: inherit; text-decoration: underline; }

/* ---------- Stats strip ---------- */
.stats { background: var(--pine); color: #fff; padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
.stat { text-align: center; }
.stat-number { font-family: var(--serif); font-size: 2.6rem; color: var(--amber-soft); line-height: 1.1; }
.stat-number .accent { color: #E8A34D; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 0; position: relative; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 76px;
  bottom: -4px;
  width: 2px;
  background: linear-gradient(var(--line), var(--line) 60%, transparent);
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--amber-soft);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon svg { width: 26px; height: 26px; }
.step h3 { font-size: 1.125rem; font-weight: 600; color: var(--pine); margin-bottom: 4px; }
.step p { color: var(--muted); font-size: 0.9375rem; max-width: 34rem; }
.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  display: block;
  margin-bottom: 2px;
}

/* ---------- Cards ---------- */
.cards-2 { display: grid; gap: 24px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--pine); margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.9875rem; }
.card .big {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--amber);
  display: block;
  margin-bottom: 10px;
}

.callout {
  margin-top: 28px;
  background: var(--amber-soft);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.callout svg { width: 26px; height: 26px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.callout p { color: var(--ink); font-size: 0.9875rem; }
.callout strong { color: var(--pine); }

/* ---------- Before / After ---------- */
.compare { display: grid; gap: 24px; }
.compare-card { border-radius: var(--radius); padding: 36px 32px; }
.compare-card.without { background: var(--wash); border: 1px solid var(--line); }
.compare-card.with { background: var(--pine); color: #fff; box-shadow: var(--shadow-lg); }
.compare-card h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 20px; }
.compare-card.without h3 { color: var(--muted); }
.compare-card.with h3 { color: var(--amber-soft); }
.compare-card ul { list-style: none; display: grid; gap: 14px; }
.compare-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9375rem; }
.compare-card.without li { color: var(--muted); }
.compare-card.with li { color: rgba(255,255,255,0.92); }
.compare-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.compare-card.without li svg { color: #B4544A; }
.compare-card.with li svg { color: #E8A34D; }

/* ---------- Trust ---------- */
.trust-grid { display: grid; gap: 24px; }
.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-item svg { width: 24px; height: 24px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.trust-item h3 { font-size: 1.0625rem; font-weight: 600; color: var(--pine); margin-bottom: 4px; }
.trust-item p { color: var(--muted); font-size: 0.9375rem; }

.testimonial-empty {
  margin-top: 48px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  color: var(--muted);
}
.testimonial-empty .label {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--pine);
  display: block;
  margin-bottom: 6px;
}

/* ---------- Final CTA ---------- */
.final-cta { background: var(--pine); color: #fff; text-align: center; padding: 88px 0; }
.final-cta h2 { color: #fff; font-size: 2.2rem; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.78); max-width: 34rem; margin: 0 auto 32px; }

/* ---------- Chat demo (how it works page) ---------- */
.chat-demo-grid { display: grid; gap: 32px; }
.chat-demo {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.chat-demo .chat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.chat-demo .bubble { opacity: 1; transform: none; animation: none; }

/* ---------- Does / Doesn't ---------- */
.dodont { display: grid; gap: 24px; }
.dodont-col { border-radius: var(--radius); padding: 36px 32px; }
.dodont-col.does { background: var(--amber-soft); }
.dodont-col.doesnt { background: var(--wash); border: 1px solid var(--line); }
.dodont-col h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--pine); margin-bottom: 20px; }
.dodont-col ul { list-style: none; display: grid; gap: 13px; }
.dodont-col li { display: flex; gap: 12px; font-size: 0.9375rem; color: var(--ink); align-items: flex-start; }
.dodont-col.doesnt li { color: var(--muted); }
.dodont-col li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.dodont-col.does li svg { color: var(--amber); }
.dodont-col.doesnt li svg { color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pricing-top { background: var(--pine); color: #fff; padding: 44px 40px; text-align: center; }
.pricing-price { font-family: var(--serif); font-size: 3.4rem; color: #fff; line-height: 1; }
.pricing-price .per { font-family: var(--sans); font-size: 1.05rem; color: rgba(255,255,255,0.7); }
.pricing-top p { color: rgba(255,255,255,0.78); margin-top: 12px; font-size: 0.9375rem; }
.pricing-body { padding: 36px 40px 44px; }
.pricing-body ul { list-style: none; display: grid; gap: 14px; margin-bottom: 32px; }
.pricing-body li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9375rem; }
.pricing-body li svg { width: 19px; height: 19px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.pricing-body .btn { width: 100%; justify-content: center; }
.pricing-notes { margin-top: 40px; display: grid; gap: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.pricing-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--muted);
  background: var(--wash);
  border-radius: 10px;
  padding: 14px 18px;
}
.pricing-note svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.pricing-note strong { color: var(--pine); }

/* ---------- About ---------- */
.founder-story {
  max-width: 680px;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink);
}
.founder-story p + p { margin-top: 20px; }
.founder-sig {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--pine);
}
.founder-sig span { display: block; font-family: var(--sans); font-size: 0.875rem; color: var(--muted); margin-top: 2px; }
.values-grid { display: grid; gap: 24px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 48px; }
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--pine); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(15, 61, 58, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn { width: 100%; justify-content: center; }
.form-consent { font-size: 0.75rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.form-success { display: none; color: var(--pine); font-weight: 600; margin-top: 16px; }
.form-error { display: none; color: #B4544A; font-size: 0.875rem; margin-top: 12px; }

.contact-aside h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--pine); margin-bottom: 8px; }
.contact-aside .contact-block { margin-bottom: 28px; }
.contact-aside p { color: var(--muted); font-size: 0.9375rem; }
.contact-aside a { font-weight: 600; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; }
.legal h1 { margin-bottom: 8px; }
.legal .effective { color: var(--muted); font-size: 0.9375rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--ink); font-size: 0.9875rem; line-height: 1.7; }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 22px; margin: 12px 0; display: grid; gap: 8px; }
.legal .sms-box {
  background: var(--amber-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 16px 0;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 140px 0 56px; }
.page-hero h1 { font-size: 2.4rem; margin-bottom: 16px; }

/* ---------- Footer ---------- */
footer { background: var(--pine); color: rgba(255,255,255,0.78); padding: 56px 0 0; }
.footer-grid { display: grid; gap: 36px; padding-bottom: 40px; }
.footer-brand .wordmark { color: #fff; font-size: 1.5rem; }
.footer-brand p { font-size: 0.875rem; margin: 12px 0 16px; max-width: 18rem; }
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a { color: rgba(255,255,255,0.82); font-size: 0.9075rem; }
footer ul a:hover { color: #E8A34D; }
.footer-contact p { font-size: 0.9075rem; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.82); }
.footer-contact a:hover { color: #E8A34D; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.dl1 { transition-delay: 0.1s; }
.reveal.dl2 { transition-delay: 0.2s; }
.reveal.dl3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-anim, .bubble { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
}

/* ============================================================
   Responsive — tablet 768px
   ============================================================ */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  .hero h1 { font-size: 3.25rem; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .cards-2, .compare, .dodont, .chat-demo-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid, .values-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  section { padding: 96px 0; }
  .page-hero { padding: 160px 0 64px; }
  .page-hero h1 { font-size: 3rem; }
}

/* ---------- Desktop 1024px ---------- */
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; padding: 10px 20px; font-size: 0.875rem; }
  .hamburger { display: none; }
  .stat-number { font-size: 3rem; }
}

/* ============================================================
   PRODUCTION EXTENSIONS
   ============================================================ */

/* ---------- Skip to main content (WCAG AA) ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--amber);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ---------- Booking CTA (contact page — primary action) ---------- */
.booking-cta-section {
  background: var(--pine);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 48px;
}
.booking-cta-section h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}
.booking-cta-section p {
  color: rgba(255,255,255,0.78);
  max-width: 34rem;
  margin: 0 auto 24px;
}
.booking-cta-section .divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-cta-section .divider::before,
.booking-cta-section .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* ---------- SMS consent checkbox (contact form) ---------- */
.field-checkbox { margin-bottom: 20px; }
.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--line);
  border-radius: 4px;
  margin-top: 2px;
  accent-color: var(--amber);
  cursor: pointer;
}
/* Invalid state — shown after failed submit attempt */
.checkbox-label.invalid input[type="checkbox"] {
  outline: 2px solid #B4544A;
  outline-offset: 2px;
}
.checkbox-error {
  font-size: 0.8125rem;
  color: #B4544A;
  margin-top: 6px;
  display: none;
}

/* ---------- 404 page ---------- */
body.is-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pine);
}
.page-404 {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
}
.page-404 .logo-404 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--amber-soft);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 48px;
}
.page-404 .logo-404 .dot { color: var(--amber); }
.page-404 .code {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.page-404 h1 {
  color: #fff;
  font-size: 1.6rem;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}
.page-404 p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.page-404 .cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- GHL chat widget z-index safety ---------- */
/* Ensures the floating widget renders above all page elements */
#LeadConnectorChatWidget { z-index: 200 !important; }
