:root {
  color-scheme: light;
  --paper: #f7f1e6;
  --paper-strong: #fffaf0;
  --ink: #151411;
  --muted: #675f55;
  --line: rgba(21, 20, 17, 0.14);
  --green: #5f7f42;
  --green-dark: #344b28;
  --clay: #a96845;
  --blue: #234f69;
  --black: #151411;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(31, 24, 15, 0.16);
  --radius: 8px;
  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(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(247, 241, 230, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(680px, calc(100svh - 126px));
  padding: clamp(32px, 4vw, 56px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.98) 0%, rgba(247, 241, 230, 0.9) 36%, rgba(247, 241, 230, 0.34) 64%),
    url("/assets/images/hero-bins.webp") center / cover no-repeat;
}

.hero-copy {
  width: min(680px, 100%);
}

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

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

h1 {
  max-width: 18ch;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.2vw, 5rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 580px;
  color: #3b362f;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero-actions,
.payment-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(21, 20, 17, 0.18);
}

.button-primary:hover:not(:disabled) {
  background: #2a2823;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  border-color: var(--line);
}

.button-wide {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 130px));
  gap: 10px;
  margin: 26px 0 0;
}

.hero-facts div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-facts dt {
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.split-section,
.buy-section,
.detail-band,
.faq-section,
.proof-section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: var(--paper-strong);
}

.section-copy,
.checkout-copy {
  max-width: 640px;
}

.section-copy p,
.checkout-copy p,
.detail-band p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.plain-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 750;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px var(--paper-strong);
}

.product-figure,
.photo-grid figure,
.checkout-panel,
.confirmation-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-figure {
  margin: 0;
  overflow: hidden;
}

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

figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-figure figcaption {
  padding: 14px 16px 16px;
}

.proof-section {
  background: #edf1e7;
}

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

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

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 24, 15, 0.12);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-grid figcaption {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 850;
}

.buy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  background: linear-gradient(135deg, #fcf8ef 0%, #f0e0d1 100%);
}

.included-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.included-strip span {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 850;
}

.checkout-panel {
  padding: clamp(20px, 3vw, 28px);
}

.checkout-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.checkout-summary strong {
  color: var(--green-dark);
  font-size: 2.2rem;
  line-height: 1;
}

.muted {
  color: var(--muted);
  font-size: 0.94rem;
}

.field {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.field small {
  color: var(--muted);
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(21, 20, 17, 0.22);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.field input:focus {
  outline: 3px solid rgba(95, 127, 66, 0.24);
  border-color: var(--green);
}

.field-help,
.secure-note,
.checkout-status {
  color: var(--muted);
  font-size: 0.92rem;
}

.field-help {
  margin: 8px 0 20px;
}

.payment-stack {
  flex-direction: column;
  align-items: stretch;
}

.paypal-buttons {
  width: 100%;
  min-height: 45px;
}

.secure-note {
  margin: 16px 0 0;
}

.checkout-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-weight: 750;
}

.checkout-status[data-tone="error"] {
  color: #8a261c;
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.detail-band p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.detail-band img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.faq-section {
  background: var(--paper-strong);
}

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

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

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: #e7ddcf;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.confirmation-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.97), rgba(247, 241, 230, 0.78)),
    url("/assets/images/hero-bins.webp") center / cover no-repeat;
}

.confirmation {
  display: grid;
  min-height: 100svh;
  align-content: center;
  gap: 26px;
  padding: clamp(22px, 5vw, 72px);
}

.confirmation-panel {
  max-width: 720px;
  padding: clamp(28px, 5vw, 54px);
}

.confirmation-panel h1 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 7vw, 5rem);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 76px;
    background:
      linear-gradient(180deg, rgba(247, 241, 230, 0.98) 0%, rgba(247, 241, 230, 0.88) 44%, rgba(247, 241, 230, 0.5) 100%),
      url("/assets/images/hero-bins.webp") 60% 50% / cover no-repeat;
  }

  h1 {
    max-width: 10ch;
  }

  .split-section,
  .buy-section,
  .detail-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 34px;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.9rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .hero-facts div {
    padding: 10px;
  }

  .hero-facts dt {
    font-size: 1.32rem;
  }

  .hero-facts dd {
    font-size: 0.78rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .buy-section,
  .split-section,
  .proof-section,
  .faq-section,
  .detail-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .checkout-panel {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
