:root {
  color-scheme: light;
  --ink: #18151b;
  --muted: #665f6d;
  --line: #ddd7e5;
  --lavender: #c8b8dc;
  --lavender-dark: #75608d;
  --mint: #d9ede5;
  --cream: #fbfaf7;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(40, 32, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(221, 215, 229, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border: 4px solid var(--lavender);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a,
.header-cta,
.button {
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 750;
}

.header-cta {
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.button {
  padding: 0 20px;
}

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

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 77px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px) clamp(36px, 7vw, 72px);
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--lavender-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.quote-panel {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  display: grid;
  align-content: end;
  min-height: 500px;
  background: transparent;
}

.quote-panel img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  grid-area: 1 / 1;
}

.quick-contact {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  place-self: end;
  display: grid;
  gap: 16px;
  margin: 24px;
  padding: 16px 18px;
  width: max-content;
  max-width: calc(100% - 48px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(24, 21, 27, 0.18);
  backdrop-filter: blur(12px);
}

.quick-contact span {
  color: var(--muted);
  font-weight: 700;
}

.quick-contact a {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 850;
  line-height: 1;
}

.package-section,
.detail-section,
.standards-section,
.contact-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.quote-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-strip div {
  display: grid;
  gap: 6px;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 5vw, 64px);
  background: var(--white);
}

.quote-strip span,
.package-kicker {
  color: var(--lavender-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-strip strong {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.25;
}

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

.package-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.package-card.featured {
  background: var(--mint);
  border-color: rgba(117, 96, 141, 0.25);
}

.package-card h3 {
  margin-top: 44px;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

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

.package-card a {
  width: fit-content;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 850;
  border-bottom: 2px solid var(--lavender);
}

.package-card p,
.detail-list li,
.split p,
.contact-section p,
address {
  color: var(--muted);
}

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

.section-media {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.section-media img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
}

.detail-list {
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-list ul {
  margin: 0;
  padding-left: 18px;
}

.detail-list li + li {
  margin-top: 10px;
}

.commercial-band {
  background: var(--ink);
  color: var(--white);
}

.commercial-band .eyebrow {
  color: var(--lavender);
}

.commercial-band .section-heading h2 {
  color: var(--white);
}

.commercial-band .section-media {
  box-shadow: none;
}

.split {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.split > div {
  padding: clamp(24px, 4vw, 40px);
  background: #211d25;
}

.split p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.standards-section {
  background: var(--white);
}

.standards-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 16px;
}

.addons-panel,
.standards-panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.addons-panel {
  background: var(--cream);
}

.standards-panel {
  background: var(--ink);
  color: var(--white);
}

.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.addon-list span {
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.standards-panel ol {
  margin: 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.standards-panel li + li {
  margin-top: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--mint);
}

.contact-section > div:first-child p:last-child {
  max-width: 660px;
  margin-top: 20px;
  font-size: 1.1rem;
}

.contact-card {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid rgba(24, 21, 27, 0.08);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-name,
.license {
  font-weight: 800;
}

.contact-phone {
  display: inline-block;
  margin: 8px 0 18px;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 850;
  line-height: 1;
}

address {
  font-style: normal;
}

.license {
  margin: 22px 0 0;
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--ink);
  font-weight: 750;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .contact-section,
  .standards-layout {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    min-height: 420px;
  }

  .quote-panel img {
    min-height: 420px;
  }

  .package-grid,
  .quote-strip,
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand {
    min-width: 0;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 16vw, 4.9rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quote-panel,
  .quote-panel img {
    min-height: 310px;
  }

  .quick-contact {
    display: block;
  }

  .quick-contact a {
    display: block;
    margin-top: 6px;
  }

  .package-grid,
  .quote-strip,
  .detail-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 250px;
  }

  .site-footer {
    display: grid;
  }
}
