@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600&display=swap');

:root {
  --deep-green: #1a3a2a;
  --warm-gold: #c8a456;
  --sand: #f5f0e8;
  --cream: #faf7f2;
  --charcoal: #2c2c2c;
  --sage: #8fa88b;
  --ink: #171713;
  --paper: #ffffff;
  --soft: #f5f0e8;
  --muted: #ece7dd;
  --blue: #BEE1F7;
  --burgundy: #1a3a2a;
  --gutter: 70px;
  --radius-lg: 40px;
  --radius-md: 20px;
  --text-base: 18px;
  --text-sm: 15px;
  --text-nav: 18px;
  --text-footer: 14px;
  --weight-body: 500;
  --weight-heading: 500;
  --weight-strong: 600;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: 1.45;
}

h1, h2, h3, .wordmark, .footer-wordmark, .hero h1, .section-heading, .brand-logo-text, .page-title h1, .work-overlay h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: var(--weight-heading);
}

a {
  color: inherit;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--blue);
  border-bottom: 1px solid rgba(23, 23, 19, 0.06);
}

body.menu-open {
  overflow: hidden;
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 92px);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0;
}

.mark-symbol {
  position: relative;
  width: 29px;
  height: 29px;
  border: 2px solid currentColor;
  border-radius: 12px;
}

.mark-symbol::before,
.mark-symbol::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 13px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mark-symbol::before {
  left: 4px;
}

.mark-symbol::after {
  right: 4px;
}

.wordmark {
  position: absolute;
  left: 50%;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.desktop-nav a:hover,
.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-buy {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
}

.menu-btn {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  color: currentColor;
}

.menu-btn span {
  position: absolute;
  left: 7px;
  width: 28px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.menu-btn span:nth-child(1) { top: 12px; }
.menu-btn span:nth-child(2) { top: 20px; }
.menu-btn span:nth-child(3) { top: 28px; }

.menu-btn.active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 78px 0 0;
  z-index: 45;
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--blue);
  padding: 32px clamp(22px, 5vw, 92px);
  transform: translateX(100%);
  transition: transform 0.32s ease;
}

.mobile-nav.active {
  transform: translateX(0);
}

/* working on the hero. */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-butter.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-content,
.hero-logo {
  position: relative;
  z-index: 3;
}

/*end*/

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--sand);
  isolation: isolate;
}


.hero-home {
  color: var(--paper);
}


.hero-home .hero-media::after {
  background:
    linear-gradient(180deg, rgba(20, 12, 4, 0.15) 0%, rgba(20, 12, 4, 0.35) 100%),
    radial-gradient(circle at 50% 100%, rgba(26, 58, 42, 0.25) 0%, transparent 55%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(82deg, transparent 20%, rgba(200, 164, 86, 0.12) 20.2%, transparent 20.8%),
    linear-gradient(84deg, transparent 43%, rgba(200, 164, 86, 0.08) 43.2%, transparent 43.7%),
    linear-gradient(78deg, transparent 70%, rgba(143, 168, 139, 0.1) 70.2%, transparent 70.7%),
    rgba(0, 20, 15, 0.18);
}

.hero-about {
  color: var(--paper);
}

.hero-about .hero-media {
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    linear-gradient(135deg, #1a3a2a, #3a6b45 45%, #c8a456);
}

.hero-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 18px;
  font-size: 0;
  animation: fadeIn 1.4s ease forwards;
}

.hero-logo::before,
.hero-logo::after {
  content: "";
  position: absolute;
  top: 17px;
  width: 26px;
  height: 38px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.hero-logo::before {
  left: 15px;
}

.hero-logo::after {
  right: 15px;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  padding: 0 35px;
  font-size: 44px;
  font-weight: var(--weight-heading);
  line-height: 1.34;
  animation: fadeIn 1.4s ease 0.1s both;
}


.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 20px;

  max-width: 800px;
  padding: 0 35px;

  text-align: center;
}

.hero-content h1 {
  margin: 0;

  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
}

.hero-subheadline {
  margin: 0;

  max-width: 700px;

  font-size: 1.2rem;
  line-height: 1.6;

  color: rgba(255,255,255,0.92);
}

.hero-cta {
  margin-top: 8px;
  padding: 16px 28px;
  background: var(--paper);
  color: var(--deep-green);
  border-color: var(--paper);
  animation: fadeIn 1.4s ease 0.3s both;
}

.hero-cta:hover {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.hero {
    position: relative;
    overflow: hidden;
}
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-content,
.hero-logo {
    position: relative;
    z-index: 3;
}
#hero-canvas {
    z-index: 1;
}
.hero-content,
.hero-logo {
    z-index: 2;
}
.hero-logo {
  display: none;
}

.home-page {
  position: relative;
  z-index: 1;
  background: var(--paper);
  padding-top: 0;
}


.section-heading {
  margin: 0 0 75px;
  font-size: 52px;
  font-weight: var(--weight-heading);
  line-height: 1;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 35px;
}

.section-label {
  margin: 0 0 16px;
  font-size: var(--text-sm);
  font-weight: var(--weight-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.section-label.center {
  text-align: center;
}

.section-tagline {
  max-width: 640px;
  margin: -15px auto 55px;
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: 1.4;
  color: var(--charcoal);
}

.section-tagline.center {
  text-align: center;
}

.page-title .section-tagline {
  margin: 0;
  max-width: none;
  text-align: left;
}

.origin-section {
  padding: 120px 0 80px;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.origin-copy .section-heading {
  margin-bottom: 35px;
}

.origin-copy p {
  margin: 0 0 24px;
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: 1.5;
}

.origin-media .placeholder-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
}

.brand-section {
  position: relative;
  padding-top: 68px;
}

.brand-carousel {
  position: relative;
  min-height: 680px;
}

.brand-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(936px, calc(100% - 250px));
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.88);
  transition: transform 0.6s ease, opacity 0.45s ease, width 0.6s ease;
}

.brand-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
  z-index: 3;
}

.brand-slide.prev {
  opacity: 1;
  transform: translateX(calc(-50% - 50%)) scale(0.72);
  z-index: 1;
}

.brand-slide.next {
  opacity: 1;
  transform: translateX(calc(-50% + 50%)) scale(0.72);
  z-index: 1;
}

.brand-hero {
  position: relative;
  display: grid;
  height: 390px;
  margin: 44px 0;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--ink);
  cursor: pointer;
  transition: height 0.7s ease, margin 0.7s ease, border-radius 0.7s ease;
}

.brand-slide.active .brand-hero {
  height: 460px;
  margin: 0;
}

.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-bg);
  transition: transform 1s ease;
}

.brand-hero:hover::before,
.brand-section.opened .brand-hero::before {
  transform: scale(1.05);
}

.brand-logo-text {
  position: relative;
  z-index: 1;
  font-size: 90px;
  font-weight: 800;
  color: white;
  line-height: 1;
  text-align: center;
}

.brand-slide:nth-child(2) .brand-logo-text {
  font-size: 72px;
  font-weight: 700;
}

.brand-slide:nth-child(3) .brand-logo-text {
  font-size: 86px;
  font-style: italic;
}

.brand-slide:nth-child(4) .brand-logo-text {
  font-size: 84px;
  font-weight: 500;
}

.brand-info {
  position: relative;
  height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.15fr);
  gap: 40px;
  color: var(--brand-color);
  background: var(--brand-panel);
  border-bottom-right-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
  transition: height 0.8s ease, padding 0.8s ease;
}

.brand-info-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.brand-info-close:hover {
  background: var(--brand-color);
  color: var(--brand-panel);
}



.brand-slide.expanded {
  width: calc(100% - 140px);
}

.brand-slide.expanded .brand-hero {
  height: 345px;
  margin: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.brand-slide.expanded .brand-info {
  height: auto;
  padding: 72px 80px 86px;
}

.brand-info h3 {
  margin: 0 0 29px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.brand-info p {
  margin: 0 0 42px;
  font-size: 22px;
  font-weight: var(--weight-body);
  line-height: 1.25;
}

.brand-meta {
  display: flex;
  gap: 30px;
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: var(--weight-body);
  line-height: 1.18;
}

.brand-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-tile {
  min-height: 190px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
}

.brand-close {
  position: absolute;
  top: 82px;
  right: 100px;
  z-index: 5;
  display: none;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-size: 24px;
  cursor: pointer;
}

.brand-section.opened .brand-close {
  display: block;
}

.carousel-actions {
  position: absolute;
  top: 326px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 135px;
  pointer-events: none;
  z-index: 5;
}

.circle-btn {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--paper);
  color: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.circle-btn:hover,
.pill-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

.brand-section.opened .carousel-actions {
  top: 300px;
}

.pill-btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 31px;
  padding: 14px 20px;
  background: transparent;
  color: inherit;
  text-decoration: none;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: var(--weight-body);
  line-height: 1.18;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.pill-btn.light:hover {
  background: var(--sand);
  color: var(--deep-green);
}

.why-section {
  padding: 80px 0 120px;
}

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

.why-grid h3 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: var(--weight-heading);
  line-height: 1.2;
}

.why-grid p {
  margin: 0;
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: 1.4;
}

.ethics-section {
  padding: 100px 0;
  background: var(--soft);
}

.ethics-inner {
  max-width: 980px;
}

.ethics-inner .section-heading {
  margin-bottom: 35px;
}

.ethics-inner .large-copy {
  max-width: none;
}

.testimonial-section {
  margin-bottom: 120px;
  padding: 100px 0 120px;
  background: var(--burgundy);
  color: var(--blue);
}

.testimonial-section .section-label {
  color: rgba(190, 225, 247, 0.85);
  margin-bottom: 40px;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 45px 1fr 45px;
  gap: 55px;
  align-items: center;
  text-align: center;
}

.testimonial-slider .circle-btn {
  background: transparent;
}

.testimonial-slider .circle-btn:hover {
  background: var(--blue);
  color: var(--burgundy);
}

.testimonial-slider blockquote {
  margin: 0;
}

.testimonial-text {
  margin: 0;
  font-size: 28px;
  font-weight: var(--weight-body);
  line-height: 1.45;
}

.testimonial-author {
  margin-top: 60px;
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: 1.2;
}

.recent-news-section {
  padding-bottom: 120px;
}

.news-grid,
.product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.news-grid {
  max-width: 970px;
  margin: 0 auto;
}

.news-card,
.product-card {
  overflow: hidden;
  border-radius: 32px;
  background: var(--soft);
}

.placeholder-image {
  aspect-ratio: 377 / 200;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.75), transparent 22%),
    linear-gradient(135deg, var(--a), var(--b));
}

.placeholder-image.pink { --a: #f5f0e8; --b: #c8a456; }
.placeholder-image.blue { --a: #8fa88b; --b: #2d5a3a; }
.placeholder-image.green { --a: #d3e8cc; --b: #5a8a5e; }
.placeholder-image.cream { --a: #f5f0e8; --b: #d9aa70; }

.section-image {
  display: block;
  width: 100%;
  max-width: 980px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  object-fit: cover;
}

.card-image {
  width: 100%;
  aspect-ratio: 377 / 200;
  object-fit: cover;
  display: block;
}

.news-content,
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.news-content {
  min-height: 168px;
}

.news-content p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 22px;
  font-weight: var(--weight-body);
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.site-footer {
  background: var(--blue);
  padding: 70px 0 30px;
}

.site-footer.compact {
  margin-top: 120px;
}

.site-footer.compact .footer-tagline {
  margin-bottom: 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 135px;
}

.footer-wordmark {
  text-decoration: none;
  font-size: 32px;
  font-weight: var(--weight-heading);
  line-height: 1;
}

.footer-nav-wrap,
.footer-shapes,
.footer-bottom {
  display: flex;
}

.footer-nav-wrap {
  gap: 129px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-nav a {
  font-size: 24px;
  line-height: 1.5;
}

.footer-shapes {
  gap: 30px;
}

.footer-shapes span {
  display: block;
  width: 74px;
  height: 100px;
  border: 1px solid var(--charcoal);
  border-radius: 999px 999px 8px 8px;
}

.footer-bottom {
  justify-content: space-between;
  gap: 30px;
}

.footer-tagline {
  margin: 0 0 40px;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 28px;
  font-weight: var(--weight-heading);
  line-height: 1.2;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: var(--ink);
  text-decoration: none;
  font-size: var(--text-footer);
  font-weight: var(--weight-body);
  line-height: 1.18;
}

.subpage {
  padding-top: 180px;
}

.page-title {
  margin-bottom: 90px;
}

.page-title h1 {
  max-width: 980px;
  margin: 0 0 35px;
  font-size: 68px;
  font-weight: var(--weight-strong);
  line-height: 1;
}

.page-title p,
.large-copy {
  max-width: 760px;
  margin: 0;
  font-size: 28px;
  font-weight: var(--weight-body);
  line-height: 1.35;
}

.split-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.split-section p + p {
  margin-top: 25px;
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: 1.45;
}

.work-with-section {
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, #c8a456, #1a3a2a 54%, #8fa88b);
  color: var(--paper);
}

.work-overlay {
  text-align: center;
}

.work-overlay h2 {
  margin: 0 0 60px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.08;
}

.work-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.product-card {
  min-height: 480px;
}

.product-card .placeholder-image {
  margin: -20px -20px 30px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card h2,
.contact-panel h2,
.note-body h2 {
  margin: 0 0 24px;
  font-size: 34px;
  font-weight: var(--weight-heading);
  line-height: 1;
}

.product-card p,
.contact-panel p,
.note-body p {
  margin: 0 0 30px;
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: 1.4;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding-bottom: 120px;
}

.contact-panel form {
  display: grid;
  gap: 20px;
}

.contact-panel label {
  display: grid;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: var(--weight-body);
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 20px;
  padding: 14px 18px;
  font: inherit;
  resize: vertical;
}

.note-body {
  max-width: 980px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="about"],
body[data-page="products"] {
  background: #f9f4ee;
}

body[data-page="about"] .site-header,
body[data-page="products"] .site-header {
  background: #BEE1F7;
}

body[data-page="about"] .site-footer,
body[data-page="products"] .site-footer {
  background: #BEE1F7;
  padding: 70px 0 30px;
}

body[data-page="about"] .footer-top,
body[data-page="products"] .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 90px;
}

body[data-page="about"] .footer-brand,
body[data-page="products"] .footer-brand {
  max-width: 470px;
}

body[data-page="about"] .footer-brand p,
body[data-page="products"] .footer-brand p {
  margin: 22px 0 24px;
  font-size: 18px;
  line-height: 1.45;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-decoration: none;
  font-size: 13px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.social-links a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

body[data-page="about"] .footer-nav,
body[data-page="products"] .footer-nav {
  gap: 8px;
}

body[data-page="about"] .footer-tagline,
body[data-page="products"] .footer-tagline {
  margin-bottom: 42px;
}

.about-premium {
  min-height: 100vh;
  padding: 120px 0 0;
  background: #f9f4ee;
}

.about-premium-shell {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
}

.about-premium-hero {
  position: relative;
  display: grid;
  min-height: 820px;
  place-items: center;
  overflow: hidden;
  border-radius: 0 0 36px 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(254, 195, 215, 0.86), transparent 27%),
    radial-gradient(circle at 84% 14%, rgba(241, 235, 156, 0.9), transparent 24%),
    #BEE1F7;
  padding: 68px 48px;
  text-align: center;
}

.about-mini-nav,
.about-hero-social {
  position: absolute;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.about-mini-nav {
  top: 42px;
}

.about-hero-social {
  bottom: 42px;
  justify-content: center;
}

.about-mini-nav a,
.about-hero-social a {
  text-decoration: none;
  font-size: 14px;
  font-weight: var(--weight-strong);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: var(--weight-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-premium-hero h1 {
  position: relative;
  z-index: 2;
  margin: 20px 0 0;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(88px, 16vw, 230px);
  font-weight: var(--weight-heading);
  line-height: 0.82;
}

.about-hero-line {
  position: relative;
  z-index: 3;
  margin: 0;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(34px, 5vw, 80px);
  line-height: 0.95;
}

.about-hero-product {
  position: relative;
  z-index: 4;
  width: min(360px, 45vw);
  margin: -50px auto -18px;
  filter: drop-shadow(0 34px 46px rgba(61, 57, 53, 0.22));
}

.about-hero-product img,
.about-showcase-product img,
.product-packshot {
  display: block;
  width: 100%;
  height: auto;
}

.about-hero-note {
  max-width: 560px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.45;
}

.about-premium-intro,
.about-premium-values,
.about-premium-cta {
  padding: 110px 0;
}

.about-centered-heading {
  text-align: center;
}

.about-centered-heading h2,
.about-premium-values h2 {
  margin: 0;
  font-size: clamp(58px, 9vw, 130px);
  line-height: 0.9;
}

.about-centered-heading p {
  margin: 18px 0 0;
  font-size: 22px;
}

.about-copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 980px;
  margin: 54px auto 0;
}

.about-copy-columns p,
.about-value-row p {
  margin: 0;
  font-size: 20px;
  line-height: 1.48;
}

.about-premium-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 18px;
}

.about-premium-gallery img,
.about-side-panel img,
.ingredient-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-premium-gallery img {
  min-height: 420px;
  border-radius: var(--radius-md);
}

.about-premium-gallery img:nth-child(2) {
  margin-top: 80px;
}

.about-premium-showcase {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.75fr;
  align-items: center;
  gap: 28px;
  padding: 120px 0;
}

.about-side-panel {
  display: grid;
  gap: 18px;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 58px;
  line-height: 0.9;
}

.about-side-panel img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
}

.about-showcase-product {
  width: min(420px, 100%);
  justify-self: center;
  filter: drop-shadow(0 36px 42px rgba(61, 57, 53, 0.22));
}

.about-premium-values {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  border-top: 1px solid rgba(61, 57, 53, 0.16);
  border-bottom: 1px solid rgba(61, 57, 53, 0.16);
}

.about-value-row {
  display: grid;
  gap: 24px;
}

.about-value-row article {
  display: grid;
  grid-template-columns: 64px 180px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(61, 57, 53, 0.16);
}

.about-value-row article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-value-row span {
  font-size: 14px;
  font-weight: var(--weight-strong);
}

.about-value-row h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.about-premium-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-premium-cta p {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.95;
}

.product-story-page {
  background: #f9f4ee;
}

.product-ingredients-section {
  padding: 140px 0 90px;
  background: #BEE1F7;
}

.ingredients-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
  margin-bottom: 54px;
}

.ingredients-heading > a {
  color: inherit;
  font-size: 14px;
  font-weight: var(--weight-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-kicker {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: var(--weight-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ingredients-heading h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(72px, 13vw, 180px);
  line-height: 0.82;
}

.ingredients-summary {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 24px;
  line-height: 1.35;
}

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

.ingredient-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.ingredient-card img {
  height: 100%;
}

.ingredient-pill {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: var(--weight-strong);
}

.ingredient-pill span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.ingredient-card p {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  margin: 0;
  color: var(--paper);
  font-size: 14px;
  line-height: 1.3;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.ingredients-cta-row,
.source-meta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ingredients-cta-row {
  margin-top: 42px;
}

.ingredients-cta-row p {
  margin: 0;
}

.shop-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: var(--weight-strong);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(61, 57, 53, 0.18);
}

.source-meta-strip {
  flex-wrap: wrap;
  margin-top: 30px;
  border-top: 1px solid rgba(61, 57, 53, 0.18);
  padding-top: 24px;
  font-size: 14px;
  font-weight: var(--weight-strong);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-use-section {
  padding: 110px 0;
}

.product-use-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.9fr) 0.78fr;
  gap: 34px;
  align-items: center;
}

.product-use-copy h2,
.myths-intro h2,
.product-facts-section h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
}

.product-use-copy > p {
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.45;
}

.benefit-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.benefit-icon-grid article {
  border: 1px solid rgba(61, 57, 53, 0.16);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--paper);
}

.benefit-icon-grid span {
  display: block;
  margin-bottom: 18px;
  font-size: 22px;
}

.benefit-icon-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.product-visual-stage {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 44%, rgba(241, 235, 156, 0.9), transparent 34%),
    #fec3d7;
  padding: 40px;
}

.product-packshot {
  width: min(360px, 80%);
  filter: drop-shadow(0 34px 42px rgba(61, 57, 53, 0.24));
}

.use-note {
  position: absolute;
  max-width: 180px;
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.3;
}

.note-one {
  top: 34px;
  left: 28px;
}

.note-two {
  right: 24px;
  top: 42%;
}

.note-three {
  left: 34px;
  bottom: 36px;
}

.how-to-panel {
  border-radius: var(--radius-md);
  background: #f1eb9c;
  padding: 34px;
}

.how-to-panel h3 {
  margin: 0 0 24px;
  font-size: 54px;
  line-height: 0.9;
}

.how-to-panel p,
.how-to-panel small {
  display: block;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.4;
}

.product-myths-section {
  padding: 110px 0;
  background: #6D2D33;
  color: #f9f4ee;
}

.myths-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 22px;
}

.myth-controls {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.myth-controls span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.myth-card {
  border-radius: var(--radius-md);
  background: #f9f4ee;
  color: var(--ink);
  padding: 34px;
}

.myth-card > span {
  display: block;
  margin-bottom: 36px;
  font-size: 48px;
}

.myth-card h3 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1;
}

.myth-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.product-facts-section {
  padding: 110px 0;
}

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

.facts-grid article {
  border-radius: var(--radius-md);
  background: #BEE1F7;
  padding: 38px;
}

.facts-grid article:nth-child(2) {
  background: #fec3d7;
}

.facts-grid p:last-child {
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.45;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 35px;
  }

  .header-inner {
    min-height: 71px;
  }

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

  .wordmark {
    font-size: 24px;
  }

  .hero h1,
  .section-heading,
  .work-overlay h2 {
    font-size: 32px;
  }

  .origin-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .origin-section {
    padding: 80px 0 60px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .ethics-section {
    padding: 70px 0;
  }

  .home-page {
    padding-top: 120px;
  }

  .brand-carousel {
    min-height: 760px;
  }

  .brand-slide {
    width: min(760px, calc(100% - 120px));
  }

  .brand-slide.active .brand-hero,
  .brand-hero {
    height: 354px;
    margin: 0;
  }

  .brand-slide.expanded {
    width: calc(100% - 66px);
  }

  .brand-slide.expanded .brand-hero {
    height: 354px;
  }

  .brand-slide.expanded .brand-info {
    padding: 46px;
  }

  .brand-info h3 {
    font-size: 32px;
  }

  .brand-info p {
    font-size: 18px;
  }

  .brand-gallery {
    min-width: 320px;
  }

  .carousel-actions {
    top: 260px;
    padding: 0 60px;
  }

  .core-value {
    margin-top: 140px;
    margin-bottom: 140px;
  }

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

  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-text {
    font-size: 22px;
    line-height: 1.3;
  }

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

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

  .footer-nav-wrap {
    gap: 80px;
  }

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

@media (max-width: 768px) {
  .desktop-nav,
  .wordmark {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-logo {
    display: none;
  }

  .hero-content {
    justify-self: end;
    gap: 18px;
    padding: 0 24px 80px;
    max-width: 100%;
  }

  .hero h1,
  .hero-content h1 {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 340px;
    padding: 0;
    margin: 0;
    font-size: 28px;
    line-height: 1.26;
    align-self: center;
  }

  .hero-subheadline {
    font-size: var(--text-sm);
    max-width: 320px;
  }

  .hero p {
    bottom: 30px;
    width: calc(100% - 48px);
    max-width: 320px;
    font-size: var(--text-sm);
    font-weight: var(--weight-body);
    left: 50%;
    transform: translateX(-50%);
  }

  .home-page {
    padding-top: 95px;
  }

  .section-heading.center {
    margin-bottom: 30px;
  }

  .brand-carousel {
    min-height: 325px;
  }

  .brand-slide,
  .brand-slide.prev,
  .brand-slide.next,
  .brand-slide.active,
  .brand-slide.expanded {
    position: absolute;
    width: min(100%, 345px);
    left: 50%;
    top: 0;
    pointer-events: none;
  }

  .brand-slide {
    opacity: 0;
    transform: translateX(-50%) scale(0.92);
  }

  .brand-slide.active {
    opacity: 1;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .brand-slide.prev {
    opacity: 0.42;
    transform: translateX(calc(-50% - 78%)) scale(0.86);
  }

  .brand-slide.next {
    opacity: 0.42;
    transform: translateX(calc(-50% + 78%)) scale(0.86);
  }

  .brand-section.opened .brand-carousel,
  .brand-carousel:has(.brand-slide.expanded) {
    min-height: 1010px;
  }

  .brand-hero,
  .brand-slide.active .brand-hero {
    height: 240px;
    margin: 0;
    border-radius: var(--radius-md);
  }

  .brand-slide.expanded .brand-hero {
    height: 300px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .brand-slide:not(.expanded) .brand-info {
    padding: 0 20px;
  }

  .brand-slide.expanded .brand-info {
    display: block;
    padding: 70px 20px 24px;
  }

  .brand-info {
    display: block;
  }

  .brand-info p {
    font-size: var(--text-base);
    font-weight: var(--weight-body);
    line-height: 1.3;
  }

  .brand-info h3 {
    padding-right: 28px;
  }

  .brand-info-close {
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
  }

  .brand-logo-text,
  .brand-slide:nth-child(2) .brand-logo-text,
  .brand-slide:nth-child(3) .brand-logo-text,
  .brand-slide:nth-child(4) .brand-logo-text {
    font-size: 46px;
  }

  .brand-gallery {
    grid-template-columns: repeat(2, 1fr);
    min-width: 0;
    gap: 10px;
    margin-top: 40px;
  }

  .gallery-tile {
    min-height: 115px;
  }

  .carousel-actions {
    top: 230px;
    padding: 0 16px;
    left: 0;
    right: 0;
    z-index: 10;
    align-items: center;
  }

  .brand-section.opened .carousel-actions {
    top: 270px;
  }

  .brand-close {
    display: none;
  }

  .carousel-actions .circle-btn {
    background: var(--paper);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-tagline {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .testimonial-section {
    margin-bottom: 95px;
    padding: 95px 0;
  }

  .testimonial-slider {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .testimonial-slider blockquote {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .testimonial-prev {
    justify-self: end;
  }

  .testimonial-next {
    justify-self: start;
  }

  .news-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

  .recent-news-section {
    padding-bottom: 95px;
  }

  .recent-news-section .section-heading {
    text-align: center;
  }

  .site-footer {
    padding: 51px 0 20px;
  }

  .footer-top {
    display: block;
    margin-bottom: 20px;
  }

  .footer-wordmark {
    display: inline-block;
    margin-bottom: 50px;
  }

  .footer-nav-wrap {
    display: block;
  }

  .footer-nav {
    margin-bottom: 125px;
  }

  .footer-nav a {
    font-size: 18px;
  }

  .footer-shapes {
    justify-content: flex-end;
  }

  .footer-bottom {
    display: flex;
    justify-content: flex-start;
  }

  .footer-bottom p:last-child,
  .footer-bottom a {
    display: none;
  }

  .subpage {
    padding-top: 100px;
  }

  .brand-section {
    padding-left: 0;
    padding-right: 0;
  }

  .brand-section.container {
    padding-left: 0;
    padding-right: 0;
  }

  .section-heading.center {
    padding: 0 var(--gutter);
  }

  .product-card {
    min-height: 360px;
  }

  .contact-panel {
    gap: 40px;
    padding-bottom: 80px;
  }

  .split-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-title {
    margin-bottom: 50px;
  }

  .page-title h1 {
    font-size: 36px;
  }

  .page-title p,
  .large-copy {
    font-size: 20px;
  }

  .work-overlay h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .work-links {
    flex-direction: column;
    align-items: center;
  }

  .brand-section {
    padding-top: 48px;
  }
}

@media (max-width: 390px) {
  :root {
    --gutter: 20px;
  }

  .hero h1 {
    font-size: 24px;
    padding-bottom: 140px;
  }

  .hero p {
    font-size: var(--text-sm);
    width: calc(100% - 40px);
  }

  .brand-slide,
  .brand-slide.active,
  .brand-slide.prev,
  .brand-slide.next,
  .brand-slide.expanded {
    width: min(100%, 310px);
  }

  .section-heading {
    font-size: 26px;
  }

  .brand-logo-text,
  .brand-slide:nth-child(2) .brand-logo-text,
  .brand-slide:nth-child(3) .brand-logo-text,
  .brand-slide:nth-child(4) .brand-logo-text {
    font-size: 36px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .page-title h1 {
    font-size: 34px;
  }
}

@media (max-width: 1024px) {
  .about-premium-hero {
    min-height: 700px;
  }

  .about-premium-gallery,
  .about-premium-showcase,
  .about-premium-values,
  .product-use-grid,
  .myths-grid {
    grid-template-columns: 1fr;
  }

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

  .ingredients-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-visual-stage {
    min-height: 560px;
  }
}

@media (max-width: 768px) {
  .about-premium {
    padding-top: 95px;
  }

  .about-premium-shell {
    width: 100%;
  }

  .about-premium-hero {
    min-height: 640px;
    border-radius: 0 0 24px 24px;
    padding: 72px 24px 42px;
  }

  .about-mini-nav,
  .about-hero-social {
    left: 24px;
    right: 24px;
  }

  .about-hero-product {
    width: min(280px, 70vw);
    margin: -20px auto 0;
  }

  .about-premium-intro,
  .about-premium-values,
  .about-premium-cta,
  .about-premium-showcase,
  .product-use-section,
  .product-myths-section,
  .product-facts-section {
    padding: 70px 24px;
  }

  .about-copy-columns,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .about-premium-gallery {
    padding: 0 24px;
  }

  .about-premium-gallery img {
    min-height: 260px;
  }

  .about-premium-gallery img:nth-child(2) {
    margin-top: 0;
  }

  .about-value-row article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-premium-cta,
  .ingredients-cta-row,
  .source-meta-strip {
    display: block;
  }

  .about-premium-cta .pill-btn,
  .ingredients-cta-row .shop-cta {
    margin-top: 22px;
  }

  .product-ingredients-section {
    padding: 110px 0 70px;
  }

  .ingredient-card-grid,
  .benefit-icon-grid {
    grid-template-columns: 1fr;
  }

  .ingredient-card {
    min-height: 380px;
  }

  .product-visual-stage {
    min-height: 500px;
  }

  .use-note {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .how-to-panel,
  .myth-card,
  .facts-grid article {
    padding: 24px;
  }

  body[data-page="about"] .footer-top,
  body[data-page="products"] .footer-top {
    display: block;
  }

  body[data-page="about"] .footer-brand,
  body[data-page="products"] .footer-brand {
    margin-bottom: 42px;
  }
}

/* Restore today final Product/About designs */
.product-story-page,
.product-story-page > section {
  background: #ffffff !important;
}

.product-story-page {
  --story-ink: #171713;
  --story-muted: #68645c;
  --story-orange: #ff6f3d;
  --story-sage: #6f875c;
  --story-card: #ffffff;
  color: var(--story-ink);
  padding-top: 77px;
}

.product-story-page .container {
  max-width: 1320px;
}

.product-ingredients-section {
  padding: 48px 0 38px !important;
}

.ingredients-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
}

.ingredients-heading h1 {
  margin: 4px 0 0;
  color: rgba(23, 23, 19, 0.13);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(58px, 9.4vw, 116px);
  font-weight: 400;
  line-height: 0.78;
  text-align: right;
  text-transform: uppercase;
}

.product-kicker,
.ingredients-summary {
  text-align: right;
}

.product-kicker {
  margin: 0;
  color: var(--story-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ingredients-summary {
  max-width: 720px;
  margin: 10px 0 0 auto;
  color: var(--story-muted);
  font-size: 13px;
}

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

.ingredient-card {
  position: relative;
  min-height: 388px;
  overflow: hidden;
  border-radius: 14px;
  isolation: isolate;
}

.ingredient-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 30%, rgba(0, 0, 0, 0.58) 100%);
}

.ingredient-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-pill,
.ingredient-card p {
  position: relative;
  z-index: 2;
}

.ingredient-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px 17px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  padding: 9px 16px;
  font-size: 12px;
  white-space: nowrap;
}

.ingredient-card p {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.28;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.source-meta-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  border-top: 1px solid rgba(23, 23, 19, 0.12);
  border-bottom: 1px solid rgba(23, 23, 19, 0.12);
  padding: 14px 0;
}

.source-meta-strip span {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(23, 23, 19, 0.12);
  color: var(--story-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.source-meta-strip span:last-child {
  border-right: 0;
}

.product-use-section {
  padding: 28px 0 70px !important;
}

.product-use-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 50px;
  align-items: center;
}

.product-use-copy {
  grid-column: 1;
  grid-row: 1;
  padding-left: 26px;
}

.product-use-copy h2 {
  max-width: 430px;
  margin: 0 0 14px;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.02;
}

.product-use-copy > p {
  max-width: 430px;
  margin: 0;
  color: var(--story-muted);
  font-size: 15px;
}

.benefit-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 168px));
  gap: 22px 28px;
  margin-top: 34px;
}

.benefit-icon-grid article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 76px;
  border-top: 1px solid rgba(23, 23, 19, 0.12);
  padding-top: 16px;
  text-align: center;
}

.how-to-panel {
  grid-column: 1;
  grid-row: 2;
  margin-top: 12px;
  padding-left: 26px;
}

.how-to-panel h3 {
  margin: 0 0 18px;
  color: rgba(23, 23, 19, 0.14);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(58px, 5.8vw, 88px);
  font-weight: 300;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-visual-stage {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.product-packshot {
  position: relative;
  z-index: 1;
  width: min(560px, 92%);
  max-height: 720px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(45, 37, 27, 0.18));
  box-shadow: none;
}

.use-note {
  position: absolute;
  z-index: 2;
  max-width: 265px;
  border-radius: 12px;
  background: var(--story-sage);
  color: #ffffff;
  padding: 17px 20px;
  font-size: 12px;
}

.note-one { top: 28%; left: 6%; }
.note-two { bottom: 24%; left: -3%; }
.note-three { right: 8%; bottom: 13%; }

body[data-page="products"] .product-visual-stage .use-note {
  width: min(230px, 38%) !important;
  max-width: 230px !important;
  height: auto !important;
  min-height: 0 !important;
}

body[data-page="products"] .product-visual-stage .note-one {
  top: 24% !important;
  right: auto !important;
  bottom: auto !important;
  left: 4% !important;
}

body[data-page="products"] .product-visual-stage .note-two {
  top: auto !important;
  right: auto !important;
  bottom: 30% !important;
  left: 0 !important;
}

body[data-page="products"] .product-visual-stage .note-three {
  top: auto !important;
  right: 4% !important;
  bottom: 15% !important;
  left: auto !important;
}

.product-myths-section {
  padding: 54px 0 64px !important;
}

.product-facts-section {
  padding: 18px 0 82px !important;
}

.about-premium {
  background: #ffffff !important;
  padding: 108px 0 54px;
}

.about-premium-shell {
  width: min(1320px, calc(100% - 92px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.035), transparent 32%), linear-gradient(315deg, rgba(5, 5, 5, 0.035), transparent 36%), #ffffff;
  box-shadow: 0 26px 80px rgba(5, 5, 5, 0.08);
}

.about-premium-hero {
  position: relative;
  min-height: 760px;
  padding: 44px 64px 58px;
  background: transparent;
  isolation: isolate;
}

.about-mini-nav {
  position: absolute;
  top: 50px;
  right: 64px;
  left: auto;
  z-index: 2;
  display: flex;
  gap: clamp(28px, 5vw, 78px);
  justify-content: flex-start;
}

.about-eyebrow {
  max-width: min(720px, calc(100% - 420px));
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.about-premium-hero h1 {
  margin: 132px 0 0;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(96px, 14.2vw, 224px);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
}

.about-hero-product {
  position: absolute;
  top: 285px;
  left: 50%;
  z-index: 1;
  width: min(430px, 34vw);
  margin: 0;
  filter: none;
  transform: translateX(-35%);
}

.about-hero-note {
  position: absolute;
  left: 64px;
  bottom: 96px;
  max-width: 360px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.about-hero-social {
  position: absolute;
  right: 64px;
  bottom: 98px;
  left: auto;
  display: flex;
  gap: 24px;
}

.about-premium-intro {
  padding: 96px 72px 76px;
}

.about-copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  max-width: 1040px;
  margin: 0 auto;
}

.about-copy-columns p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.about-copy-columns p + p {
  border-left: 1px solid rgba(5, 5, 5, 0.18);
  padding-left: 54px;
}

.about-premium-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 0 24px 170px;
}

.about-premium-gallery img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 7.2;
  border-radius: 4px;
  filter: grayscale(1) contrast(1.05);
  object-fit: cover;
}

.about-premium-gallery img:nth-child(2) {
  margin-top: 0;
}

.about-premium-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(320px, 1fr) minmax(220px, 0.78fr);
  gap: 28px;
  align-items: center;
  min-height: 360px;
  padding: 0 0 38px;
}

.about-side-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 210px;
  background: #eeeeee;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 13px;
}

.about-side-panel.left {
  border-radius: 0 999px 999px 0;
  padding: 30px 46px 30px 52px;
}

.about-side-panel.right {
  border-radius: 999px 0 0 999px;
  padding: 30px 52px 30px 46px;
}

.about-showcase-product {
  display: grid;
  width: auto;
  place-items: center;
  filter: none;
}

.about-showcase-product img {
  width: min(500px, 100%);
  border-radius: 22px;
  filter: drop-shadow(0 30px 48px rgba(5, 5, 5, 0.16));
}

.about-premium-values {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  border: 0;
  padding: 10px 96px 78px;
}

.about-value-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-value-row article {
  display: block;
  min-height: 180px;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  border-bottom: 0;
  padding-top: 18px;
  padding-bottom: 0;
}

.about-premium-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(5, 5, 5, 0.1);
  padding: 34px 96px 64px;
}

.about-premium-cta p {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .product-use-grid,
  .about-copy-columns,
  .about-premium-values,
  .about-premium-showcase {
    grid-template-columns: 1fr;
  }

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

  .product-use-copy,
  .how-to-panel,
  .product-visual-stage {
    grid-column: auto;
    grid-row: auto;
    padding-left: 0;
  }

  .about-premium-shell {
    width: min(100% - 44px, 1320px);
  }

  .about-copy-columns p + p {
    border-left: 0;
    border-top: 1px solid rgba(5, 5, 5, 0.18);
    padding-top: 28px;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .product-ingredients-section {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .ingredients-heading {
    grid-template-columns: 1fr;
  }

  .ingredients-heading h1,
  .product-kicker,
  .ingredients-summary {
    margin-left: 0;
    text-align: left;
  }

  .ingredients-heading h1 {
    font-size: 50px;
  }

  .ingredient-card-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .ingredient-card {
    min-width: min(78vw, 330px);
    min-height: 370px;
    scroll-snap-align: start;
  }

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

  .source-meta-strip span {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 19, 0.12);
    padding: 12px 0;
    text-align: left;
  }

  .product-visual-stage {
    min-height: 500px;
  }

  .about-premium {
    padding: 72px 0 28px;
  }

  .about-premium-shell {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .about-premium-hero {
    min-height: 690px;
    padding: 30px 20px 44px;
  }

  .about-mini-nav {
    position: static;
    justify-content: space-between;
    margin-bottom: 56px;
  }

  .about-eyebrow {
    max-width: 250px;
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  .about-premium-hero h1 {
    margin-top: 24px;
    font-size: clamp(50px, 17vw, 72px);
  }

  .about-hero-product {
    top: 310px;
    width: min(330px, 88vw);
    transform: translateX(-50%);
  }

  .about-hero-note {
    left: 20px;
    right: 20px;
    bottom: 74px;
    max-width: none;
  }

  .about-hero-social {
    right: 20px;
    bottom: 34px;
  }

  .about-premium-intro,
  .about-premium-values,
  .about-premium-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-premium-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 20px 76px;
  }

  .about-premium-showcase {
    gap: 18px;
    padding: 0 20px 42px;
  }

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

  .about-premium-cta {
    display: grid;
  }

  .about-premium-cta .pill-btn {
    width: 100%;
  }
}

/* Final 12:08 restore corrections */
body[data-page="products"] .ingredients-cta-row {
  display: grid !important;
  grid-template-columns: 1fr minmax(220px, 270px) 1fr !important;
  gap: 18px !important;
  align-items: center !important;
  margin-top: 24px !important;
}

body[data-page="products"] .ingredients-cta-row .shop-cta,
body[data-page="products"] .ingredients-cta-row p {
  grid-column: 2 !important;
}

body[data-page="products"] .ingredients-cta-row p {
  margin: -8px 0 0 !important;
  color: var(--story-muted) !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

body[data-page="products"] .shop-cta {
  display: inline-flex !important;
  min-height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid var(--story-orange) !important;
  border-radius: 9px !important;
  background: var(--story-orange) !important;
  color: #ffffff !important;
  padding: 12px 28px !important;
  text-decoration: none !important;
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: 0 12px 24px rgba(255, 111, 61, 0.22) !important;
}

body[data-page="about"] .about-premium-hero {
  position: relative !important;
  display: block !important;
  min-height: 760px !important;
  overflow: hidden !important;
  padding: 44px 64px 58px !important;
  background: transparent !important;
  text-align: left !important;
  isolation: isolate !important;
}

body[data-page="about"] .about-premium-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background:
    radial-gradient(circle at 52% 45%, rgba(5, 5, 5, 0.06), transparent 18%),
    linear-gradient(120deg, transparent 0 45%, rgba(5, 5, 5, 0.04) 45% 46%, transparent 46% 100%),
    linear-gradient(145deg, transparent 0 62%, rgba(5, 5, 5, 0.035) 62% 63%, transparent 63% 100%) !important;
}

body[data-page="about"] .about-premium-hero h1 {
  position: relative !important;
  z-index: 1 !important;
  margin: 132px 0 0 !important;
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: clamp(96px, 14.2vw, 224px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 0.78 !important;
  text-transform: uppercase !important;
}

body[data-page="about"] .about-hero-line {
  position: relative !important;
  z-index: 3 !important;
  margin: 8px 0 0 4px !important;
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

body[data-page="about"] .about-hero-product {
  position: absolute !important;
  top: 285px !important;
  left: 50% !important;
  z-index: 2 !important;
  width: min(430px, 34vw) !important;
  margin: 0 !important;
  filter: none !important;
  transform: translateX(-35%) !important;
}

body[data-page="about"] .about-hero-product::after {
  content: "" !important;
  position: absolute !important;
  left: 13% !important;
  right: 6% !important;
  bottom: -18px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(5, 5, 5, 0.14) !important;
  filter: blur(10px) !important;
}

body[data-page="about"] .about-hero-product img {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 18px !important;
  object-fit: cover !important;
}

body[data-page="about"] .about-centered-heading {
  margin-bottom: 46px !important;
  text-align: center !important;
}

body[data-page="about"] .about-centered-heading h2 {
  margin: 0 0 8px !important;
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body[data-page="about"] .about-centered-heading p {
  margin: 0 !important;
  color: rgba(5, 5, 5, 0.58) !important;
  font-size: 13px !important;
}

@media (max-width: 768px) {
  body[data-page="products"] .ingredients-cta-row {
    grid-template-columns: 1fr !important;
  }

  body[data-page="products"] .ingredients-cta-row .shop-cta,
  body[data-page="products"] .ingredients-cta-row p {
    grid-column: auto !important;
  }

  body[data-page="about"] .about-premium-hero {
    min-height: 690px !important;
    padding: 30px 20px 44px !important;
  }

  body[data-page="about"] .about-premium-hero h1 {
    margin-top: 24px !important;
    font-size: clamp(50px, 17vw, 72px) !important;
    line-height: 0.86 !important;
  }

  body[data-page="about"] .about-hero-product {
    top: 310px !important;
    width: min(330px, 88vw) !important;
    transform: translateX(-50%) !important;
  }
}

/* Widen About premium shell */
body[data-page="about"],
body[data-page="about"] .about-page {
  background: #ffffff !important;
}

body[data-page="about"] .about-premium-shell {
  width: calc(100% - 32px) !important;
  max-width: none !important;
}

@media (max-width: 768px) {
  body[data-page="about"] .about-premium-shell {
    width: 100% !important;
  }
}

/* Wide white page shells for non-home pages */
body[data-page="products"],
body[data-page="contact"],
body[data-page="scan"],
body[data-page="note"],
body[data-page="story"] {
  background: #ffffff !important;
}

body[data-page="products"] .product-detail-page,
body[data-page="contact"] .contact-page-new,
body[data-page="scan"] .scan-page,
body[data-page="note"] .note-page,
body[data-page="story"] .story-page {
  width: calc(100% - 32px) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  overflow: hidden !important;
  border: 1px solid rgba(23, 23, 19, 0.10) !important;
  border-radius: 18px 18px 0 0 !important;
  background: #ffffff !important;
  box-shadow: 0 18px 44px rgba(23, 23, 19, 0.05) !important;
}

body[data-page="products"] .product-detail-page,
body[data-page="contact"] .contact-page-new,
body[data-page="scan"] .scan-page,
body[data-page="story"] .story-page {
  margin-top: 104px !important;
}

body[data-page="products"] .product-detail-page {
  padding-top: 0 !important;
}

body[data-page="note"] .note-page {
  margin-top: 104px !important;
  padding-top: 64px !important;
}

@media (max-width: 768px) {
  body[data-page="products"] .product-detail-page,
  body[data-page="contact"] .contact-page-new,
  body[data-page="scan"] .scan-page,
  body[data-page="note"] .note-page,
  body[data-page="story"] .story-page {
    width: 100% !important;
    margin-top: 77px !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body[data-page="note"] .note-page {
    padding-top: 44px !important;
  }
}

/* Home premium product canvas */
body[data-page="home"] {
  background: #ffffff !important;
}

body[data-page="home"] .site-header {
  opacity: 1 !important;
  pointer-events: auto !important;
  background: #BEE1F7 !important;
  color: var(--ink) !important;
}

body[data-page="home"] .hero-home,
body[data-page="home"] .home-page {
  width: calc(100% - 32px) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  overflow: hidden !important;
  border: 1px solid rgba(23, 23, 19, 0.10) !important;
  background: #ffffff !important;
  box-shadow: 0 18px 44px rgba(23, 23, 19, 0.05) !important;
}

body[data-page="home"] .hero-home {
  width: 100% !important;
  min-height: 100vh !important;
  margin-top: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #171713 !important;
  display: block !important;
  text-align: left !important;
  isolation: isolate !important;
}

body[data-page="home"] .home-page {
  margin-top: 32px !important;
  border-radius: 18px 18px 0 0 !important;
  border-top: 0 !important;
  padding-top: 0 !important;
}

body[data-page="home"] #hero-canvas,
body[data-page="home"] .hero-media {
  display: block !important;
}

body[data-page="home"] .hero-media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-image: url("images/hero-butter.png") !important;
  background-size: cover !important;
  background-position: center !important;
}

body[data-page="home"] .hero-media::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(7, 16, 10, 0.78) 0%, rgba(7, 16, 10, 0.42) 48%, rgba(7, 16, 10, 0.24) 100%),
    radial-gradient(circle at 72% 42%, rgba(200, 164, 86, 0.24), transparent 34%) !important;
}

body[data-page="home"] #hero-canvas {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  opacity: 0.9 !important;
}

body[data-page="home"] .hero-home::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background:
    radial-gradient(circle at 54% 47%, rgba(23, 23, 19, 0.055), transparent 18%),
    linear-gradient(120deg, transparent 0 46%, rgba(23, 23, 19, 0.04) 46% 47%, transparent 47% 100%),
    linear-gradient(145deg, transparent 0 62%, rgba(23, 23, 19, 0.035) 62% 63%, transparent 63% 100%) !important;
}

body[data-page="home"] .home-hero-mini-nav {
  position: absolute !important;
  top: 68px !important;
  right: 6vw !important;
  z-index: 4 !important;
  display: flex !important;
  gap: clamp(28px, 5vw, 74px) !important;
}

body[data-page="home"] .home-hero-mini-nav a {
  color: rgba(23, 23, 19, 0.72) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

body[data-page="home"] .home-hero-mini-nav a:hover {
  color: #171713 !important;
  text-decoration: underline !important;
  text-underline-offset: 5px !important;
}

body[data-page="home"] .hero-content {
  position: relative !important;
  z-index: 3 !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: inherit !important;
  padding: 68px clamp(28px, 5vw, 88px) 58px !important;
  text-align: left !important;
}

body[data-page="home"] .home-hero-kicker {
  max-width: min(760px, 58vw) !important;
  margin: 0 0 128px clamp(160px, 22vw, 360px) !important;
  color: rgba(23, 23, 19, 0.62) !important;
  font-size: clamp(15px, 1.25vw, 22px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.28em !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

body[data-page="home"] .hero-content h1 {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1040px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: clamp(62px, 7.2vw, 118px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 0.88 !important;
  text-transform: uppercase !important;
}

body[data-page="home"] .home-hero-product {
  display: none !important;
}

body[data-page="home"] .home-hero-product img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 18px !important;
}

body[data-page="home"] .hero-subheadline {
  position: absolute !important;
  left: clamp(28px, 5vw, 88px) !important;
  bottom: 60px !important;
  max-width: 500px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: clamp(15px, 1.1vw, 18px) !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

body[data-page="home"] .hero-cta {
  position: absolute !important;
  right: clamp(28px, 5vw, 88px) !important;
  bottom: 58px !important;
  margin: 0 !important;
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: #171713 !important;
}

body[data-page="home"] .home-hero-kicker,
body[data-page="home"] .home-hero-mini-nav a {
  color: rgba(255, 255, 255, 0.78) !important;
}

body[data-page="home"] .home-hero-mini-nav a:hover {
  color: #ffffff !important;
}

body[data-page="home"] .hero-cta:hover {
  background: transparent !important;
  color: #ffffff !important;
}

body[data-page="home"] .home-page .section-heading,
body[data-page="home"] .home-page h2,
body[data-page="home"] .home-page h3,
body[data-page="home"] .footer-wordmark {
  color: #171713 !important;
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body[data-page="home"] .home-page .section-heading {
  max-width: 980px !important;
  margin-bottom: 38px !important;
  font-size: clamp(42px, 6.8vw, 112px) !important;
  line-height: 0.9 !important;
}

body[data-page="home"] .home-page .section-heading.center {
  margin-right: auto !important;
  margin-left: auto !important;
}

body[data-page="home"] .home-page .section-label,
body[data-page="home"] .home-page .section-tagline,
body[data-page="home"] .home-page .brand-meta,
body[data-page="home"] .home-page .pill-btn,
body[data-page="home"] .site-footer .pill-btn {
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
}

body[data-page="home"] .home-page p,
body[data-page="home"] .site-footer p {
  color: rgba(23, 23, 19, 0.74) !important;
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
}

body[data-page="home"] .home-page .origin-copy p,
body[data-page="home"] .home-page .why-grid p,
body[data-page="home"] .home-page .large-copy,
body[data-page="home"] .home-page .testimonial-text,
body[data-page="home"] .site-footer .news-content p {
  font-size: clamp(15px, 1.2vw, 18px) !important;
  line-height: 1.55 !important;
}

body[data-page="home"] .home-page .origin-section,
body[data-page="home"] .home-page .why-section,
body[data-page="home"] .home-page .ethics-section,
body[data-page="home"] .home-page .testimonial-section {
  padding-top: clamp(78px, 8vw, 132px) !important;
  padding-bottom: clamp(78px, 8vw, 132px) !important;
}

body[data-page="home"] .home-page .why-grid h3 {
  margin-bottom: 18px !important;
  font-size: clamp(22px, 2.2vw, 34px) !important;
  line-height: 0.98 !important;
}

body[data-page="home"] .home-page .brand-logo-text {
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

@media (max-width: 1024px) {
  body[data-page="home"] .hero-home {
    min-height: 760px !important;
  }

  body[data-page="home"] .home-hero-kicker {
    margin-left: 0 !important;
    margin-bottom: 92px !important;
  }

  body[data-page="home"] .home-hero-product {
    top: 345px !important;
    width: min(430px, 48vw) !important;
    transform: translateX(-18%) !important;
  }
}

@media (max-width: 768px) {
  body[data-page="home"] .hero-home,
  body[data-page="home"] .home-page {
    width: 100% !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body[data-page="home"] .hero-home {
    min-height: 100vh !important;
    margin-top: 0 !important;
  }

  body[data-page="home"] .home-hero-mini-nav {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    justify-content: space-between !important;
    padding: 30px 22px 0 !important;
    gap: 16px !important;
  }

  body[data-page="home"] .home-hero-mini-nav a {
    font-size: 11px !important;
  }

  body[data-page="home"] .hero-content {
    min-height: 690px !important;
    padding: 28px 22px 42px !important;
  }

  body[data-page="home"] .home-hero-kicker {
    max-width: none !important;
    margin: 0 0 36px !important;
    font-size: 12px !important;
    letter-spacing: 0.18em !important;
  }

  body[data-page="home"] .hero-content h1 {
    max-width: 100% !important;
    font-size: clamp(42px, 12.5vw, 62px) !important;
    line-height: 0.94 !important;
  }

  body[data-page="home"] .home-hero-product {
    top: 300px !important;
    left: 50% !important;
    width: min(330px, 86vw) !important;
    transform: translateX(-50%) !important;
  }

  body[data-page="home"] .hero-subheadline,
  body[data-page="home"] .hero-cta {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  body[data-page="home"] .hero-subheadline {
    max-width: 100% !important;
    margin-top: 340px !important;
    font-size: 14px !important;
    width: auto !important;
    transform: none !important;
  }

  body[data-page="home"] .hero-cta {
    margin-top: 20px !important;
  }
}

/* Premium diagonal section rules */
body[data-page="about"] .about-premium-shell,
body[data-page="products"] .product-detail-page,
body[data-page="contact"] .contact-page-new,
body[data-page="scan"] .scan-page,
body[data-page="note"] .note-page,
body[data-page="story"] .story-page,
body[data-page="home"] .home-page {
  position: relative !important;
  isolation: isolate !important;
}

body[data-page="about"] .about-premium-shell::before,
body[data-page="products"] .product-detail-page::before,
body[data-page="contact"] .contact-page-new::before,
body[data-page="scan"] .scan-page::before,
body[data-page="note"] .note-page::before,
body[data-page="story"] .story-page::before,
body[data-page="home"] .home-page::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(122deg, transparent 0 37%, rgba(23, 23, 19, 0.035) 37.1% 38.1%, transparent 38.2% 100%),
    linear-gradient(142deg, transparent 0 68%, rgba(23, 23, 19, 0.04) 68.1% 69.3%, transparent 69.4% 100%) !important;
}

body[data-page="contact"] .contact-page-new > *,
body[data-page="scan"] .scan-page > *,
body[data-page="note"] .note-page > *,
body[data-page="story"] .story-page > *,
body[data-page="home"] .home-page > *,
body[data-page="products"] .product-detail-page > *,
body[data-page="about"] .about-premium-shell > * {
  position: relative !important;
  z-index: 1 !important;
}

body[data-page="products"] .product-detail-page > section {
  position: relative !important;
  overflow: visible !important;
  isolation: auto !important;
  background: transparent !important;
}

body[data-page="products"] .product-detail-page > section::before {
  content: none !important;
}

body[data-page="products"] .product-detail-page > section > * {
  position: relative !important;
  z-index: 1 !important;
}

body[data-page="products"] .product-detail-page::before {
  z-index: 0 !important;
  background:
    linear-gradient(122deg, transparent 0 52%, rgba(23, 23, 19, 0.035) 52.08% 52.72%, transparent 52.8% 100%),
    linear-gradient(142deg, transparent 0 78%, rgba(23, 23, 19, 0.04) 78.08% 78.78%, transparent 78.86% 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 1320px !important;
  background-position: center top !important;
}

/* Product page PNG object tiles */
body[data-page="products"] .ingredient-card-grid {
  gap: 20px !important;
}

body[data-page="products"] .ingredient-card {
  display: grid !important;
  grid-template-rows: minmax(190px, 1fr) auto auto !important;
  min-height: 372px !important;
  padding: 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(23, 23, 19, 0.10) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 50% 34%, rgba(200, 164, 86, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 18px 38px rgba(23, 23, 19, 0.055) !important;
}

body[data-page="products"] .ingredient-card::after {
  display: none !important;
}

body[data-page="products"] .ingredient-card img {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 210px !important;
  max-height: 210px !important;
  align-self: center !important;
  justify-self: center !important;
  object-fit: contain !important;
  filter: drop-shadow(0 20px 24px rgba(23, 23, 19, 0.12)) !important;
}

body[data-page="products"] .ingredient-pill {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 2 !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-top: 12px !important;
  border: 1px solid rgba(23, 23, 19, 0.12) !important;
  background: #ffffff !important;
  color: var(--story-ink) !important;
  box-shadow: 0 10px 22px rgba(23, 23, 19, 0.055) !important;
}

body[data-page="products"] .ingredient-card p {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 2 !important;
  margin: 14px 0 0 !important;
  color: rgba(23, 23, 19, 0.72) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  text-shadow: none !important;
}

body[data-page="products"] .ingredients-cta-row {
  display: none !important;
}

/* Separate Sage-inspired product showcase page */
body[data-page="product-showcase"] {
  background: #d8ccc7;
  color: #20251c;
}

body[data-page="product-showcase"] .site-header {
  background: #BEE1F7;
}

.zuri-product-page {
  width: min(1680px, calc(100% - 56px));
  margin: 112px auto 0;
  overflow: hidden;
  border: 1px solid rgba(32, 37, 28, 0.12);
  border-radius: 14px;
  background: #f5f3ec;
  box-shadow: 0 34px 72px rgba(44, 36, 30, 0.20);
}

.zp-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
}

.zp-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(34, 25, 18, 0.12), rgba(34, 25, 18, 0.46));
}

.zp-floating-nav {
  position: absolute;
  top: 46px;
  left: 50%;
  z-index: 4;
  display: grid;
  width: min(1160px, calc(100% - 140px));
  min-height: 76px;
  grid-template-columns: 86px 1fr 1fr 1fr 1fr 86px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 0 22px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.zp-floating-nav::before {
  content: "Z";
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
}

.zp-floating-nav a {
  color: inherit;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.zp-floating-nav a:not(.zp-cart):hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.zp-cart {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
}

.zp-hero-copy {
  position: absolute;
  left: clamp(28px, 5vw, 82px);
  right: clamp(28px, 5vw, 82px);
  bottom: 38px;
  color: #ffffff;
}

.zp-hero-copy p,
.zp-kicker {
  margin: 0 0 14px;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zp-hero-copy h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(150px, 28vw, 430px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.72;
  text-transform: lowercase;
}

.zp-philosophy,
.zp-origin-grid,
.zp-ritual,
.zp-proof,
.zp-final-cta {
  padding: clamp(70px, 8vw, 130px) clamp(28px, 7vw, 120px);
}

.zp-philosophy {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.zp-philosophy h2,
.zp-origin-grid h2,
.zp-ritual h2 {
  margin: 0 0 24px;
  color: #20251c;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 84px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
}

.zp-philosophy p,
.zp-origin-grid p,
.zp-ritual p,
.zp-proof p,
.zp-final-cta p {
  margin: 0;
  color: rgba(32, 37, 28, 0.72);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.55;
}

.zp-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  border: 1px solid #6f8061;
  border-radius: 999px;
  background: #6f8061;
  color: #ffffff;
  padding: 12px 34px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.zp-button:hover {
  background: transparent;
  color: #20251c;
  transform: translateY(-2px);
}

.zp-button-light {
  background: transparent;
  color: #20251c;
}

.zp-button-light:hover {
  background: #20251c;
  color: #ffffff;
}

.zp-product-object {
  margin: 0;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.zp-product-object img {
  width: min(560px, 100%);
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(44, 36, 30, 0.20));
}

.zp-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 28px;
}

.zp-origin-grid figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #e6e1d8;
}

.zp-origin-grid figure:last-child {
  min-height: 180px;
}

.zp-origin-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zp-origin-grid figure:last-child img {
  object-fit: contain;
  padding: 24px;
  filter: drop-shadow(0 20px 22px rgba(44, 36, 30, 0.13));
}

.zp-origin-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 34px 18px;
}

.zp-ritual {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  overflow: hidden;
}

.zp-new-word {
  position: absolute;
  left: 5vw;
  right: 5vw;
  top: 28%;
  color: rgba(111, 128, 97, 0.42);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(190px, 31vw, 500px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.72;
}

.zp-ritual-product {
  position: relative;
  z-index: 2;
  grid-column: 2;
  justify-self: center;
  width: min(520px, 72%);
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 32px 38px rgba(44, 36, 30, 0.19));
}

.zp-ritual-text,
.zp-ritual-copy {
  position: relative;
  z-index: 3;
  max-width: 440px;
}

.zp-ritual-copy {
  align-self: end;
  justify-self: end;
}

.zp-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 30px;
}

.zp-proof article {
  border: 1px solid rgba(32, 37, 28, 0.12);
  background: rgba(255, 255, 255, 0.54);
  padding: 28px;
}

.zp-proof span {
  display: inline-block;
  margin-bottom: 34px;
  color: #6f8061;
  font-size: 13px;
  font-weight: 800;
}

.zp-proof h3 {
  margin: 0 0 14px;
  color: #20251c;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 0.98;
}

.zp-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(32, 37, 28, 0.12);
}

.zp-final-cta p {
  max-width: 760px;
  color: #20251c;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7vw, 118px);
  font-weight: 500;
  line-height: 0.9;
}

@media (max-width: 1024px) {
  .zuri-product-page {
    width: calc(100% - 32px);
  }

  .zp-floating-nav {
    width: calc(100% - 60px);
    grid-template-columns: 64px repeat(4, 1fr) 64px;
  }

  .zp-philosophy,
  .zp-origin-grid,
  .zp-ritual,
  .zp-proof {
    grid-template-columns: 1fr;
  }

  .zp-ritual-product {
    grid-column: auto;
    width: min(460px, 86%);
  }

  .zp-ritual-copy {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .zuri-product-page {
    width: 100%;
    margin-top: 77px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

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

  .zp-floating-nav {
    top: 22px;
    width: calc(100% - 28px);
    min-height: 58px;
    grid-template-columns: 46px 1fr 1fr 46px;
    gap: 8px;
    padding: 0 10px;
  }

  .zp-floating-nav a:nth-of-type(2),
  .zp-floating-nav a:nth-of-type(3) {
    display: none;
  }

  .zp-floating-nav::before {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 24px;
  }

  .zp-floating-nav a {
    font-size: 11px;
  }

  .zp-hero-copy {
    bottom: 28px;
  }

  .zp-hero-copy h1 {
    font-size: clamp(112px, 38vw, 180px);
  }

  .zp-philosophy,
  .zp-origin-grid,
  .zp-ritual,
  .zp-proof,
  .zp-final-cta {
    padding: 58px 22px;
  }

  .zp-product-object {
    min-height: 380px;
  }

  .zp-origin-grid figure,
  .zp-origin-grid article {
    min-height: 260px;
  }

  .zp-ritual {
    min-height: 760px;
  }

  .zp-new-word {
    top: 34%;
    font-size: clamp(140px, 48vw, 230px);
  }

  .zp-proof {
    gap: 14px;
  }

  .zp-final-cta {
    display: block;
  }
}

/* About-style layout pass for separate product showcase page */
body[data-page="product-showcase"] {
  background: #ffffff !important;
}

body[data-page="product-showcase"] .site-header,
body[data-page="product-showcase"] .site-footer {
  background: #BEE1F7 !important;
}

body[data-page="product-showcase"] .zuri-product-page {
  position: relative !important;
  width: calc(100% - 32px) !important;
  max-width: none !important;
  margin: 104px auto 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(23, 23, 19, 0.10) !important;
  border-radius: 18px 18px 0 0 !important;
  background: #ffffff !important;
  box-shadow: 0 18px 44px rgba(23, 23, 19, 0.05) !important;
  isolation: isolate !important;
}

body[data-page="product-showcase"] .zuri-product-page::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 54% 14%, rgba(23, 23, 19, 0.045), transparent 18%),
    linear-gradient(122deg, transparent 0 38%, rgba(23, 23, 19, 0.035) 38.08% 38.82%, transparent 38.9% 100%),
    linear-gradient(142deg, transparent 0 70%, rgba(23, 23, 19, 0.04) 70.08% 70.86%, transparent 70.95% 100%) !important;
}

body[data-page="product-showcase"] .zuri-product-page > * {
  position: relative !important;
  z-index: 1 !important;
}

body[data-page="product-showcase"] .zp-hero {
  min-height: 760px !important;
  overflow: hidden !important;
  background: transparent !important;
}

body[data-page="product-showcase"] .zp-hero > img {
  position: absolute !important;
  top: 285px !important;
  left: 50% !important;
  z-index: 2 !important;
  width: min(520px, 34vw) !important;
  height: auto !important;
  max-height: 360px !important;
  border-radius: 18px !important;
  object-fit: cover !important;
  filter: drop-shadow(0 30px 34px rgba(23, 23, 19, 0.15)) !important;
  transform: translateX(-24%) !important;
}

body[data-page="product-showcase"] .zp-hero::after {
  display: none !important;
}

body[data-page="product-showcase"] .zp-floating-nav {
  top: 58px !important;
  left: auto !important;
  right: clamp(42px, 7vw, 120px) !important;
  width: auto !important;
  min-height: auto !important;
  display: flex !important;
  grid-template-columns: none !important;
  gap: clamp(24px, 4.5vw, 72px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(23, 23, 19, 0.78) !important;
  padding: 0 !important;
  backdrop-filter: none !important;
  transform: none !important;
}

body[data-page="product-showcase"] .zp-floating-nav::before {
  display: none !important;
}

body[data-page="product-showcase"] .zp-floating-nav a {
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.10em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body[data-page="product-showcase"] .zp-cart {
  min-height: auto !important;
  border: 0 !important;
  background: transparent !important;
}

body[data-page="product-showcase"] .zp-hero-copy {
  left: clamp(42px, 7vw, 120px) !important;
  right: clamp(42px, 7vw, 120px) !important;
  bottom: auto !important;
  top: 58px !important;
  color: #171713 !important;
}

body[data-page="product-showcase"] .zp-hero-copy p {
  max-width: min(480px, 34vw) !important;
  margin: 0 0 158px 0 !important;
  color: rgba(23, 23, 19, 0.64) !important;
  font-size: clamp(15px, 1.25vw, 22px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  line-height: 1.15 !important;
}

body[data-page="product-showcase"] .zp-hero-copy h1 {
  margin: 0 !important;
  color: #171713 !important;
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: clamp(124px, 20vw, 330px) !important;
  font-weight: 900 !important;
  line-height: 0.72 !important;
  text-transform: uppercase !important;
}

body[data-page="product-showcase"] .zp-philosophy,
body[data-page="product-showcase"] .zp-origin-grid,
body[data-page="product-showcase"] .zp-ritual,
body[data-page="product-showcase"] .zp-proof,
body[data-page="product-showcase"] .zp-final-cta {
  padding: clamp(64px, 7vw, 118px) clamp(42px, 7vw, 120px) !important;
  background: transparent !important;
}

body[data-page="product-showcase"] .zp-philosophy {
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr) !important;
  border-top: 1px solid rgba(23, 23, 19, 0.10) !important;
}

body[data-page="product-showcase"] .zp-philosophy h2,
body[data-page="product-showcase"] .zp-origin-grid h2,
body[data-page="product-showcase"] .zp-ritual h2 {
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: clamp(44px, 6.6vw, 112px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 0.88 !important;
  text-transform: uppercase !important;
}

body[data-page="product-showcase"] .zp-product-object {
  min-height: 620px !important;
}

body[data-page="product-showcase"] .zp-product-object img {
  width: min(520px, 92%) !important;
}

body[data-page="product-showcase"] .zp-origin-grid {
  grid-template-columns: 1fr 1fr 0.9fr !important;
  align-items: stretch !important;
  gap: 22px !important;
  border-top: 1px solid rgba(23, 23, 19, 0.10) !important;
}

body[data-page="product-showcase"] .zp-origin-grid figure {
  min-height: 320px !important;
  border-radius: 0 !important;
  background: rgba(245, 240, 232, 0.72) !important;
}

body[data-page="product-showcase"] .zp-ritual {
  min-height: 760px !important;
  grid-template-columns: 0.82fr 1.18fr !important;
  border-top: 1px solid rgba(23, 23, 19, 0.10) !important;
}

body[data-page="product-showcase"] .zp-new-word {
  color: rgba(23, 23, 19, 0.08) !important;
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: clamp(170px, 28vw, 470px) !important;
  font-weight: 900 !important;
  line-height: 0.72 !important;
  text-transform: uppercase !important;
}

body[data-page="product-showcase"] .zp-proof {
  border-top: 1px solid rgba(23, 23, 19, 0.10) !important;
}

body[data-page="product-showcase"] .zp-proof article {
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

body[data-page="product-showcase"] .zp-final-cta {
  border-top: 1px solid rgba(23, 23, 19, 0.10) !important;
}

@media (max-width: 1024px) {
  body[data-page="product-showcase"] .zp-philosophy,
  body[data-page="product-showcase"] .zp-origin-grid,
  body[data-page="product-showcase"] .zp-ritual,
  body[data-page="product-showcase"] .zp-proof {
    grid-template-columns: 1fr !important;
  }

  body[data-page="product-showcase"] .zp-hero > img {
    width: min(430px, 52vw) !important;
    transform: translateX(-18%) !important;
  }
}

@media (max-width: 768px) {
  body[data-page="product-showcase"] .zuri-product-page {
    width: 100% !important;
    margin-top: 77px !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body[data-page="product-showcase"] .zp-hero {
    min-height: 720px !important;
  }

  body[data-page="product-showcase"] .zp-floating-nav {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    justify-content: space-between !important;
    padding: 30px 22px 0 !important;
    gap: 14px !important;
  }

  body[data-page="product-showcase"] .zp-floating-nav a {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
  }

  body[data-page="product-showcase"] .zp-floating-nav a:nth-of-type(2),
  body[data-page="product-showcase"] .zp-floating-nav a:nth-of-type(3) {
    display: none !important;
  }

  body[data-page="product-showcase"] .zp-hero-copy {
    top: 96px !important;
    left: 22px !important;
    right: 22px !important;
  }

  body[data-page="product-showcase"] .zp-hero-copy p {
    max-width: none !important;
    margin: 0 0 38px !important;
    font-size: 12px !important;
    letter-spacing: 0.18em !important;
  }

  body[data-page="product-showcase"] .zp-hero-copy h1 {
    font-size: clamp(76px, 25vw, 112px) !important;
    line-height: 0.78 !important;
  }

  body[data-page="product-showcase"] .zp-hero > img {
    top: 320px !important;
    left: 50% !important;
    width: min(330px, 86vw) !important;
    max-height: 280px !important;
    transform: translateX(-50%) !important;
  }

  body[data-page="product-showcase"] .zp-philosophy,
  body[data-page="product-showcase"] .zp-origin-grid,
  body[data-page="product-showcase"] .zp-ritual,
  body[data-page="product-showcase"] .zp-proof,
  body[data-page="product-showcase"] .zp-final-cta {
    padding: 54px 22px !important;
  }

  body[data-page="product-showcase"] .zp-product-object {
    min-height: 420px !important;
  }

  body[data-page="product-showcase"] .zp-ritual {
    min-height: 720px !important;
  }

  body[data-page="product-showcase"] .zp-final-cta {
    display: block !important;
  }
}

/* Fluid responsiveness pass for the main Zuri pages. */
html,
body {
  overflow-x: hidden;
}

img,
video,
canvas {
  max-width: 100%;
}

.container,
.header-inner,
.footer-inner,
.hero-content,
.origin-section,
.brand-section,
.why-section,
.about-premium-shell,
.about-premium-hero,
.about-premium-intro,
.about-premium-values,
.about-premium-cta {
  max-width: 100%;
}

.container {
  padding-right: clamp(22px, 5vw, 70px);
  padding-left: clamp(22px, 5vw, 70px);
}

.origin-grid,
.why-grid,
.about-copy-columns,
.about-value-row,
.about-premium-gallery,
.about-premium-values,
.footer-top {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.origin-grid > *,
.why-grid > *,
.about-copy-columns > *,
.about-value-row > *,
.about-premium-gallery > *,
.about-premium-showcase > *,
.about-premium-values > *,
.footer-top > *,
.hero-content,
.origin-copy,
.footer-nav-wrap {
  min-width: 0;
}

.about-premium-showcase {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.hero h1,
.hero-content h1,
.section-heading,
.about-premium-hero h1,
.about-premium-values h2,
.about-premium-cta p,
.footer-wordmark {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero h1,
.hero-content h1 {
  font-size: clamp(48px, 11vw, 150px);
  line-height: 0.9;
}

.section-heading,
.about-premium-values h2 {
  font-size: clamp(34px, 6vw, 88px);
}

.about-premium-hero h1 {
  font-size: clamp(72px, 18vw, 300px);
}

.home-hero-product,
.about-hero-product,
.about-showcase-product,
.about-side-panel {
  max-width: min(100%, 92vw);
}

.home-hero-product img,
.about-hero-product img,
.about-showcase-product img,
.about-side-panel img,
.origin-media img,
.card-image {
  width: min(100%, 92vw);
  height: auto;
  object-fit: contain;
}

.pill-btn,
.nav-buy,
.hero-cta {
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
}

.home-hero-mini-nav,
.about-mini-nav {
  max-width: 100%;
  flex-wrap: wrap;
}

.home-hero-mini-nav a,
.about-mini-nav a {
  min-width: 0;
}

@media (width <= 900px) {
  .desktop-nav,
  .wordmark {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-content,
  body[data-page="home"] .hero-content {
    width: min(100%, 720px);
    padding-right: clamp(22px, 6vw, 44px);
    padding-left: clamp(22px, 6vw, 44px);
  }

  .about-premium-shell,
  body[data-page="about"] .about-premium-shell {
    width: 100%;
    margin-top: 78px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}

@media (width <= 560px) {
  .hero h1,
  .hero-content h1 {
    font-size: clamp(42px, 14vw, 70px);
  }

  .about-premium-hero h1 {
    font-size: clamp(58px, 20vw, 110px);
  }

  .home-hero-mini-nav,
  .about-mini-nav {
    gap: 14px;
  }

  .home-hero-mini-nav a,
  .about-mini-nav a {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

/* Editorial PNG collage layers for Zuri source/product storytelling. */
.editorial-png {
  position: absolute;
  z-index: 1;
  display: block;
  width: var(--png-width, 260px);
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: var(--png-opacity, 0.96);
  filter: drop-shadow(0 26px 30px rgba(23, 23, 19, 0.13));
  transform: translate3d(0, 0, 0) rotate(var(--png-rotate, 0deg));
}

.hero-home,
.origin-section,
.why-section,
.about-premium-hero,
.about-premium-intro {
  position: relative;
  overflow: hidden;
}

.hero-home > :not(.editorial-png),
.origin-section > :not(.editorial-png),
.why-section > :not(.editorial-png),
.about-premium-hero > :not(.editorial-png),
.about-premium-intro > :not(.editorial-png) {
  position: relative;
  z-index: 2;
}

.home-png-branch {
  --png-width: clamp(190px, 25vw, 420px);
  --png-rotate: -18deg;
  top: 98px;
  right: -112px;
  z-index: 2;
  opacity: 0.86;
}

.home-png-nuts {
  --png-width: clamp(120px, 15vw, 230px);
  --png-rotate: 13deg;
  left: clamp(24px, 6vw, 110px);
  bottom: 150px;
  z-index: 2;
  opacity: 0.88;
}

.origin-png-fruit {
  --png-width: clamp(170px, 21vw, 350px);
  --png-rotate: 10deg;
  right: -104px;
  top: 26px;
  opacity: 0.72;
}

.why-png-butter {
  --png-width: clamp(150px, 20vw, 320px);
  --png-rotate: -11deg;
  left: -88px;
  top: 32px;
  opacity: 0.68;
}

.about-png-branch {
  --png-width: clamp(180px, 23vw, 380px);
  --png-rotate: -17deg;
  right: -116px;
  top: 104px;
  opacity: 0.78;
}

.about-png-butter {
  --png-width: clamp(130px, 16vw, 260px);
  --png-rotate: 13deg;
  left: clamp(24px, 5vw, 86px);
  bottom: 116px;
  opacity: 0.76;
}

.about-origin-png-nuts {
  --png-width: clamp(130px, 16vw, 260px);
  --png-rotate: -15deg;
  right: clamp(22px, 8vw, 120px);
  bottom: 20px;
  opacity: 0.72;
}

@media (width <= 900px) {
  .home-png-branch,
  .origin-png-fruit,
  .about-png-branch {
    --png-width: clamp(130px, 25vw, 240px);
    opacity: 0.48;
  }

  .home-png-nuts,
  .why-png-butter,
  .about-png-butter,
  .about-origin-png-nuts {
    --png-width: clamp(96px, 18vw, 170px);
    opacity: 0.52;
  }
}

@media (width <= 620px) {
  .home-png-branch,
  .home-png-nuts,
  .origin-png-fruit,
  .why-png-butter,
  .about-png-branch,
  .about-png-butter,
  .about-origin-png-nuts {
    display: none;
  }
}

/* Final About hero collision pass: keep display type, product, copy, and links in separate lanes. */
body[data-page="about"] .about-premium-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr) !important;
  grid-template-rows: auto auto auto 1fr auto auto !important;
  align-items: end !important;
  column-gap: clamp(32px, 6vw, 112px) !important;
  min-height: 760px !important;
}

body[data-page="about"] .about-eyebrow {
  position: relative !important;
  z-index: 5 !important;
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  max-width: 820px !important;
  margin: 0 0 clamp(44px, 6vw, 78px) !important;
}

body[data-page="about"] .about-premium-hero h1 {
  position: relative !important;
  z-index: 3 !important;
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  max-width: 1040px !important;
  margin: 0 !important;
  font-size: clamp(72px, 12.4vw, 210px) !important;
  pointer-events: none !important;
}

body[data-page="about"] .about-hero-line {
  position: relative !important;
  z-index: 5 !important;
  grid-column: 1 !important;
  grid-row: 3 !important;
  width: fit-content !important;
  max-width: 420px !important;
  margin: clamp(16px, 2.4vw, 28px) 0 0 !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  padding: 8px 12px !important;
}

body[data-page="about"] .about-hero-product {
  position: absolute !important;
  top: clamp(310px, 32vw, 390px) !important;
  right: clamp(48px, 9vw, 170px) !important;
  left: auto !important;
  z-index: 2 !important;
  width: min(420px, 30vw) !important;
  transform: none !important;
}

body[data-page="about"] .about-hero-note {
  position: relative !important;
  z-index: 5 !important;
  grid-column: 1 !important;
  grid-row: 5 !important;
  max-width: 520px !important;
  margin: clamp(28px, 4vw, 52px) 0 0 !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.84) !important;
  padding: 12px 14px !important;
}

body[data-page="about"] .about-hero-social {
  position: relative !important;
  z-index: 5 !important;
  grid-column: 1 !important;
  grid-row: 6 !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  justify-content: flex-start !important;
  margin-top: 16px !important;
}

@media (width <= 768px) {
  body[data-page="about"] .about-premium-hero {
    display: block !important;
    min-height: auto !important;
    padding: 30px 22px 56px !important;
  }

  body[data-page="about"] .about-eyebrow {
    max-width: 100% !important;
    margin: 28px 0 22px !important;
    font-size: 11px !important;
    letter-spacing: 0.16em !important;
  }

  body[data-page="about"] .about-premium-hero h1 {
    max-width: 100% !important;
    font-size: clamp(52px, 16vw, 72px) !important;
    line-height: 0.86 !important;
  }

  body[data-page="about"] .about-hero-line {
    max-width: 100% !important;
    margin-top: 16px !important;
  }

  body[data-page="about"] .about-hero-product {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: min(100%, 340px) !important;
    margin: 28px auto 0 !important;
    transform: none !important;
  }

  body[data-page="about"] .about-hero-note {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    max-width: 100% !important;
    margin-top: 26px !important;
  }

  body[data-page="about"] .about-hero-social {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 18px !important;
    justify-content: center !important;
  }
}
