/* Vanessa — Playful (Refero f93ac72e) retinted to the pink flyer.
   Script wordmark + hot magenta CTAs on a warm canvas. */
:root {
  --ink: #111111;
  --canvas: #f6f2ee;
  --paper: #ffffff;
  --blush: #fde8f1;
  --magenta: #ff2e95;
  --magenta-deep: #e2187d;
  --stone: #848383;
  --slate: #0f172a;
  --line: #e8e5e0;
  --radius: 44px;
  --pill: 999px;
  --font-display: "Great Vibes", "Segoe Script", cursive;
  --font-ui: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1120px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; }

.van-root { min-height: 100vh; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta-deep);
  margin: 0 0 12px;
}
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.02; margin: 0; font-style: italic; }
h1 em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--magenta);
  letter-spacing: 0;
}
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.12; margin: 0; font-style: italic; }
h3 { font-size: clamp(22px, 2.6vw, 28px); line-height: 1.2; margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--pill);
  padding: 14px 24px;
  background: var(--magenta);
  color: var(--paper);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.btn:hover { background: var(--magenta-deep); text-decoration: none; }
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.btn-ghost:hover { background: var(--blush); }

#hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 242, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
#hdr .nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--magenta);
  color: var(--paper);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 26px;
}
.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}
.brand strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  display: block;
  color: var(--magenta);
  line-height: 1;
}
.navlinks { display: flex; gap: 22px; font-size: 14px; }
.navlinks a:hover { color: var(--magenta); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.burger { display: none; background: none; border: 0; padding: 6px; cursor: pointer; }

.hero { position: relative; min-height: min(82vh, 780px); background: var(--blush); }
.hero-shot { position: absolute; inset: 0; }
.hero-shot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.hero-copy {
  position: relative;
  z-index: 1;
  min-height: min(82vh, 780px);
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.hero-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  padding: 36px 32px;
  max-width: 34rem;
  box-shadow: var(--shadow);
}
.hero-sub {
  margin: 16px 0 22px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--slate);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 10px; }

.ribbon {
  background: var(--magenta);
  color: var(--paper);
  text-align: center;
  padding: 16px 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.trust { background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 28px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item b {
  display: block;
  font-style: italic;
  font-size: 24px;
  margin-bottom: 6px;
}
.trust-item span { color: var(--stone); font-size: 15px; }

.section { padding: 88px 0; }
.section.blush { background: var(--blush); }
.section.linen { background: #fff7f4; }
.lede {
  max-width: 40rem;
  color: var(--stone);
  font-size: 18px;
  line-height: 1.45;
  margin: 14px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img, .area-shot img {
  width: 100%;
  height: min(560px, 80vw);
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.story {
  background: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story img { height: 220px; width: 100%; object-fit: cover; object-position: center; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
.ba {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #1a1a1a;
}
.ba img {
  width: 100%;
  height: min(640px, 92vw);
  object-fit: cover;
  object-position: center;
}
.ba figcaption {
  position: absolute;
  left: 16px;
  top: 16px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ba.after figcaption {
  background: var(--magenta);
}
.story-body { padding: 24px; }
.story h3 { margin: 0 0 10px; }
.story p { margin: 0; color: var(--stone); font-size: 15px; }

.why {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why li {
  background: var(--paper);
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 600;
}

.town-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }
.towns { list-style: none; padding: 0; margin: 0; }
.towns li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.map-line, .about-cta { margin-top: 28px; }
.about-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.card {
  background: var(--paper);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.card.linen { background: #fff7f4; }

form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
form label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
form input, form textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--ink);
}
form textarea { min-height: 110px; resize: vertical; }
.addr-field { position: relative; }
#address { min-height: 0; }
.field-hint { margin: 0; font-size: 13px; color: var(--stone); }
.addr-suggest {
  list-style: none;
  margin: 4px 0 0;
  padding: 6px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-height: 240px;
  overflow: auto;
}
.addr-suggest[hidden] { display: none; }
.addr-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  cursor: pointer;
}
.addr-suggest button:hover,
.addr-suggest button[aria-selected="true"] { background: var(--blush); }
.form-note { font-size: 14px; color: var(--stone); margin-top: 12px; }
.form-ok, .form-bad { display: none; font-size: 15px; margin-top: 12px; }
.form-ok { color: #0f7a4a; }
.form-bad { color: #7a1f12; }

.review-board {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.review-card {
  margin: 0;
  background: var(--paper);
  border-radius: 28px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  font-style: italic;
}
.review-card footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}
.review-card footer span {
  font-size: 13px;
  color: var(--magenta-deep);
}

.faq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.faq-row h3 { font-size: 26px; font-style: italic; }
.faq-row p { margin: 0; color: var(--stone); font-size: 18px; }

footer.site {
  padding: 48px 0 56px;
  background: var(--magenta);
  color: var(--paper);
}
footer.site a { color: var(--paper); }
footer.site .rowish {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: end;
}
footer.site strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  display: block;
  margin-bottom: 8px;
}
footer.site p { margin: 4px 0; font-size: 14px; }

@media (max-width: 900px) {
  .navlinks { display: none; }
  .nav:has(#nav-toggle:checked) .navlinks {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--canvas);
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
  }
  .burger { display: block; }
  .trust-grid, .story-grid, .split, .two, .faq-row, .why, .town-cols, .review-board, .ba-grid {
    grid-template-columns: 1fr;
  }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .hero { min-height: 0; }
  .hero-shot { position: relative; height: min(48vh, 420px); }
  .hero-copy { min-height: 0; padding: 24px 0 32px; }
  .hero-card { max-width: none; padding: 24px 20px; }
  .card { padding: 24px; }
}

/* /gbiz — two tappable Google URLs, no how-to */
.gbiz { padding: 28px 0 64px; }
.gbiz-app { max-width: 36rem; display: grid; gap: 16px; }
.gbiz-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 20px 18px 18px;
  box-shadow: 0 1px 0 var(--line);
}
.gbiz-n {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--magenta-deep);
}
.gbiz-card h1 {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  max-width: none;
}
.gbiz-facts {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--stone);
}
.gbiz-url {
  display: block;
  background: var(--magenta);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(1.05rem, 4.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  padding: 16px 18px;
  border-radius: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.gbiz-url:hover { color: #fff; text-decoration: none; }
.gbiz-mail {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  border: 0;
  background: var(--blush);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(1.2rem, 4.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  padding: 16px 18px;
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
}
.gbiz-copy-note { margin: 0 0 10px; font-weight: 700; color: #0f7a4a; font-size: 15px; }
