:root {
  --navy: #203674;
  --navy-deep: #132248;
  --navy-soft: #6175cb;
  --amber: #f4a62d;
  --amber-soft: #ffd585;
  --paper: #fbfbfe;
  --mist: #eef2ff;
  --ink: #111722;
  --muted: #5d667d;
  --line: rgba(17, 23, 34, 0.1);
  --line-strong: rgba(32, 54, 116, 0.18);
  --shadow: 0 30px 70px rgba(16, 24, 48, 0.12);
  --shadow-soft: 0 18px 38px rgba(16, 24, 48, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(97, 117, 203, 0.12), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(244, 166, 45, 0.1), transparent 24%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 23, 34, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 34, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 82%);
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.page-orbit {
  position: fixed;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
}

.orbit-one {
  top: 2rem;
  right: -7rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(97, 117, 203, 0.2), transparent 70%);
}

.orbit-two {
  left: -7rem;
  bottom: 8rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(244, 166, 45, 0.18), transparent 72%);
}

.container {
  width: min(1180px, calc(100% - 2.25rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 251, 254, 0.82);
  border-bottom: 1px solid rgba(17, 23, 34, 0.06);
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-lockup {
  width: min(100%, 24rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.32rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 54, 116, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.site-nav a,
.text-link,
.inline-link {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  transition: color 160ms ease;
}

.site-nav a {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a::after,
.text-link::after,
.inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--navy);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(32, 54, 116, 0.08);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.inline-link:hover::after,
.inline-link:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.quote-band-actions,
.contact-actions,
.wizard-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.header-actions {
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background-color 170ms ease,
    border-color 170ms ease,
    color 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(32, 54, 116, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(32, 54, 116, 0.32);
}

.button-secondary,
.button-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-deep);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(32, 54, 116, 0.28);
  background: rgba(255, 255, 255, 0.95);
}

.button-light {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-compact {
  min-height: 2.8rem;
  padding-inline: 1rem;
}

.hero-section,
.quote-section,
.homes-section,
.clients-section,
.process-section,
.faq-section,
.contact-section {
  position: relative;
  padding: 4.7rem 0;
}

.hero-shell,
.request-shell {
  display: grid;
  gap: 1.6rem;
}

.hero-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
}

.hero-copy {
  padding: 1.4rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.eyebrow-dark {
  color: var(--navy);
}

.eyebrow-amber {
  color: #9f5b00;
}

h1,
h2,
h3,
.mini-title,
.wizard-mode-title {
  margin: 0;
  line-height: 1;
}

h1,
h2,
.wizard-mode-title {
  font-family: "Source Serif 4", serif;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.mini-title {
  font-family: "Source Serif 4", serif;
  letter-spacing: -0.04em;
  text-wrap: pretty;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  line-height: 0.94;
}

h2 {
  max-width: 24ch;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.12;
}

.hero-text,
.section-text,
.info-card p,
.call-card p,
.request-highlight p,
.photo-card p,
.client-card p,
.process-card p,
.faq-item p,
.contact-copy p,
.wizard-mode-text,
.form-note,
.form-support,
.choice-card small {
  color: var(--muted);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-text {
  max-width: 38rem;
  margin: 1.45rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.75rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--navy-deep);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-photo-card,
.info-card,
.call-card,
.quote-band,
.request-shell,
.photo-card,
.client-card,
.process-card,
.faq-item,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.hero-photo-card::before,
.info-card::before,
.call-card::before,
.quote-band::before,
.request-shell::before,
.photo-card::before,
.client-card::before,
.process-card::before,
.faq-item::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 55%);
}

.hero-photo-card {
  min-height: 29rem;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(17, 23, 34, 0.58);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.info-card,
.call-card {
  padding: 1.35rem;
}

.call-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-kicker,
.highlight-index,
.process-step {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.mini-title {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  line-height: 1.02;
  max-width: none;
  color: var(--ink);
}

.call-link {
  display: block;
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-decoration: none;
  color: var(--navy-deep);
}

.call-card .card-kicker {
  display: block;
  width: 100%;
  margin-bottom: 0.45rem;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem;
  border-color: rgba(180, 109, 0, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 213, 133, 0.5), transparent 38%),
    linear-gradient(135deg, rgba(255, 199, 96, 0.64), rgba(255, 246, 224, 0.94) 76%);
}

.quote-band h2 {
  max-width: 17ch;
}

.quote-band .section-text {
  max-width: 42rem;
  margin-top: 1rem;
}

.quote-band-actions {
  justify-content: flex-end;
}

.request-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 1.35rem;
  margin-top: 1.6rem;
  padding: 2rem;
  border-color: rgba(32, 54, 116, 0.1);
  background:
    radial-gradient(circle at top right, rgba(97, 117, 203, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 244, 255, 0.86));
}

.request-copy h2 {
  max-width: 18ch;
}

.request-copy .section-text {
  max-width: 34rem;
  margin-top: 1rem;
}

.request-highlights {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.request-highlight {
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(32, 54, 116, 0.1);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.request-highlight h3,
.photo-card h3,
.client-card h3,
.process-card h3 {
  margin-top: 0.1rem;
}

.request-highlight p,
.photo-card p,
.client-card p,
.process-card p {
  margin: 0.85rem 0 0;
}

.request-form-panel {
  padding: 1.35rem;
  border-radius: 28px;
  border: 1px solid rgba(32, 54, 116, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.request-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(238, 242, 255, 0.94);
  border: 1px solid rgba(32, 54, 116, 0.08);
}

.request-switch {
  min-height: 2.95rem;
  padding: 0.75rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.request-switch:hover,
.request-switch:focus-visible {
  transform: translateY(-1px);
  color: var(--navy);
}

.request-switch.is-active {
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(32, 54, 116, 0.18);
}

.wizard-progress {
  margin-top: 1rem;
}

.wizard-progress-copy {
  display: grid;
  gap: 0.18rem;
}

.wizard-step-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.wizard-mode-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.02;
  color: var(--ink);
}

.wizard-mode-text {
  margin: 0.25rem 0 0;
  font-size: 0.97rem;
}

.wizard-track {
  position: relative;
  height: 0.65rem;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(32, 54, 116, 0.08);
}

.wizard-track-fill {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--amber), #ef8f0e);
  transition: width 220ms ease;
}

.request-form {
  margin-top: 1.2rem;
}

.wizard-step {
  display: none;
}

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

.step-stack {
  display: grid;
  gap: 1rem;
}

.choice-group legend {
  margin-bottom: 0.7rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
}

.choice-grid {
  display: grid;
  gap: 0.85rem;
}

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

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

.choice-card {
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card-body {
  display: grid;
  gap: 0.35rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(32, 54, 116, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.choice-card-body strong {
  color: var(--navy-deep);
  line-height: 1.15;
}

.choice-card:hover .choice-card-body,
.choice-card input:focus-visible + .choice-card-body {
  transform: translateY(-2px);
  border-color: rgba(32, 54, 116, 0.24);
}

.choice-card input:checked + .choice-card-body {
  border-color: rgba(32, 54, 116, 0.38);
  background:
    radial-gradient(circle at top right, rgba(255, 213, 133, 0.28), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 255, 0.92));
  box-shadow: 0 20px 42px rgba(16, 24, 48, 0.12);
}

.form-status,
.form-note,
.form-field span,
.form-support {
  color: var(--muted);
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 600;
}

.form-status.is-success {
  color: #173f22;
  border-color: rgba(50, 131, 76, 0.24);
  background: rgba(233, 247, 237, 0.92);
}

.form-status.is-error {
  color: #7a1f2b;
  border-color: rgba(181, 64, 88, 0.22);
  background: rgba(254, 239, 243, 0.94);
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.form-field span {
  font-size: 0.94rem;
}

.field-hint {
  margin: -0.05rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
}

.form-span-2 {
  grid-column: 1 / -1;
}

.address-field {
  position: relative;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 8;
  display: grid;
  gap: 0.4rem;
  max-height: 17rem;
  overflow: auto;
  padding: 0.5rem;
  border: 1px solid rgba(32, 54, 116, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 52px rgba(16, 24, 48, 0.16);
}

.address-option {
  width: 100%;
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(32, 54, 116, 0.08);
  border-radius: 16px;
  background: rgba(247, 249, 255, 0.92);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.address-option strong {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.address-option small {
  color: var(--muted);
  line-height: 1.45;
}

.address-option:hover,
.address-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(32, 54, 116, 0.2);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.request-form input,
.request-form select,
.request-form textarea,
.readonly-field {
  width: 100%;
  border: 1px solid rgba(32, 54, 116, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0.9rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.readonly-field {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--navy-deep);
  background: rgba(238, 242, 255, 0.75);
}

.request-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 1.2rem) calc(50% - 2px),
    calc(100% - 0.85rem) calc(50% - 2px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.request-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(32, 54, 116, 0.34);
  box-shadow: 0 0 0 4px rgba(97, 117, 203, 0.12);
  background: #ffffff;
}

.form-note-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.form-note,
.form-support {
  margin: 0;
  font-size: 0.88rem;
}

.wizard-controls {
  justify-content: space-between;
  margin-top: 1rem;
}

.wizard-button {
  min-width: 10rem;
}

.section-heading {
  max-width: 62rem;
}

.section-heading .section-text {
  max-width: 54rem;
  margin-top: 1rem;
}

.homes-grid,
.clients-grid,
.process-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-grid {
  column-count: 2;
  column-gap: 1rem;
  margin-top: 2rem;
}

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

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

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

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

.photo-card img {
  width: 100%;
  height: 15.5rem;
  object-fit: cover;
}

.photo-card-copy,
.client-card,
.process-card {
  padding: 1.45rem;
}

.client-list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.client-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink);
  line-height: 1.55;
}

.client-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber);
}

.process-card {
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

.process-card:hover,
.process-card:focus-within,
.photo-card:hover,
.photo-card:focus-within,
.client-card:hover,
.client-card:focus-within,
.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(32, 54, 116, 0.18);
  box-shadow: 0 24px 52px rgba(16, 24, 48, 0.14);
}

.process-step {
  color: var(--navy-soft);
}

.faq-item {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  break-inside: avoid;
  padding: 1.3rem 1.35rem;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(238, 242, 255, 0.94);
  color: var(--navy);
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.95rem 0 0;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(135deg, #203674, #101934 74%);
}

.contact-copy p {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  justify-content: flex-end;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  padding: 1.3rem 0 2rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.35rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-row p {
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js [data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-copy[data-reveal],
.js .hero-visual[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1120px) {
  .header-row,
  .hero-shell,
  .request-shell,
  .quote-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .header-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav,
  .header-actions {
    width: 100%;
  }

  .site-nav {
    justify-content: space-between;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero-mini-grid,
  .choice-grid-3,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-section,
  .quote-section,
  .homes-section,
  .clients-section,
  .process-section,
  .faq-section,
  .contact-section {
    padding: 4rem 0;
  }

  .homes-grid,
  .clients-grid,
  .process-grid,
  .choice-grid-2,
  .choice-grid-3,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    column-count: 1;
  }

  .form-span-2 {
    grid-column: auto;
  }

  .quote-band-actions,
  .contact-actions {
    width: 100%;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .container {
    width: min(1180px, calc(100% - 1.4rem));
  }

  .header-row {
    gap: 0.85rem;
    padding: 1rem 0 1.1rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-lockup {
    width: min(100%, 20rem);
    margin-inline: auto;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.2rem;
    padding: 0.28rem;
  }

  .site-nav a {
    padding: 0.62rem 0.28rem;
    text-align: center;
    font-size: 0.9rem;
  }

  .button,
  .button-compact,
  .wizard-button {
    width: 100%;
    white-space: nowrap;
  }

  .header-actions,
  .hero-actions,
  .quote-band-actions,
  .contact-actions,
  .wizard-controls {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.85rem, 12vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  h1,
  h2,
  .mini-title,
  .wizard-mode-title {
    max-width: none;
    text-wrap: pretty;
  }

  .hero-photo-card,
  .info-card,
  .call-card,
  .quote-band,
  .request-shell,
  .photo-card,
  .client-card,
  .process-card,
  .faq-item,
  .contact-card {
    border-radius: 24px;
  }

  .hero-photo-card {
    min-height: 23rem;
  }

  .info-card,
  .call-card,
  .request-form-panel,
  .photo-card-copy,
  .client-card,
  .process-card,
  .faq-item,
  .quote-band,
  .request-shell,
  .contact-card {
    padding: 1.25rem;
  }

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

  .request-mode-switch {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .call-link {
    display: block;
    width: 100%;
    margin-bottom: 0.65rem;
  }

  .quote-band-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .contact-email-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section-heading,
  .hero-text,
  .section-heading .section-text,
  .quote-band .section-text,
  .request-copy .section-text,
  .contact-copy p {
    max-width: none;
  }

  .form-note-row {
    display: grid;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
