:root {
  --radius: 0.375rem;

  --brand: #ff4433;
  --brand-ink: #fefefe;

  --paper: #fdfcfa;
  --ink: #201f1c;
  --ink-muted: #6b6862;
  --hairline: #e2ddd2;
  --verified: #3f8f5f;

  --background: var(--paper);
  --foreground: var(--ink);
  --card: #ffffff;
  --secondary: #f3f0e9;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.hairline {
  border-color: var(--hairline);
}

/* Header */
header.site {
  border-bottom: 1px solid var(--hairline);
  background-color: color-mix(in srgb, var(--background) 85%, transparent);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 40;
}

header.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background-color: var(--brand);
  display: inline-block;
}

.brand .name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

nav.site {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
}

nav.site a {
  text-decoration: none;
  color: var(--foreground);
  transition: color 0.15s ease;
}

nav.site a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s ease, background-color 0.15s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--brand);
  color: var(--brand-ink);
  border: 1px solid var(--brand);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--hairline);
}

.btn-ghost:hover {
  background-color: var(--secondary);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
  max-width: 46rem;
  margin-inline: auto;
}

.hero p.tagline {
  font-style: italic;
  font-weight: 600;
  color: var(--brand);
  font-size: 1.0625rem;
  margin: 0 0 1rem;
}

.hero p.lead {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.hero .cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 4rem 0;
}

section.alt {
  background-color: var(--card);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.section-head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0.75rem;
}

.section-head p {
  color: var(--ink-muted);
  margin: 0;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.card {
  background-color: var(--card);
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
}

.card .icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--brand) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.card h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.55;
}

/* Steps */
.steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.step .num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
}

.step p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

/* Cost calculator */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.calc-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calc-card {
  background-color: var(--card);
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-card h3 {
  margin: 0;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

.calc-card-brand {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--hairline));
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 5%, var(--card)), var(--card));
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.calc-field input {
  height: 2.375rem;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background-color: var(--background);
  padding: 0 0.75rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--foreground);
}

.calc-field input:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.calc-total {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: auto;
}

.calc-card-brand .calc-total {
  color: var(--brand);
}

.calc-sub {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.5;
}

.calc-savings {
  text-align: center;
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 4px);
  background-color: var(--secondary);
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
}

.calc-savings strong {
  color: var(--brand);
}

@media (max-width: 640px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .calc-vs {
    padding: 0.25rem 0;
  }
}

/* FAQ */
.faq {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq details {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background-color: var(--card);
}

.faq summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  color: var(--ink-muted);
  font-size: 1.125rem;
  margin-left: 1rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Concierge band */
.band {
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 6%, var(--card)), var(--card));
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.band .copy {
  max-width: 32rem;
}

.band h2 {
  font-size: 1.375rem;
  margin: 0.4rem 0 0.6rem;
  letter-spacing: -0.01em;
}

.band p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* Trust badges */
.badges {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.badge .mark {
  color: var(--verified);
  font-weight: 600;
  font-size: 0.9375rem;
}

.badge p {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  margin: 0.35rem 0 0;
  max-width: 12rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 5rem 0;
}

.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  max-width: 34rem;
  margin: 0 auto 1.75rem;
}

/* Footer */
footer.site {
  border-top: 1px solid var(--hairline);
}

footer.site .cols {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 2.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

footer.site .cols .brand-name {
  color: var(--foreground);
  font-weight: 600;
}

footer.site .cols p {
  margin: 0.5rem 0 0;
  max-width: 18rem;
}

footer.site .social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

footer.site .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-muted);
  transition: border-color 0.15s ease, color 0.15s ease;
}

footer.site .social a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

footer.site ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

footer.site ul a {
  text-decoration: none;
}

footer.site ul a:hover {
  color: var(--foreground);
}

footer.site .bottom {
  border-top: 1px solid var(--hairline);
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

@media (max-width: 640px) {
  footer.site .cols {
    grid-template-columns: 1fr;
  }

  header.site .row {
    padding: 0.875rem 1.5rem;
  }

  nav.site {
    display: none;
  }

  .btn-lg {
    padding: 0.625rem 1.125rem;
    font-size: 0.9375rem;
  }
}
