:root {
  --ink: #092f2a;
  --ink-2: #16443f;
  --evergreen: #053b35;
  --evergreen-deep: #032a27;
  --cream: #fff4dc;
  --cream-2: #f9ebcf;
  --paper: #fffbf1;
  --gold: #e4b85c;
  --gold-deep: #bd8532;
  --leaf: #75a94d;
  --blue: #426b9f;
  --blue-deep: #27496f;
  --coral: #d96f49;
  --white: #ffffff;
  --muted: #64746e;
  --line: rgba(9, 47, 42, 0.16);
  --shadow: 0 26px 90px rgba(3, 42, 39, 0.22);
  --soft-shadow: 0 18px 50px rgba(3, 42, 39, 0.12);
  --radius: 8px;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--cream);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 42, 39, 0.92);
  box-shadow: 0 8px 32px rgba(3, 42, 39, 0.16);
  padding-block: 12px;
  backdrop-filter: blur(16px);
}

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

.brand-dog {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(228, 184, 92, 0.82);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 244, 220, 0.24), transparent 34%),
    rgba(255, 244, 220, 0.1);
  box-shadow: inset 0 0 0 5px rgba(3, 42, 39, 0.18);
}

.brand-dog svg {
  width: 42px;
  height: 42px;
}

.brand-mark-ring {
  fill: rgba(3, 42, 39, 0.36);
  stroke: var(--gold);
  stroke-width: 2;
}

.brand-mark-dog {
  fill: var(--gold);
}

.brand-mark-star {
  fill: var(--cream);
}

.brand-mark-leaf {
  fill: var(--leaf);
}

.brand-mark-vein {
  fill: none;
  stroke: var(--evergreen-deep);
  stroke-linecap: round;
  stroke-width: 2;
}

.brand-lockup strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.brand-lockup small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 244, 220, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: 0.86rem;
  font-weight: 800;
  color: rgba(255, 244, 220, 0.84);
}

.header-nav a {
  position: relative;
  padding-block: 6px;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: var(--evergreen-deep);
  background: var(--cream);
}

.btn {
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: var(--evergreen-deep);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(189, 133, 50, 0.24);
}

.btn-secondary {
  color: var(--cream);
  border-color: rgba(255, 244, 220, 0.42);
  background: rgba(255, 244, 220, 0.08);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: end;
  gap: clamp(24px, 4vw, 72px);
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 78px;
  background: var(--evergreen-deep);
  color: var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 244, 220, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 244, 220, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  opacity: 0.52;
}

.hero-copy,
.hero-products,
.hero-ribbon {
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(4.7rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 0.82;
}

.hero-lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 244, 220, 0.84);
  font-size: clamp(1.04rem, 1.5vw, 1.3rem);
  font-weight: 600;
  line-height: 1.58;
}

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

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

.hero-proof span {
  border: 1px solid rgba(255, 244, 220, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 244, 220, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-products {
  min-height: min(760px, 74vh);
}

.hero-pouch {
  position: absolute;
  bottom: -32px;
  width: min(42vw, 420px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(1, 18, 16, 0.5));
}

.hero-pouch-primary {
  right: 34%;
  z-index: 2;
  transform: rotate(-3deg);
}

.hero-pouch-secondary {
  right: 0;
  z-index: 1;
  transform: rotate(4deg) scale(0.94);
}

.hero-ribbon {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 24px;
  left: clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 780px;
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-ribbon span {
  color: var(--gold);
  text-transform: uppercase;
}

.hero-ribbon i {
  width: 48px;
  height: 1px;
  background: rgba(255, 244, 220, 0.38);
}

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

.support-strip > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-items: start;
  min-height: 148px;
  padding: 32px clamp(20px, 4vw, 52px);
  background: var(--cream);
}

.strip-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--evergreen);
}

.strip-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.support-strip strong {
  grid-column: 2;
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.support-strip p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.section,
.formula-section,
.bundle-section,
.checkout-section,
.comparison-section,
.faq-section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: block;
  max-width: 1220px;
  margin: 0 auto 42px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
  text-align: center;
}

.section-heading h2,
.formula-copy h2,
.bundle-copy h2,
.checkout-copy h2,
.faq-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.section-heading p:not(.kicker),
.formula-copy p,
.bundle-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  line-height: 1.65;
}

.section-heading h2 {
  max-width: 920px;
}

.section-heading h2 + p {
  margin-top: 20px;
}

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

.product-section .section-heading {
  max-width: 920px;
  text-align: center;
}

.product-section .section-heading h2 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(2.35rem, 4.4vw, 4.15rem);
  line-height: 1;
}

.product-section .section-heading p:not(.kicker) {
  max-width: 720px;
  margin-inline: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--soft-shadow);
}

.product-media {
  display: grid;
  place-items: end center;
  padding: 28px 18px 0;
  background: var(--evergreen);
}

.product-card-blue .product-media {
  background: var(--blue-deep);
}

.product-media img {
  width: min(100%, 300px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(3, 42, 39, 0.26));
}

.product-copy {
  align-self: center;
  padding: 34px clamp(20px, 3vw, 44px) 34px 0;
}

.product-line {
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--cream);
  background: var(--leaf);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-card-blue .product-line {
  background: var(--blue);
}

.product-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 0.94;
}

.product-flavor {
  margin: 12px 0 0;
  color: var(--ink-2);
  font-weight: 900;
  text-transform: uppercase;
}

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

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-2);
  font-weight: 800;
}

.benefit-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(5, 59, 53, 0.09);
}

.benefit-list svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--evergreen);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--evergreen);
  font-weight: 900;
}

.text-link::after {
  margin-left: 8px;
  content: "->";
}

.ingredients-section {
  background: var(--cream);
}

.ingredient-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.ingredient-main {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.ingredient-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper);
}

.ingredient-row h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.ingredient-row p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.58;
}

.ingredient-mark {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--evergreen);
}

.ingredient-mark::before,
.ingredient-mark::after {
  position: absolute;
  content: "";
}

.ingredient-mark.molecule::before {
  inset: 13px;
  border: 3px solid var(--gold);
  border-radius: 999px;
}

.ingredient-mark.molecule::after {
  top: 10px;
  left: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 27px 3px 0 var(--gold), 19px 31px 0 var(--gold);
}

.ingredient-mark.joint::before {
  top: 14px;
  left: 21px;
  width: 14px;
  height: 28px;
  border: 3px solid var(--gold);
  border-radius: 999px;
}

.ingredient-mark.joint::after {
  top: 25px;
  left: 11px;
  width: 34px;
  height: 3px;
  background: var(--gold);
}

.ingredient-mark.shield {
  background: var(--blue-deep);
}

.ingredient-mark.shield::before {
  top: 11px;
  left: 16px;
  width: 24px;
  height: 28px;
  border: 3px solid var(--gold);
  border-radius: 12px 12px 16px 16px;
  transform: perspective(20px) rotateX(-8deg);
}

.ingredient-mark.shield::after {
  top: 25px;
  left: 25px;
  width: 7px;
  height: 14px;
  border-radius: 999px 999px 0 999px;
  background: var(--gold);
  transform: rotate(32deg);
}

.label-panel {
  align-self: stretch;
  border-radius: var(--radius);
  padding: 28px;
  color: var(--cream);
  background: var(--evergreen);
  box-shadow: var(--shadow);
}

.panel-label {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.label-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 244, 220, 0.18);
}

.label-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 244, 220, 0.18);
}

.label-panel dt {
  font-weight: 900;
}

.label-panel dd {
  margin: 0;
  color: rgba(255, 244, 220, 0.82);
  font-weight: 700;
  text-align: right;
}

.fine-print {
  margin: 22px 0 0;
  color: rgba(255, 244, 220, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.formula-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  min-height: 760px;
  overflow: hidden;
}

.formula-green {
  background: #eff6e7;
}

.formula-blue {
  background: #edf3fb;
}

.formula-copy {
  max-width: 580px;
}

.formula-copy p:not(.kicker) {
  margin-top: 22px;
}

.formula-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.formula-pills span {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 900;
}

.formula-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
}

.formula-images img {
  width: 100%;
  max-height: 740px;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(3, 42, 39, 0.18));
}

.formula-images img:nth-child(2) {
  transform: translateY(42px);
}

.bundle-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(540px, 0.82fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: 760px;
  color: var(--cream);
  background: var(--evergreen-deep);
}

.bundle-copy h2 {
  color: var(--cream);
}

.bundle-copy p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 244, 220, 0.78);
}

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

.bundle-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.bundle-list li::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.bundle-offer {
  border: 1px solid rgba(255, 244, 220, 0.18);
  border-radius: var(--radius);
  padding: clamp(14px, 2vw, 18px);
  background: rgba(255, 244, 220, 0.06);
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 342px;
  border: 1px solid rgba(255, 244, 220, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(3, 42, 39, 0.42);
}

.offer-card-featured {
  border-color: rgba(228, 184, 92, 0.74);
  background:
    linear-gradient(180deg, rgba(228, 184, 92, 0.14), rgba(3, 42, 39, 0.48)),
    rgba(3, 42, 39, 0.48);
  box-shadow: 0 22px 50px rgba(1, 18, 16, 0.26);
}

.offer-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(228, 184, 92, 0.24), 0 22px 50px rgba(1, 18, 16, 0.26);
}

.offer-badge {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--evergreen-deep);
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-offer h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  color: var(--cream);
}

.price-line span {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.4vw, 4.2rem);
  font-weight: 800;
  line-height: 0.9;
}

.price-line s {
  color: rgba(255, 244, 220, 0.72);
  font-size: 1.3rem;
  font-weight: 900;
}

.offer-copy {
  margin: 10px 0 18px;
  color: rgba(255, 244, 220, 0.76);
  font-weight: 700;
  line-height: 1.55;
}

.offer-card .btn {
  width: 100%;
  margin-top: auto;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 244, 220, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.checkout-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.82), rgba(255, 251, 241, 0.96)),
    var(--paper);
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(560px, 0.84fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.checkout-copy {
  position: sticky;
  top: 110px;
}

.checkout-copy h2 {
  color: var(--ink);
}

.checkout-copy > p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.65;
}

.checkout-steps {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: checkout-step;
}

.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
  font-weight: 900;
}

.checkout-steps li::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--evergreen-deep);
  background: var(--gold);
  content: counter(checkout-step);
  counter-increment: checkout-step;
}

.checkout-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.checkout-card h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.checkout-card-head span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--evergreen-deep);
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-fields {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.checkout-fields.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-fields.three-column {
  grid-template-columns: 1.4fr 0.55fr 0.45fr;
}

.checkout-fields label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-fields input,
.checkout-fields select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(9, 47, 42, 0.2);
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.96rem;
  font-weight: 750;
  text-transform: none;
}

.checkout-fields input:focus,
.checkout-fields select:focus {
  outline: 3px solid rgba(228, 184, 92, 0.38);
  border-color: rgba(189, 133, 50, 0.64);
}

.address-lookup-status {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: none;
}

.address-suggestions-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% - 2px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 47, 42, 0.18);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  box-shadow: 0 18px 36px rgba(3, 42, 39, 0.16);
  text-transform: none;
}

.address-suggestion {
  display: grid;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(9, 47, 42, 0.08);
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.address-suggestion:hover,
.address-suggestion:focus-visible {
  outline: none;
  background: rgba(228, 184, 92, 0.16);
}

.address-suggestion span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.address-suggestion-credit {
  padding: 9px 14px;
  color: var(--muted);
  background: rgba(9, 47, 42, 0.03);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: right;
}

.checkout-fields label.is-disabled {
  opacity: 0.58;
}

.checkout-fields label.is-disabled select {
  cursor: not-allowed;
}

.full-field,
.wide-field {
  grid-column: 1 / -1;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  border: 1px solid rgba(9, 47, 42, 0.13);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(5, 59, 53, 0.04);
}

.summary-line,
.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-2);
  font-weight: 850;
}

.summary-line.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.summary-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.2rem;
}

.summary-total strong {
  font-family: var(--serif);
  font-size: 2rem;
}

.payment-preview {
  margin-top: 20px;
  border: 1px solid rgba(9, 47, 42, 0.13);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--cream);
}

.payment-preview .form-note {
  color: var(--muted);
}

.checkout-submit {
  width: 100%;
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

.checkout-confirmation {
  margin-top: 18px;
  border: 1px solid rgba(117, 169, 77, 0.42);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--ink);
  background: rgba(117, 169, 77, 0.13);
}

.checkout-confirmation strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.checkout-confirmation p {
  margin: 0;
  color: var(--ink-2);
  font-weight: 700;
  line-height: 1.5;
}

.funnel-page,
.payment-page {
  min-height: 100svh;
  background: var(--paper);
}

.funnel-header,
.payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--cream);
  background: var(--evergreen-deep);
  border-bottom: 1px solid rgba(255, 244, 220, 0.12);
}

.funnel-back,
.payment-back {
  color: rgba(255, 244, 220, 0.76);
  font-size: 0.88rem;
  font-weight: 900;
}

.funnel-main,
.payment-main,
.thank-you-main {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 244, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 244, 220, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--evergreen-deep) 0 660px, var(--paper) 660px);
  background-size: 42px 42px, 42px 42px, auto;
}

.funnel-main {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(70px, 8vw, 112px);
}

.funnel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(340px, 0.4fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.funnel-copy {
  max-width: 760px;
  color: var(--cream);
}

.funnel-copy h1,
.payment-hero h1,
.thank-you-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
}

.funnel-copy h1,
.payment-hero h1 {
  color: var(--white);
}

.thank-you-card h1 {
  color: var(--ink);
}

.funnel-copy > p,
.payment-hero p,
.thank-you-card > p {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.65;
}

.funnel-copy > p,
.payment-hero p {
  color: rgba(255, 244, 220, 0.78);
}

.thank-you-card > p {
  color: var(--muted);
}

.checkout-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.checkout-progress span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 244, 220, 0.22);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 244, 220, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
}

.checkout-progress span::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.checkout-progress .is-active {
  color: var(--evergreen-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.funnel-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.funnel-highlights span {
  border: 1px solid rgba(255, 244, 220, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 244, 220, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
}

.order-summary-card,
.address-card,
.thank-you-card,
.payment-form,
.payment-summary {
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.order-summary-card {
  position: sticky;
  top: 24px;
  grid-column: 2;
  grid-row: 1 / span 2;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 220, 0.16);
  padding: 24px;
  color: var(--cream);
  background:
    radial-gradient(circle at 28% 18%, rgba(228, 184, 92, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 244, 220, 0.08), rgba(3, 42, 39, 0.12)),
    var(--evergreen);
}

.order-summary-top {
  display: grid;
  gap: 8px;
}

.order-summary-top strong,
.payment-summary h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.98;
}

.order-summary-top strong {
  color: var(--white);
}

.order-summary-top span,
.address-card-head span,
.payment-card-head span {
  justify-self: start;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--evergreen-deep);
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-summary-card .panel-label,
.payment-summary .panel-label {
  color: var(--gold);
}

.order-mini-products {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  margin: 16px -6px 8px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 90%, rgba(255, 251, 241, 0.9), transparent 52%),
    linear-gradient(180deg, rgba(255, 244, 220, 0.16), rgba(255, 244, 220, 0.04));
}

.order-mini-products img {
  position: absolute;
  bottom: 6px;
  z-index: 1;
  width: auto;
  max-width: min(46%, 170px);
  height: calc(100% - 12px);
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(1, 18, 16, 0.32));
}

.order-mini-products.is-single img {
  left: 50%;
  z-index: 2;
  max-width: min(58%, 220px);
  transform: translateX(-50%);
}

.order-mini-products.is-duo img:first-child {
  left: 13%;
}

.order-mini-products.is-duo img:last-child {
  right: 10%;
}

.order-mini-products.is-triple img {
  max-width: min(41%, 150px);
}

.order-mini-products.is-triple img:nth-child(1) {
  left: 5%;
  transform: rotate(-4deg) scale(0.92);
}

.order-mini-products.is-triple img:nth-child(2) {
  left: 31%;
  z-index: 3;
  transform: scale(1.05);
}

.order-mini-products.is-triple img:nth-child(3) {
  right: 5%;
  transform: rotate(4deg) scale(0.92);
}

.order-summary-card .checkout-summary {
  margin-top: 16px;
  border: 0;
  border-top: 1px solid rgba(255, 244, 220, 0.2);
  border-radius: 0;
  padding: 16px 0 0;
  background: transparent;
}

.order-summary-card .summary-line,
.order-summary-card .summary-total {
  color: rgba(255, 244, 220, 0.88);
}

.order-summary-card .summary-line.muted {
  color: rgba(255, 244, 220, 0.66);
}

.order-summary-card .summary-total {
  border-top-color: rgba(255, 244, 220, 0.2);
  color: var(--white);
}

.address-card {
  grid-column: 1;
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 34px);
  color: var(--ink);
  background: var(--white);
}

.address-card-head,
.payment-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.address-card-head h2,
.payment-card-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.95;
}

.address-autocomplete {
  position: relative;
}

.funnel-disclaimer,
.payment-terms {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.payment-main {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px) 82px;
}

.payment-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  width: min(100%, 1220px);
  margin: 0 auto;
  color: var(--cream);
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.payment-form {
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 34px);
  background: var(--white);
}

.express-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--cream);
}

.express-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.express-button {
  min-height: 48px;
  border: 1px solid rgba(9, 47, 42, 0.14);
  border-radius: 999px;
  color: var(--evergreen-deep);
  background: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 900;
}

.express-button.paypal {
  color: #083a56;
  background: #d8f0ff;
}

.express-button.shop {
  color: #2b1742;
  background: #efe3ff;
}

.safe-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(117, 169, 77, 0.28);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--ink-2);
  background: rgba(117, 169, 77, 0.11);
  font-size: 0.8rem;
  font-weight: 900;
}

.safe-panel strong {
  margin-right: auto;
}

.safe-panel span {
  color: var(--muted);
}

.payment-field {
  display: grid;
  gap: 9px;
}

.payment-field label {
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-field label a {
  color: var(--gold-deep);
  text-decoration: underline;
}

.payment-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(9, 47, 42, 0.2);
  border-radius: var(--radius);
  padding: 0 15px;
  color: var(--ink);
  background: var(--paper);
  font-size: 1rem;
  font-weight: 800;
}

.payment-field input:focus {
  outline: 3px solid rgba(228, 184, 92, 0.38);
  border-color: rgba(189, 133, 50, 0.64);
}

.payment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.discount-pill {
  justify-self: center;
  border-radius: 999px;
  padding: 9px 22px;
  color: var(--evergreen-deep);
  background: rgba(228, 184, 92, 0.3);
  font-weight: 900;
}

.payment-submit {
  justify-self: stretch;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.payment-summary {
  position: sticky;
  top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 220, 0.16);
  padding: 24px;
  color: var(--cream);
  background: var(--evergreen);
}

.payment-summary h2 {
  margin: 0;
  color: var(--white);
}

.payment-summary p {
  margin: 8px 0 12px;
  color: rgba(255, 244, 220, 0.72);
  font-weight: 800;
}

.payment-summary dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 244, 220, 0.2);
}

.payment-summary dl > div {
  display: grid;
  gap: 4px;
}

.payment-summary dt {
  color: rgba(255, 244, 220, 0.58);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-summary dd {
  margin: 0;
  color: var(--cream);
  font-weight: 800;
  line-height: 1.4;
}

.thank-you-main {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 84px);
  padding: clamp(34px, 6vw, 72px) 18px;
}

.thank-you-card {
  width: min(100%, 760px);
  border: 1px solid var(--line);
  padding: clamp(24px, 5vw, 54px);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.thank-you-card .btn {
  margin-top: 24px;
}

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

.comparison-table {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--soft-shadow);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 1.35fr 0.9fr;
}

.comparison-table [role="cell"],
.comparison-table [role="columnheader"] {
  min-width: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.comparison-table [role="columnheader"] {
  color: var(--cream);
  background: var(--evergreen);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-table [role="row"]:last-child [role="cell"] {
  border-bottom: 0;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

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

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--cream);
  background: var(--evergreen-deep);
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 244, 220, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

.footer-brand .brand-dog {
  background: rgba(255, 244, 220, 0.08);
}

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

  .header-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-top: 116px;
  }

  .hero-products {
    min-height: 620px;
  }

  .hero-pouch {
    width: min(56vw, 430px);
  }

  .hero-pouch-primary {
    right: 42%;
  }

  .hero-pouch-secondary {
    right: 10%;
  }

  .product-grid,
  .ingredient-layout,
  .formula-section,
  .bundle-section,
  .checkout-shell,
  .funnel-grid,
  .payment-hero,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .checkout-copy {
    position: static;
  }

  .order-summary-card,
  .address-card {
    grid-column: auto;
    grid-row: auto;
  }

  .order-summary-card,
  .payment-summary {
    position: static;
  }

  .formula-section {
    min-height: auto;
  }

  .formula-copy {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-lockup small,
  .header-cta {
    display: none;
  }

  .brand-dog {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 88px 18px 34px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 5.4rem);
    max-width: 520px;
  }

  .hero-lede {
    font-size: 1rem;
    margin-top: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
  }

  .hero-products {
    min-height: clamp(390px, 105vw, 480px);
    margin-top: 24px;
  }

  .hero-pouch {
    bottom: 0;
    width: min(54vw, 260px);
  }

  .hero-pouch-primary {
    right: 42%;
  }

  .hero-pouch-secondary {
    right: 0;
  }

  .hero-ribbon {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 14px;
    flex-wrap: wrap;
  }

  .hero-proof {
    display: none;
  }

  .support-strip {
    grid-template-columns: 1fr;
  }

  .section,
  .formula-section,
  .bundle-section,
  .checkout-section,
  .comparison-section,
  .faq-section {
    padding: 58px 18px;
  }

  .bundle-section {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-media {
    min-height: 420px;
    padding-top: 24px;
  }

  .product-media img {
    max-height: 390px;
  }

  .product-copy {
    padding: 28px 22px 30px;
  }

  .ingredient-row {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .ingredient-mark {
    width: 44px;
    height: 44px;
  }

  .ingredient-mark.molecule::before {
    inset: 11px;
  }

  .ingredient-mark.molecule::after {
    top: 8px;
    left: 8px;
    box-shadow: 21px 2px 0 var(--gold), 15px 25px 0 var(--gold);
  }

  .ingredient-mark.joint::before {
    top: 11px;
    left: 16px;
  }

  .ingredient-mark.joint::after {
    top: 22px;
    left: 8px;
    width: 28px;
  }

  .ingredient-mark.shield::before {
    top: 9px;
    left: 12px;
    width: 20px;
    height: 23px;
  }

  .ingredient-mark.shield::after {
    top: 21px;
    left: 20px;
  }

  .formula-images {
    gap: 8px;
  }

  .formula-images img:nth-child(2) {
    transform: translateY(24px);
  }

  .offer-options {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 0;
  }

  .checkout-card {
    padding: 18px;
  }

  .checkout-card-head {
    display: grid;
  }

  .checkout-fields.two-column,
  .checkout-fields.three-column {
    grid-template-columns: 1fr;
  }

  .funnel-header,
  .payment-header {
    padding: 12px 16px;
  }

  .funnel-back,
  .payment-back {
    font-size: 0.78rem;
  }

  .funnel-main {
    padding: 38px 18px 58px;
  }

  .order-summary-card {
    order: 2;
  }

  .address-card {
    order: 3;
  }

  .order-mini-products {
    min-height: 190px;
  }

  .payment-main {
    padding: 24px 18px 58px;
  }

  .express-panel,
  .safe-panel {
    padding: 22px 16px;
  }

  .safe-title {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .safe-title span:last-child {
    display: none;
  }

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

  .payment-field input {
    min-height: 60px;
  }

  .summary-line,
  .summary-total {
    align-items: flex-start;
  }

  .comparison-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table [role="row"] {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
  }

  .comparison-table [role="cell"] {
    border-bottom: 1px solid var(--line);
  }

  .comparison-table .comparison-head {
    display: none;
  }

  .site-footer {
    display: grid;
    text-align: left;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 3.45rem;
  }

  .hero-products {
    min-height: clamp(390px, 108vw, 440px);
  }

  .hero-pouch {
    width: min(55vw, 238px);
  }

  .hero-pouch-primary {
    right: 39%;
  }

  .hero-pouch-secondary {
    right: -2%;
  }

  .support-strip > div {
    grid-template-columns: 40px 1fr;
    padding: 26px 18px;
  }
}
