/* ============================================
   Carilly — Brand tokens + base
   ============================================ */
:root {
  /* Brand colors */
  --blue: #1d4ed8;
  --blue-600: #2563eb;
  --blue-700: #1e40af;
  --blue-50: #eef3ff;
  --navy: #0f1a3c;
  --navy-soft: #1a2847;

  /* Accents */
  --yellow: #ffc93c;
  --yellow-soft: #ffe699;
  --mint: #b8e0cc;
  --mint-deep: #7cc3a0;
  --coral: #ff8b6e;
  --coral-soft: #ffd1c2;
  --pink: #f8c7d4;

  /* Neutrals */
  --cream: #fffbf5;
  --cream-2: #faf4e8;
  --ink: #1a1f36;
  --ink-soft: #4a5072;
  --line: rgba(15, 26, 60, 0.08);
  --line-strong: rgba(15, 26, 60, 0.14);

  /* Type */
  --display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15,26,60,.06), 0 2px 8px rgba(15,26,60,.04);
  --shadow-md: 0 8px 24px rgba(15,26,60,.08), 0 2px 6px rgba(15,26,60,.04);
  --shadow-lg: 0 24px 60px rgba(15,26,60,.12), 0 8px 18px rgba(15,26,60,.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* Container */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

/* Type utilities */
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}
h1,h2,h3,h4 { margin: 0; line-height: 1.05; font-weight: 400; letter-spacing: -0.01em; }
h1 { font-family: var(--display); font-size: clamp(48px, 7.5vw, 108px); }
h2 { font-family: var(--display); font-size: clamp(36px, 5vw, 64px); }
h3 { font-family: var(--display); font-size: clamp(24px, 2.6vw, 32px); }
h4 { font-family: var(--body); font-weight: 700; font-size: 18px; letter-spacing: 0; }
p  { margin: 0; }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-soft); line-height: 1.55; }

/* App store badges */
.app-badges { display: inline-flex; gap: 12px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 18px;
  background: #000;
  color: white;
  border-radius: 12px;
  border: 1px solid #000;
  transition: transform .18s ease, background .18s ease;
}
.app-badge:hover { transform: translateY(-2px); background: #1a1a1a; }
.app-badge svg.logo { width: 26px; height: 26px; flex-shrink: 0; }
.app-badge .stack { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.app-badge .stack .top { font-size: 10.5px; font-weight: 500; opacity: .85; letter-spacing: .02em; }
.app-badge .stack .bot { font-size: 17px; font-weight: 700; letter-spacing: -.005em; margin-top: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: white;
  box-shadow: 0 6px 14px rgba(29,78,216,.28);
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(29,78,216,.36); }
.btn-ghost {
  background: transparent; color: var(--navy); border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--navy); background: white; }
.btn-yellow {
  background: var(--yellow); color: var(--navy);
  box-shadow: 0 6px 14px rgba(255,201,60,.4);
}
.btn-yellow:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(255,201,60,.5); }
.btn-coral {
  background: var(--coral); color: white;
  box-shadow: 0 6px 14px rgba(255,139,110,.35);
}
.btn-coral:hover { transform: translateY(-1px); }

.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,251,245,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex; align-items: center;
  line-height: 1;
}
.brand img {
  height: 40px;
  width: auto;
  display: block;
}
.site-header .brand img { height: 38px; }
.footer .brand img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 10px 14px; border-radius: 10px;
  font-weight: 500; font-size: 15px; color: var(--ink);
  transition: background .15s;
  position: relative;
}
.nav-links a:hover { background: rgba(29,78,216,.07); color: var(--blue); }

/* Nav dropdown (Locations) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.nav-dropdown-toggle svg { transition: transform .2s ease; }
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-expanded="true"] {
  background: rgba(29,78,216,.07);
  color: var(--blue);
}
.nav-dropdown.is-open .nav-dropdown-toggle svg,
.nav-dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: 280px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow:
    0 24px 48px rgba(15,26,60,.14),
    0 6px 16px rgba(15,26,60,.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px !important;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink) !important;
  background: transparent !important;
}
.nav-dropdown-menu a:hover {
  background: var(--cream-2) !important;
}
.nav-dropdown-menu a .loc-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

/* Circular logo chip used in dropdown menu */
.nav-dropdown-menu a .loc-logo {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(15,26,60,.08), 0 2px 6px rgba(15,26,60,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-dropdown-menu a:hover .loc-logo {
  transform: scale(1.06);
  box-shadow: inset 0 0 0 1px rgba(15,26,60,.14), 0 4px 12px rgba(15,26,60,.12);
}
.nav-dropdown-menu a .loc-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav-dropdown-menu a .loc-logo-carilly { background: #fff; }
.nav-dropdown-menu a .loc-logo-carilly img { object-fit: contain; padding: 4px; }
.nav-dropdown-menu a .loc-logo-savannah { background: #fbd2c8; }
.nav-dropdown-menu a .loc-logo-hampton  { background: #a9c4c4; }
.nav-dropdown-menu a .loc-logo-boca     { background: #b9c6f0; }
.nav-dropdown-menu a .loc-logo-us {
  background: var(--navy);
  color: var(--yellow);
  font: 800 11px/1 var(--body);
  letter-spacing: .04em;
}

.nav-dropdown-menu a > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav-dropdown-menu a strong {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.nav-dropdown-menu a em {
  font-style: normal;
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 2px;
  font-weight: 500;
}
.nav-dropdown-menu a.nationwide {
  margin-top: 6px;
  padding-top: 14px !important;
  border-top: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .login { font-weight: 600; font-size: 15px; padding: 10px 14px; color: var(--ink); }
.nav-cta .login:hover { color: var(--blue); }

.nav-toggle { display: none; padding: 10px; }
@media (max-width: 920px) {
  .nav-links, .nav-cta .login { display: none; }
  .nav-toggle { display: inline-flex; }
}
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--ink); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 76px 0 0 0;
  background: var(--cream);
  z-index: 40;
  padding: 32px 28px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display); font-size: 32px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ============================================
   Hero — shared
   ============================================ */
.hero-section {
  position: relative;
  padding: 40px 0 100px;
  overflow: hidden;
}
.hero-variants { position: relative; }
.hero-variant { display: none; }
.hero-variant.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Variant switcher */
.variant-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
}
.variant-switch button {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
  transition: all .18s;
  display: inline-flex; align-items: center; gap: 8px;
}
.variant-switch button:hover { color: var(--ink); }
.variant-switch button.active {
  background: var(--navy);
  color: white;
}
.variant-switch .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; opacity: .5;
}
.variant-switch button.active .dot { opacity: 1; }
.variant-label-mini {
  display: block; font-size: 11px; opacity: .6; font-weight: 500;
  margin-top: 16px; color: var(--ink-soft);
}

/* ============================================
   Hero A — Editorial Playful
   ============================================ */
.hero-a {
  position: relative;
  padding: 36px 0 0;
  text-align: center;
}
.hero-a .hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}
.hero-a h1 {
  letter-spacing: -0.02em;
  color: var(--navy);
}
.hero-a h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-a .underline-stroke {
  display: inline-block;
  position: relative;
}
.hero-a .underline-stroke::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 4%;
  height: 12px;
  background: var(--yellow);
  border-radius: 30px;
  z-index: -1;
  opacity: .9;
}
.hero-a .sub {
  margin: 28px auto 0;
  max-width: 620px;
  font-size: 18px;
  color: var(--ink-soft);
}
.hero-a .meta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center; gap: 18px;
  flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--ink-soft);
}
.hero-a .meta .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: white; border: 1px solid var(--line);
  font-weight: 600;
}

/* Trust line (replaces pill bubbles) */
.hero-a .trust-line {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.hero-a .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}
.hero-a .trust-item svg { color: var(--mint-deep); }
.hero-a .trust-item:nth-child(5) svg { color: var(--blue); }
.hero-a .trust-item strong {
  color: var(--navy);
  font-weight: 700;
}
.hero-a .trust-stars {
  color: var(--coral);
  letter-spacing: 1px;
  font-size: 12px;
}
.hero-a .trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--line-strong);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-a .trust-sep { display: none; }
  .hero-a .trust-line { gap: 14px; flex-direction: column; }
}
.hero-a .ctas {
  margin-top: 38px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* Decorative SVGs */
.deco {
  position: absolute; pointer-events: none;
  z-index: 1;
}
.deco svg { width: 100%; height: 100%; display: block; }

.hero-a .deco-1 { top: 8%; left: 4%; width: 90px; height: 90px; animation: float 7s ease-in-out infinite; }
.hero-a .deco-2 { top: 22%; left: 12%; width: 60px; height: 60px; animation: float 6s ease-in-out infinite 1s; }
.hero-a .deco-3 { top: 6%; right: 6%; width: 110px; height: 110px; animation: float 8s ease-in-out infinite .5s; }
.hero-a .deco-4 { top: 28%; right: 10%; width: 70px; height: 70px; animation: float 7s ease-in-out infinite 2s; }
.hero-a .deco-5 { bottom: 18%; left: 8%; width: 80px; height: 80px; animation: float 9s ease-in-out infinite; }
.hero-a .deco-6 { bottom: 8%; right: 14%; width: 100px; height: 100px; animation: float 7s ease-in-out infinite 1.5s; }
.hero-a .deco-7 { bottom: 24%; right: 4%; width: 50px; height: 50px; animation: float 6s ease-in-out infinite 2.5s; }
.hero-a .deco-8 { bottom: 28%; left: 16%; width: 55px; height: 55px; animation: float 8s ease-in-out infinite .8s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@media (max-width: 720px) {
  .hero-a .deco { transform: scale(.7); }
  .hero-a .deco-2, .hero-a .deco-4, .hero-a .deco-7 { display: none; }
}

/* Hero image strip (under headline) */
.hero-strip {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1100px;
}
.hero-strip .card {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease;
}
.hero-strip .card:hover { transform: translateY(-4px); }
.hero-strip .card:nth-child(1) { background: var(--mint); transform: rotate(-1.5deg); margin-top: 12px; }
.hero-strip .card:nth-child(2) { background: var(--yellow-soft); transform: rotate(.8deg); }
.hero-strip .card:nth-child(3) { background: var(--coral-soft); transform: rotate(-.4deg); margin-top: 18px; }
.hero-strip .card:nth-child(4) { background: var(--pink); transform: rotate(1.2deg); }
.hero-strip .card:nth-child(5) { background: var(--blue-50); transform: rotate(-1deg); margin-top: 6px; }
.hero-strip .card:hover:nth-child(odd) { transform: rotate(0) translateY(-6px); }
.hero-strip .card:hover:nth-child(even) { transform: rotate(0) translateY(-6px); }

.hero-strip .card .ph-label {
  position: absolute; left: 12px; bottom: 12px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px; color: rgba(15,26,60,.5);
  background: rgba(255,255,255,.7); padding: 4px 8px; border-radius: 4px;
}
.hero-strip .ph-illo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}

@media (max-width: 720px) {
  .hero-strip { grid-template-columns: repeat(3, 1fr); }
  .hero-strip .card:nth-child(4), .hero-strip .card:nth-child(5) { display: none; }
}

/* ============================================
   Hero B — Search-first
   ============================================ */
.hero-b {
  position: relative;
  padding: 36px 0 0;
}
.hero-b .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-b .grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-b h1 {
  font-size: clamp(44px, 5.5vw, 84px);
  letter-spacing: -.025em;
  color: var(--navy);
}
.hero-b h1 em { font-style: italic; color: var(--blue); }
.hero-b .sub { margin-top: 24px; font-size: 18px; color: var(--ink-soft); max-width: 460px; }
.hero-b .badges {
  margin-top: 28px; display: flex; gap: 8px; flex-wrap: wrap;
}
.hero-b .badges .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: var(--radius-pill);
  background: white; border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
}
.hero-b .badges .badge svg { width: 14px; height: 14px; }

/* Search card */
.search-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.search-card::before {
  content: "";
  position: absolute; top: -16px; left: -16px;
  width: 100%; height: 100%;
  background: var(--mint);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .6;
}
.search-card h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
  color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.search-card h3 .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #29c46f;
  box-shadow: 0 0 0 3px rgba(41,196,111,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(41,196,111,.2); }
  50% { box-shadow: 0 0 0 6px rgba(41,196,111,.05); }
}
.search-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.search-fields .field { display: flex; flex-direction: column; gap: 6px; }
.search-fields .field.wide { grid-column: 1 / -1; }
.search-fields label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft);
}
.search-fields input, .search-fields select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line-strong);
  background: var(--cream);
  font-family: inherit; font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.search-fields input:focus, .search-fields select:focus {
  outline: none; border-color: var(--blue); background: white;
}
.kid-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.kid-chips button {
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--cream); border: 1.5px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  transition: all .15s;
}
.kid-chips button.active {
  background: var(--blue); color: white; border-color: var(--blue);
}
.kid-chips button:hover:not(.active) { border-color: var(--blue); color: var(--blue); }
.search-card .submit {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}
.search-card .meta {
  margin-top: 14px;
  font-size: 12px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
}
.search-card .meta strong { color: var(--navy); font-weight: 700; }

/* Hero B decoration */
.hero-b .deco-blob {
  position: absolute;
  top: -40px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--yellow-soft), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-b .deco-1 { position: absolute; top: 12%; right: 42%; width: 50px; height: 50px; animation: float 7s ease-in-out infinite; }
.hero-b .deco-2 { position: absolute; bottom: 8%; left: -2%; width: 64px; height: 64px; animation: float 8s ease-in-out infinite 1s; }
.hero-b .deco-3 { position: absolute; top: -6%; left: 42%; width: 70px; height: 70px; animation: float 9s ease-in-out infinite .5s; }

/* ============================================
   Hero C — Collage
   ============================================ */
.hero-c {
  position: relative;
  padding: 36px 0 0;
}
.hero-c .collage {
  position: relative;
  height: 540px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--cream-2) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-c .headline {
  position: absolute;
  z-index: 5;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 760px;
}
.hero-c .headline h1 {
  color: var(--navy);
  font-size: clamp(44px, 6vw, 96px);
  line-height: .98;
  text-shadow: 0 2px 0 rgba(255,255,255,.6);
}
.hero-c .headline h1 em { color: var(--blue); font-style: italic; }
.hero-c .headline .sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-c .headline .ctas {
  margin-top: 28px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* Collage tiles */
.tile {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform .3s ease;
  overflow: hidden;
}
.tile:hover { transform: translateY(-4px) rotate(0) !important; }
.tile-1 { top: 8%; left: 5%; width: 130px; height: 170px; background: var(--yellow); transform: rotate(-6deg); }
.tile-2 { top: 6%; right: 8%; width: 150px; height: 110px; background: var(--mint); transform: rotate(4deg); }
.tile-3 { bottom: 10%; left: 8%; width: 160px; height: 130px; background: var(--coral-soft); transform: rotate(3deg); }
.tile-4 { bottom: 14%; right: 6%; width: 140px; height: 170px; background: var(--blue); transform: rotate(-4deg); }
.tile-5 { top: 30%; left: 22%; width: 80px; height: 80px; background: var(--pink); border-radius: 50%; transform: rotate(8deg); }
.tile-6 { bottom: 38%; right: 22%; width: 70px; height: 70px; background: var(--yellow-soft); border-radius: 50%; }

.tile .ph-illo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.tile .ph-label {
  position: absolute; left: 8px; bottom: 8px;
  font-family: ui-monospace, monospace; font-size: 9px;
  color: rgba(15,26,60,.55);
  background: rgba(255,255,255,.65);
  padding: 2px 6px; border-radius: 4px;
}

@media (max-width: 720px) {
  .hero-c .collage { height: 580px; }
  .tile-1, .tile-2 { width: 90px; height: 110px; }
  .tile-3, .tile-4 { width: 100px; height: 110px; }
  .tile-5, .tile-6 { width: 56px; height: 56px; }
}

/* ============================================
   Trust bar
   ============================================ */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: white;
}
.trust-bar .row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.trust-stat {
  display: flex; align-items: center; gap: 14px;
}
.trust-stat .num {
  font-family: var(--display);
  font-size: 44px; line-height: 1;
  color: var(--blue);
}
.trust-stat .lbl {
  font-size: 13px; line-height: 1.35; color: var(--ink-soft);
}
.trust-stat .lbl strong { color: var(--navy); font-weight: 700; display: block; }
.trust-divider { width: 1px; height: 44px; background: var(--line); }
@media (max-width: 720px) {
  .trust-bar .row { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
}

/* Available-in city pills (hero) */
.available-in {
  margin-top: 38px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.available-in .label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 10px;
}
.available-in .label::before, .available-in .label::after {
  content: ""; width: 28px; height: 1px; background: var(--line-strong);
}
.available-in .cities {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.available-in .city {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: white;
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  transition: all .15s;
}
.available-in .city:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.available-in .city .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.available-in .city.nationwide { background: var(--navy); color: white; border-color: var(--navy); }
.available-in .city.nationwide .dot { background: var(--yellow); }
.available-in .city.coming { color: var(--ink-soft); opacity: .65; }
.available-in .city.coming .dot { background: var(--line-strong); }

/* ============================================
   App showcase section
   ============================================ */
.app-showcase {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blue-50) 100%);
  position: relative;
  overflow: hidden;
}
.app-showcase .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 920px) {
  .app-showcase .grid { grid-template-columns: 1fr; gap: 60px; }
}
.app-showcase h2 { color: var(--navy); margin-bottom: 18px; }
.app-showcase h2 em { color: var(--blue); font-style: italic; }
.app-showcase .lead { max-width: 460px; }

.app-features {
  margin: 36px 0 36px;
  display: flex; flex-direction: column; gap: 22px;
}
.app-feature {
  display: flex; gap: 16px;
  align-items: flex-start;
}
.app-feature .icon-bubble {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.app-feature:nth-child(1) .icon-bubble { background: var(--yellow); }
.app-feature:nth-child(2) .icon-bubble { background: var(--mint); }
.app-feature:nth-child(3) .icon-bubble { background: var(--coral-soft); }
.app-feature:nth-child(4) .icon-bubble { background: var(--blue-50); }
.app-feature .icon-bubble svg { width: 24px; height: 24px; }
.app-feature h4 { color: var(--navy); margin-bottom: 4px; font-size: 16.5px; }
.app-feature p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; max-width: 360px; }

.app-download-row {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  padding-top: 12px;
}
.qr-block {
  display: flex; align-items: center; gap: 14px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.qr-block .qr {
  width: 76px; height: 76px;
  background: white; padding: 6px;
  border-radius: 8px;
  position: relative;
}
.qr-block .qr svg { width: 100%; height: 100%; }
.qr-block .qr-text {
  font-size: 12px; line-height: 1.35;
  color: var(--ink-soft);
  max-width: 130px;
}
.qr-block .qr-text strong { color: var(--navy); font-weight: 700; display: block; font-size: 13.5px; margin-bottom: 2px; }
@media (max-width: 520px) { .qr-block { display: none; } }

/* Phone mockup */
.phone-stage {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 580px;
}
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9/19;
  background: var(--navy);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(15,26,60,.25), 0 12px 24px rgba(15,26,60,.15);
  z-index: 2;
}
.phone::before {
  content: "";
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: var(--navy);
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--cream);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-screenshot {
  width: 100%;
  flex: 1;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px 8px;
  font-size: 12px; font-weight: 700; color: var(--navy);
}
.phone-status .right { display: inline-flex; gap: 5px; align-items: center; }
.phone-status svg { width: 14px; height: 10px; }

.phone-header {
  padding: 8px 20px 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-header .greet { font-size: 11px; color: var(--ink-soft); }
.phone-header .greet strong { display: block; color: var(--navy); font-size: 14px; font-weight: 700; }
.phone-header .avatar-sm {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--navy);
}

.phone-hero-card {
  margin: 0 16px;
  padding: 14px 16px;
  background: var(--blue);
  color: white;
  border-radius: 18px;
  position: relative; overflow: hidden;
}
.phone-hero-card::before {
  content: ""; position: absolute; top: -10px; right: -10px;
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,201,60,.2);
}
.phone-hero-card .ttl { font-family: var(--display); font-size: 17px; line-height: 1.1; }
.phone-hero-card .sub { font-size: 10.5px; opacity: .8; margin-top: 4px; max-width: 140px; }
.phone-hero-card .mini-btn {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 10px;
  background: var(--yellow); color: var(--navy);
  border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
  position: relative; z-index: 1;
}

.phone-section-ttl {
  padding: 18px 20px 8px;
  font-size: 11px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: .08em;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-section-ttl .more { font-size: 10px; color: var(--blue); text-transform: none; letter-spacing: 0; }

.phone-sitter-row {
  display: flex;
  gap: 10px;
  padding: 0 20px 16px;
  overflow: hidden;
}
.phone-sitter {
  flex: 1;
  background: white;
  border-radius: 14px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid var(--line);
}
.phone-sitter .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  margin: 0 auto 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.phone-sitter:nth-child(1) .av { background: var(--mint); color: var(--navy); }
.phone-sitter:nth-child(2) .av { background: var(--coral); color: white; }
.phone-sitter:nth-child(3) .av { background: var(--yellow); color: var(--navy); }
.phone-sitter .nm { font-size: 11px; font-weight: 700; color: var(--navy); }
.phone-sitter .meta { font-size: 9px; color: var(--ink-soft); margin-top: 2px; }
.phone-sitter .meta .stars { color: var(--yellow); }

.phone-booking {
  margin: 0 16px;
  padding: 12px 14px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex; gap: 12px; align-items: center;
}
.phone-booking .when {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--blue-50);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--blue);
}
.phone-booking .when .day { font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.phone-booking .when .num { font-family: var(--display); font-size: 18px; line-height: 1; margin-top: 1px; }
.phone-booking .info { flex: 1; }
.phone-booking .info .who { font-size: 12px; font-weight: 700; color: var(--navy); }
.phone-booking .info .when-txt { font-size: 10.5px; color: var(--ink-soft); margin-top: 1px; }
.phone-booking .status {
  font-size: 9.5px; font-weight: 700;
  padding: 3px 7px; border-radius: 999px;
  background: rgba(41,196,111,.15); color: #1f8e57;
  text-transform: uppercase; letter-spacing: .04em;
}

.phone-tab {
  margin-top: auto;
  padding: 10px 24px 24px;
  display: flex; justify-content: space-around;
  border-top: 1px solid var(--line);
  background: white;
}
.phone-tab svg { width: 22px; height: 22px; color: var(--ink-soft); }
.phone-tab .tab-item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 9px; color: var(--ink-soft); font-weight: 600; }
.phone-tab .tab-item.active svg, .phone-tab .tab-item.active { color: var(--blue); }

/* Floating decorations around phone */
.phone-stage .float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.phone-stage .float-1 { top: 8%; left: 12%; width: 80px; height: 80px; animation: float 7s ease-in-out infinite; }
.phone-stage .float-2 { top: 12%; right: 12%; width: 70px; height: 70px; animation: float 8s ease-in-out infinite 1s; }
.phone-stage .float-3 { bottom: 14%; left: 6%; width: 60px; height: 60px; animation: float 9s ease-in-out infinite .5s; }
.phone-stage .float-4 { bottom: 8%; right: 8%; width: 90px; height: 90px; animation: float 7s ease-in-out infinite 1.5s; }
.phone-stage .bg-blob {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--yellow-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: .6;
}

/* Stat strip in app section */
.app-stat-strip {
  margin-top: 36px;
  display: flex; gap: 32px; flex-wrap: wrap;
}
.app-stat-strip .stat {
  display: flex; flex-direction: column;
}
.app-stat-strip .stat .n {
  font-family: var(--display);
  font-size: 32px; line-height: 1;
  color: var(--blue);
}
.app-stat-strip .stat .l { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }

/* ============================================
   Section heading
   ============================================ */
section { padding: 100px 0; position: relative; }
@media (max-width: 720px) { section { padding: 70px 0; } }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-head h2 { color: var(--navy); margin-bottom: 18px; }
.section-head h2 em { color: var(--blue); font-style: italic; }

/* ============================================
   How it works
   ============================================ */
.how {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.how .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 920px) { .how .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .how .steps { grid-template-columns: 1fr; } }

.step-card {
  position: relative;
  text-align: center;
  padding: 8px;
}
.step-circle {
  width: 200px; height: 200px;
  border-radius: 28px;
  margin: 0 auto 24px;
  position: relative;
  background: var(--cream-2);
  transition: transform .35s ease;
}
.step-card:hover .step-circle { transform: translateY(-6px); }
.step-circle .step-icon {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
}
.step-circle .step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.step-num {
  position: absolute; top: -10px; right: -10px;
  width: 40px; height: 40px;
  background: white; color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  font-family: var(--display);
  font-style: italic;
  border: 3px solid var(--cream);
  box-shadow: 0 6px 14px rgba(15,26,60,.12);
  z-index: 5;
}
.step-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 19px; }
.step-card p { color: var(--ink-soft); font-size: 14.5px; max-width: 240px; margin: 0 auto; }

/* ============================================
   Two-column "for families / for sitters"
   ============================================ */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 920px) { .duo { grid-template-columns: 1fr; } }

.duo-card {
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 480px;
}
.duo-card.families {
  background: var(--navy);
  color: white;
}
.duo-card.families .eyebrow { color: var(--yellow); }
.duo-card.sitters {
  background: var(--mint);
  color: var(--navy);
}
.duo-card.sitters .eyebrow { color: var(--navy); }

.duo-card h3 {
  font-size: clamp(32px, 3.2vw, 42px);
  margin: 14px 0 16px;
  letter-spacing: -.015em;
}
.duo-card .desc {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 28px;
  max-width: 380px;
}

.bullet-list { list-style: none; padding: 0; margin: 0; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-top: 1px solid currentColor;
  border-top-color: rgba(255,255,255,.12);
}
.duo-card.sitters .bullet-list li { border-top-color: rgba(15,26,60,.12); }
.bullet-list li:first-child { border-top: 0; }
.bullet-list li .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 2px;
}
.duo-card.families .check { background: var(--yellow); color: var(--navy); }
.duo-card.sitters .check { background: var(--navy); color: white; }

.duo-card .cta-row { margin-top: auto; padding-top: 28px; }

/* Decorative accent on cards */
.duo-card .accent-shape {
  position: absolute;
  pointer-events: none;
  opacity: .35;
}
.duo-card.families .accent-shape {
  bottom: -40px; right: -40px;
  width: 220px; height: 220px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(20px);
}
.duo-card.sitters .accent-shape {
  top: -30px; left: -30px;
  width: 180px; height: 180px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(20px);
}

/* ============================================
   Locations
   ============================================ */
.locations {
  background: var(--cream);
}
.locations .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) { .locations .grid { grid-template-columns: 1fr; gap: 40px; } }
.locations h2 { color: var(--navy); }
.locations h2 em { color: var(--blue); font-style: italic; }
.locations .lead { margin-top: 20px; max-width: 480px; }
.location-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.location-list .pill {
  padding: 12px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  display: flex; align-items: center; gap: 10px;
  transition: all .15s;
}
.location-list .pill:hover { border-color: var(--blue); color: var(--blue); }
.location-list .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.location-list .pill.nationwide .dot { background: var(--coral); }
.location-list .pill.coming .dot { background: var(--line-strong); }
.location-list .pill.coming { color: var(--ink-soft); }

/* Location cards grid */
.location-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 520px) { .location-grid { grid-template-columns: 1fr; } }
.loc-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none; color: inherit;
  transition: all .18s ease;
}
.loc-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.loc-card .loc-flag {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  font-family: var(--display);
  letter-spacing: .02em;
}
.loc-card.featured .loc-flag { background: var(--coral); color: white; }
.loc-card.featured { border-color: rgba(255,139,110,.4); }
.loc-card.nationwide .loc-flag { background: var(--yellow); color: var(--navy); }
.loc-card.nationwide { background: var(--navy); color: white; border-color: var(--navy); grid-column: 1 / -1; }
.loc-card.nationwide:hover { background: var(--navy-soft); }
.loc-card.coming { opacity: .7; }
.loc-card.coming .loc-flag { background: var(--cream-2); color: var(--ink-soft); }
.loc-card .loc-body { flex: 1; min-width: 0; }
.loc-card .loc-name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.loc-card.nationwide .loc-name { color: white; }
.loc-card .loc-meta { font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
.loc-card.nationwide .loc-meta { color: rgba(255,255,255,.7); }
.loc-card .loc-arrow { color: var(--line-strong); transition: color .15s, transform .15s; flex-shrink: 0; }
.loc-card:hover .loc-arrow { color: var(--blue); transform: translateX(3px); }
.loc-card.nationwide .loc-arrow { color: rgba(255,255,255,.4); }
.loc-card.nationwide:hover .loc-arrow { color: var(--yellow); }

/* Florida illustration */
.fl-map {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-50), var(--mint));
  overflow: hidden;
  padding: 24px;
  box-shadow: var(--shadow-md);
}

/* Multi-state visual */
.states-visual {
  display: flex; flex-direction: column;
  aspect-ratio: auto;
  padding: 28px;
  gap: 22px;
}
.states-stack {
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.state-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 4px 12px rgba(15,26,60,.05);
  position: relative;
  transition: transform .2s ease;
}
.state-row:hover { transform: translateX(4px); }
.state-tag {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .02em;
}
.state-tag.fl { background: var(--blue); }
.state-tag.va { background: var(--coral); }
.state-tag.ga { background: var(--mint-deep); }
.state-info { flex: 1; min-width: 0; }
.state-info .state-name {
  font-family: var(--display);
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
}
.state-info .state-cities {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.state-dot {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--mint-deep);
  box-shadow: 0 0 0 4px rgba(124,195,160,.2);
}
.state-dot.main {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,139,110,.2);
  animation: pulse-pin 2s ease-in-out infinite;
}

.state-connector {
  position: absolute;
  top: 24%; left: 18px;
  width: 60px; height: 60%;
  z-index: 1;
  pointer-events: none;
  opacity: .4;
}

.us-band {
  margin-top: auto;
  padding: 14px 18px;
  background: var(--navy);
  color: white;
  border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
  position: relative; z-index: 2;
}
.us-band-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
}
.us-band-text strong { display: block; font-size: 14px; font-weight: 700; }
.us-band-text span { font-size: 11.5px; color: rgba(255,255,255,.7); margin-top: 2px; display: block; }
.fl-map svg.fl { width: 100%; height: 100%; display: block; }
.fl-map .pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,139,110,.3), 0 2px 4px rgba(0,0,0,.15);
  animation: pulse-pin 2s ease-in-out infinite;
}
@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,139,110,.3), 0 2px 4px rgba(0,0,0,.15); }
  50% { box-shadow: 0 0 0 10px rgba(255,139,110,.05), 0 2px 4px rgba(0,0,0,.15); }
}
.fl-map .pin.main {
  background: var(--blue);
  width: 18px; height: 18px;
  box-shadow: 0 0 0 5px rgba(29,78,216,.3), 0 2px 4px rgba(0,0,0,.15);
}
.fl-map .pin-label {
  position: absolute;
  background: white;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transform: translateX(-50%);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.testimonials .section-head h2 { color: white; }
.testimonials .section-head h2 em { color: var(--yellow); }
.testimonials .eyebrow { color: var(--yellow); }
.testimonials .lead { color: rgba(255,255,255,.65); }

.t-slider {
  position: relative;
  margin: 0 auto;
}
.t-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.t-card {
  flex-shrink: 0;
  width: calc((100% - 48px) / 3);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
@media (max-width: 920px) { .t-card { width: calc((100% - 24px) / 2); } }
@media (max-width: 600px) { .t-card { width: 100%; } }
.t-card .stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.t-card .quote {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.3;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -.005em;
}
.t-card .person {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.t-card .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy);
  font-size: 14px;
}
.t-card .name { font-weight: 700; font-size: 14px; }
.t-card .role { font-size: 12px; color: rgba(255,255,255,.55); }

.t-controls {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 36px;
}
.t-controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.t-controls button:hover { background: rgba(255,255,255,.12); }
.t-controls button:disabled { opacity: .3; cursor: not-allowed; }
.t-dots {
  display: flex; gap: 8px; align-items: center;
}
.t-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all .2s;
}
.t-dots .dot.active { background: var(--yellow); width: 24px; border-radius: 4px; }

/* ============================================
   FAQ
   ============================================ */
.faq .grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 920px) { .faq .grid { grid-template-columns: 1fr; gap: 32px; } }
.faq h2 { color: var(--navy); margin-bottom: 18px; }
.faq h2 em { color: var(--blue); font-style: italic; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; text-align: left;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  font-family: var(--display);
  font-size: 22px;
  color: var(--navy);
  transition: color .15s;
}
.faq-item button:hover { color: var(--blue); }
.faq-item .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  transition: all .2s;
}
.faq-item.open .toggle { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-item .body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.open .body { grid-template-rows: 1fr; }
.faq-item .body > div {
  overflow: hidden;
}
.faq-item .body p {
  color: var(--ink-soft);
  padding: 0 0 22px 0;
  max-width: 560px;
  font-size: 15.5px;
}

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  padding: 220px 0 110px;
  background: var(--blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner .wrap { position: relative; z-index: 2; }
.cta-banner .grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
@media (max-width: 720px) {
  .cta-banner { padding: 170px 0 70px; }
  .cta-banner .grid { grid-template-columns: 1fr; }
}
.cta-banner h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  color: white; max-width: 640px;
}
.cta-banner h2 em { font-style: italic; color: var(--yellow); }
.cta-banner .ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cta-banner .ctas .btn-yellow { color: var(--navy); }
.cta-banner .ctas .btn-white {
  background: white; color: var(--blue);
}
.cta-banner .ctas .btn-white:hover { background: var(--cream); }

.cta-banner .deco-sun {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,60,.3), transparent 70%);
  pointer-events: none;
}
.cta-banner .deco-circle {
  position: absolute;
  bottom: -120px; left: 10%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}

/* Decorative pattern strip above CTA */
.cta-banner .pattern-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background-image: url('assets/illo-pattern.webp');
  background-repeat: repeat-x;
  background-size: auto 180px;
  background-position: center top;
  z-index: 1;
  /* Soft fade into the blue using mask */
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,.7) 60%, rgba(0,0,0,.25) 80%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,.7) 60%, rgba(0,0,0,.25) 80%, rgba(0,0,0,0) 100%);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--navy);
  color: white;
  padding: 70px 0 28px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 920px) { .footer .grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer .brand { color: white; font-size: 32px; margin-bottom: 16px; }
.footer .brand sup { color: rgba(255,255,255,.6); }
.footer .about-col p {
  color: rgba(255,255,255,.6);
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.55;
}
.footer .social { display: flex; gap: 10px; margin-top: 18px; }
.footer .social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.footer .social a:hover { background: var(--blue); }
.footer .social svg { width: 16px; height: 16px; fill: white; }

.footer h5 {
  margin: 0 0 16px 0;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yellow);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer ul a {
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
  transition: color .15s;
}
.footer ul a:hover { color: white; }

.footer .bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer .bottom .links { display: flex; gap: 22px; }
.footer .bottom a:hover { color: white; }

/* ============================================
   Reveal animation
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
.reveal.in {
  opacity: 1; transform: none;
}

/* ============================================
   Ambient orbs (color fields for glass to refract)
   ============================================ */
.ambient {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}
.ambient .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  will-change: transform;
}
.ambient .orb-1 { top: -120px; left: -80px; width: 460px; height: 460px; background: radial-gradient(circle, #ffc93c 0%, transparent 70%); animation: orbFloat 18s ease-in-out infinite; }
.ambient .orb-2 { top: 8%; right: -100px; width: 520px; height: 520px; background: radial-gradient(circle, #b8e0cc 0%, transparent 70%); animation: orbFloat 22s ease-in-out infinite reverse; }
.ambient .orb-3 { bottom: -160px; left: 20%; width: 600px; height: 600px; background: radial-gradient(circle, #c9d8ff 0%, transparent 70%); animation: orbFloat 26s ease-in-out infinite 2s; }
.ambient .orb-4 { top: 40%; left: 35%; width: 360px; height: 360px; background: radial-gradient(circle, #ffd1c2 0%, transparent 70%); animation: orbFloat 24s ease-in-out infinite 4s; opacity: .45; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(.95); }
}

.hero-section { position: relative; }
.hero-section > .ambient { z-index: 0; }
.hero-section > .wrap { position: relative; z-index: 2; }

/* ============================================
   Glass utility — iOS 26 style
   ============================================ */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.25) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -1px 0 rgba(15,26,60,.04),
    0 8px 32px rgba(15,26,60,.08),
    0 2px 8px rgba(15,26,60,.04);
}

/* Header glass */
.site-header {
  background: rgba(255,251,245,.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}
.site-header.scrolled {
  background: rgba(255,251,245,.72);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.5), 0 4px 24px rgba(15,26,60,.06);
}

/* Variant switcher glass */
.variant-switch {
  background: linear-gradient(135deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.35) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 8px 24px rgba(15,26,60,.08);
}

/* Hero meta pills glass */
.hero-a .meta .pill {
  background: linear-gradient(135deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.4) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 4px 12px rgba(15,26,60,.06);
}

/* Available-in city pills glass */
.available-in .city {
  background: linear-gradient(135deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.35) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.available-in .city:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.5) 100%);
}
.available-in .city.nationwide {
  background: linear-gradient(135deg, rgba(15,26,60,.92) 0%, rgba(15,26,60,.75) 100%);
  border-color: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}

/* Hero B search card glass */
.search-card {
  background: linear-gradient(135deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.6) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 24px 60px rgba(15,26,60,.12),
    0 8px 18px rgba(15,26,60,.06);
}

/* App badges — solid, NOT glass */
.app-badge {
  position: relative;
  background: #000;
  border: 1px solid #000;
  box-shadow: none;
}
.app-badge::before { display: none; }

/* Trust bar glass */
.trust-bar {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,.65) 0%, rgba(255,255,255,.4) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

/* Step circles glassy ring + highlight */
.step-circle {
  box-shadow:
    0 14px 32px rgba(15,26,60,.1),
    0 4px 8px rgba(15,26,60,.04);
}
.step-circle::after {
  display: none;
}

/* App showcase containers */
.app-showcase { position: relative; }
.app-showcase > .wrap { position: relative; z-index: 2; }

/* QR block glass */
.qr-block {
  background: linear-gradient(135deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.55) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 24px rgba(15,26,60,.08);
}

/* Phone */
.phone {
  background: linear-gradient(145deg, #1a2347 0%, #0a1230 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.08),
    0 40px 80px rgba(15,26,60,.3),
    0 16px 32px rgba(15,26,60,.2);
}
.phone-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 18px;
}
.phone-sitter {
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.75) 100%);
  backdrop-filter: blur(8px);
}

/* Locations glass cards */
.locations { position: relative; }
.locations > .wrap { position: relative; z-index: 2; }
.loc-card:not(.nationwide) {
  background: linear-gradient(135deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.55) 100%);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 4px 14px rgba(15,26,60,.04);
}
.loc-card:not(.nationwide):hover {
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.75) 100%);
  border-color: var(--blue);
}

/* FAQ toggle glass */
.faq-item .toggle {
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.6) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  color: var(--navy);
}

/* Testimonial cards glass-dark */
.t-card {
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}
.testimonials { position: relative; }
.testimonials > .wrap { position: relative; z-index: 2; }
.testimonials .ambient .orb { opacity: .25; }

/* Floating download button (sticky) */
.float-download {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px 11px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.55) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 12px 32px rgba(15,26,60,.16),
    0 4px 12px rgba(15,26,60,.08);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.float-download.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.float-download:hover { transform: translateY(-2px) scale(1.02); }
.float-download .icon-stack {
  display: flex; align-items: center;
  margin-right: 4px;
}
.float-download .icon-stack span {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
  margin-left: -10px;
  position: relative;
}
.float-download .icon-stack span:first-child { margin-left: 0; }
.float-download .icon-stack svg { width: 14px; height: 14px; }
.float-download .close-x {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(15,26,60,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink-soft);
  margin-left: 6px;
  transition: background .15s;
  flex-shrink: 0;
}
.float-download .close-x:hover { background: rgba(15,26,60,.18); }
@media (max-width: 520px) {
  .float-download { right: 14px; bottom: 14px; padding: 9px 12px; font-size: 13px; }
}

/* Announcement bar */
.announce {
  position: relative;
  padding: 11px 0;
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
  color: white;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}
.announce::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,201,60,.35) 50%, transparent 65%);
  animation: shimmer 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}
.announce .inner { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.announce strong { font-weight: 700; }
.announce a { text-decoration: underline; text-underline-offset: 3px; }
.announce a:hover { color: var(--yellow); }
.announce .spark {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 800;
}

/* Magnetic / parallax decor support */
.deco { transition: transform .15s ease-out; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ambient .orb, .announce::before, .deco, .pin-main, .live-dot, .float { animation: none !important; }
}

/* ============================================
   Services section (4 appointment types)
   ============================================ */
.services { background: var(--cream); position: relative; }
.services .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .services .grid { grid-template-columns: 1fr; gap: 16px; } }
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.service-card .svc-illo {
  width: 110px; height: 110px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--cream-2);
}
.service-card .svc-illo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card .svc-illo svg { width: 44px; height: 44px; position: relative; z-index: 1; color: var(--navy); }
.app-feature .icon-bubble svg { color: var(--navy); }
.service-card h3 {
  font-family: var(--display);
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: -.005em;
}
.service-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.service-card .svc-cta {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--blue);
}
.service-card .svc-cta svg { width: 14px; height: 14px; transition: transform .15s; }
.service-card:hover .svc-cta svg { transform: translateX(3px); }
.service-card .svc-tag {
  position: absolute; top: 18px; right: 18px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================
   About / Founder section
   ============================================ */
.about-section {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.about-section .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) { .about-section .grid { grid-template-columns: 1fr; gap: 40px; } }
.founder-portrait {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.founder-portrait .ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--mint) 0%, var(--blue-50) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-portrait .ph::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.5), transparent 50%);
  pointer-events: none;
}
.founder-portrait .ph-label {
  position: absolute; left: 16px; bottom: 16px;
  font-family: ui-monospace, monospace; font-size: 11px;
  color: rgba(15,26,60,.55);
  background: rgba(255,255,255,.8); padding: 5px 10px; border-radius: 6px;
}
.founder-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute; inset: 0;
}
.founder-portrait .ph .face {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 120px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.1));
}
.founder-tag {
  position: absolute; left: -16px; top: 30px;
  background: var(--yellow);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255,201,60,.4);
  z-index: 2;
}
.founder-tag-2 {
  position: absolute; right: -10px; bottom: 50px;
  background: white;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.founder-tag-2 svg { width: 14px; height: 14px; color: var(--coral); }

.about-body h2 { color: var(--navy); margin-bottom: 14px; }
.about-body h2 em { color: var(--blue); font-style: italic; }
.about-body .founder-line {
  display: inline-block;
  font-family: var(--display);
  font-size: 18px;
  color: var(--coral);
  font-style: italic;
  margin-bottom: 16px;
}
.about-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin-bottom: 14px; }
.about-body .signature {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--navy);
  margin: 24px 0 12px;
}
.about-body .cta-row { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }


/* ============================================
   Map frame (Locations section image)
   ============================================ */
.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-md);
}
.map-img {
  width: 100%;
  height: auto;
  display: block;
}
.map-frame .us-band {
  position: absolute;
  left: 14px; right: 14px;
  bottom: 14px;
  margin: 0;
  background: rgba(15,26,60,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 24px rgba(15,26,60,.2);
}

.underline-yellow {
  position: relative;
  display: inline-block;
}
.underline-yellow::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 8px;
  background: var(--yellow);
  border-radius: 30px;
  z-index: -1;
  opacity: .9;
}


/* ============================================
   Interactive map (locations)
   ============================================ */
.map-wrap {
  max-width: 1240px;
  margin: 0 auto;
}
.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: 0 24px 60px rgba(15,26,60,.1), 0 6px 18px rgba(15,26,60,.06);
  aspect-ratio: 1727 / 619;
}
.map-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Hotspots — positioned over each pin on the map */
.map-hotspot {
  position: absolute;
  /* Each hotspot covers pin + label area */
  width: 28%;
  height: 11%;
  display: block;
  border-radius: 14px;
  transition: background .2s ease, transform .2s ease;
  cursor: pointer;
  z-index: 3;
}
.map-hotspot:hover {
  background: rgba(29, 78, 216, 0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Pin pulse marker inside hotspot */
.hot-pin {
  position: absolute;
  left: 1.5%; top: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(29,78,216,.35), transparent 70%);
  transition: opacity .25s ease, transform .25s ease;
}
.map-hotspot:hover .hot-pin {
  opacity: 1;
  animation: pinPulse 1.6s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .5; }
  50% { transform: translate(-50%, -50%) scale(1.6); opacity: .15; }
}

/* Hover info card */
.hot-card {
  position: absolute;
  left: 50%; top: -8px;
  transform: translate(-50%, -100%) translateY(-6px);
  min-width: 220px;
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.85) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 12px 32px rgba(15,26,60,.18),
    0 4px 10px rgba(15,26,60,.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
  z-index: 5;
}
.hot-card::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: rgba(255,255,255,.95);
  border-right: 1px solid rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.8);
}
.map-hotspot:hover .hot-card {
  opacity: 1;
  transform: translate(-50%, -100%) translateY(0);
}
.hot-card .hot-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  font-family: var(--body);
  line-height: 1.2;
}
.hot-card .hot-meta {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.3;
}
.hot-card .hot-cta {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700;
  color: var(--blue);
}
.hot-card .hot-cta svg { transition: transform .15s; }
.map-hotspot:hover .hot-card .hot-cta svg { transform: translateX(3px); }

/* Nationwide band overlay on map */
.map-us-band {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(15,26,60,.94) 0%, rgba(15,26,60,.85) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15,26,60,.2);
  color: white;
  z-index: 4;
  transition: transform .2s ease, box-shadow .2s ease;
  max-width: 320px;
}
.map-us-band:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15,26,60,.28);
}
.map-us-band .us-band-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .04em;
}
.map-us-band .us-band-text strong { display: block; font-size: 13.5px; font-weight: 700; }
.map-us-band .us-band-text span { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 2px; display: block; }

/* Quick-link chips below map */
.map-quicklinks {
  margin-top: 22px;
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.map-quicklinks .ql {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 9px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.55) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 2px 8px rgba(15,26,60,.04);
  font-size: 13.5px; font-weight: 600;
  color: var(--navy);
  transition: all .18s ease;
}
.map-quicklinks .ql:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(15,26,60,.08);
}
.map-quicklinks .ql .ql-c {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: .02em;
}
.map-quicklinks .ql.nationwide {
  background: linear-gradient(135deg, rgba(15,26,60,.94) 0%, rgba(15,26,60,.82) 100%);
  color: white;
  border-color: rgba(255,255,255,.12);
}
.map-quicklinks .ql.nationwide .ql-c { background: var(--yellow); color: var(--navy); }
.map-quicklinks .ql.nationwide:hover { color: var(--yellow); border-color: var(--yellow); }

/* Mobile — hotspots stack as a list under a smaller map */
@media (max-width: 720px) {
  .map-hotspot .hot-card { display: none; }
  .map-hotspot:hover { background: rgba(29, 78, 216, 0.08); }
}


/* ============================================
   Map heading overlay (heading sits on the map)
   ============================================ */
.map-frame {
  width: 100%;
  aspect-ratio: 1727 / 619;
  /* No min-height — aspect-ratio drives height from width to avoid overflow */
}
.map-overlay {
  position: absolute;
  top: 8%;
  left: 5%;
  z-index: 4;
  max-width: 44%;
  pointer-events: none;
}
.map-overlay .eyebrow { color: var(--blue); display: inline-block; margin-bottom: 14px; }
.map-overlay h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: .98;
  color: var(--navy);
  letter-spacing: -.015em;
  margin-bottom: 18px;
}
.map-overlay h2 em { color: var(--blue); font-style: italic; }
.map-overlay h2 .underline-yellow::after {
  height: 10px; bottom: 4%; opacity: 1;
}
.map-lead {
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 360px;
  line-height: 1.5;
}

/* Hotspot — sits directly over a pin head; reveals a logo card on hover/focus/active */
.map-hotspot {
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 5;
}
.map-hotspot .hot-pin {
  left: 50%; top: 50%;
  width: 56px; height: 56px;
  background: radial-gradient(circle, rgba(29,78,216,.55) 0%, rgba(29,78,216,.22) 35%, transparent 65%);
  opacity: 0;
}
.map-hotspot:hover .hot-pin,
.map-hotspot:focus-visible .hot-pin,
.map-hotspot.is-open .hot-pin { opacity: 1; animation: pinPulse 1.8s ease-in-out infinite; }

.map-hotspot.flash .hot-pin {
  opacity: 1;
  animation: hotFlash 1.8s ease-out;
}
@keyframes hotFlash {
  0% { transform: translate(-50%, -50%) scale(.6); opacity: 0; }
  30% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

/* Logo bubble that appears above the hotspot — circular badge */
.hot-logo {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translate(-50%, 8px) scale(.7);
  transform-origin: 50% calc(100% + 12px);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    inset 0 0 0 4px #fff,
    inset 0 0 0 5px rgba(15,26,60,.08),
    0 16px 36px rgba(15,26,60,.28),
    0 4px 10px rgba(15,26,60,.14);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
  z-index: 6;
  overflow: hidden;
}
.hot-logo::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-bottom-right-radius: 2px;
  box-shadow: 2px 2px 6px rgba(15,26,60,.10);
  z-index: -1;
}
.hot-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hot-logo-savannah          { background: #fbd2c8; }
.hot-logo-savannah img      { object-fit: cover; padding: 0; }
.hot-logo-boca              { background: #b9c6f0; }
.hot-logo-boca img          { object-fit: cover; padding: 0; }
.hot-logo-central           { background: #fff; }
.hot-logo-central img       { object-fit: contain; padding: 20px; }
.hot-logo-cta {
  display: none; /* circular badge: link affordance is the whole circle */
}

.map-hotspot:hover .hot-logo,
.map-hotspot:focus-visible .hot-logo,
.map-hotspot.is-open .hot-logo {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

/* Section padding adjustments — let map breathe */
.locations { padding-top: 100px; padding-bottom: 100px; }
@media (max-width: 720px) { .locations { padding-top: 70px; padding-bottom: 70px; } }

/* Mobile — heading sits ABOVE the map (not overlapping) */
@media (max-width: 920px) {
  .map-overlay {
    position: static;
    max-width: 100%;
    padding: 28px 24px 18px;
    pointer-events: auto;
  }
  .map-frame {
    aspect-ratio: auto;
    min-height: 0;
    display: flex; flex-direction: column;
  }
  .map-img {
    order: 2;
  }
  .map-hotspot { display: none; }
  .map-us-band {
    position: static;
    margin: 14px 18px 18px;
  }
}
