:root {
  color-scheme: light;
  --bg: #FFFBF7;
  --panel: #FFFBF7;
  --panel-strong: #ffffff;
  --text: #121110;
  --muted: #5e5b55;
  --accent: #445b45;
  --accent-strong: #6d8468;
  --accent-soft: #e7efe4;
  --brand-orange: #ff741f;
  --logo-orange: #FF7620;
  --brand-button-color: #E06D53;
  --brand-button-hover: #C85B43;
  --check-green: #34A853;
  --rating-star-color: #FFD700;
  --rating-star-empty-color: #d8d2cc;
  --border: rgba(47, 63, 49, 0.16);
  --shadow: 0 20px 45px rgba(20, 19, 17, 0.08);
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-hero: clamp(2.5rem, 4.4vw, 4rem);
  --text-page-title: clamp(2.25rem, 3.9vw, 3.5rem);
  --text-section-title: clamp(1.875rem, 3.25vw, 3rem);
  --text-product-title: clamp(1.3125rem, 1.8vw, 1.75rem);
  --text-body: clamp(0.9375rem, 0.15vw + 0.9rem, 1rem);
  --text-small: clamp(0.6875rem, 0.25vw + 0.65rem, 0.875rem);
  --tracking-heading: -0.025em;
  --tracking-eyebrow: 0.16em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
p,
span,
.sub-heading,
.subtitle,
.description,
input,
button,
textarea,
select {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

p,
span,
.sub-heading,
.subtitle,
.description {
  color: #333333 !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #FFFBF7;
  line-height: 1.75;
  overflow-x: hidden;
  animation: pageFade 0.9s ease both;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section[id] {
  scroll-margin-top: 90px;
}

.container {
  width: min(1400px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(251, 248, 242, 0.86);
  border-bottom: 1px solid var(--border);
  animation: headerSlide 0.7s ease both;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  position: relative;
  min-height: 90px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header .brand img {
  height: 84px;
  width: auto;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(17, 17, 17, 0.12));
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #d85c27 !important;
  transform: translateY(-1px);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: #d85c27 !important;
}

.hero-inner {
  width: min(1400px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(88vh, 92vh, 95vh);
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.hero-content {
  max-width: 680px;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: #fdf7f1;
  text-align: left;
  position: relative;
  z-index: 1;
}

.hero-brand-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 0.3rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.16));
}

.hero-title {
  margin: 0;
  color: #1A1A1A !important;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.hero-subtitle {
  margin: 0 0 0.55rem;
  margin-top: 0.3rem;
  color: #2B2B2B !important;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
  word-spacing: 0.06em;
  max-width: 520px;
  text-align: left;
}

.hero-description {
  margin: 0;
  color: #1A1A1A !important;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.9;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.8rem;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--brand-button-color);
  background-color: var(--brand-button-color) !important;
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.hero-button:hover,
.hero-button:focus,
.hero-button:active {
  transform: translateY(-2px);
  background-color: var(--brand-button-hover) !important;
  color: #FFFFFF !important;
  border-color: var(--brand-button-hover);
}

.hero-trust-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  width: fit-content;
  max-width: min(100%, 520px);
  gap: 1.25rem;
  margin-top: 0.4rem;
}

.hero-rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 0.2vw + 14px, 16px);
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-rating-stars {
  color: var(--rating-star-color) !important;
  letter-spacing: 0.08em;
}

.hero-rating-line span {
  font-weight: 600 !important;
}

.hero-trust-row {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
}

.hero-trust-features {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 0.25vw + 14px, 16px);
  font-weight: 500;
  line-height: 1.4;
}

.hero-trust-features li > span {
  font-weight: 500 !important;
}

.hero-trust-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--logo-orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero.hero-home {
  position: relative;
  background-color: #f5ebe3;
  background-image: url('assets/Final Hero image (2).png');
  background-size: cover;
  background-position: right 55%;
  background-repeat: no-repeat;
  min-height: 85vh;
  padding: 0;
  overflow: hidden;
}

.hero.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.hero.hero-home .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 85vh;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.hero.hero-home .hero-content {
  max-width: 660px;
  padding: 0;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .hero-content {
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 17px;
  }

}

@media (max-width: 768px) {
  .hero.hero-home {
    min-height: auto;
  }

  .hero.hero-home .hero-inner {
    min-height: auto;
    padding: 3.25rem 0 3.75rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 2.25rem 0 2.75rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero-brand-logo {
    margin: 0 auto 0.25rem;
  }

  .hero-title {
    font-size: clamp(2.55rem, 7.8vw, 3.3rem);
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-button {
    width: min(100%, 320px);
  }

  .hero-trust-row {
    max-width: 100%;
  }

  .hero-trust-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--logo-orange) !important;
  margin-bottom: 0.35rem;
  font-weight: 700 !important;
  opacity: 1;
  position: relative;
  line-height: 1.25;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  background: var(--logo-orange);
  flex-shrink: 0;
}

.hero .eyebrow {
  color: var(--logo-orange) !important;
  margin-bottom: 0.2rem;
}

.hero .eyebrow::before {
  background: var(--logo-orange);
}

h1, h2, h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: var(--tracking-heading);
}

h1 {
  font-size: var(--text-page-title);
  color: #171512;
}

h2 {
  font-size: var(--text-section-title);
  color: #171512;
}

h3 {
  color: #1c1a17;
}

.hero-copy h1 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.15rem;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.section-heading,
.details-intro,
.story-copy,
.story-body-grid,
.product-about-section {
  color: #171512;
}

.section-heading.reveal,
.details-intro.reveal,
.story-copy.reveal,
.story-body-grid.reveal,
.product-about-section.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.section-heading h2,
.details-intro h2,
.story-copy h1,
.story-body-grid h2,
.product-about-section h2 {
  color: #171512 !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
  text-shadow: none !important;
  opacity: 1 !important;
  display: block !important;
  position: relative !important;
  z-index: 1;
  filter: none !important;
  backdrop-filter: none !important;
  font-size: 42px !important;
  line-height: 1.15 !important;
}

.section-heading > h2,
.details-intro > h2,
.story-copy > h1,
.story-body-grid > h2,
.product-about-section > h2 {
  font-size: 42px !important;
  line-height: 1.15 !important;
}

@media (max-width: 768px) {
  .section-heading > h2,
  .details-intro > h2,
  .story-copy > h1,
  .story-body-grid > h2,
  .product-about-section > h2 {
    font-size: 30px !important;
    line-height: 1.15 !important;
  }

  .eyebrow {
    font-size: 0.84rem !important;
    letter-spacing: 0.2em !important;
  }
}

.hero-subheading {
  color: #ffd9bf;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 2.45vw, 2.18rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0.2rem 0 0.8rem;
  line-height: 1.25;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.hero-text {
  color: #f4f0eb;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.9;
  margin: 0;
  max-width: 620px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.2rem;
  align-items: center;
}

.hero-actions .btn {
  min-height: 56px;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero-actions .btn-primary {
  background: var(--brand-button-color);
  color: #ffffff;
  border-color: var(--brand-button-color);
}

.hero-actions .btn-secondary {
  background: transparent;
  color: var(--brand-button-color) !important;
  border: 1.5px solid var(--brand-button-color);
  font-weight: 700;
}

.hero-actions .btn-secondary:hover {
  background: var(--brand-button-color) !important;
  color: #ffffff !important;
  border-color: var(--brand-button-color) !important;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4f0eb;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero-features li:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.stars {
  color: var(--rating-star-color) !important;
  letter-spacing: 0.14em;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 24px rgba(224, 109, 83, 0.18);
}

.btn-primary {
  background: var(--brand-button-color);
  color: #ffffff;
  border-color: var(--brand-button-color);
  box-shadow: 0 10px 24px rgba(224, 109, 83, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active {
  background: var(--brand-button-hover);
  color: #ffffff;
  border-color: var(--brand-button-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-button-color);
  border: 1.5px solid var(--brand-button-color);
  font-weight: 700;
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-secondary:active {
  background: var(--brand-button-color);
  color: #ffffff;
  border-color: var(--brand-button-color);
}

.btn:disabled,
.btn[aria-disabled="true"],
.hero-button[aria-disabled="true"] {
  background: #d8d2cc !important;
  color: #6f6a64 !important;
  border-color: #d8d2cc !important;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}


.product-detail-copy .btn-primary {
  color: #ffffff;
}

.product-detail-copy .btn-secondary {
  color: var(--brand-button-color);
}

.product-detail-copy .btn-primary:hover,
.product-detail-copy .btn-secondary:hover {
  color: #ffffff;
}

.section {
  padding: 6.5rem 0;
}

.section-alt {
  background: #FFFBF7;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clean-beauty-section .section-heading,
#our-promise .section-heading,
#how-it-works .section-heading {
  margin-bottom: 2rem;
}

.clean-beauty-section .section-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.clean-beauty-section .section-heading .eyebrow {
  justify-content: center;
}

.clean-beauty-section .section-heading > p:last-child {
  max-width: 680px;
  margin: 0.9rem auto 0;
}

.clean-beauty-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.clean-beauty-value-card {
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid rgba(224, 109, 83, 0.28);
  border-radius: 1.25rem;
  background: #FFFBF7;
  box-shadow: 0 12px 30px rgba(20, 19, 17, 0.045);
}

.clean-beauty-value-card h3 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 0.35vw + 1.15rem, 1.375rem);
  font-weight: 700;
  line-height: 1.25;
}

.clean-beauty-value-card p {
  margin: 0;
  color: var(--muted) !important;
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.15vw + 0.9rem, 1rem);
  font-weight: 400;
  line-height: 1.65;
}

.checklist-grid,
.promise-grid,
.how-it-works-grid {
  display: grid;
  gap: 1rem;
}

.checklist-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .clean-beauty-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clean-beauty-value-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .clean-beauty-values {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .clean-beauty-value-card:last-child {
    grid-column: auto;
  }
}

.promise-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.how-it-works-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checklist-item,
.promise-pill,
.premium-checklist-item,
.product-subcomponent,
.story-feature-badge,
.review-trust-badges span {
  padding: 1rem 1.1rem;
  border-radius: 1.45rem;
  background: #fff8f1;
  border: 1px solid var(--brand-button-color);
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
  box-shadow: none;
  min-width: 0;
}

.checklist-item,
.promise-pill,
.premium-checklist-item,
.story-feature-badge,
.review-trust-badges span {
  display: flex;
  align-items: center;
}

.checklist-item::before,
.promise-pill::before {
  content: "✓ ";
  color: var(--check-green);
  flex-shrink: 0;
}

.how-card {
  background: #fff9f5;
  border: 1px solid rgba(255, 116, 31, 0.16);
  border-radius: 1.6rem;
  padding: 1.75rem 1.5rem;
}

.how-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.how-card ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.how-card li {
  margin-bottom: 0.8rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading p {
  margin: 0.65rem auto 0;
}

.section-subtitle {
  max-width: 700px;
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.product-card,
.review-card,
.contact-card,
.benefit-card,
.instagram-card,
.faq-list details,
.story-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.45rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover,
.review-card:hover,
.contact-card:hover,
.benefit-card:hover,
.instagram-card:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(9, 10, 8, 0.12);
  border-color: rgba(68, 91, 69, 0.26);
}

.product-card {
  padding: 1.2rem;
  border-radius: 1.75rem;
  background: #fff9f5;
  border: 1px solid rgba(255, 116, 31, 0.14);
  box-shadow: 0 18px 42px rgba(43, 36, 28, 0.06);
}

.product-media {
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, #fff4eb 0%, #fffdf9 100%);
  border: 1px solid rgba(255, 116, 31, 0.08);
  min-height: 300px;
  margin-bottom: 1.2rem;
}

.product-media img {
  width: min(100%, 260px);
  height: 260px;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 2.75rem;
  padding: 0.58rem 0.85rem;
  font-family: var(--font-body) !important;
  font-size: 0.78rem;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
  color: #d85c27 !important;
  font-weight: 700 !important;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
}

.product-body h3 {
  margin: 0;
  font-size: 1.45rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.2rem;
}

.price {
  font-size: 1.08rem;
  font-weight: 700;
  color: #000000;
}

.product-card .price {
  color: #000000;
}

.review-link {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.review-link:hover {
  color: var(--accent);
}

.product-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.product-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.product-features {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #333333;
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}

.feature-check-icon,
.product-check,
.premium-check-icon {
  color: var(--check-green) !important;
}

.product-check {
  font-weight: 800 !important;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.product-note {
  margin-top: 1rem;
  color: #1b2b1b;
}

.product-note {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.7;
}

.product-subcomponents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.product-subcomponent h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.product-body h3 {
  color: #1A1A1A;
}

.product-subcomponent h4 {
  color: var(--logo-orange);
}

.product-detail-copy > h1 {
  color: #1A1A1A;
}

.product-subcomponent p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.buy-link {
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
}

.details-section {
  padding: 4.5rem 0;
}

.details-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.details-intro p:last-child {
  color: var(--muted);
  max-width: 560px;
}

.detail-accordion {
  display: grid;
  gap: 0.85rem;
}

.detail-accordion details,
.product-about-section {
  padding: 1rem 1.15rem;
  border-radius: 1.15rem;
  background: #FFFAF4;
  border: 1px solid #FF7A38;
  box-shadow: 0 12px 30px rgba(8, 8, 8, 0.05);
}

.detail-accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: #121110;
  list-style: none;
}

.detail-accordion summary::-webkit-details-marker {
  display: none;
}

.detail-accordion p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.benefits-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.benefit-card,
.feature-card {
  padding: 2rem 1.6rem;
  min-height: 220px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1.7rem;
}

.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
  border: 1px solid rgba(255, 116, 31, 0.14);
  box-shadow: 0 16px 34px rgba(43, 36, 28, 0.06);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: #1b2b1b;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(43, 36, 28, 0.12);
  border-color: rgba(255, 116, 31, 0.24);
}

.premium-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1.1rem;
  margin-top: 1.6rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.premium-checklist-item {
  gap: 0.7rem;
}

.premium-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.review-card {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-height: 100%;
  border: 1px solid rgba(68, 91, 69, 0.14);
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,244,238,0.92));
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #131211;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(167, 138, 77, 0.3);
  background: rgba(167, 138, 77, 0.12);
  color: #8a6b2e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-date {
  color: var(--muted);
  font-size: 0.82rem;
}

.review-stars {
  color: var(--rating-star-color) !important;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.review-title {
  margin: 0.65rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f1a16;
  line-height: 1.28;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.1rem;
}

.reviews-hero {
  position: relative;
  min-height: clamp(70vh, 82vh, 88vh);
  display: flex;
  align-items: center;
  padding: 6rem 0;
  color: #2f2f2f;
  background-color: #fbf9f6;
  background-image:
    linear-gradient(
      90deg,
      rgba(251, 248, 242, 0.84) 0%,
      rgba(251, 248, 242, 0.58) 28%,
      rgba(251, 248, 242, 0.2) 56%,
      rgba(251, 248, 242, 0) 76%
    ),
    url('assets/reviews-hero-image.png.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.reviews-hero-shell {
  display: flex;
  align-items: center;
}

.reviews-hero-copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reviews-hero-copy h1 {
  color: #2f2f2f;
  font-size: clamp(2.2rem, 3.3vw, 3.4rem);
  margin-bottom: 0.25rem;
}

.reviews-hero-copy .hero-subheading {
  color: #333333 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.02rem, 1.75vw, 1.28rem);
}

.reviews-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.4rem;
  align-items: stretch;
}

.summary-card,
.review-stat-card,
.testimonial-quote,
.cta-banner {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 1.6rem;
}

.summary-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.summary-card h2,
.testimonial-copy h2 {
  color: #171512;
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
}

.summary-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(167, 138, 77, 0.3);
  background: rgba(167, 138, 77, 0.12);
  color: #8a6b2e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-stats {
  display: grid;
  gap: 1rem;
}

.review-stat-card {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-stat-card strong {
  font-size: 1.6rem;
  color: var(--accent);
}

.review-stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: center;
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-quote {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.testimonial-quote p {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.testimonial-quote span {
  color: #8a6b2e;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.cta-banner {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.cta-banner p {
  margin: 0;
  color: var(--muted);
  max-width: 660px;
}

@media (max-width: 960px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-summary,
  .testimonial-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 1.15rem;
  }

  .premium-checklist {
    grid-template-columns: 1fr;
  }

  .summary-card,
  .cta-banner,
  .testimonial-quote {
    padding: 1.5rem;
  }
}

.instagram-card {
  padding: 1.6rem;
  text-align: center;
}

.instagram-card p,
.contact-card p,
.faq-list p,
.story-copy p,
.story-body-grid p {
  color: var(--muted);
  font-size: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.2rem 1.4rem;
  background: #FFFBF7;
  border: 1px solid rgba(255, 116, 31, 0.14);
  border-radius: 1.4rem;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #E06D53 !important;
  position: relative;
  padding-left: 2rem;
  list-style: none;
}

.faq-list summary::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--check-green) !important;
  font-weight: 600;
  transition: transform 180ms ease, color 180ms ease;
}

.faq-list summary::before,
.faq-list summary:hover::before,
.faq-list summary:focus::before,
.faq-list summary:active::before,
.faq-list details[open] summary::before,
.faq-card summary::before,
.faq-card summary:hover::before,
.faq-card summary:focus::before,
.faq-card summary:active::before,
.faq-card[open] summary::before {
  color: var(--check-green) !important;
}

.faq-list details[open] summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list summary:hover,
.faq-list details[open] summary {
  color: #E06D53 !important;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0.75rem 0 0;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .faq-list summary {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .faq-list summary {
    font-size: 16px;
  }

  .faq-list p {
    font-size: 15px;
  }
}

.product-page {
  padding: 2rem 0 0;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 3rem;
}

.product-detail-gallery {
  padding: 1rem;
  border-radius: 1.6rem;
  background: #FFFBF7;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.gallery-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(440px, 38vw, 500px);
  min-height: 440px;
  max-height: 520px;
  padding: 40px 48px 24px;
  box-sizing: border-box;
  border-radius: 1.2rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.gallery-stage > a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.gallery-main-image {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: opacity 0.35s ease;
}

.gallery-main-image.is-portrait {
  max-width: 62%;
}

.gallery-main-image.is-landscape {
  max-width: 88%;
}

[data-gallery="bond-seal"] .gallery-main-image {
  width: auto;
  height: auto;
  max-width: 84%;
  max-height: 84%;
  object-fit: contain;
  object-position: center;
}

[data-gallery="bond-seal"] .gallery-main-image.is-portrait {
  max-width: 72%;
}

[data-gallery="bond-seal"] .gallery-main-image.is-landscape {
  max-width: 88%;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.7rem;
  height: 2.7rem;
  border: 1.5px solid var(--brand-button-color);
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--brand-button-color);
  box-shadow: 0 10px 24px rgba(8,8,8,0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1.1rem;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 28px rgba(8,8,8,0.16);
}

.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding: 0.75rem;
  border: 1px solid var(--brand-button-color);
  border-radius: 1rem;
  background: #FFFAF0;
  align-items: center;
}

.gallery-thumb {
  padding: 0.3rem;
  border-radius: 0.85rem;
  border: 1px solid #EFE6DC;
  background: rgba(255,255,255,0.82);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  display: block;
  border-radius: 0.6rem;
  pointer-events: none;
}

.gallery-thumb:hover {
  transform: translateY(-2px);
  border-color: #D9C9B4;
  box-shadow: 0 10px 24px rgba(8,8,8,0.12);
}

.gallery-thumb.is-active {
  transform: translateY(-2px);
  border-color: var(--brand-button-color);
  box-shadow: 0 10px 24px rgba(8,8,8,0.12);
}

@media (max-width: 720px) {
  .gallery-stage {
    height: clamp(300px, 88vw, 360px);
    min-height: 300px;
    max-height: 360px;
    padding: 28px 36px 20px;
  }

  .gallery-main-image {
    max-width: 84%;
    max-height: 82%;
  }

  .gallery-main-image.is-portrait {
    max-width: 76%;
  }

  .gallery-main-image.is-landscape {
    max-width: 88%;
  }

  .gallery-nav {
    width: 2.3rem;
    height: 2.3rem;
  }
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-headline {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.clear-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin-top: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1060px;
}

.clear-safety-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.6rem auto 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(200, 155, 75, 0.24);
  border-radius: 1rem;
  background: linear-gradient(135deg, #f8efe2 0%, #fcf8f2 100%);
  box-shadow: 0 10px 24px rgba(20, 18, 14, 0.04);
  max-width: 920px;
}

.clear-safety-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(200, 155, 75, 0.26);
  color: #fc7622;
  flex-shrink: 0;
}

.clear-safety-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.clear-safety-card h3,
.clear-info-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: #222222;
}

.clear-safety-card p,
.clear-info-card p,
.clear-ingredients-list span {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.clear-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}

.clear-info-card {
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(200, 155, 75, 0.2);
  border-radius: 1rem;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 24px rgba(20, 18, 14, 0.04);
  align-self: start;
}

.clear-ingredients-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.clear-ingredients-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(200, 155, 75, 0.16);
}

.clear-ingredients-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.clear-ingredients-list strong {
  color: #222222;
  font-weight: 600;
}

@media (max-width: 720px) {
  .clear-feature-list,
  .clear-info-grid {
    grid-template-columns: 1fr;
  }

  .clear-safety-card {
    padding: 1.2rem;
  }
}

.product-detail-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.product-form-row {
  display: flex;
  gap: 0.95rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.quantity-row,
.size-row {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 25px;
  width: calc(50% - 0.475rem);
  min-width: 8rem;
  min-height: 48px;
  background: rgba(255,255,255,0.78);
  box-sizing: border-box;
}

.quantity-row label,
.size-row label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.quantity-row select,
.size-row select {
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
  outline: none;
  min-height: 1.3rem;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23606a63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
  padding-right: 1.1rem;
}

.product-about-section {
  margin-top: 0.4rem;
  padding: 1rem 1.15rem;
  border-radius: 1.15rem;
  background: #FFFAF4;
  border: 1px solid #FF7A38;
  box-shadow: 0 12px 30px rgba(8, 8, 8, 0.05);
}

.product-about-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.product-about-section ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
}

.product-card-link {
  display: block;
  color: inherit;
}

.buy-link {
  margin-top: 0.4rem;
}

.product-card .buy-link,
.product-card .btn-primary.buy-link {
  color: #ffffff;
}

.story-hero {
  padding: 4rem 0 3rem;
}

.story-hero-grid,
.story-body-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.story-copy h1,
.story-copy p,
.story-body-grid h2,
.story-body-grid p {
  color: #171512;
}

.story-copy h1,
.story-body-grid h2 {
  color: #171512;
  font-weight: 700;
  text-shadow: none;
}

.story-card img {
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  background: #FFFAF4;
  border: 1px solid rgba(255, 250, 244, 0.95);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--brand-button-color);
  border: 1.5px solid var(--brand-button-color);
  box-shadow: 0 8px 20px rgba(8, 8, 8, 0.06);
  text-decoration: none;
}

.contact-link,
.contact-link:visited,
.contact-link:hover,
.contact-link:focus,
.contact-link:active,
.contact-link > span:not(.contact-icon) {
  color: #FFFFFF !important;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #ffffff;
  color: #ff741f;
}

.contact-icon svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.contact-details .btn-primary {
  width: fit-content;
  margin-top: 0.2rem;
  background: var(--brand-button-color);
  color: #ffffff;
  border: 1.5px solid var(--brand-button-color);
  box-shadow: 0 10px 24px rgba(224, 109, 83, 0.16);
}

.contact-card h2,
.cta-banner h2 {
  color: #171512;
}

.contact-details .btn-primary:hover,
.contact-details .btn-primary:focus-visible {
  background: var(--brand-button-hover);
  color: #ffffff;
  border-color: var(--brand-button-hover);
}

.site-footer {
  padding: 3rem 0 2rem;
  color: #1b1a17;
  background: #fff8f1;
  border-top: 1px solid rgba(23, 22, 18, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: block;
  max-width: 140px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand {
  margin: 0;
  color: #121110;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-about {
  margin: 0;
  color: #55524b;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 32rem;
}

.footer-section-title {
  margin: 0;
  color: #121110;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-pill-list,
.footer-link-list,
.footer-social-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer-pill-list {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-pill-list li {
  color: #333333;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.footer-pill-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--check-green);
  font-weight: 700;
}

.review-trust-badges > span::before {
  content: "✓ ";
  color: var(--check-green);
}

.footer-link-list li,
.footer-social-list li {
  color: #55524b;
}

.footer-link-list a,
.footer-social-list a {
  color: #55524b;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-link-list a:hover,
.footer-social-list a:hover {
  color: #b16c32;
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(23, 22, 18, 0.08);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #55524b;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes headerSlide {
  from {
    transform: translateY(-8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes backgroundFloat {
  0% {
    transform: scale(1.02) translateY(0px);
  }
  100% {
    transform: scale(1.04) translateY(-4px);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 2.3rem 0 2.8rem;
    background-position: center 22%;
    background-size: cover;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(100%, calc(100% - 2rem));
    min-height: auto;
  }

  .hero-copy {
    max-width: min(100%, 31rem);
    margin-left: 0;
    padding: 0 0 0.35rem;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    align-self: flex-start;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
    line-height: 1.04;
    margin-bottom: 0.35rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  }

  .hero-subheading {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.65;
    max-width: min(100%, 34rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-top: 0.35rem;
  }

  .hero-actions .btn {
    width: min(100%, 17.5rem);
    justify-content: center;
    text-align: center;
  }

  .hero-features {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
    margin-top: 0.75rem;
    align-items: center;
  }

  .hero-features li {
    font-size: 0.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }

  .hero-logo {
    padding-top: 0.7rem;
    max-height: 38px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .details-shell,
  .product-detail-shell,
  .product-grid,
  .benefits-grid,
  .feature-grid,
  .checklist-grid,
  .promise-grid,
  .how-it-works-grid,
  .story-hero-grid,
  .story-body-grid,
  .story-benefits,
  .contact-card,
  .footer-content {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-highlights {
    grid-template-columns: 1fr;
  }

  .story-content-grid,
  .story-values-grid {
    grid-template-columns: 1fr;
  }

  .story-content-grid {
    gap: 1.5rem;
  }

  .story-copy {
    padding: 40px 0;
  }

  .story-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    gap: 1.2rem;
  }
}

@media (max-width: 640px) {
  .nav-bar {
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: 220px;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 252, 247, 0.97);
    box-shadow: var(--shadow);
    z-index: 30;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    padding-top: 3.8rem;
  }

  .hero-copy {
    padding: 1.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-features {
    gap: 0.55rem;
  }

  .hero-features li {
    font-size: 0.78rem;
  }

  .product-grid,
  .benefits-grid,
  .story-benefits {
    grid-template-columns: 1fr;
  }

  .story-feature-grid {
    grid-template-columns: 1fr;
  }
}

body.page-story {
  background: #FAF8F5;
  color: #222222;
  font-family: var(--font-body);
}

body.page-story .site-header {
  background: #FAF8F5;
  border-bottom: 1px solid rgba(200, 155, 75, 0.16);
}

.story-page {
  background: #FAF8F5;
}

.story-hero {
  position: relative;
  min-height: clamp(68vh, 74vh, 78vh);
  display: flex;
  align-items: center;
  padding: 5rem 0 4.5rem;
  color: #2f2f2f;
  background-color: #fbf9f6;
  background-image:
    linear-gradient(
      90deg,
      rgba(251, 248, 242, 0.84) 0%,
      rgba(251, 248, 242, 0.6) 28%,
      rgba(251, 248, 242, 0.2) 56%,
      rgba(251, 248, 242, 0) 76%
    ),
    url('assets/our-story-hero-image.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.story-hero-copy {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}

.story-eyebrow,
.story-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--logo-orange) !important;
  font-weight: 700 !important;
  margin: 0;
}

.story-eyebrow::before,
.story-section-label::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--logo-orange);
}

.story-hero h1,
.story-page h2,
.story-page h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #222222;
}

@media (max-width: 720px) {
  .story-feature-badges,
  .review-trust-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .story-feature-badge,
  .review-trust-badges span {
    width: 100%;
  }
}

.story-hero h1 {
  margin: 0;
  color: #2f2f2f;
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  text-shadow: none;
}

.story-page h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
  color: #171512;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.story-page h3 {
  font-size: 1.18rem;
  margin: 0;
  color: #222222;
}

.story-subheading {
  margin: 0;
  max-width: 620px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  color: #333333 !important;
  font-family: var(--font-body) !important;
}

.story-intro .container,
.story-promise .container,
.story-values .container,
.story-cta .container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.story-content-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 2.5rem;
  align-items: center;
}

.story-copy {
  padding: 80px 0;
}

.story-copy p {
  margin: 0 0 1.25rem;
  color: #333333 !important;
  font-family: var(--font-body) !important;
}

.story-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  justify-items: center;
  align-items: center;
}

.story-feature-card,
.story-value-card {
  border: 1px solid rgba(200, 155, 75, 0.22);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.story-feature-card {
  padding: 1.6rem;
  min-width: 100%;
  max-width: 500px;
}

.story-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  border-radius: 22px;
  background: rgba(255, 244, 236, 0.9);
  border: 1px solid rgba(245, 180, 65, 0.24);
}

.story-feature-icon svg.brand-icon {
  max-width: 60px;
  max-height: 60px;
  width: 100%;
  height: auto;
  display: block;
}

.story-feature-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.story-feature-card h3,
.story-value-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #222222;
}

.story-feature-card:hover,
.story-value-card:hover,
.story-promise-card:hover,
.story-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.1);
  border-color: rgba(200, 155, 75, 0.34);
}

.story-feature-icon,
.story-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid #c89b4b;
  color: #c89b4b;
  background: rgba(200, 155, 75, 0.08);
}

.story-feature-icon svg,
.story-value-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.story-promise-card {
  position: relative;
  overflow: hidden;
  padding: 2.6rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #f7ebdc 0%, #fcf8f1 100%);
  border: 1px solid rgba(200, 155, 75, 0.24);
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.story-promise-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200, 155, 75, 0.18), transparent 35%);
  pointer-events: none;
}

.story-promise-card h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 0.9rem;
}

.story-promise-card p {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0;
  color: #5b5b5b;
  font-size: 1.02rem;
  line-height: 1.9;
}

.story-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.story-value-card {
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: linear-gradient(135deg, #fffdfa 0%, #fbf8f3 100%);
}

.story-value-card p {
  margin: 0;
  color: #5b5b5b;
  font-size: 0.97rem;
  line-height: 1.8;
}

.story-cta-card {
  position: relative;
  padding: 2.8rem;
  border-radius: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f7ebdc 0%, #fcf8f1 100%);
  border: 1px solid rgba(200, 155, 75, 0.24);
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.06);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.story-cta-card::before,
.story-cta-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(200, 155, 75, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.story-cta-card::before {
  top: -90px;
  left: -90px;
}

.story-cta-card::after {
  right: -90px;
  bottom: -90px;
}

.story-cta-card .story-section-label {
  font-size: 16px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.28em !important;
  margin-bottom: 0.8rem !important;
  color: var(--logo-orange) !important;
}

.story-cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 1rem;
  font-size: 42px !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
}

.story-cta-card .hero-actions {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 1.3rem;
}

.story-cta-card .hero-actions .btn-primary {
  color: #ffffff !important;
}

.story-cta-card .hero-actions .btn-secondary {
  color: var(--brand-button-color) !important;
}

.story-cta-card .hero-actions .btn-primary:hover,
.story-cta-card .hero-actions .btn-secondary:hover {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 2rem);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header {
    padding: 0;
  }

  .nav-bar {
    gap: 1rem;
    min-height: auto;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .site-header .brand img {
    height: 82px;
    max-height: none;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links a {
    padding: 0.75rem 0;
  }

  .hero {
    padding: 2rem 0 2.5rem;
    background-position: center;
    background-size: cover;
  }

  .hero.hero-home {
    min-height: auto;
    background-position: 58% center !important;
  }

  .hero.hero-home::before {
    display: none;
  }

  .hero-home .hero-inner {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    gap: 1.5rem;
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    min-height: auto;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home .hero-content {
    width: min(100%, 20rem);
    max-width: calc(100vw - 3rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home .hero-media {
    display: block;
    order: 2;
    margin-top: 24px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home .hero-media img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
    max-width: 11ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle,
  .hero-description {
    text-align: center;
    max-width: min(100%, 28ch);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home .hero-subtitle {
    text-align: left;
    width: 100%;
    max-width: min(100%, 28ch);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: min(100%, 14rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-button {
    width: 100%;
    max-width: 14rem;
    min-height: 48px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .story-hero {
    padding: 4rem 0 3rem;
    background-position: center;
    background-size: cover;
  }

  .story-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }

  .story-hero-copy,
  .story-promise .container,
  .story-values .container,
  .story-cta .container {
    width: 100%;
    max-width: 100%;
  }

  .story-feature-list {
    grid-template-columns: 1fr;
  }

  .story-feature-item {
    width: 100%;
  }

  .story-cta-card .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .story-cta-card .hero-actions .btn-primary,
  .story-cta-card .hero-actions .btn-secondary {
    width: 100%;
    min-height: 48px;
  }

  .reviews-hero {
    padding: 4rem 0 3rem;
    background-position: center;
    background-size: cover;
  }

  .reviews-hero-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .reviews-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .review-grid,
  .testimonial-shell,
  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-values-grid,
  .story-content-grid,
  .story-values-grid {
    grid-template-columns: 1fr;
  }

  .story-cta-card h2 {
    font-size: 32px !important;
    line-height: 1.12 !important;
  }

  .story-cta-card .story-section-label {
    font-size: 14px !important;
    letter-spacing: 0.24em !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shared SF Pro typography system */
body,
p,
span,
a,
li,
label,
input,
button,
textarea,
select,
.sub-heading,
.subtitle,
.description {
  font-family: var(--font-body) !important;
}

h1,
h2,
h3,
h4,
.hero-title,
.review-title,
.faq-list summary,
.hero-button {
  font-family: var(--font-display) !important;
}

body,
p,
li,
input,
textarea,
select {
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

.hero-trust-features li {
  font-family: var(--font-body) !important;
  font-size: clamp(15px, 0.25vw + 14px, 16px);
  font-weight: 500;
  line-height: 1.4;
}

.nav-links a {
  font-family: var(--font-body) !important;
  font-size: clamp(0.9375rem, 0.25vw + 0.9rem, 1rem);
  font-weight: 500;
}

.hero h1,
.reviews-hero h1,
.faq-hero h1,
.story-hero h1 {
  font-size: var(--text-hero) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
}

.section-heading h2,
.details-intro h2,
.story-page h2,
.cta-banner h2,
.contact-card h2 {
  font-size: var(--text-section-title);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.product-detail-copy h1 {
  font-size: var(--text-page-title);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: var(--tracking-heading);
}

.product-body h3 {
  font-size: var(--text-product-title);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.review-title,
.how-card h3,
.benefit-card h3,
.feature-card h3,
.story-feature-card h3,
.story-value-card h3,
.bond-ingredient-card h3,
.whats-included-card h3 {
  font-family: var(--font-display) !important;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.eyebrow,
.product-kicker,
.story-eyebrow,
.story-section-label {
  font-family: var(--font-body) !important;
  font-size: var(--text-small);
  font-weight: 700 !important;
  line-height: 1.3;
  letter-spacing: var(--tracking-eyebrow) !important;
}

.btn,
.hero-button {
  font-family: var(--font-body) !important;
  font-size: clamp(0.9375rem, 0.2vw + 0.9rem, 1rem);
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

.price,
.review-link,
.review-count,
.review-card,
.product-features,
.premium-checklist,
.footer-grid,
.faq-list p {
  font-family: var(--font-body) !important;
}

.faq-list summary {
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.faq-list p {
  font-size: clamp(0.9375rem, 0.15vw + 0.9rem, 1rem);
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 640px) {
  :root {
    --text-hero: clamp(2.375rem, 10vw, 2.75rem);
    --text-page-title: clamp(2.125rem, 9.5vw, 2.5rem);
    --text-section-title: clamp(1.875rem, 8.5vw, 2.25rem);
    --text-product-title: clamp(1.3125rem, 6vw, 1.5rem);
    --text-body: clamp(0.9375rem, 4vw, 1rem);
    --text-small: clamp(0.6875rem, 3vw, 0.8125rem);
  }

  .hero-trust-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-home .hero-subtitle {
    font-size: 16px;
  }

  .hero-rating-line {
    gap: 0.4rem;
    font-size: 15px;
  }

  .hero-rating-stars {
    letter-spacing: 0.05em;
  }
}

/* Mobile experience refinements. Desktop styles intentionally remain unchanged. */
@media (max-width: 768px) {
  .container {
    width: calc(100% - 2rem);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    font-size: clamp(1.875rem, 8vw, 2.35rem);
    line-height: 1.12;
    text-wrap: balance;
  }

  .section-heading p,
  .hero-text,
  .story-copy p,
  .review-card p {
    overflow-wrap: anywhere;
  }

  .nav-bar {
    min-height: 72px;
    padding: 0.45rem 0;
  }

  .site-header .brand img {
    height: 68px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 50%;
  }

  .nav-links {
    right: 0;
    width: min(18rem, calc(100vw - 2rem));
    min-width: 0;
    gap: 0.25rem;
    padding: 0.75rem;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0.7rem 0.85rem;
    border-radius: 0.75rem;
  }

  .btn,
  .hero-button,
  .contact-link,
  button,
  input,
  select,
  textarea {
    min-height: 48px;
  }

  .btn,
  .hero-button,
  .contact-link {
    white-space: nowrap;
  }

  .hero.hero-home {
    min-height: auto;
  }

  .hero.hero-home .hero-inner {
    min-height: auto;
    padding: 3rem 0 3.5rem;
  }

  .hero-home .hero-content {
    width: min(100%, 22rem);
    max-width: 100%;
  }

  .hero-trust-block {
    max-width: 100%;
  }

  .hero-trust-features {
    row-gap: 0.85rem;
  }

  #top .product-grid {
    align-items: start;
    grid-auto-rows: auto;
    gap: 1.75rem;
  }

  #top .product-card {
    height: auto;
    min-height: 0;
  }

  #top .product-card-link {
    display: block;
    height: auto;
    min-height: 0;
  }

  #top .product-body {
    display: flex;
    flex: none;
    flex-direction: column;
    min-height: 0;
  }

  #top .product-card .buy-link {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin: 1.25rem 0 0;
    white-space: nowrap;
  }

  .product-detail-shell,
  .product-detail-gallery,
  .product-detail-copy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .product-detail-shell {
    gap: 1.5rem;
    padding: 1rem 0 3.5rem;
  }

  .product-detail-gallery {
    padding: 0.75rem;
  }

  .gallery-stage {
    width: 100%;
    height: clamp(300px, 86vw, 360px);
    min-height: 300px;
    max-height: 360px;
    padding: 1.5rem 2.75rem 1.25rem;
  }

  .gallery-nav {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .gallery-prev {
    left: 0.35rem;
  }

  .gallery-next {
    right: 0.35rem;
  }

  .gallery-thumbs {
    display: flex;
    width: 100%;
    max-width: 100% !important;
    gap: 0.65rem;
    margin: 1.25rem 0 0 !important;
    padding: 0.65rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumb {
    flex: 0 0 72px;
    min-width: 72px;
    scroll-snap-align: start;
  }

  .product-form-row {
    width: 100%;
  }

  .quantity-row,
  .size-row {
    min-height: 56px;
  }

  .quantity-row select,
  .size-row select {
    min-height: 44px;
  }

  .product-detail-copy > .btn,
  .product-detail-copy > .buy-link {
    width: 100%;
  }

  .detail-accordion summary,
  .faq-list summary,
  .faq-card summary {
    display: flex;
    align-items: center;
    min-height: 52px;
  }

  .faq-list details {
    padding: 0.85rem 1rem;
  }

  .faq-list summary {
    padding-left: 1.75rem;
  }

  .review-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-details,
  .contact-link {
    width: 100%;
  }

  .contact-link {
    justify-content: flex-start;
    min-height: 52px;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-link-list,
  .footer-social-list {
    gap: 0.25rem;
  }

  .footer-link-list a,
  .footer-social-list a {
    display: inline-flex;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    padding-inline: 0.35rem;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
  }

  .footer-bottom {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero.hero-home .hero-inner {
    padding: 2.5rem 0 3rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .page-story .story-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.35rem) !important;
    line-height: 1.08 !important;
  }

  .hero-actions {
    max-width: min(100%, 18rem);
  }

  .hero-button {
    max-width: 18rem;
  }

  .hero-rating-line {
    white-space: normal;
  }

  .product-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .quantity-row,
  .size-row {
    width: 100%;
    min-width: 0;
  }

  .product-about-section {
    padding: 1.1rem;
  }

  .product-about-section h2 {
    font-size: 1.5rem;
  }

  .review-card,
  .feature-card,
  .benefit-card,
  .clean-beauty-value-card,
  .story-value-card,
  .whats-included-card,
  .bond-ingredient-card {
    padding: 1.25rem;
  }

  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .site-header .brand img {
    height: 62px;
  }

  .hero.hero-home .hero-inner {
    padding-top: 2.25rem;
  }

  .gallery-stage {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .contact-card {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
