:root {
  --navy: #163447;
  --navy-deep: #0f2838;
  --slate: #303a3d;
  --cream: #faf8f2;
  --paper: #fffdf8;
  --seafoam: #8fb9ab;
  --seafoam-light: #dcebe5;
  --peach: #efad8f;
  --peach-light: #f9ded0;
  --driftwood: #d8c7ad;
  --ink: #18313b;
  --muted: #637176;
  --line: rgba(22, 52, 71, 0.14);
  --shadow: 0 24px 65px rgba(22, 52, 71, 0.12);
  --radius-card: 26px;
  --radius-small: 16px;
  --radius-pill: 999px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-accent: "DM Serif Display", Georgia, serif;
  --font-ui: "Source Sans 3", Arial, sans-serif;
  --content: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-ui);
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
textarea,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  color: white;
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  padding: 10px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: white;
  background: rgba(15, 40, 56, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 238px;
  max-width: 40vw;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-header nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:not(.nav-cta):hover {
  color: var(--seafoam);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: var(--seafoam);
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 720px;
  padding: 98px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  align-items: center;
  gap: 68px;
  color: white;
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 185, 171, 0.23), transparent 32%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 430px;
  height: 430px;
  right: -120px;
  top: -160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero::after {
  width: 260px;
  height: 260px;
  right: 26%;
  bottom: -180px;
  background: rgba(239, 173, 143, 0.13);
}

.hero-copy,
.hero-preview {
  position: relative;
  z-index: 1;
}

.eyebrow,
.card-label,
.blueprint-tag {
  margin: 0 0 14px;
  color: var(--peach);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.status-pill {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  color: var(--seafoam-light);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--seafoam);
  box-shadow: 0 0 0 5px rgba(143, 185, 171, 0.14);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 6.3vw, 6.8rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: var(--seafoam);
  font-weight: 500;
}

.hero-lead {
  max-width: 640px;
  margin: 32px 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.service-line {
  max-width: 630px;
  margin: 0;
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: var(--navy-deep);
  background: var(--peach);
}

.button-primary:hover {
  background: #ffc1a4;
}

.button-secondary {
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-secondary:hover {
  border-color: var(--seafoam);
  background: rgba(143, 185, 171, 0.1);
}

.hero-preview {
  min-height: 490px;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--navy);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(250, 248, 242, 0.95)),
    var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 38px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
  transform: rotate(1.5deg);
}

.hero-preview::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 290px;
  height: 290px;
  content: "";
  border: 64px solid var(--seafoam-light);
  border-radius: 50%;
}

.preview-topline {
  margin-bottom: 70px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.preview-kicker {
  margin: 0 0 10px;
  color: #5e7f73;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-preview h2 {
  max-width: 430px;
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 0.96;
}

.hero-preview > p:not(.preview-kicker) {
  max-width: 410px;
  color: var(--muted);
}

.preview-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.preview-actions span,
.demo-button {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  color: white;
  background: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-actions span + span {
  color: var(--navy);
  background: var(--peach-light);
}

.coast-lines {
  position: absolute;
  right: -30px;
  top: 50px;
  width: 160px;
}

.coast-lines i {
  height: 1px;
  margin: 14px 0;
  display: block;
  background: var(--seafoam);
  transform: rotate(-15deg);
}

.coast-lines i:nth-child(2) {
  width: 75%;
  margin-left: 22%;
}

.coast-lines i:nth-child(3) {
  width: 55%;
  margin-left: 44%;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 48px;
}

.section-heading h2,
.confirmation-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.section-heading > p:not(.eyebrow),
.split-heading > p,
.confirmation-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.direction-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 20px;
}

.selection-card,
.blueprint {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 34px rgba(22, 52, 71, 0.055);
}

.card-number {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(22, 52, 71, 0.11);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
}

.selection-card h3,
.blueprint h3,
.idx-note h3,
.mega-menu h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--font-accent);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.1;
}

.selection-card > p:last-child,
.blueprint > p {
  color: var(--muted);
}

.swatches {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.swatches div {
  min-height: 120px;
  padding: 58px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--swatch);
  border: 1px solid rgba(22, 52, 71, 0.1);
  border-radius: 17px;
}

.swatches span {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.swatches div:nth-child(-n + 2) span,
.swatches div:nth-child(-n + 2) small {
  color: white;
}

.swatches small {
  color: rgba(22, 52, 71, 0.62);
}

.type-card h3 {
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
}

.type-dm {
  margin: 8px 0 28px;
  color: var(--peach);
  font-family: var(--font-accent);
  font-size: 2rem;
}

.type-sans {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.shape-demo {
  margin: 34px 0 26px;
  display: grid;
  gap: 14px;
}

.shape-demo .demo-button {
  width: fit-content;
}

.demo-card {
  min-height: 100px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  color: var(--navy);
  background: var(--seafoam-light);
  border-radius: 24px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-section {
  width: 100%;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  background: #f2eee5;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  align-items: end;
  gap: 60px;
}

.split-heading h2 {
  max-width: 760px;
}

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

.blueprint.featured,
.blueprint.reo-card {
  grid-column: 1 / -1;
}

.blueprint {
  min-height: 290px;
}

.blueprint ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  list-style: none;
}

.blueprint li {
  padding: 9px 12px;
  color: var(--navy);
  background: var(--seafoam-light);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.wireframe {
  margin-top: 28px;
  padding: 22px;
  color: var(--navy);
  background: #eef3f0;
  border-radius: 20px;
}

.wf-nav {
  padding-bottom: 13px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(22, 52, 71, 0.18);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.wf-nav span {
  color: var(--muted);
  font-weight: 500;
}

.wf-hero {
  min-height: 180px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.wf-hero > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.wf-hero small {
  color: #5e7f73;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.wf-hero strong {
  max-width: 380px;
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.94;
}

.wf-hero i {
  width: 70%;
  height: 5px;
  margin: 4px 0;
  display: block;
  border-radius: 8px;
  background: rgba(22, 52, 71, 0.12);
}

.wf-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(22, 52, 71, 0.65);
  background:
    linear-gradient(135deg, rgba(143, 185, 171, 0.78), rgba(239, 173, 143, 0.66));
  border-radius: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.wf-search {
  padding: 12px 15px;
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.35fr auto;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.66rem;
}

.wf-search b {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  color: white;
  background: var(--navy);
}

.wf-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wf-row i {
  height: 48px;
  border-radius: 12px;
  background: white;
}

.map-demo {
  min-height: 120px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.map-demo span,
.map-demo strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
}

.map-demo span {
  background: var(--paper);
}

.map-demo strong {
  color: var(--navy);
  background:
    linear-gradient(45deg, transparent 45%, rgba(22, 52, 71, 0.12) 45%, rgba(22, 52, 71, 0.12) 47%, transparent 47%),
    var(--seafoam-light);
}

.service-chips,
.county-list,
.path-row,
.proof-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-chips span,
.county-list span,
.path-row span,
.proof-row span {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: var(--peach-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.county-list span,
.path-row span {
  background: var(--seafoam-light);
}

.reo-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  column-gap: 44px;
}

.reo-card .blueprint-tag,
.reo-card h3,
.reo-card > p {
  grid-column: 1;
}

.service-boxes {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-boxes span {
  min-height: 110px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  color: var(--navy);
  background: var(--seafoam-light);
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 1.2rem;
}

.service-boxes span:nth-child(2),
.service-boxes span:nth-child(3) {
  background: var(--peach-light);
}

.pending-note {
  grid-column: 1 / -1;
  margin-top: 28px;
  padding: 20px 22px;
  color: var(--navy);
  background: #fff6d9;
  border: 1px solid #e6cf88;
  border-radius: var(--radius-small);
}

.pending-note strong {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pending-note p {
  margin: 6px 0 0;
  color: #6a5d32;
}

.review-demo {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.review-demo > div {
  min-height: 110px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--seafoam-light);
  border-radius: 17px;
}

.review-demo span {
  color: var(--muted);
  font-size: 0.72rem;
}

.rating-wall {
  display: grid !important;
  gap: 7px;
  background: var(--peach-light) !important;
}

.rating-wall span {
  padding: 6px 8px;
  color: #9a5e45;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 8px;
}

.contact-demo {
  margin-top: 22px;
  display: grid;
  gap: 8px;
}

.contact-demo i {
  height: 8px;
  display: block;
  border-radius: 10px;
  background: var(--seafoam-light);
}

.contact-demo i:nth-child(2) {
  width: 78%;
}

.contact-demo b {
  width: fit-content;
  margin-top: 5px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  color: white;
  background: var(--navy);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.navigation-section {
  padding-bottom: 120px;
}

.nav-preview,
.footer-preview,
.idx-note {
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.nav-preview-bar {
  min-height: 72px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: var(--navy);
  font-size: 0.74rem;
}

.nav-preview-bar > div {
  display: flex;
  align-items: center;
  gap: 19px;
}

.nav-preview-bar b {
  color: var(--seafoam);
}

.nav-preview-bar span {
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: var(--peach);
  font-weight: 700;
}

.mega-menu {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr;
  gap: 44px;
  background: var(--paper);
}

.mega-menu small {
  color: #5e7f73;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mega-menu p,
.mega-menu a {
  color: var(--muted);
  font-size: 0.86rem;
}

.mega-menu a {
  margin: 7px 0;
  display: block;
  text-decoration: none;
}

.mega-menu .demo-button {
  display: inline-block;
}

.footer-preview {
  padding: 40px;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 30px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--slate);
}

.footer-preview strong,
.footer-preview h3 {
  color: white;
}

.footer-preview h3 {
  margin: 0 0 12px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 400;
}

.footer-preview p {
  margin: 6px 0;
  font-size: 0.75rem;
}

.footer-intro span {
  padding: 8px 13px;
  display: inline-block;
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: var(--seafoam);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.idx-note {
  padding: 32px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 40px;
  background: var(--seafoam-light);
  box-shadow: none;
}

.idx-note ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}

.idx-note li {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 13px;
}

.idx-note code {
  color: var(--muted);
  font-size: 0.72rem;
}

.confirmation-section {
  width: 100%;
  padding: 110px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  color: white;
  background:
    radial-gradient(circle at 10% 80%, rgba(143, 185, 171, 0.18), transparent 30%),
    var(--navy-deep);
}

.confirmation-copy h2 {
  color: white;
}

.confirmation-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.locked-list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.locked-list span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  color: var(--seafoam-light);
  font-size: 0.74rem;
}

.confirmation-form {
  padding: 32px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-card);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.confirmation-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.confirmation-form legend {
  margin-bottom: 15px;
  color: var(--navy);
  font-family: var(--font-accent);
  font-size: 1.6rem;
}

.confirm-choice {
  margin: 10px 0;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  cursor: pointer;
}

.confirm-choice:has(input:checked) {
  border-color: var(--seafoam);
  background: var(--seafoam-light);
}

.confirm-choice input {
  margin-top: 4px;
  accent-color: var(--navy);
}

.confirm-choice b,
.confirm-choice small {
  display: block;
}

.confirm-choice small {
  margin-top: 3px;
  color: var(--muted);
}

.notes-label {
  margin: 25px 0 7px;
  display: flex;
  justify-content: space-between;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notes-label span {
  color: var(--muted);
  font-weight: 500;
}

.confirmation-form textarea {
  width: 100%;
  resize: vertical;
  padding: 14px 16px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.confirmation-form textarea:focus {
  outline: 2px solid var(--seafoam);
  outline-offset: 2px;
}

.summary-card {
  margin: 22px 0;
  padding: 20px;
  background: #f4f1e9;
  border-radius: 18px;
}

.summary-card pre {
  max-height: 290px;
  overflow: auto;
  margin: 0 0 16px;
  white-space: pre-wrap;
  color: var(--slate);
  font-family: var(--font-ui);
  font-size: 0.78rem;
}

.copy-button {
  padding: 9px 14px;
  color: white;
  background: var(--navy);
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.email-button {
  width: 100%;
}

.email-help {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  min-height: 100px;
  padding: 22px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.55);
  background: #0c202c;
}

.site-footer img {
  width: 190px;
  height: auto;
}

.site-footer p {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  :root {
    --content: min(100% - 36px, 760px);
  }

  .site-header {
    padding-inline: 18px;
  }

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 78px 28px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-preview {
    width: min(100%, 650px);
    min-height: 420px;
    justify-self: center;
    transform: none;
  }

  .direction-grid {
    grid-template-columns: 1fr 1fr;
  }

  .palette-card {
    grid-column: 1 / -1;
  }

  .split-heading,
  .confirmation-section {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 0;
  }

  .footer-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .confirmation-section {
    gap: 42px;
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(100% - 28px, 620px);
    --radius-card: 22px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 168px;
    max-width: 52vw;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 0.68rem !important;
  }

  .hero {
    padding: 62px 20px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-preview {
    min-height: 390px;
    padding: 28px;
  }

  .preview-topline {
    margin-bottom: 48px;
  }

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

  .section {
    padding: 78px 0;
  }

  .page-section {
    padding-inline: 14px;
  }

  .section-heading h2,
  .confirmation-copy h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .direction-grid,
  .page-blueprints {
    grid-template-columns: 1fr;
  }

  .palette-card,
  .blueprint.featured,
  .blueprint.reo-card {
    grid-column: auto;
  }

  .selection-card,
  .blueprint,
  .confirmation-form {
    padding: 23px;
  }

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

  .type-card h3 {
    font-size: 2.7rem;
  }

  .blueprint ul {
    grid-template-columns: 1fr;
  }

  .wf-nav {
    align-items: flex-start;
  }

  .wf-nav span {
    max-width: 160px;
    text-align: right;
  }

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

  .wf-photo {
    min-height: 110px;
  }

  .wf-search {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .wf-search span {
    display: none;
  }

  .reo-card {
    display: block;
  }

  .service-boxes {
    margin-top: 22px;
    grid-template-columns: 1fr 1fr;
  }

  .service-boxes span {
    min-height: 90px;
    font-size: 1rem;
  }

  .review-demo {
    grid-template-columns: 1fr;
  }

  .nav-preview-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-preview-bar > div {
    width: 100%;
    flex-wrap: wrap;
    gap: 11px;
  }

  .mega-menu,
  .idx-note {
    grid-template-columns: 1fr;
  }

  .mega-menu {
    gap: 28px;
  }

  .footer-preview {
    padding: 28px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .idx-note {
    gap: 22px;
  }

  .idx-note ul {
    grid-template-columns: 1fr;
  }

  .confirmation-section {
    padding: 78px 14px;
  }

  .site-footer {
    padding: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-inline: 16px;
  }

  .hero-preview {
    padding: 22px;
  }

  .hero-preview h2 {
    font-size: 2.6rem;
  }

  .section {
    width: calc(100% - 20px);
  }

  .page-section,
  .confirmation-section {
    width: 100%;
    padding-inline: 10px;
  }

  .swatches,
  .service-boxes,
  .footer-preview {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    grid-column: auto;
  }

  .shape-demo .demo-button {
    width: 100%;
    text-align: center;
  }
}

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