* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f0e7;
  --bg-soft: #efe4d4;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #fffdf9;
  --text: #1c2731;
  --muted: #5e6a73;
  --line: rgba(28, 39, 49, 0.12);
  --brand: #17334a;
  --brand-strong: #102637;
  --accent: #8f4a1d;
  --accent-soft: #f1dfcb;
  --success: #2a6a59;
  --shadow: 0 20px 60px rgba(23, 51, 74, 0.14);
  --radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 111, 57, 0.10), transparent 32%),
    radial-gradient(circle at top right, rgba(23, 51, 74, 0.10), transparent 26%),
    linear-gradient(180deg, #fbf7f1 0%, #f4ecdf 100%);
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.65;
}

body.subpage-body {
  min-height: 100vh;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 241, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 39, 49, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark,
.profile-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, #31566f 100%);
  color: #fff;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 34px rgba(23, 51, 74, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 700;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(23, 51, 74, 0.18);
}

.nav-call:hover {
  text-decoration: none;
  background: var(--brand-strong);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
}

.home-main {
  display: flex;
  flex-direction: column;
}

.home-main .section-contact {
  order: -1;
}

.home-main .hero {
  padding-top: 8px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
}

.hero::before {
  top: 40px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(182, 111, 57, 0.18), transparent 65%);
}

.hero::after {
  bottom: -90px;
  left: -110px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(23, 51, 74, 0.16), transparent 68%);
}

.hero-grid,
.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 30px;
  align-items: start;
}

.hero-top-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76) 0%, rgba(248, 241, 231, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(23, 51, 74, 0.10);
  backdrop-filter: blur(16px);
}

.hero-top-label {
  display: grid;
  gap: 10px;
  max-width: 330px;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 51, 74, 0.08);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-top-label p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.hero-top-cta-row {
  display: flex;
  flex: 1;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-mega-btn {
  display: inline-flex;
  flex: 1 1 210px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 68px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 22px;
  color: #fff;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hero-mega-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-mega-btn:focus-visible {
  outline: 3px solid rgba(23, 51, 74, 0.18);
  outline-offset: 3px;
}

.hero-mega-btn-primary {
  flex-basis: 260px;
  background: linear-gradient(135deg, var(--brand-strong) 0%, #31566f 100%);
  box-shadow: 0 18px 34px rgba(23, 51, 74, 0.18);
}

.hero-mega-btn-primary:hover {
  box-shadow: 0 22px 40px rgba(23, 51, 74, 0.22);
}

.hero-mega-btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #cb8753 100%);
  box-shadow: 0 18px 34px rgba(143, 74, 29, 0.18);
}

.hero-mega-btn-accent:hover {
  box-shadow: 0 22px 40px rgba(143, 74, 29, 0.22);
}

.hero-mega-btn-soft {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(23, 51, 74, 0.10);
  color: var(--brand);
  box-shadow: 0 12px 30px rgba(23, 51, 74, 0.08);
}

.hero-mega-btn-soft:hover {
  background: #fff;
  box-shadow: 0 18px 34px rgba(23, 51, 74, 0.12);
}

.hero-shell {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 239, 229, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-main {
  display: grid;
  align-content: start;
  gap: 22px;
  min-width: 0;
}

.hero-pitch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-main h1 {
  max-width: 13.5ch;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 68px);
}

.hero-lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero-proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 51, 74, 0.08);
  color: var(--brand);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(23, 51, 74, 0.06);
}

.hero-voice-card {
  padding: 22px 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(23, 51, 74, 0.96) 0%, rgba(44, 81, 104, 0.92) 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(23, 51, 74, 0.18);
}

.hero-voice-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 25px;
  line-height: 1.15;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-voice-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
}

.hero-signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-signal-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid rgba(23, 51, 74, 0.08);
  box-shadow: 0 10px 24px rgba(23, 51, 74, 0.06);
}

.hero-signal-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 17px;
  line-height: 1.3;
}

.hero-signal-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-spotlight {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 236, 225, 0.92) 100%);
  border: 1px solid rgba(23, 51, 74, 0.08);
  box-shadow: 0 18px 38px rgba(23, 51, 74, 0.08);
}

.hero-spotlight-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-spotlight-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, #31566f 100%);
  color: #fff;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 28px rgba(23, 51, 74, 0.18);
}

.hero-spotlight-head h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 40px);
}

.hero-spotlight-footer {
  display: grid;
  gap: 16px;
}

.hero-contact-stack {
  margin-top: 0;
}

.hero-contact-stack a,
.hero-contact-stack span {
  background: rgba(255, 255, 255, 0.76);
}

.panel-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

.panel-note a {
  font-weight: 700;
}

.hero-benefit-card {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(242, 236, 225, 0.88) 100%);
  border: 1px solid rgba(23, 51, 74, 0.08);
}

.hero-benefit-title {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.hero-benefit-list {
  display: grid;
  gap: 14px;
}

.hero-benefit-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 51, 74, 0.08);
}

.hero-benefit-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, #31566f 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(23, 51, 74, 0.14);
}

.hero-benefit-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.hero-benefit-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.hero-benefit-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.card-kicker,
.form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.form-kicker {
  color: var(--accent);
}

.panel-kicker,
.card-kicker {
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.12;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(42px, 6vw, 74px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.hero-text,
.section-header p,
.story-card p,
.contact-copy p,
.panel-text,
.card p,
.step p,
.location-shell p,
.simple-card p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 32px rgba(23, 51, 74, 0.18);
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
  border: 1px solid rgba(23, 51, 74, 0.12);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.button-submit {
  width: 100%;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.badge-list li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 51, 74, 0.08);
  color: var(--brand);
  font-weight: 600;
}

.hero-panel,
.card,
.story-card,
.steps-card,
.location-shell {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel {
  padding: 30px;
}

.profile-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 22px;
  font-size: 28px;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-stack a,
.contact-stack span {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(23, 51, 74, 0.08);
  color: var(--brand);
  font-weight: 600;
}

.section {
  padding: 38px 0;
}

.section-tinted {
  padding: 46px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-header-wide {
  max-width: 920px;
}

.grid-3,
.two-col-grid,
.contact-grid,
.split-grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col-grid,
.contact-grid,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.story-card,
.steps-card {
  padding: 30px;
}

.card h3 {
  font-size: 28px;
}

.story-card {
  background: linear-gradient(180deg, rgba(23, 51, 74, 0.96) 0%, rgba(33, 68, 88, 0.94) 100%);
  color: #fff;
}

.story-card .section-kicker,
.story-card h2,
.story-card .text-link {
  color: #fff;
}

.story-card p {
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 700;
}

.text-link::after {
  content: "\2192";
}

.steps-card {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 51, 74, 0.08);
}

.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.checklist-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 241, 232, 0.98) 100%);
}

.check-list {
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success) 0%, #4f8b77 100%);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.82);
}

.section-locations {
  padding-top: 8px;
}

.location-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 34px;
}

.location-badges {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 14px;
}

.location-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 51, 74, 0.08);
  color: var(--brand);
  font-weight: 700;
}

.section-contact {
  padding-top: 30px;
  padding-bottom: 56px;
}

.flow-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
  padding: 8px;
  border-radius: 24px;
  background: #f0e7db;
}

.flow-panel[hidden] {
  display: none !important;
}

.flow-panel.is-active {
  animation: rise 0.65s ease both;
}

.contact-copy {
  padding: 18px 8px 0 0;
}

.direct-links {
  display: grid;
  gap: 14px;
  margin: 24px 0 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 51, 74, 0.1);
  color: var(--brand);
  font-weight: 700;
}

.contact-link:hover {
  text-decoration: none;
}

.form-card {
  padding: 30px;
  background: var(--surface-strong);
}

.wizard-card {
  padding: 30px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wizard-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.wizard-progress-wrap {
  width: min(320px, 100%);
}

.wizard-counter {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.wizard-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ebf0;
}

.wizard-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brand) 0%, #4a83b5 100%);
  transform: scaleX(0.14285);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.wizard-error {
  display: none;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f8e1df;
  color: #8a3328;
  font-weight: 700;
}

.wizard-error.is-visible {
  display: block;
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
}

.wizard-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.wizard-map {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 24px;
  background: #edf1f5;
}

.address-summary {
  display: grid;
  gap: 6px;
  margin: 22px 0 18px;
  text-align: center;
}

.address-summary strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
}

.address-summary span {
  color: var(--muted);
}

.address-autocomplete {
  position: relative;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 8;
  display: grid;
  gap: 8px;
  max-height: 320px;
  padding: 10px;
  overflow-y: auto;
  border: 1px solid rgba(23, 51, 74, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(23, 51, 74, 0.14);
}

.address-suggestions[hidden] {
  display: none;
}

.address-suggestion {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.address-suggestion:hover,
.address-suggestion.is-active {
  border-color: rgba(57, 127, 224, 0.34);
  background: #eef5ff;
  transform: none;
}

.address-suggestion strong {
  font-size: 17px;
  line-height: 1.35;
}

.address-suggestion span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.address-helper {
  min-height: 22px;
}

.address-helper.is-loading {
  color: transparent;
}

.address-helper.is-error {
  color: #9c4b3b;
}

.wizard-question {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.wizard-center-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.property-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 170px;
  padding: 18px;
  border: 2px solid rgba(23, 51, 74, 0.10);
  border-radius: 22px;
  background: #fff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.property-option:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 51, 74, 0.24);
}

.property-option.active {
  border-color: #397fe0;
  box-shadow: 0 14px 30px rgba(57, 127, 224, 0.14);
}

.property-option strong {
  font-size: 19px;
}

.property-option span:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.property-option-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--brand);
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-label {
  font-weight: 700;
}

.field-note {
  color: var(--muted);
  font-size: 14px;
}

.input-with-suffix {
  position: relative;
}

.input-with-suffix input {
  padding-right: 56px;
}

.input-with-suffix span {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 700;
}

.chip-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-check {
  position: relative;
}

.chip-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-check span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(23, 51, 74, 0.12);
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.chip-check input:checked + span {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.choice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 130px;
  padding: 22px;
  border: 2px solid rgba(23, 51, 74, 0.10);
  border-radius: 22px;
  background: #fff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.choice-card.active {
  border-color: #397fe0;
  background: #eef5ff;
}

.choice-card strong {
  font-size: 26px;
}

.choice-card span {
  color: var(--muted);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.wizard-nav-end {
  justify-content: flex-end;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.offer-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 18px;
  counter-reset: offer;
}

.offer-list li {
  position: relative;
  padding-left: 54px;
}

.offer-list li::before {
  counter-increment: offer;
  content: counter(offer);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #397fe0;
  color: #fff;
  font-weight: 800;
}

.offer-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.offer-list span {
  color: var(--muted);
}

.offer-personal-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 51, 74, 0.08);
  color: var(--text);
  font-weight: 600;
}

.offer-visual {
  min-height: 360px;
}

.offer-house {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(180deg, #7eb7f1 0%, #cfe6ff 56%, #f5f1e7 56%, #8db965 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.offer-house::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 60px;
  width: 190px;
  height: 140px;
  background: #ffffff;
  border-radius: 10px 10px 16px 16px;
  transform: translateX(-50%);
  box-shadow: 0 10px 28px rgba(23, 51, 74, 0.18);
}

.offer-house::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 172px;
  width: 240px;
  height: 130px;
  background: #5b6d78;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 58%, 0 58%);
}

.offer-badge {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(23, 51, 74, 0.18);
}

.offer-badge-top {
  top: 32px;
  left: 28px;
}

.offer-badge-side {
  top: 150px;
  right: 18px;
}

.offer-badge-bottom {
  bottom: 28px;
  left: 22px;
}

.is-hidden {
  display: none !important;
}

.service-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px;
  border-radius: 22px;
  background: #f0e7db;
}

.service-btn {
  appearance: none;
  border: 0;
  min-height: 54px;
  padding: 12px 16px;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.service-btn.active {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 10px 22px rgba(23, 51, 74, 0.10);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 51, 74, 0.12);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  padding: 15px 16px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(182, 111, 57, 0.18);
  border-color: rgba(182, 111, 57, 0.50);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-wrap {
  margin-top: 2px;
}

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 400;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.muted {
  color: var(--muted);
}

.small {
  margin-top: 14px;
  font-size: 14px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(23, 51, 74, 0.08);
  background: rgba(255, 255, 255, 0.34);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.footer-grid p {
  margin-top: 8px;
  max-width: 520px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
  text-align: right;
}

.page-simple {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.page-simple .card {
  max-width: 760px;
  margin: 0 auto;
}

.page-simple h1 {
  max-width: none;
  font-size: clamp(34px, 5vw, 58px);
}

.simple-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  text-align: left;
}

.page-note {
  margin-top: 16px;
}

.form-only-main {
  padding: 28px 0 52px;
}

.form-only-intro {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.form-only-intro h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.form-only-intro p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.form-only-intro .hero-proof-list {
  justify-content: center;
}

.form-only-mini {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

.form-only-shell {
  max-width: 980px;
  margin: 0 auto;
}

.reveal,
.hero-panel,
.grid-3 .card,
.two-col-grid .card,
.steps-card,
.location-shell,
.form-card,
.wizard-card,
.simple-card {
  animation: rise 0.75s ease both;
}

.hero-panel {
  animation-delay: 0.1s;
}

.grid-3 .card:nth-child(2) {
  animation-delay: 0.08s;
}

.grid-3 .card:nth-child(3) {
  animation-delay: 0.16s;
}

.two-col-grid .card:nth-child(2),
.steps-card,
.form-card {
  animation-delay: 0.08s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-bar {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .hero-grid,
  .hero-shell,
  .two-col-grid,
  .contact-grid,
  .split-grid,
  .location-shell,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-bottom: 4px;
  }

  .hero-top-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-top-label,
  .hero-top-cta-row {
    max-width: none;
    width: 100%;
  }

  .hero-top-cta-row {
    justify-content: flex-start;
  }

  .hero-main h1,
  .hero-spotlight-head h2 {
    max-width: none;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .grid-3,
  .detail-grid,
  .choice-grid,
  .form-grid,
  .flow-switch {
    grid-template-columns: 1fr;
  }

  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-top-actions {
    gap: 16px;
    margin-bottom: 22px;
    padding: 18px;
  }

  .hero-top-label {
    gap: 8px;
  }

  .hero-top-cta-row {
    flex-direction: column;
  }

  .hero-shell {
    padding: 24px;
  }

  .hero-proof-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-benefit-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .hero-benefit-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero-mega-btn {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    font-size: 20px;
  }

  .hero-mega-btn-primary,
  .hero-mega-btn-accent,
  .hero-mega-btn-soft {
    flex-basis: auto;
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .hero {
    padding-top: 34px;
  }

  .form-only-main {
    padding-top: 18px;
  }

  .card,
  .story-card,
  .steps-card,
  .form-card,
  .wizard-card,
  .hero-panel,
  .hero-spotlight,
  .location-shell,
  .simple-card {
    padding: 24px;
  }

  .hero-main {
    gap: 18px;
  }

  .hero-main h1 {
    max-width: 11ch;
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-voice-card {
    padding: 20px;
  }

  .hero-signal-strip {
    grid-template-columns: 1fr;
  }

  .hero-spotlight-head {
    align-items: flex-start;
  }

  .hero-spotlight-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 20px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }

  .hero-text,
  .section-header p,
  .story-card p,
  .contact-copy p,
  .panel-text,
  .card p,
  .step p,
  .location-shell p,
  .simple-card p {
    font-size: 17px;
  }
}
