/* =========================================================
   Last Day Clean — Shared design system
   Highlighter yellow + deep ink + warm paper
   ========================================================= */

:root {
  --paper: #FBF7EE;
  --paper-2: #F2ECDB;
  --ink: #0F1822;
  --ink-soft: #2C3949;
  --ink-muted: #6B7686;
  --accent: #F5E62B;
  --accent-shadow: #D4C319;
  --accent-deep: #0F1822;
  --hot: #FF4521;
  --rule: #0F1822;
  --hairline: rgba(15, 24, 34, 0.14);

  --display: "Fraunces", "Times New Roman", Georgia, serif;
  --body: "Inter Tight", system-ui, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --max: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(15,24,34,0.022) 1px, transparent 1px),
    radial-gradient(rgba(15,24,34,0.016) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 2px 2px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

.wrap, header, footer, main { position: relative; z-index: 2; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   Marquee bar
   ========================================================= */
.marquee {
  background: var(--ink);
  color: var(--accent);
  padding: 11px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--ink);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::after { content: "✦"; color: var(--hot); font-size: 14px; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Header
   ========================================================= */
header {
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
}

/* Floating header — hides on scroll down, shows on scroll up */
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.32s ease;
  box-shadow: 0 4px 24px rgba(15, 24, 34, 0.08);
  display: none;
}

.floating-header.visible {
  transform: translateY(0);
}

.floating-header .nav { padding: 14px 0; }
.floating-header .logo { font-size: 24px; }

/* Hide nav links on smaller floating headers to keep clean */
@media (max-width: 1100px) {
  .floating-header .nav-links { display: none; }
}

@media (max-width: 920px) {
  .floating-header .phone-nav { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  transform: translateY(-2px);
  box-shadow: 2px 2px 0 var(--ink);
}

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

.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--accent);
  padding: 2px 4px;
  margin: -2px -4px;
}

.nav-links a.current {
  color: var(--ink);
  font-weight: 700;
}

.nav-links a.current::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent);
  margin-top: 2px;
}

.nav-cta { display: flex; gap: 12px; align-items: center; }

.phone-nav {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  font-variation-settings: "opsz" 24;
}

.phone-nav::before { content: "☏ "; color: var(--hot); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  box-shadow: 3px 3px 0 var(--ink);
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--accent); color: var(--ink); }
.btn-hot { background: var(--hot); color: var(--paper); }
.btn-ghost { background: transparent; box-shadow: none; }
.btn-ghost:hover { background: var(--accent); box-shadow: 3px 3px 0 var(--ink); }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav { gap: 16px; }
}

/* =========================================================
   Page hero (smaller than homepage hero)
   ========================================================= */
.page-hero {
  padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(80px);
  z-index: 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  position: relative;
  z-index: 1;
}

@media (max-width: 920px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
}

.page-hero-pre {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  padding: 6px 12px;
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.page-hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  background: var(--accent);
  padding: 0 8px;
  color: var(--ink);
}

.page-hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 28px;
}

.page-hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero-cta-row .btn { padding: 15px 26px; font-size: 15px; }

.page-hero-secondary {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}

.page-hero-secondary:hover { color: var(--hot); border-bottom-color: var(--hot); }

/* Breadcrumb */
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.breadcrumb span { margin: 0 8px; color: var(--hot); }

/* Trust strip */
.trust-strip {
  margin-top: clamp(30px, 4vw, 50px);
  padding: 18px 24px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 32px);
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--accent);
  position: relative;
  z-index: 1;
}

.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip span::before { content: "✓"; color: var(--accent); font-weight: 700; font-size: 15px; }

/* =========================================================
   Section primitives
   ========================================================= */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
  position: relative;
}

.section-divider { border-top: 1.5px solid var(--ink); }
.section-alt { background: var(--paper-2); }

.section-ink {
  background: var(--ink);
  color: var(--paper);
}

.section-ink .section-title { color: var(--paper); }
.section-ink .section-lead { color: rgba(251, 247, 238, 0.78); }

.section-eyebrow {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  padding: 6px 12px;
  border: 1.5px solid var(--ink);
}

.section-ink .section-eyebrow {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.section-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  background: var(--accent);
  padding: 0 8px;
  color: var(--ink);
}

.section-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 60px;
}

/* Long-form body text (About page, Privacy, etc.) */
.prose {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.prose p { margin-bottom: 22px; }
.prose p:last-child { margin-bottom: 0; }

.prose h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 60;
}

.prose h3 {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 36;
}

.prose strong { color: var(--ink); font-weight: 700; }

.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.prose a:hover { color: var(--hot); }

.prose ul {
  margin-left: 0;
  list-style: none;
  margin-bottom: 22px;
}

.prose ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

.prose ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--hot);
  font-weight: 700;
}

/* =========================================================
   Standards cards (About / pillar grids)
   ========================================================= */
.standards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  margin-top: 40px;
  background: var(--paper);
}

@media (max-width: 720px) { .standards { grid-template-columns: 1fr; } }

.standard-card {
  padding: 36px clamp(24px, 3vw, 40px);
  border-bottom: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
}

.standard-card:nth-child(2n) { border-right: none; }
.standard-card:nth-last-child(-n+2) { border-bottom: none; }

@media (max-width: 720px) {
  .standard-card { border-right: none; }
  .standard-card:nth-last-child(-n+2) { border-bottom: 1.5px solid var(--ink); }
  .standard-card:last-child { border-bottom: none; }
}

.standard-num {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.85;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-style: italic;
  -webkit-text-stroke: 1.5px var(--ink);
}

.standard-title {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 48;
}

.standard-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* =========================================================
   Form (apply page, contact)
   ========================================================= */
.form-wrap {
  max-width: 720px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.form-inner {
  padding: clamp(28px, 4vw, 48px);
}

.form-group {
  margin-bottom: 26px;
}

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-group label .req { color: var(--hot); margin-left: 3px; }

.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=number],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: var(--accent);
  box-shadow: 3px 3px 0 var(--ink);
}

.form-group textarea { min-height: 120px; resize: vertical; font-family: var(--body); }

.form-help {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 6px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.checkbox-group input[type=checkbox] {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
  flex-shrink: 0;
}

.checkbox-group label {
  display: inline;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 0;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

/* =========================================================
   Final CTA (reused across pages)
   ========================================================= */
.final-cta {
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  background: var(--accent);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: "✦";
  position: absolute;
  font-size: clamp(200px, 30vw, 400px);
  color: rgba(15, 24, 34, 0.04);
  font-family: var(--display);
}

.final-cta::before { top: -10%; left: -5%; }
.final-cta::after { bottom: -25%; right: -5%; }

.final-cta-inner { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--ink);
}

.final-cta h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  text-decoration: underline;
  text-decoration-color: var(--hot);
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.final-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.final-cta-row .btn { padding: 18px 32px; font-size: 16px; }
.final-cta-row .btn-ink { box-shadow: 4px 4px 0 var(--paper-2); }
.final-cta-row .btn-ink:hover { box-shadow: 6px 6px 0 var(--paper-2); }

.final-cta-note {
  font-size: 14px;
  color: var(--ink);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 500;
}

/* =========================================================
   Footer
   ========================================================= */
footer {
  background: var(--ink);
  color: rgba(251, 247, 238, 0.7);
  padding: clamp(50px, 7vw, 84px) 0 30px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  margin-bottom: 50px;
}

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-variation-settings: "opsz" 60;
}

.footer-brand .logo-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 2px 2px 0 var(--accent);
}

.footer-desc { line-height: 1.55; max-width: 360px; margin-bottom: 22px; }

.footer-contact a { color: var(--paper); text-decoration: none; font-weight: 500; }
.footer-contact a:hover { color: var(--accent); }

.footer-h {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  color: rgba(251, 247, 238, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer-list a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(251, 247, 238, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 12px;
  color: rgba(251, 247, 238, 0.5);
  gap: 30px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  max-width: 760px;
  line-height: 1.55;
  font-style: italic;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Page-specific styles imported below
   ========================================================= */

/* ----- Homepage hero ----- */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 700px; height: 700px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(80px);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-pre {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  padding: 6px 12px;
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 124px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}

.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  background: var(--accent);
  padding: 0 8px;
  margin: 0 -2px;
  display: inline-block;
  line-height: 0.95;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-cta-row .btn { padding: 16px 28px; font-size: 15px; }

.hero-stat-inline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-stat-num {
  font-family: var(--display);
  font-size: 52px;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.hero-stat-num small {
  font-size: 0.45em;
  vertical-align: top;
  display: inline-block;
  margin-top: 0.3em;
  margin-right: 2px;
  color: var(--hot);
}

.hero-stat-text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 200px;
}

.hero-stat-text b {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}

.hero-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mascot-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
}

.mascot-bg {
  position: absolute; inset: 0;
  background: var(--accent);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  z-index: 1;
}

.mascot-svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
}

.mascot-sticker {
  position: absolute;
  z-index: 3;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 10px 16px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  box-shadow: 3px 3px 0 var(--ink);
  font-variation-settings: "opsz" 36, "WONK" 1;
}

.mascot-sticker.s1 { top: -16px; left: -20px; transform: rotate(-7deg); }
.mascot-sticker.s2 { bottom: -14px; right: -16px; transform: rotate(5deg); background: var(--hot); color: var(--paper); }

@media (max-width: 920px) { .mascot-frame { max-width: 360px; margin: 0 auto; } }

/* Do/Don't */
/* =========================================================
   Focus cards — "when you call us" customer-situation cards
   ========================================================= */
.focus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--accent);
}

@media (max-width: 880px) { .focus-cards { grid-template-columns: 1fr; } }

.focus-card {
  padding: 36px clamp(24px, 2.6vw, 38px);
  border-right: 1.5px solid var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.focus-card:last-child { border-right: none; }

@media (max-width: 880px) {
  .focus-card { border-right: none; border-bottom: 1.5px solid var(--ink); }
  .focus-card:last-child { border-bottom: none; }
}

/* The Airbnb card is the featured one — ink background, accent text */
.focus-card-feature {
  background: var(--ink);
}

.focus-card-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent);
  border: 1.5px solid var(--ink);
  padding: 5px 10px;
  display: inline-block;
  align-self: flex-start;
}

.focus-card-tag-feature {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.focus-card-title {
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
  margin-top: 4px;
}

.focus-card-feature .focus-card-title { color: var(--paper); }

.focus-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}

.focus-card-feature .focus-card-desc { color: rgba(251, 247, 238, 0.82); }

.focus-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
  align-self: flex-start;
  padding: 5px 9px;
  margin-left: -9px;
  margin-top: 4px;
  transition: background 0.12s ease, color 0.12s ease;
}

.focus-card-link:hover { background: var(--accent); color: var(--ink); }

.focus-card-feature .focus-card-link { color: var(--accent); }
.focus-card-feature .focus-card-link:hover { background: var(--accent); color: var(--ink); }

.focus-footnote {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
}

.focus-footnote strong {
  color: var(--ink);
  font-weight: 700;
  background: var(--accent);
  padding: 2px 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* =========================================================
   $95 flat-rate band — captures non-moving customers
   ========================================================= */
.ninety-five-band {
  background: var(--ink);
  color: var(--paper);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: clamp(48px, 7vw, 80px) 0;
}

.nfb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 840px) {
  .nfb-grid { grid-template-columns: 1fr; gap: 28px; }
}

.nfb-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 18px;
}

.nfb-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.0;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.nfb-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}

.nfb-price {
  color: var(--ink);
  background: var(--accent);
  padding: 0 10px;
  font-style: normal;
  display: inline-block;
}

.nfb-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(251, 247, 238, 0.82);
  margin-bottom: 26px;
}

.nfb-desc strong {
  color: var(--accent);
  font-weight: 700;
}

.nfb-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nfb-cta-row .btn { padding: 15px 26px; font-size: 15px; }

.nfb-cta-row .btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
  box-shadow: none;
}

.nfb-cta-row .btn-ghost:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  box-shadow: 3px 3px 0 var(--accent);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 920px) { .services { grid-template-columns: 1fr; } }

.service-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--accent); }

.service-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.service-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) contrast(1.02); display: block; }

.service-img-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  border: 1.5px solid var(--ink);
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.service-body {
  padding: 28px clamp(20px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.service-title {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 60;
}

.service-desc { font-size: 15px; line-height: 1.55; color: var(--ink-soft); flex: 1; }

.service-price {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-top: 6px;
}

.service-price b {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-transform: none;
  margin-left: 6px;
  font-variation-settings: "opsz" 36;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 8px;
  margin-left: -8px;
  transition: background 0.12s ease;
}

.service-link:hover { background: var(--accent); }

/* "How we do this" */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--ink);
  margin-top: 40px;
  background: var(--paper);
}

@media (max-width: 800px) { .how { grid-template-columns: 1fr; } }

.how-block {
  padding: 36px clamp(24px, 3vw, 44px);
  border-bottom: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
}

.how-block:nth-child(2n) { border-right: none; }
.how-block:nth-last-child(-n+2) { border-bottom: none; }

@media (max-width: 800px) {
  .how-block { border-right: none; }
  .how-block:nth-last-child(-n+2) { border-bottom: 1.5px solid var(--ink); }
  .how-block:last-child { border-bottom: none; }
}

.how-num {
  font-family: var(--display);
  font-size: 88px;
  line-height: 0.85;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-style: italic;
  -webkit-text-stroke: 1.5px var(--ink);
}

.how-title {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 48;
}

.how-desc { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* 5-step process (vertical for landing pages) */
.process-vertical {
  margin-top: 40px;
  max-width: 880px;
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--hairline);
}

.process-step:last-child { border-bottom: 1.5px solid var(--ink); }
.process-step:first-child { border-top: 1.5px solid var(--ink); }

@media (max-width: 600px) {
  .process-step { grid-template-columns: 1fr; gap: 8px; }
}

.process-step-num {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.9;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-style: italic;
  -webkit-text-stroke: 1.5px var(--ink);
}

.process-step-title {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 48;
}

.process-step-desc { font-size: 16px; line-height: 1.6; color: var(--ink-soft); max-width: 620px; }

/* Checklist (dark section) */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--accent);
  margin-top: 40px;
}

@media (max-width: 800px) { .checklist-grid { grid-template-columns: 1fr; } }

.checklist-col {
  padding: 32px clamp(22px, 2.6vw, 36px);
  border-right: 1.5px solid rgba(245, 230, 43, 0.35);
}

.checklist-col:last-child { border-right: none; }

@media (max-width: 800px) {
  .checklist-col { border-right: none; border-bottom: 1.5px solid rgba(245, 230, 43, 0.35); }
  .checklist-col:last-child { border-bottom: none; }
}

.checklist-room {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 60;
  color: var(--accent);
}

.checklist-count {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 700;
  margin-bottom: 22px;
}

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

.checklist-list li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(251, 247, 238, 0.88);
  padding-left: 22px;
  position: relative;
}

.checklist-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}

.checklist-note {
  margin-top: 32px;
  padding: 22px 26px;
  border: 1.5px dashed rgba(245, 230, 43, 0.5);
  font-size: 14px;
  color: rgba(251, 247, 238, 0.85);
  text-align: center;
}

.checklist-note b { color: var(--accent); font-weight: 600; }

/* Deposit math */
.deposit-math {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border: 1.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--hot);
}

@media (max-width: 720px) { .deposit-math { grid-template-columns: 1fr; } }

.math-col { padding: 40px clamp(24px, 3vw, 44px); }
.math-col:first-child { border-right: 1.5px solid var(--ink); background: var(--paper-2); }

@media (max-width: 720px) {
  .math-col:first-child { border-right: none; border-bottom: 1.5px solid var(--ink); }
}

.math-col:last-child { background: var(--accent); }

.math-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
  display: inline-block;
  padding: 4px 9px;
  border: 1.5px solid var(--ink);
}

.math-col:last-child .math-label { background: var(--ink); color: var(--accent); }

.math-title {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  font-variation-settings: "opsz" 48;
}

.math-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }

.math-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}

.math-col:last-child .math-list li { color: var(--ink); }

.math-list li::before { position: absolute; left: 0; top: 0; font-weight: 700; font-size: 18px; }

.math-col:first-child .math-list li::before { content: "−"; color: var(--hot); }
.math-col:last-child .math-list li::before { content: "+"; color: var(--ink); }

.math-bottom {
  padding-top: 22px;
  border-top: 1.5px solid var(--ink);
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-muted);
}

.math-col:last-child .math-bottom { color: var(--ink-soft); }

.math-bottom b {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-transform: none;
  font-variation-settings: "opsz" 42;
}

.math-col:first-child .math-bottom b { color: var(--hot); }
.math-col:last-child .math-bottom b { color: var(--ink); }

/* Pricing table */
.pricing-grid {
  margin-top: 40px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}

.price-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.8fr;
  gap: 20px;
  align-items: center;
  padding: 20px clamp(20px, 2.5vw, 32px);
  border-bottom: 1px solid var(--hairline);
}

.price-row:last-child { border-bottom: none; }

.price-row.header {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  font-weight: 700;
  padding: 14px clamp(20px, 2.5vw, 32px);
  border-bottom: 1.5px solid var(--ink);
}

.price-row:not(.header):hover { background: var(--accent); }

.price-service {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 36;
}

.price-row.header .price-service { font-family: var(--body); font-size: 11px; font-weight: 700; }

.price-amount {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}

.price-row.header .price-amount { font-family: var(--body); font-size: 11px; font-weight: 700; color: rgba(251,247,238,0.7); }

.price-typical { font-size: 14px; color: var(--ink-muted); }
.price-row:not(.header):hover .price-typical { color: var(--ink); }

.price-cta { text-align: right; }

.price-cta a {
  font-size: 13px;
  text-decoration: none;
  font-weight: 700;
  background: var(--ink);
  color: var(--paper);
  padding: 7px 12px;
  border: 1.5px solid var(--ink);
}

.price-cta a:hover { background: var(--paper); color: var(--ink); }

@media (max-width: 720px) {
  .price-row { grid-template-columns: 1fr 1fr; gap: 8px 16px; }
  .price-typical, .price-cta { grid-column: 1 / -1; }
  .price-cta { text-align: left; }
  .price-row.header .price-typical, .price-row.header .price-cta { display: none; }
}

/* Service area */
.areas {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  margin-top: 40px;
}

@media (max-width: 800px) { .areas { grid-template-columns: 1fr; gap: 28px; } }

.areas-left p { font-size: 17px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 20px; }

.neighborhood-list {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 40;
}

.neighborhood-list span.hood { display: inline-block; }
.neighborhood-list span.hood:hover { background: var(--accent); cursor: default; }
.neighborhood-list .dot { color: var(--hot); margin: 0 6px; font-weight: 600; }

/* FAQ */
.faq-list { margin-top: 40px; border-top: 1.5px solid var(--ink); }

.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1.5px solid var(--ink); }

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-variation-settings: "opsz" 36;
  transition: background 0.15s ease, padding 0.15s ease;
}

.faq-q:hover { background: var(--accent); padding-left: 14px; padding-right: 14px; }

.faq-q-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }

.faq-q-icon::before, .faq-q-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.faq-q-icon::before { left: 0; right: 0; top: 50%; height: 2.5px; transform: translateY(-50%); }
.faq-q-icon::after { top: 0; bottom: 0; left: 50%; width: 2.5px; transform: translateX(-50%); }

.faq-item.open .faq-q-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner { padding: 0 4px 26px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 720px; }

/* Airbnb-specific bento grid for host benefits */
.host-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  margin-top: 40px;
  background: var(--paper);
}

@media (max-width: 800px) { .host-grid { grid-template-columns: 1fr; } }

.host-card {
  padding: 30px clamp(20px, 2.5vw, 32px);
  border-right: 1.5px solid var(--ink);
}

.host-card:last-child { border-right: none; }

@media (max-width: 800px) {
  .host-card { border-right: none; border-bottom: 1.5px solid var(--ink); }
  .host-card:last-child { border-bottom: none; }
}

.host-icon {
  font-family: var(--display);
  font-size: 36px;
  margin-bottom: 14px;
}

.host-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 36;
}

.host-desc { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }

/* Pull quote (used on About, etc) */
.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 20px 0 20px 24px;
  margin: 32px 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.3;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48, "WONK" 1;
  max-width: 760px;
}

/* Apply page perks */
.perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  margin-top: 40px;
  background: var(--paper);
}

@media (max-width: 700px) { .perks { grid-template-columns: 1fr; } }

.perk {
  padding: 28px clamp(20px, 2.5vw, 32px);
  border-bottom: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
}

.perk:nth-child(2n) { border-right: none; }
.perk:nth-last-child(-n+2) { border-bottom: none; }

@media (max-width: 700px) {
  .perk { border-right: none; }
  .perk:nth-last-child(-n+2) { border-bottom: 1.5px solid var(--ink); }
  .perk:last-child { border-bottom: none; }
}

.perk-icon { font-family: var(--display); font-size: 32px; color: var(--hot); margin-bottom: 12px; font-weight: 600; }

.perk-title { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 8px; font-variation-settings: "opsz" 36; }

.perk-desc { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }

/* =========================================================
   MOBILE CONTRAST FIXES
   The decorative yellow glow circles are tuned for wide
   desktop viewports. On narrow phone screens they fill the
   whole width and wash the background yellow, killing the
   contrast of text and highlight marks. These rules tame
   the glow on small screens so the paper background stays
   readable and the yellow stays an accent, not a wash.
   ========================================================= */

@media (max-width: 760px) {

  /* Homepage hero glow — shrink hard, push off-screen, fade */
  .hero::before {
    width: 320px;
    height: 320px;
    top: -8%;
    right: -40%;
    opacity: 0.28;
    filter: blur(70px);
  }

  /* Inner-page hero glow — same treatment */
  .page-hero::before {
    width: 280px;
    height: 280px;
    top: -12%;
    right: -38%;
    opacity: 0.25;
    filter: blur(65px);
  }

  /* The hero sits on warm paper — make sure that's enforced
     so even with the glow the base stays light, not yellow */
  .hero,
  .page-hero {
    background: var(--paper);
  }

  /* Hero headline highlight marks — on mobile the yellow-on-
     near-yellow can muddy. Keep the highlight tight and ensure
     the ink text stays full-strength for contrast. */
  .hero h1 em,
  .page-hero h1 em,
  .section-title em,
  .book-step-title em {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 0 6px;
  }

}

/* Extra-small phones — kill the hero glow entirely.
   Below 480px there's simply no room for a decorative
   background element without it becoming a full wash. */
@media (max-width: 480px) {

  .hero::before,
  .page-hero::before {
    display: none;
  }

}

/* =========================================================
   STICKY MOBILE CTA BAR
   Pinned to the bottom of the viewport on phones so the
   "Book Online" action is always one thumb-tap away.
   Hidden on desktop (the floating header handles it there).
   Hidden on the booking page itself.
   ========================================================= */

.sticky-cta {
  display: none; /* shown only on mobile via media query below */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--paper);
  border-top: 1.5px solid var(--ink);
  padding: 10px 14px;
  /* respect iPhone home-indicator safe area */
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 24px rgba(15, 24, 34, 0.12);
}

.sticky-cta-inner {
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 560px;
  margin: 0 auto;
}

/* Primary book button — takes most of the width */
.sticky-cta-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 15px 18px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.sticky-cta-book:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.sticky-cta-book .sticky-cta-sub {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Call button — compact, square-ish, dark */
.sticky-cta-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--accent);
  text-decoration: none;
  padding: 10px 16px;
  min-width: 76px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.sticky-cta-call:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--accent);
}

.sticky-cta-call-icon {
  font-size: 17px;
  line-height: 1;
}

.sticky-cta-call-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Show the bar only on mobile */
@media (max-width: 760px) {
  .sticky-cta { display: block; }

  /* Add breathing room at the bottom of the page so the
     fixed bar never covers the last bit of the footer */
  body.has-sticky-cta { padding-bottom: 78px; }
}

/* When the bar is told to hide (e.g. footer in view), slide it down */
.sticky-cta.tucked {
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ═══════════════════════════════════════════
   MOBILE HAMBURGER MENU
   ═══════════════════════════════════════════ */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  z-index: 999;
  padding-top: 80px;
  overflow-y: auto;
}
.mobile-nav.active {
  display: block;
}
.mobile-nav-inner {
  max-width: 400px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-link {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1.5px solid rgba(15,24,34,0.1);
  letter-spacing: -0.5px;
}
.mobile-nav-link:last-of-type {
  border-bottom: none;
}
.mobile-nav-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 760px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none !important;
  }
  .phone-nav {
    display: none !important;
  }
  .floating-header .hamburger span {
    background: var(--ink);
  }
  .floating-header .hamburger.active span {
    background: var(--ink);
  }
  body.nav-open {
    overflow: hidden;
  }
}
