/* Georgia RBT — peach dusk, magnolia white, espresso ink.
   Display: Fraunces (soft serif). Body: Nunito Sans. */

:root {
  --magnolia: #FFF8F2;
  --espresso: #2C1B14;
  --peach: #F2703F;
  --peach-soft: #FFB58E;
  --peach-deep: #C94F22;
  --leaf: #3F6B4F;
  --line: #F0DFD2;
  --muted: #86695A;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  background: var(--magnolia);
  color: var(--espresso);
  line-height: 1.65;
  font-size: 16.5px;
}

h1, h2, h3, .wordmark, .footer-brand {
  font-family: "Fraunces", Georgia, serif;
}

/* ---- header ---- */
.site-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px clamp(20px, 5vw, 56px);
  background: var(--magnolia);
  border-bottom: 1px solid var(--line);
}
.wordmark { font-weight: 900; font-size: 23px; color: var(--espresso); text-decoration: none; }
.wm-accent { color: var(--peach-deep); font-style: italic; }
.header-nav { display: flex; align-items: center; gap: 20px; }
.header-link { color: var(--espresso); text-decoration: none; font-weight: 700; font-size: 15px; }
.header-link:hover { color: var(--peach-deep); }

/* ---- buttons ---- */
.btn {
  display: inline-block; font-family: "Nunito Sans", sans-serif;
  font-weight: 800; font-size: 15.5px;
  padding: 13px 22px; border-radius: 12px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:focus-visible { outline: 3px solid var(--peach); outline-offset: 2px; }
.btn-primary { background: var(--peach); color: #fff; width: 100%; }
.btn-primary:hover { background: var(--peach-deep); transform: translateY(-1px); }
.btn-espresso { background: var(--espresso); color: var(--peach-soft); }
.btn-espresso:hover { background: #3D2A1F; transform: translateY(-1px); }
.btn-ghost { padding: 9px 18px; background: transparent; color: var(--espresso); border: 2px solid var(--espresso); }
.btn-ghost:hover { background: var(--espresso); color: var(--magnolia); }

/* ---- hero: the peach signature ---- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 56px);
}
.peach {
  position: absolute; right: -8vw; top: -10vw;
  width: clamp(380px, 44vw, 640px); height: clamp(380px, 44vw, 640px);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--peach-soft) 0%, var(--peach) 58%, var(--peach-deep) 100%);
  opacity: 0.9; pointer-events: none;
}
.hero-inner {
  position: relative; max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.eyebrow {
  font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 900;
  line-height: 1.02; letter-spacing: -0.015em; margin-bottom: 22px;
}
.hero h1 em { color: var(--peach-deep); }
.lede { font-size: 18px; color: #543C2E; max-width: 54ch; margin-bottom: 26px; }
.proof { list-style: none; display: grid; gap: 10px; }
.proof li { padding-left: 26px; position: relative; color: #543C2E; }
.proof li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 50% 50% 50% 2px;
  background: var(--peach);
}
.proof strong { color: var(--espresso); }

/* ---- apply card ---- */
.apply-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 24px 64px rgba(201, 79, 34, 0.18);
  position: sticky; top: 24px;
}
.card-head h2 { font-size: 23px; font-weight: 900; }
.card-head p { color: var(--muted); font-size: 14.5px; margin: 6px 0 18px; }
.progress { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.progress-bar {
  flex: 1; height: 8px; border-radius: 99px; background: var(--magnolia);
  border: 1px solid var(--line); overflow: hidden;
}
#progress-fill {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--peach-soft), var(--peach));
  transition: width 0.35s ease;
}
.progress-label { font-size: 12.5px; font-weight: 800; color: var(--muted); white-space: nowrap; }
.field { display: block; margin-bottom: 14px; }
.field-label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 6px; }
.opt { color: var(--muted); font-weight: 400; }
.field input {
  width: 100%; padding: 13px 14px; font-size: 16px;
  font-family: inherit; color: var(--espresso);
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--magnolia);
  transition: border-color 0.15s ease;
}
.field input:focus { outline: none; border-color: var(--peach); background: #fff; }
.field input.invalid { border-color: var(--peach-deep); }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-note.note-error { color: var(--peach-deep); }
.success { text-align: center; padding: 26px 6px; }
.success-check {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--peach); color: #fff;
  font-size: 26px; font-weight: 900; line-height: 54px;
}
.success h2 { font-size: 23px; font-weight: 900; margin-bottom: 6px; }
.success p { color: var(--muted); font-size: 15px; }

/* ---- sections ---- */
.section { padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 56px); }
.section-title { font-size: clamp(27px, 3.4vw, 40px); font-weight: 900; letter-spacing: -0.01em; margin-bottom: 12px; }
.section-sub { color: var(--muted); max-width: 62ch; margin-bottom: 34px; }

/* metro grid */
.metro-section { background: #fff; border-block: 1px solid var(--line); }
.metro-section .section-title, .metro-section .section-sub, .metro-more { max-width: 1120px; margin-inline: auto; }
.metro-section .section-title { margin-bottom: 10px; }
.metro-grid {
  list-style: none; max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px;
}
.metro-grid li {
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
  background: var(--magnolia); border-top: 5px solid var(--peach-soft);
}
.metro-name { display: block; font-weight: 800; margin-bottom: 3px; }
.metro-towns { font-size: 13.5px; color: var(--muted); }
.metro-more { margin-top: 22px; }
.metro-more a { color: var(--peach-deep); font-weight: 800; text-decoration: none; }
.metro-more a:hover { text-decoration: underline; }

/* steps */
.steps-section { max-width: 1120px; margin: 0 auto; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.step-k {
  display: inline-block; font-weight: 800; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
  background: var(--leaf); padding: 4px 10px; border-radius: 99px; margin-bottom: 14px;
}
.steps h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 15px; }

/* pay */
.pay-section { background: var(--espresso); color: var(--magnolia); }
.pay-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.pay-section .section-title { color: #fff; }
.pay-copy p { color: #D9C3B4; margin-bottom: 24px; }
.pay-copy strong { color: var(--peach-soft); }
.pay-section .btn-primary { width: auto; }
.disclaimer { font-size: 12px; color: #9A7F6D; margin-top: 20px; max-width: 52ch; }
.pay-facts { list-style: none; display: grid; gap: 12px; }
.pay-facts li {
  border: 1px solid #4A342A; border-radius: 12px; padding: 14px 16px;
  color: #D9C3B4; font-size: 15px;
  display: flex; align-items: center; gap: 14px;
}
.fact-k { flex: 0 0 auto; font-weight: 800; font-size: 13px; color: var(--peach-soft); min-width: 72px; }

/* faq */
.faq-section { max-width: 820px; margin: 0 auto; }
.faq-list { display: grid; gap: 10px; margin-top: 26px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 18px; }
.faq-item summary {
  cursor: pointer; font-weight: 800; padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 800; color: var(--peach-deep); font-size: 20px; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 16px; color: #543C2E; font-size: 15.5px; }

/* cta band */
.cta-band {
  background: linear-gradient(135deg, var(--peach-soft), var(--peach) 60%, var(--peach-deep));
  text-align: center; padding: clamp(48px, 6vw, 76px) 20px;
}
.cta-band h2 { font-size: clamp(27px, 3.6vw, 42px); font-weight: 900; color: #fff; }
.cta-band p { color: #FFE4D2; margin: 10px 0 26px; }

/* footer */
.site-footer { text-align: center; padding: 40px 20px 48px; background: var(--magnolia); border-top: 1px solid var(--line); }
.footer-brand { font-weight: 900; font-size: 19px; margin-bottom: 10px; }
.footer-links { display: flex; justify-content: center; gap: 22px; margin-bottom: 14px; }
.footer-links a { color: var(--espresso); font-size: 14px; text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: var(--peach-deep); }
.footer-legal { font-size: 13px; color: var(--muted); }
.footer-copy { font-size: 13px; color: var(--muted); margin-top: 4px; }
.footer-copy a { color: var(--peach-deep); }

/* ---- locations page ---- */
.loc-hero { padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 56px) clamp(24px, 4vw, 48px); max-width: 1120px; margin: 0 auto; }
.crumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--peach-deep); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.loc-hero h1 { font-size: clamp(30px, 4.2vw, 48px); font-weight: 900; margin-bottom: 14px; }
.loc-hero .lede { margin-bottom: 0; }
.loc-hero .lede a { color: var(--peach-deep); }
.regions { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px) clamp(48px, 6vw, 80px); display: grid; gap: 16px; }
.region {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 24px 20px; border-left: 6px solid var(--peach);
}
.region h2 { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.region > p { color: #543C2E; font-size: 15.5px; max-width: 78ch; margin-bottom: 14px; }
.region-towns { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.region-towns li {
  font-size: 13.5px; font-weight: 700; color: var(--espresso);
  background: var(--magnolia); border: 1px solid var(--line);
  border-radius: 99px; padding: 5px 13px;
}
.loc-cta { text-align: center; padding-bottom: clamp(48px, 6vw, 80px); }
.loc-cta .btn { width: auto; }

/* ---- responsive ---- */
@media (max-width: 920px) {
  .hero-inner, .pay-inner { grid-template-columns: 1fr; }
  .apply-card { position: static; }
  .steps { grid-template-columns: 1fr; }
  .peach { right: -30vw; top: -30vw; opacity: 0.45; }
}
