/* ==========================================================================
   All That Cleaning and More — Jacksonville
   Rebuilt from the Claude Design prototype "Cleanu Website Design Directions"
   (Home.dc.html). Desktop rendering matches the prototype 1:1; everything
   below 1180px is new work — the prototype had no responsive rules at all.
   ========================================================================== */

:root {
  --ink: #111;
  --purple: #5b2b8e;
  --pink: #e8168c;
  --teal: #1bbfbc;
  --yellow: #ffdd1b;
  --cream: #fffdf7;
  --white: #fff;

  --bd: 3px solid var(--ink);
  --shell: 1280px;
  --gut: 40px; /* horizontal page padding */
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Yantramanav, "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--pink); }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.shell { max-width: var(--shell); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- icons (inline SVG sprite, replaces Font Awesome + flaticon) ---------- */
.ic {
  width: 1em; height: 1em;
  fill: currentColor;
  flex-shrink: 0;
  vertical-align: -0.125em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: var(--bd);
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translate(2px, 2px); }
.btn--pink   { background: var(--pink);   color: #fff; }
.btn--pink:hover { color: #fff; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { color: var(--ink); }
.btn--white  { background: #fff; color: var(--ink); }
.btn--white:hover { color: var(--ink); }

.btn--sm { font-size: 15px; padding: 15px 26px; box-shadow: 5px 5px 0 var(--ink); }
.btn--sm:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn--md { font-size: 16px; padding: 16px 24px; box-shadow: 5px 5px 0 var(--ink); }
.btn--md:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn--lg { font-size: 17px; padding: 20px 32px; box-shadow: 7px 7px 0 var(--ink); }
.btn--lg:hover { box-shadow: 5px 5px 0 var(--ink); }
.btn--cta { font-size: 17px; padding: 20px 30px; box-shadow: 6px 6px 0 var(--ink); }
.btn--cta:hover { box-shadow: 4px 4px 0 var(--ink); }

/* ---------- eyebrow tags ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  padding: 7px 14px;
  transform: skewX(-8deg);
}
.tag > * { transform: skewX(8deg); }
.tag--purple { background: var(--purple); color: #fff; }
.tag--pink   { background: var(--pink);   color: #fff; }
.tag--teal   { background: var(--teal);   color: var(--ink); }
.tag--yellow { background: var(--yellow); color: var(--ink); }
.tag--hero {
  font-size: 14px;
  padding: 9px 16px;
  border: var(--bd);
  margin-bottom: 26px;
}

/* ---------- section scaffolding ---------- */
.sec { padding: 80px var(--gut); }
.sec--cream { background: var(--cream); }
.sec--white { background: #fff; }
.sec--tight { padding: 76px var(--gut); }
.rule-t { border-top: var(--bd); }
.rule-b { border-bottom: var(--bd); }

.h2 {
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
}
.lede { font-size: 19px; line-height: 1.65; color: #444; }

/* Header row: title block left, supporting text or link right */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.sec-head--center {
  display: block;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.sec-head--center .h2 { margin-top: 16px; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 8px var(--gut);
  background: var(--purple);
  color: #fff;
  font-size: 15px;
}
.topbar__in { display: flex; align-items: center; gap: 20px; }
.topbar a { color: #fff; }
.topbar a:hover { color: var(--yellow); }
.topbar__phone { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.topbar__phone .ic { color: var(--yellow); }
.topbar__social { display: flex; gap: 14px; font-size: 14px; }

/* ==========================================================================
   Masthead
   ========================================================================== */
.mast {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 16px var(--gut);
  background: #fff;
  border-bottom: var(--bd);
}
.mast__logo img { height: 82px; width: auto; }
.nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
}
.nav a { color: var(--ink); }
.nav a:hover { color: var(--pink); }
.nav .is-current {
  color: var(--pink);
  border-bottom: 3px solid var(--pink);
  padding-bottom: 3px;
}

.nav-toggle {
  display: none;
  background: var(--yellow);
  border: var(--bd);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 12px 14px;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ink);
}
.nav-toggle span + span { margin-top: 5px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 72px var(--gut) 88px;
}
.hero__grid {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: 86px;
  line-height: 0.93;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--pink); }
.hero__sub {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.6;
  color: #3a3a3a;
  max-width: 560px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  align-items: center;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__trust li { display: flex; align-items: center; gap: 9px; }
.hero__trust .ic { color: var(--teal); font-size: 18px; }

/* framed photo with offset colour block behind it */
.frame { position: relative; }
.frame::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  background: var(--purple);
}
.frame__in {
  position: relative;
  height: 470px;
  border: var(--bd);
  overflow: hidden;
  background: #e4dcf1;
}
.frame__in img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.frame__badge {
  position: absolute;
  bottom: -30px;
  left: -34px;
  background: var(--yellow);
  border: var(--bd);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 16px 22px;
}
.frame__badge b { display: block; font-size: 38px; font-weight: 900; line-height: 1; }
.frame__badge span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* decorative shapes */
.deco { position: absolute; pointer-events: none; }
.deco--tri {
  top: 58px; left: 52px;
  width: 0; height: 0;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-bottom: 62px solid var(--pink);
  transform: rotate(14deg);
}
.deco--sq { bottom: 110px; left: 30px; width: 74px; height: 74px; background: var(--teal); transform: rotate(22deg); }
.deco--dots {
  top: 220px; right: 44px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 6px 6px, var(--purple) 0 2px, transparent 2px 12px);
  background-size: 12px 12px;
  opacity: 0.9;
}
.deco--ring { top: 34px; right: 340px; width: 96px; height: 96px; border: 8px solid var(--yellow); border-radius: 50%; }

/* ==========================================================================
   Ticker
   ========================================================================== */
.ticker {
  background: var(--ink);
  color: #fff;
  padding: 22px var(--gut);
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 16px;
}
.ticker li { display: flex; align-items: center; gap: 56px; }
.ticker li::after { content: "·"; }
.ticker li:last-child::after { content: none; }
.ticker li:nth-child(1) { color: var(--yellow); }
.ticker li:nth-child(2) { color: var(--teal); }
.ticker li:nth-child(3) { color: var(--pink); }
.ticker li:nth-child(4) { color: var(--yellow); }
.ticker li::after { color: #fff; }

/* ==========================================================================
   Cards (services, reviews, steps, FAQ, team)
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid--2 { grid-template-columns: 1fr 1fr; gap: 22px; }

.card {
  border: var(--bd);
  background: #fff;
  padding: 30px;
}
.card h3 {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 16px;
}
.card p { margin-top: 12px; font-size: 17px; line-height: 1.6; color: #4a4a4a; }
.card__ic { font-size: 48px; }
.card__price { margin-top: 20px; font-weight: 900; font-size: 20px; color: var(--pink); }

.sh-teal   { box-shadow: 8px 8px 0 var(--teal); }
.sh-pink   { box-shadow: 8px 8px 0 var(--pink); }
.sh-yellow { box-shadow: 8px 8px 0 var(--yellow); }
.sh-purple { box-shadow: 8px 8px 0 var(--purple); }
.sh-ink    { box-shadow: 8px 8px 0 var(--ink); }

.card--invite {
  background: var(--purple);
  color: #fff;
  box-shadow: 8px 8px 0 var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card--invite h3 { font-size: 28px; line-height: 1.05; margin-top: 0; }
.card--invite p { color: #e7dcf5; }
.card--invite .btn { margin-top: 22px; align-self: flex-start; }

.c-teal { color: var(--teal); }
.c-pink { color: var(--pink); }
.c-purple { color: var(--purple); }

/* ==========================================================================
   Quote band + form
   ========================================================================== */
.quote {
  background: var(--teal);
  border-top: var(--bd);
  border-bottom: var(--bd);
  padding: 76px var(--gut);
}
.quote__grid {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.quote h2 { font-size: 56px; line-height: 0.98; font-weight: 900; text-transform: uppercase; }
.quote__sub { margin-top: 20px; font-size: 19px; line-height: 1.65; color: #0f3b3a; max-width: 520px; }
.quote__pts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
}
.quote__pts li { display: flex; gap: 12px; align-items: center; }
.quote__pts .ic { color: var(--purple); }

.qform {
  background: #fff;
  border: var(--bd);
  box-shadow: 10px 10px 0 var(--ink);
  padding: 34px;
}
.qform h3 { font-size: 26px; font-weight: 900; text-transform: uppercase; }
.qform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}
.qform input,
.qform select {
  padding: 15px 16px;
  border: var(--bd);
  font-family: inherit;
  font-size: 17px;
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  width: 100%;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}
.qform select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23111' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 42px;
}
.qform input::placeholder { color: #767676; }
.qform .span2 { grid-column: span 2; }
.qform button {
  grid-column: span 2;
  background: var(--pink);
  color: #fff;
  font-family: inherit;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 18px;
  padding: 19px;
  border: var(--bd);
  box-shadow: 6px 6px 0 var(--ink);
  cursor: pointer;
}
.qform button:hover { transform: translate(2px, 2px); box-shadow: 4px 4px 0 var(--ink); }
.qform button[disabled] { opacity: 0.65; cursor: progress; transform: none; }
.qform__msg {
  grid-column: span 2;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  padding: 14px 16px;
  border: var(--bd);
}
.qform__msg--ok { background: var(--yellow); }
.qform__msg--err { background: #ffe3ef; }
.qform__msg[hidden] { display: none; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews h2 { text-align: center; font-size: 48px; font-weight: 900; text-transform: uppercase; }
.reviews .grid { margin-top: 40px; }
.review { border: var(--bd); background: #fff; padding: 28px; }
.review__stars { color: var(--pink); font-size: 18px; letter-spacing: 0.1em; }
.review p { margin-top: 14px; font-size: 18px; line-height: 1.6; color: #333; }
.review__by { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review__by img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: var(--bd);
  object-fit: cover;
  flex-shrink: 0;
}
.review__by strong { text-transform: uppercase; letter-spacing: 0.05em; }

/* ==========================================================================
   Steps
   ========================================================================== */
.step { border: var(--bd); background: var(--cream); padding: 30px; }
.step__n {
  font-size: 56px;
  font-weight: 900;
  line-height: 0.9;
  -webkit-text-stroke: 2px var(--ink);
}
.step h3 { margin-top: 14px; font-size: 25px; font-weight: 900; text-transform: uppercase; }
.step p { margin-top: 12px; font-size: 17px; line-height: 1.6; color: #4a4a4a; }

/* ==========================================================================
   Why us
   ========================================================================== */
.why {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.why .frame::before { inset: 20px -16px -16px 20px; background: var(--teal); }
.why .frame__in { height: 440px; }
.why .frame__in img { object-position: center 28%; }
.why h2 { margin-top: 16px; }
.why__lede { margin-top: 18px; font-size: 19px; line-height: 1.65; color: #444; max-width: 600px; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.why__cell {
  border: var(--bd);
  background: #fff;
  padding: 22px;
  box-shadow: 5px 5px 0 var(--ink);
}
.why__cell .ic { font-size: 26px; }
.why__cell h4 { margin-top: 10px; font-size: 19px; font-weight: 900; text-transform: uppercase; }
.why__cell p { margin-top: 6px; font-size: 16px; line-height: 1.5; color: #555; }

/* ==========================================================================
   Team
   ========================================================================== */
.member { border: var(--bd); background: var(--cream); }
.member__body { padding: 22px; border-top: var(--bd); }
.member__body h3 { font-size: 22px; font-weight: 900; text-transform: uppercase; }
.member__role {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.member__body p { margin-top: 10px; font-size: 16px; line-height: 1.55; color: #555; }

/* Asset placeholder — swap for a real <img> when photos arrive.
   position:relative keeps it above the .frame::before offset colour block. */
.slot {
  position: relative;
  border: var(--bd);
  background: repeating-linear-gradient(135deg, #f2eef8 0 14px, #e4dcf1 14px 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--purple);
}
.slot .ic { font-size: 44px; }
.slot span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.slot--member { height: 260px; }
.slot--map { height: 420px; }

/* ==========================================================================
   Service area
   ========================================================================== */
.area {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.area h2 { margin-top: 16px; }
.area__lede { margin-top: 16px; font-size: 19px; line-height: 1.65; color: #444; max-width: 520px; }
.area__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.area__chips li {
  border: var(--bd);
  background: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  padding: 9px 14px;
}
.area .frame::before { inset: 18px -16px -16px 18px; background: var(--pink); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 1100px; margin: 0 auto; }
.faq__item { border: var(--bd); background: var(--cream); padding: 26px; }
.faq__item h3 {
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.faq__item h3 .ic { color: var(--pink); font-size: 16px; margin-top: 5px; }
.faq__item p { margin-top: 10px; font-size: 17px; line-height: 1.6; color: #4a4a4a; }
.sh6-pink   { box-shadow: 6px 6px 0 var(--pink); }
.sh6-teal   { box-shadow: 6px 6px 0 var(--teal); }
.sh6-purple { box-shadow: 6px 6px 0 var(--purple); }
.sh6-yellow { box-shadow: 6px 6px 0 var(--yellow); }

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.cta {
  background: var(--yellow);
  border-top: var(--bd);
  border-bottom: var(--bd);
  padding: 56px var(--gut);
}
.cta__in {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta h2 { font-size: 44px; line-height: 1; font-weight: 900; text-transform: uppercase; }
.cta p { margin-top: 12px; font-size: 19px; color: #3f3a10; }
.cta__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.foot { background: var(--purple); color: #fff; padding: 60px var(--gut) 30px; }
.foot__grid {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot__logo {
  background: #fff;
  border: var(--bd);
  display: inline-block;
  padding: 10px;
}
.foot__logo img { height: 92px; width: auto; }
.foot__blurb { margin-top: 18px; font-size: 17px; line-height: 1.65; color: #e2d7f2; max-width: 340px; }
.foot h4 {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
}
.foot ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
}
.foot a { color: #fff; }
.foot a:hover { color: var(--yellow); }
.foot__base {
  max-width: var(--shell);
  margin: 36px auto 0;
  border-top: 1px solid #7a52ab;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
  color: #d9c9ee;
}

/* ==========================================================================
   Responsive — none of this existed in the prototype
   ========================================================================== */

/* Laptop: pull the oversized display type back before anything wraps badly. */
@media (max-width: 1180px) {
  :root { --gut: 32px; }
  .hero h1 { font-size: 68px; }
  .hero__sub { font-size: 20px; }
  .h2, .quote h2 { font-size: 44px; }
  .reviews h2 { font-size: 42px; }
  .cta h2 { font-size: 38px; }
  .deco--ring { right: 220px; }
  .frame__in { height: 420px; }
  .nav ul { gap: 20px; font-size: 14px; }
  .ticker { gap: 32px; font-size: 15px; }
  .ticker li { gap: 32px; }
}

/* Tablet: two-up grids, stacked heroes, burger nav. */
@media (max-width: 980px) {
  .sec, .sec--tight { padding: 60px var(--gut); }

  .mast { flex-wrap: wrap; gap: 16px; }
  .mast__logo img { height: 62px; }
  .nav-toggle { display: block; order: 3; }
  .mast__cta { order: 2; margin-left: auto; }
  .nav {
    order: 4;
    display: none;
    width: 100%;
    border-top: var(--bd);
    padding-top: 8px;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav li { width: 100%; }
  .nav a { display: block; padding: 14px 2px; width: 100%; }
  .nav .is-current { border-bottom: none; padding-bottom: 14px; }

  .hero { padding: 52px var(--gut) 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero h1 { font-size: 56px; }
  .frame__in { height: 380px; }
  /* Once the hero is a single column the copy runs to the left gutter, so
     the floating shapes land on top of the text. Drop them. */
  .deco { display: none; }

  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .quote__grid, .why, .area { grid-template-columns: 1fr; gap: 40px; }
  .why .frame { order: 2; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Phone: single column everywhere, decorations gone, tap targets full width. */
@media (max-width: 620px) {
  :root { --gut: 18px; }

  .sec, .sec--tight { padding: 48px var(--gut); }
  .topbar { justify-content: center; padding: 10px var(--gut); font-size: 14px; }
  .topbar__in { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* Logo + burger only. The hero CTA sits immediately below and the top bar
     already has a tap-to-call, so a third button here is just noise. */
  .mast { padding: 12px var(--gut); gap: 12px; }
  .mast__logo img { height: 52px; }
  .mast__cta { display: none; }
  .nav-toggle { margin-left: auto; order: 2; }
  .nav { order: 3; }

  .hero { padding: 40px var(--gut) 56px; }
  .hero h1 { font-size: 40px; letter-spacing: -0.01em; }
  .hero__sub { font-size: 18px; margin-top: 18px; }
  .hero__btns { gap: 12px; margin-top: 26px; }
  .hero__btns .btn { width: 100%; }
  .hero__trust { gap: 12px; font-size: 14px; flex-direction: column; }
  .frame__in { height: 280px; }
  .frame::before { inset: 14px -10px -10px 14px; }
  .frame__badge { left: -10px; bottom: -22px; padding: 12px 16px; }
  .frame__badge b { font-size: 30px; }
  .deco { display: none; }

  .ticker { gap: 10px; font-size: 13px; letter-spacing: 0.08em; padding: 18px var(--gut); }
  .ticker li { gap: 10px; }
  .ticker li::after { content: none; }

  .h2, .quote h2 { font-size: 32px; }
  .reviews h2 { font-size: 30px; }
  .cta h2 { font-size: 28px; }
  .lede, .why__lede, .area__lede, .quote__sub { font-size: 17px; }
  .sec-head { margin-bottom: 30px; gap: 20px; }
  .sec-head--center { margin-bottom: 30px; }

  .grid, .grid--3, .grid--4, .grid--2, .why__grid { grid-template-columns: 1fr; gap: 20px; }
  /* Offset shadows eat horizontal space on a narrow screen. */
  .card, .review, .step, .faq__item, .member, .qform, .why__cell { box-shadow: 5px 5px 0 currentColor; }
  .sh-teal, .sh6-teal { box-shadow: 5px 5px 0 var(--teal); }
  .sh-pink, .sh6-pink { box-shadow: 5px 5px 0 var(--pink); }
  .sh-yellow, .sh6-yellow { box-shadow: 5px 5px 0 var(--yellow); }
  .sh-purple, .sh6-purple { box-shadow: 5px 5px 0 var(--purple); }
  .sh-ink, .card--invite, .qform, .why__cell { box-shadow: 5px 5px 0 var(--ink); }

  .card, .review, .step, .faq__item { padding: 22px; }
  .card h3 { font-size: 22px; }
  .qform { padding: 22px; }
  .qform__grid { grid-template-columns: 1fr; }
  .qform .span2, .qform button, .qform__msg { grid-column: span 1; }

  .quote { padding: 48px var(--gut); }
  .why .frame__in { height: 260px; }
  .slot--member { height: 220px; }
  .slot--map { height: 260px; }

  .cta__btns .btn { width: 100%; }
  .foot__grid { grid-template-columns: 1fr; gap: 28px; }
  .foot__base { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .qform button { transition: none; }
  .btn:hover, .qform button:hover { transform: none; }
}
