:root {
  --ink: #17332f;
  --ink-soft: #31514c;
  --cream: #fff7f0;
  --paper: #ffffff;
  --mist: #e9f0ed;
  --mint: #d8ebe2;
  --orange: #f47a3c;
  --gold: #f4b642;
  --line: #d8e0dc;
  --shadow: 0 18px 45px rgba(23, 51, 47, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 240, 0.9);
  border-bottom: 1px solid rgba(23, 51, 47, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 750;
}

.button,
button.button {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 8px;
  background: var(--orange);
  color: #24150e;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(244, 122, 60, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 34px;
  display: grid;
  gap: 28px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 10vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 6vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 3.5vw, 1.28rem);
}

.hero-copy {
  display: grid;
  align-content: center;
}

.hero-actions,
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 700;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.hero-media {
  position: relative;
}

.hero-media img,
.photo-band img,
.detail-photo,
.offer-product-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 4 / 3;
}

.media-note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
}

.trust-strip {
  background: var(--ink);
  color: var(--cream);
}

.trust-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 800;
}

section {
  scroll-margin-top: 84px;
}

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

.section-intro {
  max-width: 720px;
  margin-bottom: 26px;
}

.benefit-grid,
.feature-grid,
.review-grid,
.policy-grid {
  display: grid;
  gap: 14px;
}

.benefits-split {
  display: grid;
  gap: 22px;
  align-items: center;
}

.benefits-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.benefit-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(23, 51, 47, 0.06);
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 14px;
  color: var(--orange);
  font-weight: 950;
}

.benefit,
.feature,
.review,
.offer-card,
.faq details,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(23, 51, 47, 0.07);
}

.benefit,
.feature,
.policy-card {
  padding: 18px;
}

.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
  border-radius: 6px;
  object-fit: cover;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 950;
}

.split {
  display: grid;
  gap: 24px;
  align-items: center;
}

.photo-band {
  background: var(--mist);
}

.photo-band .split {
  padding: 56px 0;
}

.feature-grid {
  margin-top: 26px;
}

.gallery-section {
  padding-top: 34px;
}

.image-gallery {
  display: grid;
  gap: 14px;
}

.image-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.image-gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.included-section {
  padding-top: 34px;
}

.included-layout,
.fit-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

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

.included-list li {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
}

.included-list strong {
  color: var(--ink);
}

.included-visual,
.fit-diagram {
  position: relative;
}

.included-visual img,
.fit-diagram img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.included-visual img {
  aspect-ratio: 4 / 3;
}

.included-callout,
.measure {
  position: absolute;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 6px 18px rgba(23, 51, 47, 0.16);
}

.callout-straps {
  top: 12px;
  right: 12px;
}

.callout-anchors {
  left: 12px;
  bottom: 50px;
}

.callout-flaps {
  right: 14px;
  bottom: 14px;
}

.fit-section {
  padding-top: 34px;
}

.measurement-card {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.measurement-card > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(23, 51, 47, 0.06);
}

.measurement-card span {
  display: block;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.measurement-card strong {
  display: block;
  margin: 4px 0;
  font-size: 2.35rem;
  line-height: 1;
}

.measurement-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.fit-diagram img {
  aspect-ratio: 4 / 3;
}

.measure-width {
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
}

.measure-length {
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.pet-collage-section .split {
  gap: 32px;
}

.collage-photo {
  aspect-ratio: 1 / 1;
  border: 6px solid #fff;
}

.collage-points {
  margin-top: 20px;
  grid-template-columns: 1fr;
}

.fit-note {
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: #fff;
  border-radius: 8px;
}

.offers {
  background: #f8efe7;
}

.offer-layout {
  display: grid;
  gap: 16px;
}

.offer-trust {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.offer-trust > div {
  padding: 13px 14px;
  border: 1px solid rgba(23, 51, 47, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(23, 51, 47, 0.05);
}

.offer-trust strong,
.offer-trust span {
  display: block;
}

.offer-trust strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.offer-trust span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.offer-card {
  position: relative;
  padding: 22px;
}

.offer-product-image {
  aspect-ratio: 3 / 2;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(23, 51, 47, 0.12);
}

.offer-card.highlight {
  border: 2px solid rgba(244, 122, 60, 0.72);
  background: #fffdf9;
  box-shadow: 0 18px 46px rgba(244, 122, 60, 0.16);
}

.bundle-offer {
  overflow: hidden;
}

.deal-ribbon {
  position: absolute;
  top: 14px;
  right: -38px;
  z-index: 1;
  width: 150px;
  padding: 7px 0;
  transform: rotate(32deg);
  background: var(--orange);
  color: #24150e;
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 8px 16px rgba(244, 122, 60, 0.22);
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.price {
  margin: 0 0 4px;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 950;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: end;
}

.compare-price {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.compare-price span {
  color: #8c5a45;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.per-unit {
  display: inline-flex;
  margin: 4px 0 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.muted {
  color: var(--ink-soft);
}

.offer-list {
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  margin: 9px 0;
  padding-left: 24px;
  position: relative;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 950;
}

.checkout-notice {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 122, 60, 0.4);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 750;
}

.review {
  padding: 18px;
}

.customer-photo-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 38px;
}

.customer-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.customer-photo-grid figcaption {
  display: grid;
  gap: 4px;
  padding: 12px 13px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 850;
}

.customer-photo-grid figcaption strong {
  color: var(--ink);
}

.customer-photo-grid figcaption span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-intro {
  margin-bottom: 18px;
}

.reviewer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.reviewer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(23, 51, 47, 0.18);
}

.quote {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.final-cta {
  padding: 48px 0;
  background: var(--ink);
  color: var(--cream);
}

.final-cta-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 22px;
  align-items: center;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta .section-label {
  color: var(--orange);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.final-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.final-trust span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 247, 240, 0.22);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 850;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 30px 0;
  background: var(--ink);
  color: var(--cream);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.footer-links a {
  color: var(--cream);
  font-weight: 750;
}

.policy-page {
  background: var(--cream);
}

.policy-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 70px;
}

.policy-main h1 {
  font-size: clamp(2rem, 8vw, 3.6rem);
}

.policy-main article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.policy-main h2 {
  margin-top: 28px;
  font-size: 1.35rem;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    padding: 76px 0 74px;
  }

  .trust-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefit-grid,
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-split {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .split,
  .included-layout,
  .fit-layout,
  .final-cta-inner,
  .offer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-trust {
    grid-template-columns: repeat(4, 1fr);
  }

  .measurement-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid,
  .policy-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .customer-photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .image-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 420px) {
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .brand img {
    width: 128px;
  }

  .button.small {
    min-width: 88px;
  }
}
