@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,500;1,600&display=swap");

:root {
  --paper: #F9F4EA;
  --paper-warm: #FDF8F2;
  --paper-deep: #F3EBE1;
  --ink: #2C2824;
  --ink-deep: #1C1A18;
  --terracotta: #B55331;
  --terracotta-btn: #A55535;
  --terracotta-deep: #934428;
  --sage: #5E6B52;
  --sage-band: #B5BEA3;
  --sage-move: #BBBDAD;
  --olive: #7E826C;
  --gold: #B55331;
  --card: #FFFcf8;
  --muted: #4A4742;
  --line: rgba(44, 40, 36, 0.12);
  --shadow: 0 2px 18px rgba(44, 40, 36, 0.08);
  --radius: 14px;
  --max: 760px;
  --max-wide: 1600px;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--sage); text-underline-offset: 3px; }
a:hover { color: var(--terracotta); }
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.05rem, 5.4vw, 3.15rem); margin: 0 0 0.5em; }
h2 { font-size: 1.48rem; margin: 1.5em 0 0.45em; }
h3 { font-size: 1.18rem; margin: 1.15em 0 0.35em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: 0.45em; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--card);
  color: var(--ink);
  padding: 12px 16px;
  min-height: 44px;
  text-decoration: none;
  border: 2px solid var(--terracotta);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: var(--paper);
  border-bottom: 0;
}
.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wordmark {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-size: 2.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.wordmark:hover { color: var(--ink); }
.wordmark span { color: var(--terracotta); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 10px 20px 22px;
  flex-direction: column;
  gap: 2px;
}
.site-nav.is-open { display: flex; }
.site-nav a,
.nav-btn {
  display: flex;
  align-items: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: 0;
  text-align: left;
  padding: 12px 8px;
  min-height: 44px;
  cursor: pointer;
  width: 100%;
}
.nav-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  opacity: 0.55;
}
.site-nav a:hover,
.nav-btn:hover { color: var(--terracotta); }
.site-nav a[aria-current="page"],
.nav-btn[aria-current="true"] {
  box-shadow: inset 0 -2px 0 var(--terracotta);
  width: fit-content;
}

.has-sub .subnav {
  display: none;
  padding: 4px 0 10px 14px;
  border-left: 2px solid var(--gold);
  margin: 0 0 8px 8px;
}
.has-sub.is-open .subnav { display: flex; flex-direction: column; }
.subnav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 8px;
  min-height: 44px;
}
.subnav a[aria-current="page"] { color: var(--ink); }

/* Layout */
main { flex: 1; }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 22px 72px;
}
.wrap.wide {
  max-width: var(--max-wide);
}
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 8px;
}
.lede { font-size: 1.18rem; color: var(--ink); max-width: 42rem; }
.muted { color: var(--muted); }
.gold-rule {
  height: 3px;
  width: 52px;
  background: var(--terracotta);
  border: 0;
  margin: 28px 0;
  opacity: 1;
}

/* Photos */
.hero-photo, .inline-photo, .page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
}
.hero-photo img, .inline-photo img, .page-hero img {
  width: 100%;
  height: 42vw;
  min-height: 220px;
  max-height: 400px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) brightness(0.98);
}
.hero-photo::after, .inline-photo::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,40,36,0.04), rgba(44,40,36,0.28));
}
.hero-photo.on-page { margin: 0; }
.page-hero img {
  min-height: 240px;
  height: 46vw;
  max-height: 420px;
}
.caption {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 8px 0 0;
}

.page-mast {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  border-top: 3px solid var(--terracotta);
}
.page-mast .wrap {
  padding-top: 28px;
  padding-bottom: 28px;
}
.page-mast h1 { margin-bottom: 0; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 20px 0 8px;
}
@media (min-width: 600px) {
  .card-grid.two { grid-template-columns: 1fr 1fr; }
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(44,40,36,0.06);
  border-top: 3px solid var(--terracotta);
}
a.card {
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
a.card:hover {
  border-top-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(44,40,36,0.1);
  color: inherit;
}
.card h2, .card h3 { margin: 0; font-size: 1.22rem; }
.card p { margin: 0; color: var(--muted); font-size: 1rem; }
.card .go {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.98rem;
  margin-top: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.card-photo {
  margin: -20px -20px 12px;
  height: 148px;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.98);
}

.aeo {
  background: var(--card);
  border-left: 4px solid var(--terracotta);
  padding: 20px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  margin: 0 0 28px;
}
.aeo p { margin: 0; }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  position: relative;
  padding: 0 0 20px 52px;
  margin: 0;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm {
  background: var(--paper-deep);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--muted);
  font-size: 1.02rem;
  border-left: 3px solid var(--terracotta);
}
.confirm a { font-weight: 700; }

.faq details {
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 4px 18px;
  margin-bottom: 12px;
  border: 1px solid rgba(44,40,36,0.05);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  min-height: 44px;
  list-style-position: outside;
}
.faq details p { color: var(--muted); }

.band {
  background: var(--paper);
}
.band-deep {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band-sage {
  background: var(--sage-band);
  border-top: 0;
  border-bottom: 0;
}
.band .wrap { padding-top: 40px; padding-bottom: 48px; }
.band h2:first-child,
.band .kicker + h2 { margin-top: 0; }

.strip {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip .wrap { padding-top: 36px; padding-bottom: 40px; }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 8px;
}
.badge.soon {
  color: var(--sage);
  border-color: var(--sage);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  min-height: 44px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
}
.btn:hover { background: var(--terracotta-deep); color: #fff; }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.ghost:hover {
  background: var(--paper-deep);
  color: var(--ink);
}

.official-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.official-links a {
  background: var(--card);
  padding: 14px 16px;
  min-height: 44px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--terracotta);
  font-weight: 600;
}
.official-links a:hover {
  border-top-color: var(--terracotta);
  color: var(--ink);
}
.official-links a small { display: block; color: var(--muted); font-weight: 400; }

.site-footer {
  background: var(--ink);
  color: #d7ddd6;
  padding: 48px 22px 56px;
  font-size: 1.02rem;
}
.site-footer .wrap { padding: 0; max-width: var(--max-wide); }
.site-footer a { color: #e8c9a0; }
.site-footer .wordmark { color: var(--paper); display: inline-flex; margin-bottom: 12px; }
.site-footer .wordmark span { color: #d98468; }
.footer-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4b48a;
  font-weight: 700;
  margin: 0 0 8px;
}
.footer-lede { max-width: 40rem; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 18px 0;
}
.foot-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.legal { color: #b3b9b0; font-size: 0.92rem; }

.empty {
  text-align: left;
  padding: 28px 8px 8px;
}
.empty h2 { margin-top: 0; }

.hood-list .card { min-height: 0; }

/* Home */
.hero-block { position: relative; background: var(--paper); }
.hero-block .hero-photo { margin: 0; }
.hero-block .hero-photo img {
  min-height: 240px;
  height: 52vw;
  max-height: 520px;
  filter: saturate(0.95) contrast(1.02) brightness(1);
}
.hero-block .hero-photo::after {
  background: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 28px 22px 22px;
}
.hero-copy h1 {
  color: var(--ink);
  margin-bottom: 0.2em;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
}
.hero-copy .hero-sub {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.12rem, 2.4vw, 1.42rem);
  max-width: 34rem;
  margin: 0 0 10px;
  line-height: 1.4;
}
.hero-branch {
  display: block;
  width: 168px;
  height: 36px;
  color: var(--terracotta);
  margin: 4px 0 0;
}

.welcome {
  padding-top: 36px;
}
.byline {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 40rem;
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 24px 0 0;
}
.tile {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44,40,36,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(44,40,36,0.12);
  color: inherit;
}
.tile-photo {
  height: 148px;
  overflow: hidden;
}
.tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.98);
}
.tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-band);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -21px 0 8px 16px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(44,40,36,0.12);
}
.tile-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.tile-body {
  padding: 0 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.tile-body h2 { margin: 0; font-size: 1.28rem; }
.tile-body p { margin: 0; color: var(--muted); font-size: 0.98rem; line-height: 1.45; }
.tile-body .go {
  color: var(--terracotta);
  font-weight: 700;
  margin-top: auto;
  padding-top: 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.split figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border-top: 3px solid var(--terracotta);
}
.split figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.98);
}
.pickle-strip h2 { margin-top: 0; }
.pickle-strip p { max-width: 38rem; }

.also-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 16px 0 0;
}
.also-row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 16px;
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.also-row a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.named-church {
  border-top-color: var(--terracotta);
}
.named-church a { font-weight: 700; }

@media (min-width: 720px) {
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
  }
  .split figure img { height: 280px; }
  .hero-block {
    display: grid;
  }
  .hero-block .hero-photo {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 48px 6vw;
    background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 28%, rgba(249,247,242,0.82) 46%, rgba(249,247,242,0) 68%);
  }
  .hero-copy h1,
  .hero-copy .hero-sub { max-width: 18em; }
  .hero-block .hero-photo img {
    min-height: 380px;
    height: 46vw;
    max-height: 520px;
  }
}

@media (min-width: 800px) {
  .nav-toggle { display: none; }
  .header-inner { position: relative; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 4px 8px;
    border: 0;
    padding: 0;
    background: transparent;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .site-nav a, .nav-btn {
    width: auto;
    padding: 10px 10px;
    font-size: 1rem;
  }
  .has-sub { position: relative; }
  .has-sub .subnav {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: max-content;
    min-width: 200px;
    max-width: min(280px, calc(100vw - 48px));
    background: var(--card);
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    margin: 0;
    z-index: 20;
  }
  .has-sub .subnav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
  }
  .has-sub .subnav a {
    width: 100%;
    white-space: nowrap;
  }
  .has-sub.is-open .subnav,
  .has-sub:hover .subnav,
  .has-sub:focus-within .subnav {
    display: flex;
    flex-direction: column;
  }
  .hero-photo img, .inline-photo img, .page-hero img { height: 380px; }
}

@media (min-width: 800px) {
  .tile-grid.five { grid-template-columns: repeat(3, 1fr); }
  .move-cta-action .btn { width: auto; }
}
@media (min-width: 1100px) {
  .tile-grid.five {
    grid-template-columns: repeat(5, 1fr);
  }
  .tile { grid-column: auto; }
  .hero-block .hero-photo img { height: 480px; max-height: 480px; }
  .hero-copy { padding-left: max(6vw, calc((100% - var(--max-wide)) / 2 + 20px)); }
}

@media (prefers-reduced-motion: reduce) {
  a.card, a.tile { transition: none; }
  a.card:hover, a.tile:hover { transform: none; }
}

/* Eat — dual scores, empty until they reply */
.eat-jump {
  margin: 8px 0 28px;
}
.place-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 12px 0 8px;
}
.place-card {
  border-top-color: var(--terracotta);
  gap: 10px;
}
.place-card h3 { font-size: 1.28rem; }
.place-meta {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.place-card > p { font-size: 1.02rem; }
.badge-idle {
  color: var(--muted);
  border-style: dashed;
  border-color: rgba(44, 40, 36, 0.28);
  background: transparent;
  font-weight: 600;
  opacity: 0.85;
}
.scores {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 40px;
}
.score-who {
  font-weight: 700;
  width: 5.5rem;
  flex-shrink: 0;
  font-size: 0.98rem;
}
.dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid var(--terracotta);
  background: transparent;
  opacity: 0.62;
  display: block;
  box-sizing: border-box;
}
.score-num {
  color: var(--muted);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  min-width: 1.1em;
}
.quote-slot {
  margin: 0 0 10px;
  font-style: italic;
  font-size: 0.98rem;
  color: #7a8278;
  font-weight: 400;
}
.quote-slot:last-child { margin-bottom: 2px; }
.place-site {
  margin: 4px 0 0;
  font-size: 0.95rem;
}
.place-site a { font-weight: 600; }
.note-card {
  border-top-color: var(--sage);
  background: var(--sage-band);
}
.note-card p { color: var(--ink); }
.treat-also {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.treat-also li {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  margin-bottom: 10px;
  border: 1px solid rgba(44, 40, 36, 0.06);
  border-left: 3px solid var(--terracotta);
  color: var(--muted);
  font-size: 1.02rem;
}
.treat-also a { font-weight: 700; }
.eat-group { scroll-margin-top: calc(var(--header-h) + 16px); }

.eat-foot { margin-top: 28px; }

/* Nav: slight Move emphasis, not a second wordmark */
.site-nav a.nav-move {
  color: var(--terracotta);
  font-weight: 700;
}
.site-nav a.nav-move:hover {
  color: var(--terracotta-deep);
}

/* Home household-move CTA — full-width sage band */
.move-cta {
  border: 0;
}
.move-cta .wrap {
  padding-top: 28px;
  padding-bottom: 28px;
}
.move-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.move-cta-copy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.move-cta-copy h2 {
  margin: 0 0 0.2em;
  font-size: 1.42rem;
}
.move-cta-copy p {
  margin: 0;
  max-width: 36rem;
  color: var(--ink);
}
.move-cta-action { margin: 0; width: 100%; }
.move-cta-action .btn { width: 100%; white-space: nowrap; }
.move-box-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--ink);
  margin-top: 2px;
}
.section-title {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0.35em;
}
.section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--terracotta);
  margin-top: 10px;
  border-radius: 2px;
}
.start-here .wrap { padding-top: 44px; }

@media (min-width: 800px) {
  .move-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  .move-cta-copy { align-items: center; }
  .move-cta-action { flex-shrink: 0; width: auto; }
  .move-cta-action .btn { width: auto; }
}

/* Move landing */
.referral-banner {
  background: var(--sage-band);
  border-left: 4px solid var(--sage);
  padding: 16px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 24px;
  font-size: 1.08rem;
}
.referral-code {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--ink);
  margin-left: 4px;
}
.move-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}
.move-form {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px 22px;
  border: 1px solid rgba(44,40,36,0.06);
  border-top: 3px solid var(--terracotta);
  margin: 8px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.move-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
}
.move-form input,
.move-form textarea {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 400;
  padding: 12px 14px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}
.move-form textarea { min-height: 120px; resize: vertical; }
.form-label-note {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
button.btn {
  font-family: inherit;
  border: 0;
  cursor: pointer;
  width: fit-content;
}

.hp{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.form-thanks{margin:0;font-size:1.05rem}
