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

:root {
  --ink: #392b31;
  --paper: #faf7f2;
  --white: #fffaf4;
  --red: #a85439;
  --red-dark: #90442e;
  --muted: #6b6162;
  --line: #e0d7ce;
  --dark: #392b31;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.shell {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img { width: 27px; height: 27px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 13px; font-weight: 500; text-decoration: none; }
.nav-links a:hover { text-decoration: underline; text-underline-offset: 4px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease;
}

.button:hover {
  border-color: var(--red);
}

.button-red { background: var(--red); color: var(--white); }
.nav-links .button:hover { text-decoration: none; }

.menu-button, .menu-close {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu { display: none; }

.hero {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 72px;
  align-items: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5.5vw, 74px);
  line-height: 1.06;
}

.hero-copy {
  max-width: 470px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-note {
  display: inline-block;
  margin: 20px 0 0;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-style: italic;
  transform: none;
}

.phone-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 242px);
  padding: 7px;
  border: 1px solid #bcaea6;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 36px #392b3110;
  transform: none;
}



.phone-wrap img { width: 100%; border-radius: 21px; }

.city-picker {
  padding: 40px 0 46px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
}

.section-heading p { max-width: 520px; margin-bottom: 0; color: var(--muted); }

.city-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0;
  column-gap: 28px;
}

.city-link {
  min-height: 106px;
  padding: 20px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-decoration: none;
}

.city-link:hover strong { color: var(--red); }
.city-link strong { display: block; font-family: Georgia, serif; font-size: 23px; font-weight: 400; line-height: 1.1; }
.city-link span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; }
.city-link.request { color: var(--red-dark); background: transparent; }

.how {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.how-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 96px;
}

.how h2, .app-copy h2, .founder h2, .join h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1;
}

.how-intro { max-width: 370px; font-size: 18px; }

.steps { border-top: 1px solid var(--line); }

.step {
  display: grid;
  grid-template-columns: 28px 148px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.step-number { color: var(--red-dark); font-size: 13px; font-weight: 800; }
.step strong { font-family: Arial, Helvetica, sans-serif; font-size: 15px; font-weight: 600; }
.step p { margin-bottom: 0; color: var(--muted); }

.app {
  overflow: hidden;
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
  background: var(--dark);
  color: var(--white);
}

.app-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
  align-items: center;
}

.app-copy p { max-width: 420px; color: #e1d5d3; font-size: 16px; }
.app .kicker { color: #e0ac93; }
.app-copy .plain-link { color: var(--white); font-weight: 700; text-underline-offset: 4px; }

.screen-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
}

.screen { margin: 0; }
.screen:nth-child(2) { margin-top: 24px; }
.screen img { border: 8px solid #0f0d0c; border-radius: 22px; }
.screen figcaption { margin-top: 10px; color: #c9c1b6; font-size: 12px; font-weight: 700; }

.founder {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.founder-copy { max-width: 590px; }
.founder-copy p { font-family: Georgia, serif; font-size: clamp(20px, 2vw, 26px); font-weight: 400; line-height: 1.6; letter-spacing: -0.015em; }
.text-link { color: var(--red-dark); font-size: 14px; font-weight: 800; text-underline-offset: 4px; }

.directory {
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
}

.directory-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 36px;
}

.directory-heading h2 { margin-bottom: 0; font-size: clamp(32px, 3.5vw, 46px); line-height: 1; }
.directory-heading p { max-width: 540px; margin-bottom: 12px; }
.category-links a { font-weight: 700; text-underline-offset: 3px; }

.directory-list { border-top: 1px solid var(--line); }
.directory-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 28px;
  gap: 24px;
  align-items: center;
  padding: 19px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.directory-row:hover strong { color: var(--red-dark); }
.directory-row strong { font-family: Arial, Helvetica, sans-serif; font-size: 20px; font-weight: 800; }
.directory-row span { color: var(--muted); font-size: 14px; }
.directory-row b { color: var(--red-dark); font-size: 20px; text-align: right; }

.join { padding: 64px 0; background: #f0e9e0; color: var(--ink); }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.join p { max-width: 500px; font-size: 18px; }

.email-form { display: flex; gap: 8px; }
.email-form input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.email-form button {
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.form-note { margin-top: 10px; color: var(--muted); font-size: 12px; }

footer { padding: 48px 0 26px; background: var(--dark); color: #d8d2c9; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { max-width: 290px; margin-top: 16px; font-size: 14px; }
.footer-col h3 { margin: 0 0 12px; color: var(--white); font-size: 13px; text-transform: uppercase; }
.footer-col a { display: block; margin: 7px 0; font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid #504a45; font-size: 12px; }

@media (max-width: 900px) {
  .shell { width: min(100% - 36px, 720px); }
  .nav-links { display: none; }
  .menu-button, .menu-close { display: inline-grid; place-items: center; padding: 8px; }
  .menu-button svg, .menu-close svg { width: 25px; height: 25px; }
  .mobile-menu { position: fixed; inset: 0; z-index: 30; background: rgba(24, 21, 18, 0.55); }
  .mobile-menu.active { display: block; }
  .mobile-menu-inner { position: absolute; inset: 0 0 0 auto; width: min(320px, 88vw); padding: 72px 24px 24px; background: var(--paper); border-left: 1px solid var(--ink); }
  .mobile-menu-inner a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-weight: 700; text-decoration: none; }
  .menu-close { position: absolute; top: 14px; right: 14px; }
  .hero-grid, .how-grid, .app-grid, .founder-grid, .directory-heading, .join-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 64px; }
  .phone-wrap { justify-self: center; width: 230px; margin-left: 0; }
  .city-links { grid-template-columns: repeat(2, 1fr); }
  .section-heading { display: block; }
  .section-heading p { margin-top: 14px; }
  .how-grid, .directory-heading { gap: 34px; }
  .app-grid { gap: 48px; }
  .screen-strip { min-width: 0; width: 100%; }
  .founder-grid { gap: 20px; }
}

@media (max-width: 560px) {
  .nav { min-height: 64px; }
  .shell { width: calc(100% - 40px); }
  .hero { padding: 48px 0 56px; }
  h1 { font-size: 46px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .phone-wrap { width: 200px; margin-left: 0; }
  .city-picker, .how, .app, .founder, .directory, .join { padding-block: 58px; }
  .city-links { grid-template-columns: 1fr 1fr; }
  .city-link { min-height: 86px; padding: 16px 0; }
  .city-link strong { font-size: 19px; }
  .step { grid-template-columns: 34px 1fr; gap: 9px; }
  .step p { grid-column: 2; }
  .screen-strip { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; }
  .screen { min-width: 170px; scroll-snap-align: start; }
  .screen:nth-child(2) { margin-top: 0; }
  .screen img { border-width: 6px; border-radius: 16px; }
  .directory-row { grid-template-columns: 1fr 24px; gap: 10px; }
  .directory-row span { grid-column: 1; }
  .directory-row b { grid-column: 2; grid-row: 1 / span 2; }
  .email-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
