:root {
  color-scheme: light;
  --ink: #111922;
  --muted: #606d78;
  --line: #e2e8ec;
  --soft: #f7f9fa;
  --white: #ffffff;
  --teal: #087f83;
  --teal-dark: #065f63;
  --amber: #f0b949;
  --navy: #101820;
  --shadow-sm: 0 8px 22px rgba(17, 25, 34, 0.06);
  --shadow-md: 0 18px 46px rgba(17, 25, 34, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
}

main [id],
footer[id] {
  scroll-margin-top: 86px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: min(220px, 48vw);
  height: auto;
}

.nav {
  display: flex;
  gap: 26px;
  color: #4d5964;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.nav a:hover,
.header-cta:hover {
  color: var(--teal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  background: transparent;
  border: 1px solid #bcd9da;
  border-radius: 4px;
  color: var(--teal-dark);
  font-weight: 900;
}

.header-cta:hover {
  background: #edf7f7;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(58px, 7vw, 92px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dt,
dd,
li,
td,
th {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.1rem, 5.8vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #3b4854;
  font-size: clamp(1.04rem, 1.9vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(17, 25, 34, 0.16);
}

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

.button-secondary {
  background: var(--white);
  border-color: #c7d6dc;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

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

.hero-stats div {
  padding: 16px 0 0;
  border-top: 2px solid var(--line);
}

.hero-stats dt {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: minmax(210px, 1fr);
  gap: 16px;
}

.gallery-tile {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  box-shadow: var(--shadow-sm);
}

.gallery-tile-large {
  grid-row: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.035);
}

.gallery-tile figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 236, 0.92);
  border-radius: 4px;
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.gallery-tile span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
}

.gallery-tile strong {
  font-size: 0.96rem;
}

.section,
.image-feature,
.delivery-band,
.quote-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 900px;
}

.section-heading h2,
.feature-copy h2,
.delivery-copy h2,
.quote-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  background: #fbfcfd;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p {
  margin: 31px 0 0;
}

.image-feature,
.delivery-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.delivery-band {
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 0.95fr);
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  box-shadow: var(--shadow-md);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy p,
.delivery-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 30px;
  color: #31414d;
  font-weight: 750;
}

.plain-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.26em;
  width: 14px;
  height: 14px;
  background: var(--amber);
  border-radius: 3px;
  content: "";
}

.product-band,
.process {
  background: #fbfcfd;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 0 24px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #c4d4da;
  box-shadow: var(--shadow-md);
}

.product-image {
  width: calc(100% + 48px);
  max-width: none;
  margin: 0 -24px 22px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #fbfcfd;
  border-bottom: 1px solid var(--line);
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: #fff6df;
  border: 1px solid #f5d990;
  border-radius: 4px;
  color: #805800;
  font-weight: 950;
}

.product-card h3,
.process-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.16rem;
}

.product-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
}

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

.process-list li {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.process-list span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-weight: 950;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 0.98fr);
  gap: clamp(30px, 7vw, 88px);
  background: var(--white);
}

.quote-copy {
  align-self: start;
  position: sticky;
  top: 96px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--ink);
  border-radius: 4px;
  color: var(--white);
}

.quote-copy .eyebrow {
  color: #94dfe1;
}

.quote-copy h2 {
  color: var(--white);
}

.quote-copy p {
  max-width: 560px;
  color: #dce8ed;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #f7fbfc;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.quote-form {
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.delivery-fields[hidden],
.delivery-location[hidden] {
  display: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

label {
  color: #34434f;
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid #c8d5dc;
  border-radius: 4px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 127, 131, 0.14);
  outline: 0;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note-error {
  color: #b42318;
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #dbe4e9;
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: #94dfe1;
}

.thanks-page {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: #fbfcfd;
}

.thanks-panel {
  width: min(820px, 100%);
  padding: clamp(32px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.thanks-panel h1 {
  max-width: 720px;
}

.thanks-panel p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

  .hero-gallery {
    grid-auto-rows: minmax(190px, 1fr);
  }
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .intro,
  .image-feature,
  .delivery-band,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .process-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 72px;
  }

  .brand-logo {
    width: min(188px, 50vw);
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.46rem, 11.8vw, 3.9rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .product-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-tile,
  .gallery-tile-large {
    min-height: 0;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-tile figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

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

@media (max-width: 430px) {
  .brand-logo {
    width: min(168px, 48vw);
  }

  .header-cta {
    padding-inline: 12px;
  }
}
