:root {
  --ink: #15211d;
  --muted: #64736d;
  --paper: #f5f7f2;
  --surface: #ffffff;
  --line: #dfe8dc;
  --sage: #789365;
  --forest: #24483d;
  --teal: #1f7a76;
  --coral: #e75b3c;
  --butter: #f4e4ad;
  --mist: #e8f3ef;
  --shadow: 0 18px 46px rgba(27, 45, 38, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(36, 72, 61, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(36, 72, 61, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(223, 232, 220, 0.9);
  background: rgba(245, 247, 242, 0.92);
  backdrop-filter: blur(14px);
}

.home-link,
.nav {
  display: flex;
  align-items: center;
}

.home-link {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--forest);
}

.nav {
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.nav-order:hover,
.site-footer a:hover,
.legal-page a:hover {
  color: var(--teal);
}

.nav-order {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--surface);
  font-weight: 900;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(380px, 1.05fr) minmax(300px, 0.62fr);
  gap: 22px;
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 0;
  align-items: stretch;
}

.hero-copy,
.purchase-card,
.hero-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  min-height: 640px;
  align-content: center;
  padding: clamp(26px, 4vw, 42px);
}

.sku,
.section-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.lead {
  color: var(--muted);
  font-size: 23px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
}

.hero-pills span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.hero-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 640px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(120, 147, 101, 0.18), transparent 24%),
    #f0f5ed;
}

.gallery-main {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.purchase-card {
  position: sticky;
  top: 88px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--teal);
  background: var(--mist);
  font-size: 14px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.likes-row {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.price {
  color: var(--coral);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.old-price {
  color: #aeb8b2;
  font-size: 26px;
  font-weight: 900;
  text-decoration: line-through;
}

.stock {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #98503c;
  background: #fff0eb;
  font-size: 14px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--forest));
  box-shadow: 0 14px 28px rgba(31, 122, 118, 0.22);
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.mini-list li {
  position: relative;
  padding-left: 18px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.media-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(86px, 1fr));
  gap: 10px;
  width: min(1240px, calc(100% - 32px));
  margin: 14px auto 80px;
}

.thumb {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: #e7ece4;
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--teal);
}

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

.split-feature,
.details-section,
.order-section {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.split-feature {
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.feature-text,
.details-copy,
.order-copy,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-text {
  padding: clamp(28px, 5vw, 56px);
}

.feature-text p,
.benefit-board p,
.details-copy p,
.order-copy p,
.faq-list p {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.benefit-board article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.benefit-board span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 900;
}

.image-band {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 0.8fr;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.image-band img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.delivery-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.delivery-panel div {
  display: grid;
  gap: 6px;
  min-height: 150px;
  align-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.delivery-panel div:last-child {
  border-right: 0;
}

.delivery-panel strong {
  color: var(--forest);
}

.delivery-panel span {
  color: var(--muted);
  font-size: 14px;
}

.details-section {
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: center;
}

.details-media {
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.details-media img {
  max-height: 640px;
  object-fit: contain;
}

.details-copy {
  padding: clamp(28px, 5vw, 56px);
}

.spec-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  font-weight: 900;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(320px, 1fr);
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.faq-heading {
  padding: 28px;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
}

.faq-heading h2,
.faq-heading .section-kicker {
  color: #fff;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  padding: 22px 68px 22px 24px;
  font-size: 20px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--muted);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  display: none;
}

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

.order-section {
  grid-template-columns: minmax(260px, 0.68fr) minmax(280px, 0.72fr) minmax(300px, 0.6fr);
  gap: 24px;
  align-items: stretch;
}

.order-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(280px, 0.72fr) minmax(300px, 0.58fr);
  gap: 24px;
  align-items: stretch;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 80px;
}

.order-page-media,
.order-page-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.order-page-media {
  overflow: hidden;
}

.order-page-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.order-page-copy {
  padding: clamp(28px, 4vw, 48px);
}

.order-photo {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.order-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.order-copy {
  padding: clamp(28px, 5vw, 54px);
}

.order-form {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 28px;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.order-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
}

.order-form input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(31, 122, 118, 0.14);
}

.full {
  width: 100%;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.legal-page {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 62px);
}

.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
}

.legal-page a {
  color: var(--teal);
  font-weight: 900;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 12, 10, 0.86);
}

.photo-modal.is-open {
  display: grid;
}

.photo-modal img {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 24px;
  cursor: pointer;
}

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

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

  .purchase-card {
    position: static;
    grid-column: 1 / -1;
  }

  .delivery-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero-shell,
  .split-feature,
  .details-section,
  .faq-section,
  .order-page,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual {
    min-height: auto;
  }

  .hero-copy {
    order: 1;
    align-content: start;
    gap: 12px;
  }

  .hero-visual {
    order: 2;
    min-height: 0;
  }

  .purchase-card {
    order: 3;
  }

  .media-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefit-board,
  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band img {
    height: 360px;
  }

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

@media (max-width: 560px) {
  .hero-shell,
  .media-rail,
  .split-feature,
  .benefit-board,
  .image-band,
  .delivery-panel,
  .details-section,
  .faq-section,
  .order-page,
  .order-section {
    width: min(100% - 20px, 1180px);
  }

  .order-page-media img {
    min-height: 420px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.08;
  }

  .lead {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-copy {
    padding: 18px;
    gap: 10px;
  }

  .sku {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 0;
  }

  .gallery-main {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .media-rail {
    gap: 8px;
  }

  .delivery-panel {
    grid-template-columns: 1fr;
  }

  .delivery-panel div {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .delivery-panel div:last-child {
    border-bottom: 0;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
