:root {
  color-scheme: light;
  --ink: #1e2321;
  --muted: #62655f;
  --paper: #fff9ef;
  --ivory: #fffdf8;
  --teal: #0f6b67;
  --teal-dark: #0b4c49;
  --coral: #d95e4d;
  --coral-soft: #f7c8bd;
  --gold: #b68942;
  --sage: #7b916a;
  --line: rgba(30, 35, 33, 0.16);
  --shadow: 0 24px 80px rgba(30, 35, 33, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 36px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid rgba(30, 35, 33, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  font-weight: 900;
}

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

.nav-links a,
.header-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--ink);
  background: rgba(15, 107, 103, 0.08);
}

.header-action {
  color: #fff;
  background: var(--teal);
}

.header-action:hover {
  color: #fff;
  background: var(--teal-dark);
}

.hero {
  min-height: 92svh;
  padding: 100px 36px 54px;
  background:
    linear-gradient(90deg, rgba(255, 249, 239, 0.98) 0%, rgba(255, 249, 239, 0.86) 38%, rgba(255, 249, 239, 0.24) 68%),
    url("assets/hero-celebration.png") center / cover no-repeat;
}

.hero-content {
  width: min(1180px, 100%);
  min-height: calc(92svh - 154px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(410px, 0.72fr);
  align-items: center;
  gap: 34px;
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lede {
  margin-bottom: 26px;
  max-width: 560px;
  color: #3f443f;
  font-size: 20px;
}

.offer-line {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.proof-row,
.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span,
.ticker span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--teal-dark);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(15, 107, 103, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.planner {
  width: 100%;
  padding: 22px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.planner-heading {
  display: block;
  margin-bottom: 18px;
}

.planner-heading h2 {
  margin: 0;
  font-size: 28px;
}

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

label,
fieldset {
  min-width: 0;
}

label span,
legend {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.planner > label,
.planner > fieldset,
.planner > .field-grid {
  margin-bottom: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  padding: 0 13px;
}

textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(217, 94, 77, 0.32);
  outline-offset: 2px;
}

input[type="range"] {
  min-height: 32px;
  accent-color: var(--teal);
}

.stepper-field {
  display: grid;
  grid-template-rows: auto auto 32px;
}

.stepper {
  display: grid;
  grid-template-columns: 42px minmax(52px, 1fr) 42px;
  align-items: center;
  min-height: 46px;
  margin-bottom: 2px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stepper output {
  text-align: center;
  font-weight: 900;
}

.icon-button {
  width: 42px;
  height: 46px;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  font-size: 22px;
  font-weight: 800;
}

.icon-button:hover {
  background: rgba(15, 107, 103, 0.08);
}

.range-field {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 78px;
  align-items: start;
}

.range-field input {
  grid-column: 1 / -1;
  align-self: end;
}

.range-field output {
  font-weight: 900;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  background: rgba(15, 107, 103, 0.09);
  border-radius: 8px;
}

.segmented button,
.package-card button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: var(--teal-dark);
  background: transparent;
  font-weight: 900;
}

.segmented button.is-active {
  color: #fff;
  background: var(--teal);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.check-grid label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
}

.check-grid input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--coral);
}

.estimate-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  margin: 18px 0 12px;
  padding: 0 14px;
  background: rgba(182, 137, 66, 0.14);
  border-radius: 8px;
  color: var(--teal-dark);
}

.estimate-strip div {
  display: grid;
  gap: 2px;
}

.estimate-strip div:last-child {
  text-align: right;
}

.estimate-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-strip strong {
  text-align: right;
}

.sample-mini {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: rgba(15, 107, 103, 0.08);
  border: 1px solid rgba(15, 107, 103, 0.16);
  border-radius: 8px;
}

.sample-mini span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-mini strong {
  color: var(--teal-dark);
  font-size: 14px;
  line-height: 1.35;
}

.primary-button {
  width: 100%;
  min-height: 50px;
  color: #fff;
  background: var(--coral);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

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

.ticker {
  justify-content: center;
  padding: 18px 24px;
  background: var(--teal-dark);
}

.ticker span {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.section {
  padding: 86px 36px;
}

.section-heading,
.plan-layout,
.package-grid,
.proof-layout,
.bid-path,
.service-band,
.strategy-grid,
.reserve-section,
.site-footer {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.plan-section {
  background: var(--ivory);
}

.demo-strip {
  width: min(1180px, 100%);
  margin: -8px auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  color: var(--teal-dark);
  background: #f5ecdf;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.demo-strip span {
  color: var(--muted);
  font-weight: 800;
}

.plan-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.sample-quote {
  width: min(1180px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 18px;
}

.plan-summary,
.timeline-panel,
.vendor-panel,
.sample-quote-card,
.hold-explainer,
.package-card,
.strategy-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan-summary,
.timeline-panel,
.vendor-panel {
  padding: 24px;
}

.plan-summary {
  color: #fff;
  background: var(--teal-dark);
  border-color: rgba(255, 255, 255, 0.12);
}

.plan-summary .eyebrow,
.plan-summary p {
  color: rgba(255, 255, 255, 0.78);
}

.plan-summary h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.summary-metrics {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.summary-metrics div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-metrics dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-metrics dd {
  margin: 0;
  font-weight: 900;
}

.timeline-list {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  position: relative;
  min-height: 54px;
  padding-left: 28px;
  color: var(--muted);
}

.timeline-list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--coral);
  border: 3px solid var(--coral-soft);
  border-radius: 50%;
}

.timeline-list span {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.vendor-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.vendor-row {
  display: grid;
  grid-template-columns: 92px 1fr 54px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
}

.vendor-track {
  height: 12px;
  overflow: hidden;
  background: rgba(15, 107, 103, 0.1);
  border-radius: 999px;
}

.vendor-fill {
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
}

.vendor-row:nth-child(2n) .vendor-fill {
  background: var(--coral);
}

.vendor-row:nth-child(3n) .vendor-fill {
  background: var(--gold);
}

.sample-quote-card,
.hold-explainer {
  padding: 24px;
}

.sample-quote-card h3,
.hold-explainer h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.quote-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.quote-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.quote-lines span {
  color: var(--muted);
  font-weight: 800;
}

.quote-lines strong {
  color: var(--teal-dark);
  text-align: right;
  white-space: nowrap;
}

.bid-path {
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  color: var(--teal-dark);
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(15, 107, 103, 0.18);
  border-radius: 8px;
}

.bid-path h3,
.bid-path p {
  margin-bottom: 0;
}

.bid-path p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 800;
}

.hold-explainer {
  color: #fff;
  background: var(--teal-dark);
  border-color: rgba(255, 255, 255, 0.12);
}

.hold-explainer .eyebrow {
  color: var(--coral-soft);
}

.hold-explainer ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hold-explainer li {
  color: rgba(255, 255, 255, 0.78);
}

.hold-explainer li span {
  display: block;
  color: #fff;
  font-weight: 900;
}

.package-section {
  background: #f5ecdf;
}

.package-grid,
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: grid;
  min-height: 278px;
  padding: 24px;
}

.package-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.package-card p:not(.eyebrow) {
  color: var(--muted);
}

.package-card strong {
  align-self: end;
  display: block;
  margin: 22px 0 6px;
  font-size: 20px;
}

.package-card small {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.package-card button {
  width: 100%;
  color: #fff;
  background: var(--teal);
}

.package-card button:hover {
  background: var(--teal-dark);
}

.package-card.is-featured {
  border-color: rgba(217, 94, 77, 0.42);
  box-shadow: 0 18px 46px rgba(217, 94, 77, 0.16);
}

.proof-section {
  background: var(--ivory);
}

.proof-layout {
  display: grid;
  gap: 18px;
}

.bench-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bench-card,
.gallery-tile,
.quote-panel,
.trust-band {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bench-card {
  min-height: 220px;
  padding: 24px;
  background: #fff;
}

.bench-card span,
.gallery-tile span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bench-card p {
  color: var(--muted);
}

.gallery-tile {
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(30, 35, 33, 0.06), rgba(30, 35, 33, 0.72)),
    url("assets/hero-celebration.png") center / cover no-repeat;
  overflow: hidden;
}

.gallery-tile:nth-child(2) {
  background-position: 48% 58%;
}

.gallery-tile:nth-child(3) {
  background-position: 68% 62%;
}

.gallery-tile span {
  color: var(--coral-soft);
}

.gallery-tile h3 {
  margin: 0;
}

.quote-panel {
  margin: 0;
  padding: 28px;
  color: #fff;
  background: var(--teal-dark);
}

.quote-panel p {
  max-width: 760px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.2;
}

.quote-panel cite {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  font-weight: 900;
}

.service-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
  background: #f5ecdf;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-band strong {
  color: var(--teal-dark);
  text-transform: uppercase;
  white-space: nowrap;
}

.service-band span {
  color: var(--muted);
  font-weight: 800;
}

.trust-band {
  width: min(1180px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  color: #fff;
  background: var(--teal-dark);
}

.trust-band .eyebrow {
  color: var(--coral-soft);
}

.trust-band h3,
.trust-band p {
  margin-bottom: 0;
}

.trust-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.strategy-section {
  background: #f5ecdf;
}

.strategy-grid article {
  padding: 24px;
}

.strategy-grid span {
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--sage);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.strategy-grid p {
  color: var(--muted);
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 34px;
  align-items: center;
  padding: 52px 36px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 8px 8px 0 0;
}

.reserve-section p {
  color: rgba(255, 255, 255, 0.78);
}

.reserve-section .eyebrow {
  color: var(--coral-soft);
}

.reserve-form {
  display: grid;
  gap: 12px;
}

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

.reserve-form label span {
  color: rgba(255, 255, 255, 0.74);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 36px 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 20px;
  }

  .hero {
    min-height: auto;
    padding: 96px 20px 44px;
    background:
      linear-gradient(180deg, rgba(255, 249, 239, 0.97) 0%, rgba(255, 249, 239, 0.86) 52%, rgba(255, 249, 239, 0.38) 100%),
      url("assets/hero-celebration.png") center / cover no-repeat;
  }

  .hero-content,
  .plan-layout,
  .sample-quote,
  .package-grid,
  .bench-grid,
  .gallery-grid,
  .bid-path,
  .trust-band,
  .strategy-grid,
  .reserve-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 0;
    gap: 28px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .section {
    padding: 68px 20px;
  }

  .reserve-section {
    padding-inline: 22px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    padding: 10px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a,
  .header-action {
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero {
    padding: 34px 14px 26px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .offer-line {
    font-size: 15px;
  }

  .hero-content {
    gap: 18px;
  }

  .proof-row {
    display: none;
  }

  .planner {
    padding: 16px;
  }

  .planner-heading {
    display: block;
  }

  .planner-heading h2 {
    font-size: 24px;
  }

  .field-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .range-field {
    grid-template-rows: auto 58px;
  }

  .estimate-strip {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 10px;
  }

  .estimate-strip div:last-child {
    text-align: left;
  }

  .section {
    padding: 54px 14px;
  }

  .demo-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
  }

  .package-card,
  .bench-card,
  .sample-quote-card,
  .hold-explainer,
  .strategy-grid article,
  .plan-summary,
  .timeline-panel,
  .vendor-panel {
    padding: 18px;
  }

  .vendor-row {
    grid-template-columns: 82px 1fr 48px;
  }

  .bid-path {
    padding: 18px;
  }

  .quote-lines div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .quote-lines strong {
    text-align: left;
    white-space: normal;
  }

  .reserve-section {
    padding: 36px 16px;
  }

  .quote-panel {
    padding: 20px;
  }

  .quote-panel p {
    font-size: 22px;
  }

  .service-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .trust-band {
    padding: 18px;
  }

  .site-footer {
    padding-inline: 14px;
  }
}
