/* ============================================================
   Rod & Stone | Renovations & Realty
   Brand system scraped from rodandstone.com (Squarespace theme):
   ink    hsl(29.47, 47.9%, 23.33%)  — deep walnut brown
   cream  hsl(33.33, 17.65%, 90%)   — warm plaster white
   olive  hsl(56.79, 28.57%, 38.43%) — moss-gold dark accent
   stone  hsl(255, 10.34%, 77.25%)  — cool stone gray
   Fonts: Marcellus (display) + PT Serif (body)
   ============================================================ */

:root {
  --ink: hsl(29, 48%, 20%);
  --ink-soft: hsl(29, 42%, 27%);
  --ink-2: hsl(29, 30%, 38%);
  --cream: hsl(33, 18%, 90%);
  --paper: hsl(36, 26%, 94%);
  --panel: hsl(33, 22%, 87%);
  --olive: hsl(57, 29%, 38%);
  --olive-deep: hsl(57, 32%, 29%);
  --stone: hsl(255, 10%, 77%);
  --line: hsl(29, 35%, 25%, 0.16);
  --line-strong: hsl(29, 35%, 25%, 0.3);
  --white: hsl(36, 30%, 97%);
  --display: "Marcellus", "Times New Roman", serif;
  --body: "PT Serif", Georgia, serif;
  --shadow: 0 18px 44px -20px hsl(29, 48%, 15%, 0.35);
  --arch: 999px 999px 14px 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--olive-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible { outline: 2px solid var(--olive-deep); outline-offset: 3px; border-radius: 2px; }

::selection { background: var(--olive); color: var(--white); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--olive-deep);
  flex: none;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--olive-deep);
  flex: none;
}

.lede { font-size: 1.14rem; color: var(--ink-soft); max-width: 62ch; }

.accent { color: var(--olive-deep); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 3px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.btn:hover { background: var(--olive-deep); border-color: var(--olive-deep); color: var(--white); transform: translateY(-1px); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--white); }

.btn.light { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.btn.light:hover { background: var(--olive); border-color: var(--olive); color: var(--white); }

/* ---------- header ---------- */

.topline { height: 4px; background: linear-gradient(90deg, var(--olive-deep), var(--olive) 40%, var(--ink)); }

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(33, 18%, 90%, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 58px; width: auto; }

nav.primary { display: flex; align-items: center; gap: 30px; }
nav.primary a {
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav.primary a:hover { color: var(--ink); }
nav.primary a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--olive-deep); }
nav.primary .btn { padding: 11px 20px; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 9px 12px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* ---------- hero (home) ---------- */

.hero { padding: 84px 0 80px; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero h1 { margin: 0 0 22px; }
.hero .lede { margin-bottom: 32px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.cred-chips { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 26px; border-top: 1px solid var(--line); }
.cred-chips li {
  list-style: none;
  font-size: 0.9rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 9px;
}
.cred-chips li::before {
  content: "";
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--olive);
  flex: none;
}

.arch-frame { position: relative; }
.arch-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--arch);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.arch-frame::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--olive);
  border-radius: var(--arch);
  z-index: -1;
}
.arch-frame figcaption {
  position: absolute;
  left: 50%;
  bottom: -21px;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ---------- values band ---------- */

.values {
  background: var(--ink);
  color: var(--cream);
  padding: 58px 0;
}
.values .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.value-card { position: relative; padding: 6px 10px; }
.value-card + .value-card { border-left: 1px solid hsl(33, 18%, 90%, 0.18); }
.value-card .numeral {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--olive);
  filter: brightness(1.5);
  display: block;
  margin-bottom: 10px;
}
.value-card h3 { font-size: 1.32rem; color: var(--white); margin-bottom: 6px; }
.value-card p { font-size: 0.92rem; color: hsl(33, 18%, 84%, 0.82); font-style: italic; }

/* ---------- sections ---------- */

section.block { padding: 92px 0; }
section.block.tint { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }

/* split rows */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split + .split { margin-top: 86px; }
.split .arch-frame img { height: 430px; }

.feature-list { list-style: none; margin-top: 26px; display: grid; gap: 18px; }
.feature-list li { padding-left: 34px; position: relative; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: var(--olive);
}
.feature-list b { font-family: var(--display); font-weight: 400; font-size: 1.08rem; display: block; }
.feature-list span { color: var(--ink-2); font-size: 0.98rem; }

.quote-panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--arch);
  padding: 84px 48px 64px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid hsl(33, 18%, 90%, 0.25);
  border-radius: var(--arch);
  pointer-events: none;
}
.quote-panel .display { font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--white); margin-bottom: 14px; }
.quote-panel p { color: hsl(33, 18%, 86%, 0.85); font-style: italic; }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.portrait-panel {
  background: var(--white);
  border-radius: var(--arch);
  border: 1px solid var(--line);
  padding: 34px 34px 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-panel img { width: 100%; height: auto; }

.about-copy h2 { margin-bottom: 18px; }
.about-copy p + p { margin-top: 16px; }

.badge-row { display: flex; align-items: center; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.badge-row img { height: 92px; width: auto; border-radius: 50%; }
.badge-row .assoc { height: 74px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 8px 14px; }

/* ---------- process preview cards ---------- */

.process-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }

.process-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 44px 42px 40px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.process-card .count {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
.process-card h3 { font-size: 1.7rem; }
.process-card p { color: var(--ink-2); }
.process-card .go {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: var(--ink);
}
.process-card .watermark {
  position: absolute;
  right: -14px;
  bottom: -40px;
  font-family: var(--display);
  font-size: 11rem;
  line-height: 1;
  color: var(--ink);
  opacity: 0.06;
  pointer-events: none;
}

/* ---------- area band ---------- */

.area {
  background: var(--ink);
  color: var(--cream);
  padding: 74px 0;
  text-align: center;
}
.area .eyebrow { color: var(--stone); justify-content: center; }
.area .eyebrow::before, .area .eyebrow::after { background: var(--stone); content: ""; width: 34px; height: 1px; }
.area .counties {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 6vw, 74px);
  flex-wrap: wrap;
  margin: 26px 0 18px;
}
.area .counties span { font-family: var(--display); font-size: clamp(1.5rem, 3.4vw, 2.3rem); color: var(--white); }
.area .counties span + span { position: relative; }
.area p { color: hsl(33, 18%, 86%, 0.8); }

/* ---------- CTA band ---------- */

.cta-band { padding: 96px 0; text-align: center; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin-bottom: 34px; }

/* ---------- page hero (interior) ---------- */

.page-hero { padding: 74px 0 58px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 18px; max-width: 18ch; }
.page-hero .lede { margin-bottom: 0; }
.page-hero.with-side { padding-bottom: 74px; }
.page-hero .split { align-items: center; gap: 56px; }
.page-hero .split .arch-frame img { height: 360px; }

/* ---------- steps: accordion (buying) ---------- */

.steps-toc {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
  margin: 40px 0 0;
  list-style: none;
}
.steps-toc a {
  display: flex;
  gap: 12px;
  align-items: baseline;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.steps-toc a:hover { border-color: var(--olive-deep); background: var(--paper); color: var(--ink); }
.steps-toc .n { font-family: var(--display); color: var(--olive-deep); font-size: 0.85rem; }

.accordion { display: grid; gap: 14px; }

.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-margin-top: 110px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.step[data-open="true"] { border-color: var(--line-strong); box-shadow: var(--shadow); }

.step-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  color: var(--ink);
}
.step-head .num {
  font-size: 1.9rem;
  color: var(--olive-deep);
  min-width: 58px;
  line-height: 1;
}
.step-head .titles { flex: 1; }
.step-head .titles h3 { font-size: 1.28rem; }
.step-head .titles .tagline {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-2);
  display: block;
  margin-top: 3px;
}
.step-head .chev {
  flex: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
  font-family: var(--body);
  font-size: 1.1rem;
}
.step[data-open="true"] .chev { transform: rotate(45deg); background: var(--ink); color: var(--cream); border-color: var(--ink); }

.step-body { display: none; padding: 0 28px 30px 108px; }
.step[data-open="true"] .step-body { display: block; }

.step-body h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin: 22px 0 8px;
}
.step-body h4:first-child { margin-top: 0; }
.step-body ul { margin: 10px 0 4px 20px; }
.step-body li { margin-bottom: 7px; }
.step-body li::marker { color: var(--olive-deep); }
.step-body .why {
  border-left: 3px solid var(--olive);
  background: var(--paper);
  padding: 16px 20px;
  margin-top: 18px;
  border-radius: 0 6px 6px 0;
}
.step-body .step-cta { margin-top: 22px; }
.step-body .step-cta .btn { padding: 12px 22px; font-size: 0.82rem; }

/* ---------- timeline (selling) ---------- */

.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line-strong);
}
.t-step { position: relative; padding: 0 0 52px 96px; }
.t-step:last-child { padding-bottom: 0; }
.t-step .dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--olive-deep);
}
.t-step h3 { margin-bottom: 12px; padding-top: 12px; }
.t-step .knw { margin-bottom: 12px; }
.t-step .lbl {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-deep);
  display: block;
  margin-bottom: 4px;
}
.t-step .why {
  border-left: 3px solid var(--olive);
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
}

/* ---------- forms ---------- */

form.rs-form { display: grid; gap: 22px; }

fieldset.form-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  padding: 30px 32px 34px;
}
fieldset.form-section legend {
  font-family: var(--display);
  font-size: 1.14rem;
  padding: 0 14px;
  color: var(--ink);
}
fieldset.form-section legend .n { color: var(--olive-deep); margin-right: 8px; }
fieldset.form-section > p.hint { font-size: 0.92rem; color: var(--ink-2); font-style: italic; margin-bottom: 18px; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.field-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--ink-soft);
}
.field label .req { color: hsl(8, 60%, 40%); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 12px 14px;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--olive-deep); outline-offset: 1px; }

.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.choice-row label:has(input:checked) { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.choice-row input { accent-color: var(--olive-deep); }

.form-note { font-size: 0.92rem; color: var(--ink-2); font-style: italic; }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }

.contact-info { display: grid; gap: 6px; }
.contact-info .big-link {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  text-decoration: none;
  color: var(--ink);
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .big-link small {
  display: block;
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 6px;
}
.contact-info .big-link:hover { color: var(--olive-deep); }

/* ---------- footer ---------- */

footer.site {
  background: var(--ink);
  color: hsl(33, 18%, 86%, 0.85);
  padding: 72px 0 36px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 54px;
  padding-bottom: 48px;
  border-bottom: 1px solid hsl(33, 18%, 90%, 0.16);
}
.footer-brand img.logo-inv { height: 84px; width: auto; filter: invert(1) brightness(1.6); opacity: 0.95; }
.footer-brand p { margin-top: 18px; font-style: italic; font-size: 0.98rem; }
.footer-logos { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.footer-logos img { height: 56px; width: auto; border-radius: 50%; }
.footer-logos img.hr { height: 34px; border-radius: 0; }

footer.site h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.84rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav { list-style: none; display: grid; gap: 11px; }
.footer-nav a { color: hsl(33, 18%, 86%, 0.85); text-decoration: none; }
.footer-nav a:hover { color: var(--white); text-decoration: underline; }

.footer-contact { list-style: none; display: grid; gap: 13px; font-size: 0.98rem; }
.footer-contact a { color: hsl(33, 18%, 86%, 0.9); }
.footer-contact a:hover { color: var(--white); }

.footer-legal {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: hsl(33, 18%, 86%, 0.6);
}

/* ---------- reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  nav.primary { gap: 20px; }
  .hero-grid, .split, .about-grid, .contact-grid { gap: 44px; }
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  nav.primary {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line-strong);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 26px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  nav.primary.open { display: flex; }

  .hero { padding: 56px 0 64px; }
  .hero-grid, .split, .about-grid, .contact-grid, .page-hero .split { grid-template-columns: 1fr; }
  .split + .split { margin-top: 64px; }
  .split.flip .arch-frame { order: -1; }
  .arch-frame img { height: 420px; }
  .about-grid .portrait-panel { max-width: 440px; margin: 0 auto; }

  .values .wrap { grid-template-columns: 1fr; gap: 26px; }
  .value-card + .value-card { border-left: none; border-top: 1px solid hsl(33, 18%, 90%, 0.18); padding-top: 26px; }

  .process-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .step-body { padding-left: 28px; }
  .field-grid { grid-template-columns: 1fr; }

  section.block { padding: 64px 0; }
}

@media (max-width: 480px) {
  .brand img { height: 46px; }
  .arch-frame img { height: 330px; }
  .step-head { padding: 18px 18px; gap: 14px; }
  .step-head .num { min-width: 42px; font-size: 1.5rem; }
  .step-body { padding: 0 18px 24px; }
  fieldset.form-section { padding: 24px 18px 26px; }
}
