:root {
  color-scheme: light;
  --ink: #12201c;
  --muted: #52625d;
  --line: #d7e2de;
  --paper: #f7faf8;
  --white: #ffffff;
  --green: #1f6f5b;
  --green-strong: #124e40;
  --mint: #dff2e8;
  --amber: #f4b740;
  --coral: #d85c47;
  --shadow: 0 18px 45px rgba(13, 36, 29, .18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

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;
}

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: #ffffff;
  transition: background .18s ease, box-shadow .18s ease, color .18s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  font-size: 23px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.top-nav a {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 11px;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, .14);
}

.site-header.is-scrolled .top-nav a:hover {
  background: #edf4f1;
}

.order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  padding: 0 18px;
  text-align: center;
  white-space: nowrap;
}

.order-link-header {
  background: var(--amber);
  color: #1e1604;
}

.order-link-primary {
  background: var(--amber);
  color: #1e1604;
  box-shadow: 0 10px 28px rgba(244, 183, 64, .26);
}

.order-link-secondary {
  border-color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 52px);
  overflow: hidden;
  background: #0d211c;
  color: #ffffff;
}

.hero-media,
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #0d211c center / cover no-repeat;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-shade {
  background: rgba(6, 22, 18, .44);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  padding: 132px clamp(18px, 5vw, 72px) 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 82px;
  line-height: .92;
  letter-spacing: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .34);
}

.hero-kicker {
  color: var(--amber);
  font-size: 15px;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 21px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.hero-copy-secondary {
  max-width: 690px;
  margin-top: 14px;
  font-size: 18px;
}

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

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

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

.product-section,
.presentation-section,
.order-section {
  padding: clamp(54px, 8vw, 94px) 0;
}

.product-grid,
.order-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.section-copy h2,
.section-heading h2 {
  margin: 0;
  max-width: 780px;
  color: var(--ink);
  font-size: 54px;
  line-height: .98;
  letter-spacing: 0;
}

.section-copy p:not(.section-kicker) {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.product-points {
  display: grid;
  gap: 10px;
}

.product-points article,
.order-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  box-shadow: 0 12px 26px rgba(18, 32, 28, .06);
}

.product-points article {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.product-points strong {
  color: var(--green-strong);
  font-size: 18px;
  font-weight: 950;
}

.product-points span {
  color: var(--muted);
  font-weight: 400;
}

.presentation-section {
  background: #edf5f1;
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
}

.presentation-gallery {
  display: grid;
  grid-auto-columns: minmax(230px, 31%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 18px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--green) rgba(31, 111, 91, .12);
}

.presentation-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}

.presentation-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.measure-note {
  margin: 4px 0 0;
  color: var(--green-strong);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
}

.order-section {
  padding-bottom: clamp(92px, 10vw, 120px);
}

body.is-wizard-date-focus .order-section,
body.is-delivery-options-focus .order-section,
body.is-details-focus .order-section,
body.is-package-summary-focus .order-section {
  padding-bottom: max(clamp(92px, 10vw, 120px), 70vh);
}

body.is-cards-focus .order-section {
  padding-bottom: max(clamp(92px, 10vw, 120px), var(--order-cards-focus-bottom, 24vh));
}

.order-panel {
  padding: 22px;
}

.order-panel-button {
  width: 100%;
  margin-top: 22px;
}

.shipping-register-button[disabled] {
  cursor: not-allowed;
  opacity: .55;
}

.coverage-form {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.coverage-form label {
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 950;
}

.coverage-helper {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.coverage-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.coverage-input-row input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  padding: 0 14px;
}

.coverage-input-row input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(31, 111, 91, .18);
}

.coverage-result {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.coverage-result strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.coverage-result span {
  font-weight: 400;
}

.coverage-result.is-covered {
  border-color: #9fd9ba;
  background: #effaf3;
}

.coverage-result.is-review {
  border-color: #f4d58a;
  background: #fff8e8;
}

.coverage-result.is-outside {
  border-color: #efb0a6;
  background: #fff1ef;
}

.wizard-step {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.wizard-step[data-step="coverage"] {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.wizard-step[data-step="coverage"] .wizard-heading {
  gap: 0;
  margin-bottom: 10px;
}

.wizard-step[data-step="coverage"] .wizard-copy {
  margin-top: 0;
}

.wizard-step.is-active {
  display: block;
}

.wizard-heading {
  display: grid;
  gap: 0;
  margin-bottom: 10px;
}

.wizard-heading span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wizard-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.wizard-heading p {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.wizard-heading .wizard-copy {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}

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

.package-option {
  display: grid;
  align-content: center;
  gap: 2px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  padding: 7px 12px;
  text-align: left;
}

.package-option:hover,
.package-option.is-selected {
  border-color: var(--green);
  outline: 3px solid rgba(31, 111, 91, .13);
}

.package-option strong {
  color: var(--green-strong);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.package-option span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.custom-quantity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  gap: 8px;
  align-items: end;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3faf6;
  padding: 10px 12px;
}

.custom-quantity strong {
  display: block;
  color: var(--green-strong);
  font-weight: 950;
}

.custom-quantity span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.custom-quantity-row {
  display: grid;
  grid-template-columns: minmax(86px, 1fr) auto;
  gap: 8px;
}

.custom-quantity-row input,
.full-input,
.form-grid input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  padding: 0 12px;
}

.custom-quantity-row input:focus,
.full-input:focus,
.form-grid input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(31, 111, 91, .18);
}

.date-picker-control {
  position: relative;
}

.date-picker-control .native-date-input {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 46px;
  border: 0;
  cursor: pointer;
  opacity: 0;
}

.date-picker-control .date-display {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #d99a16;
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(244, 183, 64, .22);
  font-weight: 950;
  pointer-events: none;
}

.date-picker-control .date-display.has-value {
  color: var(--ink);
}

.date-picker-control:focus-within .date-display {
  border-color: var(--green);
  outline: 3px solid rgba(31, 111, 91, .18);
}

.small-action {
  min-height: 46px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  padding: 0 14px;
}

.selection-summary,
.step-note,
.order-total,
.completion-box {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 14px;
}

.selection-summary strong,
.order-total strong,
.completion-box strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.package-summary {
  border-color: #9fd9ba;
  background: #effaf3;
  color: var(--muted);
}

.package-summary strong {
  color: var(--ink);
}

.package-summary span {
  display: block;
  font-weight: 500;
  margin-top: 4px;
}

.package-summary span:first-child {
  margin-top: 0;
}

.package-summary span strong {
  display: inline;
  font-size: inherit;
  font-weight: 950;
}

.order-total {
  border-color: #9fd9ba;
  background: #effaf3;
}

.order-total span {
  display: block;
  margin-top: 4px;
}

.step-note {
  font-weight: 500;
  margin-bottom: 0;
  white-space: pre-line;
}

.step-note strong {
  color: var(--ink);
  font-weight: 950;
}

.step-note:empty {
  display: none;
}

.step-note.is-unavailable {
  border-color: #efb0a6;
  background: #fff1ef;
  color: #c73224;
  font-weight: 950;
}

.step-note.is-unavailable strong {
  color: #c73224;
  font-size: 16px;
  font-weight: 950;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 950;
}

.delivery-options {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.delivery-option {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 2px;
  width: 100%;
  min-height: 54px;
  border: 1px solid #9fd9ba;
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  padding: 8px 12px;
  box-shadow: 0 8px 18px rgba(31, 111, 91, .10);
  text-align: center;
}

.delivery-option:hover,
.delivery-option.is-selected {
  border-color: var(--green);
  outline: 3px solid rgba(31, 111, 91, .13);
}

.delivery-option strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.delivery-option span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.details-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  border: 0;
  padding: 0;
}

.details-form legend {
  margin-bottom: 10px;
  color: var(--green-strong);
  font-size: 15px;
  font-weight: 950;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 950;
}

[data-step="shipping"] .wizard-heading {
  margin-bottom: 10px;
}

[data-step="shipping"] fieldset {
  margin-bottom: 8px;
}

[data-step="shipping"] .form-grid {
  gap: 8px;
}

[data-step="shipping"] .form-grid label {
  gap: 4px;
}

[data-step="shipping"] .form-grid input {
  min-height: 40px;
}

[data-step="shipping"] .shipping-register-button {
  margin-top: 8px;
}

.completion-box.is-success {
  border-color: #9fd9ba;
  background: #effaf3;
}

.completion-box.is-warning {
  border-color: #f4d58a;
  background: #fff8e8;
}

.completion-box .order-link {
  margin-top: 12px;
  width: 100%;
}

.mobile-order-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  min-height: 52px;
  border-radius: 8px;
  background: var(--amber);
  color: #1e1604;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .26);
  font-weight: 950;
  place-items: center;
  transition: opacity .18s ease, transform .18s ease;
}

.mobile-order-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
}

.site-footer {
  padding: 26px var(--page-padding) 92px;
  background: #123f34;
  color: #eef8f3;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.site-footer a {
  color: inherit;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 0;
}

.privacy-section {
  padding-bottom: 52px;
}

@media (max-width: 1060px) {
  .hero h1 {
    font-size: 64px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 46px;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 66px;
    padding: 12px 14px;
  }

  .brand span {
    font-size: 17px;
  }

  .top-nav,
  .order-link-header {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 44px);
  }

  .hero-shade {
    background: rgba(6, 22, 18, .62);
  }

  .hero-inner {
    padding: 112px 18px 42px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .order-link {
    width: 100%;
  }

  .product-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .presentation-gallery {
    grid-auto-columns: minmax(220px, 82%);
  }

  .product-section,
  .presentation-section,
  .order-section {
    padding: 46px 0;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 36px;
  }

  .section-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .wizard-heading .wizard-copy {
    font-size: 16px;
  }

  .presentation-gallery-item {
    box-shadow: 0 10px 26px rgba(13, 36, 29, .16);
  }

  .measure-note {
    font-size: 15px;
  }

  .coverage-input-row {
    grid-template-columns: 1fr;
  }

  .coverage-input-row .order-link {
    width: 100%;
  }

  .custom-quantity,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .order-panel .package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-quantity-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-order-bar {
    display: grid;
  }

  .site-footer-inner {
    align-items: center;
  }

  .site-footer nav {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

}
