:root {
  --ink: #18211f;
  --muted: #5f6863;
  --paper: #fbfbf7;
  --soft: #edf4ee;
  --line: #dce4dd;
  --teal: #166c63;
  --teal-dark: #0e403c;
  --coral: #ef6a45;
  --gold: #d3a435;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(18, 33, 31, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

.icon-sprite {
  display: none;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(14, 25, 23, 0.5);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(24, 33, 31, 0.1);
  background: rgba(251, 251, 247, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.72rem;
}

.brand-text {
  font-size: 1.04rem;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: currentColor;
  font-weight: 650;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: var(--soft);
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: #121916;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 14, 0.86), rgba(10, 16, 14, 0.52) 48%, rgba(10, 16, 14, 0.18)),
    linear-gradient(0deg, rgba(10, 16, 14, 0.34), rgba(10, 16, 14, 0.08));
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  min-height: 82vh;
  margin: 0 auto;
  padding: 96px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: #cce9df;
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 15.5ch;
  font-size: clamp(2.65rem, 4.8vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 760;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  color: #18211f;
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.button.submit {
  width: 100%;
  color: var(--white);
  background: var(--teal);
}

.button.outline {
  width: fit-content;
  color: var(--teal-dark);
  border-color: var(--teal);
  background: transparent;
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin: 26px 0 0;
}

.hero-stats div {
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-stats dt {
  font-size: 1.25rem;
  font-weight: 820;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.quote-panel {
  width: 100%;
  scroll-margin-top: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(251, 251, 247, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.panel-header h2 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.1;
}

.segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 12px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f5f1;
}

.segment-button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 760;
  cursor: pointer;
}

.segment-button.is-active {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 8px 20px rgba(14, 64, 60, 0.18);
}

.quote-form {
  display: grid;
  gap: 9px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.95rem;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(22, 108, 99, 0.16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 780;
  text-align: center;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.coverage-copy h2,
.partner-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.coverage-copy p,
.partner-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.solution-card {
  min-height: 480px;
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.solution-card div {
  padding: 22px;
}

.card-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-card h3,
.amenity-grid h3,
.process-list h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

.solution-card p:last-child,
.amenity-grid p,
.process-list p,
.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.coverage-section {
  width: 100%;
  margin: 0;
  padding: 78px max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
  background: var(--soft);
}

.city-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.city-board span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(22, 108, 99, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-weight: 780;
  text-align: center;
}

.city-board span:last-child {
  grid-column: span 3;
  background: var(--teal-dark);
  color: var(--white);
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.partner-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
}

.partner-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

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

.assurance-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.assurance-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 730;
}

.assurance-list .icon {
  color: var(--teal);
}

.included-section {
  padding-top: 60px;
}

.included-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.included-image {
  overflow: hidden;
  border-radius: 8px;
}

.included-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

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

.amenity-grid div {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.amenity-grid .icon {
  width: 1.35rem;
  height: 1.35rem;
  margin-bottom: 26px;
  color: var(--coral);
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #f5f8f4);
}

.process-list span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 850;
  font-size: 0.92rem;
}

.faq-section {
  padding-top: 36px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  min-height: 64px;
  padding: 20px 22px;
  font-weight: 780;
  cursor: pointer;
}

.faq-list p {
  padding: 0 22px 22px;
}

.final-cta {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 40px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 64, 60, 0.96), rgba(22, 108, 99, 0.8)),
    url("https://static.wixstatic.com/media/c3478c_98d18c774f2d4431ad00396e57200456~mv2.jpg/v1/fill/w_1500,h_640,al_c,q_85,enc_avif,quality_auto/city.jpg") center/cover;
}

.final-cta h2 {
  max-width: 760px;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  h1 {
    max-width: 13.8ch;
  }

  .quote-panel {
    max-width: 620px;
  }

  .trust-strip,
  .solution-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-section,
  .partner-section,
  .included-layout {
    grid-template-columns: 1fr;
  }

  .coverage-section {
    padding-inline: 20px;
  }

  .partner-media,
  .partner-media img,
  .included-image img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 10px;
    left: 10px;
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(24, 33, 31, 0.1);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(251, 251, 247, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 16, 14, 0.86), rgba(10, 16, 14, 0.58) 42%, rgba(10, 16, 14, 0.84)),
      rgba(10, 16, 14, 0.2);
  }

  .hero-layout {
    width: min(calc(100% - 28px), var(--max));
    min-height: auto;
    padding: 112px 0 36px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .solution-grid,
  .city-board,
  .amenity-grid,
  .process-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding-inline: 0;
  }

  .hero-stats {
    display: none;
  }

  .quote-panel {
    padding: 18px;
  }

  .quote-panel {
    display: none;
  }

  .mobile-quote-open .quote-panel {
    display: block;
  }

  .panel-header {
    display: block;
  }

  .trust-strip div {
    min-height: 76px;
    justify-content: flex-start;
    text-align: left;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
    padding: 64px 0;
  }

  .solution-card {
    min-height: auto;
    grid-template-rows: 220px auto;
  }

  .city-board span:last-child {
    grid-column: auto;
  }

  .partner-media,
  .partner-media img,
  .included-image img {
    min-height: 340px;
  }

  .amenity-grid div,
  .process-list li {
    min-height: auto;
  }

  .process-list span {
    margin-bottom: 34px;
  }

  .final-cta {
    width: min(calc(100% - 28px), var(--max));
    padding: 32px 22px;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
