:root {
  --bg: #f5ede3;
  --paper: #fbf7f1;
  --ink: #f5efe7;
  --muted: #d2c7bb;
  --line: rgba(24,20,17,.12);
  --card: rgba(255,255,255,.74);
  --accent: #1a1a1a;
  --accent-soft: #2a241f;
  --gold: #a98845;
  --gold-soft: rgba(169,136,69,.18);
  --shadow: 0 20px 60px rgba(43,33,23,.14);
  --shadow-soft: 0 12px 30px rgba(43,33,23,.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1220px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(255,255,255,.08), transparent 32%),
  linear-gradient(180deg, #5a4a2a 0%, #a88a4a 45%, #332a18 100%);
  background-attachment: fixed;
  font-family: Inter, Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}	
.page-shell {
  width: min(92%, var(--max));
  margin: 0 auto;
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(248,243,236,.72);
  border-bottom: 1px solid rgba(24,20,17,.08);
}
.site-nav-inner {
  width: min(92%, var(--max));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-size: 14px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
}
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: rgba(255,255,255,.64);
  color: #181411;
  border: 1px solid rgba(24,20,17,.1);
}
.section {
  padding: 34px 0 88px;
}
.hero-feature {
  padding: 30px 0 42px;
}
.hero-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: min(82svh, 820px);
  background: #d8c6b3;
}
.hero-rotator-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
  transition: opacity .35s ease;
  pointer-events: none;
}
.hero-feature-card::before {
  content: none;
}
.hero-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(245,237,227,.04) 0%,
      rgba(245,237,227,.08) 44%,
      rgba(245,237,227,.28) 76%,
      rgba(245,237,227,.44) 100%);
}
.hero-feature-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(30px, 5vw, 64px);
}
.intro-panel {
  max-width: 720px;
  transform: translateY(-4svh);
}
.eyebrow {
  font-size: 18px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 18px;
}
.eyebrow-dark {
  font-size: 24px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  color:black;
  margin: 0 0 18px;
}
.hero-title, .section-title, .modal-title {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  letter-spacing:.025em;
  font-weight: 500;
  margin: 0;
  color:beige;
}
.hero-title {
  max-width: 15ch;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: .98;
  letter-spacing: .025em;
}
.hero-copy {
  max-width: 650px;
  margin: clamp(14px, 2vw, 20px) 0 0;
  font-size: clamp(20px, 2.25vw, 28px);
  line-height: 1.22;
  color: beige;
}
.hero-copy-dark {
  max-width: 650px;
  margin: clamp(14px, 2vw, 20px) 0 0;
  font-size: clamp(20px, 2.25vw, 28px);
  line-height: 1.22;
  color: black;
}
.hero-subcopy {
  margin: 0 0 26px;
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 34px);
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 740px;
  margin: 0 0 34px;
}
.section-title {
  font-size: clamp(38px, 5vw, 42px);
}
.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.75;
}
.highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.highlight-card, .product-card, .story-card, .footer-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  color: #181411;}
.highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: var(--shadow-soft);
  appearance: none;
  border: 1px solid rgba(169,136,69,.24);
  cursor: pointer;
  min-height: 92px;
  padding: 14px 14px 16px;
  background: radial-gradient(circle at top left, rgba(255,255,255,.96), rgba(255,255,255,.42) 42%, transparent 72%),
    linear-gradient(135deg, rgba(169,136,69,.18), rgba(251,247,241,.88) 42%, rgba(111,98,88,.12));
}
.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: .9;
}
.highlight-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(169,136,69,.28);
  background: rgba(255,255,255,.68);
}
.highlight-text {
  line-height: 1.16;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.9vw, 20px);
}
.products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
.product-card {
  overflow: hidden;
  text-align: left;
}
.product-card img {
  width: 100%;
  aspect-ratio: 16/8.8;
  object-fit: cover;
}
.product-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-card h3 {
  margin: 0;
  font-size: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: #181411;
}
.product-card p {
  margin: 0;
  color: #3b3028;
  line-height: 1.7;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.text-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #181411;
  cursor: pointer;
  font-weight: 700;
}
.scent-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
  gap: 14px;
}
.scent-btn {
  border-radius: 999px;
  text-transform: uppercase;
  background: rgba(255,255,255,.75);
  color: var(--ink);
  cursor: default;
  position: relative;
  overflow: hidden;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .115em;
  border: 2px solid rgba(255,255,255,.76);
  box-shadow: 0 14px 28px rgba(43,33,23,.14), inset 0 1px 0 rgba(255,255,255,.4);
  text-shadow: 0 1px 1px rgba(0,0,0,.24);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.ingredient-chip {
  border-radius: 999px;
  padding: 18px 16px;
  border: 1px solid rgba(24,20,17,.1);
  background:#a5884d;
  text-align: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  color: #181411;
  font-size: 18px;
  font-weight: 500;

}
.story-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.story-card {
  padding: clamp(22px, 4vw, 36px);
}
.story-card blockquote {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 28px);
  line-height: 1.25;
  letter-spacing: .025em;
  color: #181411;
}
.story-card .story-text {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.5;
  color: #3b3028;
  font-weight: 400;
  margin: 0 0 8px;
}
.story-card p {
  line-height: 1.8;
  font-size: 18px;
}
.story-card .story-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.story-media {
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.footer-card {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links button {
  background: transparent;
  border: 1px solid rgba(24,20,17,.1);
  padding: 12px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: #181411;}
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 90;
  padding: 18px;
  background: rgba(14,11,9,.42);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.modal.is-open {
  display: grid;
  place-items: center;
}
.modal-panel {
  width: min(100%, 980px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(251,247,241,.78), rgba(246,238,229,.72));
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 30px 100px rgba(16,12,9,.32), inset 0 1px 0 rgba(255,255,255,.42);
  max-height: calc(100svh - 36px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 22px 24px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  background: rgba(251,247,241,.62);
  backdrop-filter: blur(18px);
  flex: 0 0 auto;
}
.modal-title {
  font-size: clamp(32px, 5vw, 48px);
}
.close-btn {
  border: 0;
  background: #181411;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  white-space: nowrap;
}
.modal-body {
  padding: 10px 24px 26px;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 34px;
  color: #3b3028;
}
.story-rich p, .modal-copy {  color: #3b3028;
  line-height: 1.9;
  font-size: 17px;
  margin: 0 0 18px;
}
.modal-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 24px;
}
.modal-hero img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 1/1.08;
  box-shadow: var(--shadow);
}

.tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.tabbar button {
  border: 1px solid rgba(24,20,17,.1);
  background: rgba(255,255,255,.72);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  color: #181411;
}
.tabbar button.is-active {
  background: var(--accent);
  color: #fff;
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
}
.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: #3b3028;
  line-height: 1.85;
}
@media (max-width: 1100px) {
  .highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ingredients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .story-panel {
    grid-template-columns: 1fr;
  }
  .modal-hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .site-nav-inner {
    min-height: 70px;
  }
  .nav-actions {
    gap: 8px;
  }
  .brand {
    font-size: 12px;
    letter-spacing: .18em;
  }
  .hero-feature-card {
    align-items: center;
    min-height: 76svh;
  }
  .hero-title {
    max-width: 12ch;
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1;
  }
  .hero-copy {
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.25;
    max-width: 94%;
  }
  .highlights,
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  .footer-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal {
    padding: 10px;
  }
  .modal-header {
    padding: 16px 16px 10px;
  }
  .modal-body {
    padding: 10px 16px 18px;
    padding-bottom: 30px;
  }
  .brand-logo {
    width: 46px;
    height: 46px;
  }
  .highlight-card {
    min-height: 76px;
  }
  .highlight-text {
    font-size: 16px;
  }
  .highlight-nav-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .highlight-nav-btn,
  .highlight-nav-btn:last-child {
    justify-self: stretch;
    color: #181411;
}
  .modal-panel {
    max-height: calc(100svh - 20px);
  }
  .hero-feature-inner {
    padding: 28px 22px;
  }
  .intro-panel {
    transform: translateY(-3svh);
    max-width: 100%;
  }
  .hero-copy + .hero-copy {
    font-size: clamp(17px, 4.6vw, 21px);
  }
  .hero-actions {
    margin-top: 24px;
  }
  .modal-sticky-banner {
    width: calc(100% + 32px);
    margin: -10px -16px 18px;
    height: 118px;
  }
  .modal-sticky-banner-product {
    height: 95px;
  }
  .scent-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}
.nav-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(24,20,17,.12);
  border-radius: 999px;
  background:#4D0001;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}
.section-caption {
  font-size: clamp(15px, 1.7vw, 19px);
  max-width: 560px;
}
.highlight-card:hover {
  transform: translateY(-2px);
}
.modal-panel-decorated {
  position: relative;
  overflow: hidden;
}
.modal-panel-decorated::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(169,136,69,.28);
  border-radius: 24px;
  pointer-events: none;
}
.modal-title-compact {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
  max-width: 760px;
}
.modal-rule {
  height: 2px;
  width: 100%;
  margin: 0 0 22px;
  background: linear-gradient(90deg, transparent, rgba(169,136,69,.72), transparent);
}
.highlight-content-grid {
  display: grid;
  gap: 14px;
}
.highlight-info-card {
  border: 1px solid rgba(169,136,69,.22);
  border-radius: 22px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.22)),
    radial-gradient(circle at top right, rgba(169,136,69,.14), transparent 46%);
}
.highlight-info-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
}
.highlight-icon {
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
  flex: 0 0 auto;
  opacity: .82;
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 0;
}
.highlight-info-card p {
  margin: 0;
  color: #3b3028;
  line-height: 1.72;
  font-size: 16px;
}
.highlight-nav-row {
  grid-template-columns: 1fr auto 1fr;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(169,136,69,.22);
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.highlight-nav-btn {
  border: 1px solid rgba(24,20,17,.12);
  background: rgba(255,255,255,.66);
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  color: #181411;
  font-family: Inter, Arial, Helvetica, sans-serif;
  width: 110px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.highlight-nav-btn:last-child {
  justify-self: end;
}
.highlight-count {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12px;
  min-width: 70px;
  text-align: center;
}
a[aria-disabled="true"] {
  pointer-events: auto;
}
@media (max-width: 860px) {
  .nav-menu-toggle {
    display: inline-flex;
  }
  .nav-actions {
    position: absolute;
    top: calc(100% + 8px);
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(251,247,241,.94);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }
  .nav-actions.is-open {
    display: flex;
  }
  .nav-actions .btn {
    width: 100%;
  }
}
.highlight-identity-icon-wrap,
.highlight-identity-icon {
  display: none !important;
}
.intro-panel .eyebrow {
  margin-bottom: clamp(10px, 1.4vw, 16px);
  font-size: clamp(12px, 1.1vw, 24px);
  color: beige;
  letter-spacing: .22em;
}
.hero-copy + .hero-copy {
  margin-top: clamp(4px, .7vw, 8px);
  font-size: clamp(18px, 2vw, 25px);
  color: beige;
}
.brand-logo-3d-wrap {
  perspective: 800px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-3d {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-style: preserve-3d;
  animation: navRotate3d 6s infinite linear;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}
@keyframes navRotate3d {
  0% { transform: rotateY(0deg) rotateX(5deg); }
  50% { transform: rotateY(180deg) rotateX(-5deg); }
  100% { transform: rotateY(360deg) rotateX(5deg); }
}
.scent-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.28);
  pointer-events: none;
}
.scent-night {
  background: linear-gradient(135deg, #43265f 0%, #7d4a2a 52%, #b23124 100%);
  color: #fff4ec;
}
.scent-jasmine {
  background: linear-gradient(135deg, #16661f 0%, #2ecc40 58%, #f1a4f2 100%);
  color: #ffffff;
}
.scent-lavender {
  background: linear-gradient(135deg, #7c1889 0%, #dc7be8 58%, #17c6cf 100%);
  color: #ffffff;
}
.scent-formula {
  background: linear-gradient(135deg, #b81f18 0%, #f2291b 58%, #c9ff55 100%);
  color: #ffffff;
}
.modal-body-with-banner {
  padding-top: 0;
}
.modal-sticky-banner {
  position: sticky;
  top: 0;
  z-index: 3;
  width: calc(100% + 48px);
  margin: -10px -24px 22px;
  height: clamp(120px, 19vw, 190px);
  border-radius: 0 0 24px 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 42px rgba(43,33,23,.18);
  border-bottom: 1px solid rgba(255,255,255,.58);
}
.modal-sticky-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,20,17,.08), rgba(24,20,17,.24));
  border-radius: inherit;
}
.modal-sticky-banner-product {
  height: clamp(95px, 13vw, 145px);
  background-image: url("../img/shea_tree.jpg");
}
.modal-sticky-banner-story {
  background-image: url("../img/workshop03.jpg");
}
.modal-hero-banner-layout {
  display: block;
}

.modal-header .eyebrow {
  color:beige;
}

.footer-card .section-title {
  color: #181411;
}

.footer-card .btn-secondary {
  color: #181411;
}

.modal-panel .eyebrow {
  color:beige;
}

/* REP TFS current change doc safe patch */
.product-card-visual {
  position: relative;
  overflow: hidden;
}
.product-card-visual img {
  width: 100%;
  aspect-ratio: 16/8.8;
  object-fit: cover;
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(26px, 5vw, 58px);
  background: linear-gradient(90deg, rgba(24,20,17,.48), rgba(24,20,17,.14) 52%, rgba(24,20,17,.02));
}
.product-card-overlay .eyebrow {
  color: beige;
  margin-bottom: 12px;
}
.product-card-overlay h3 {
  max-width: 12ch;
  margin: 0;
  color: beige;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: .025em;
  font-weight: 500;
}
.scent-btn,
.scent-night,
.scent-jasmine,
.scent-lavender,
.scent-formula {
  border-radius: 999px !important;
  padding: 18px 16px !important;
  border: 1px solid rgba(24,20,17,.1) !important;
  background: rgba(255,255,255,.7) !important;
  color: #181411 !important;
  box-shadow: var(--shadow) !important;
  text-shadow: none !important;
  text-align: center !important;
}
.scent-btn::after { display: none !important; }
.modal-title,
.modal-panel .modal-title,
.modal-header .modal-title {
  color: #181411 !important;
}
.ingredient-card h3 {
  margin: 0;
  font-size: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: #181411;
}
.ingredient-card-grid {
  margin-top: 8px;
}
.highlight-card {
  align-items: center;
  text-align: center;
}
.highlight-number {
  display: none !important;
}
.testimony-media-card {
  position: relative;
}
.testimony-image-actions {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 2;
}
.testimony-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24,20,17,.5));
  pointer-events: none;
}
.testimonial-list {
  display: grid;
  gap: 8px;
}
.testimonial-row {
  display: grid;
  grid-template-columns: 52px minmax(130px, .8fr) minmax(120px, .7fr) 1.5fr;
  gap: 12px;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(24,20,17,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.68);
  color: #181411;
  padding: 14px;
  cursor: pointer;
}
.testimonial-row.is-open {
  background: rgba(255,255,255,.9);
}
.testimonial-index,
.testimonial-name,
.testimonial-location {
  font-weight: 700;
}
.testimonial-quote {
  color: #3b3028;
}
.testimonial-accordion {
  display: none;
  margin: -2px 0 8px;
  border-radius: 0 0 16px 16px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(24,20,17,.08);
  padding: 16px 18px;
  color: #3b3028;
}
.testimonial-accordion.is-open {
  display: block;
}
.testimonial-accordion p {
  margin: 0;
  line-height: 1.7;
}
.footer-card-elegant {
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background: radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 34%), linear-gradient(135deg, #3a3a3a, #1f1f1f 58%, #111);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  color: #f5ede3;
}
.footer-brand-block .eyebrow,
.footer-card-elegant .eyebrow {
  color: #f5ede3;
}
.footer-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
  color: #f5ede3;
}
.footer-policy-links {
  justify-content: flex-start;
  width: 100%;
}
.footer-policy-links button {
  background: #f5ede3;
  color: #181411;
  border: 1px solid rgba(255,255,255,.22);
  padding: 12px 16px;
}
@media (max-width: 760px) {
  .product-card-overlay h3 {
    font-size: clamp(36px, 11vw, 54px);
  }
  .testimonial-row {
    grid-template-columns: 44px 1fr;
  }
  .testimonial-location,
  .testimonial-quote {
    grid-column: 2;
  }
  .testimony-image-actions {
    position: static;
    padding: 14px;
    background: rgba(24,20,17,.68);
  }
}


/* REP remaining change doc section patch */
.ingredients-card-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
.story-text + .story-text {
  margin-top: 12px;
}


/* REP 20260427 modal_01 test layout for Our Story */
.modal-panel.modal_01 {
  position: relative;
  width: min(100%, 1000px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(251,247,241,.94), rgba(246,238,229,.9));
  border: 1px solid rgba(169,136,69,.45);
  box-shadow: 0 30px 100px rgba(16,12,9,.36), inset 0 1px 0 rgba(255,255,255,.42);
  overflow: hidden;
}
.modal_01-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 8;
  background: rgba(24,20,17,.9);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.modal_01-hero {
  position: relative;
  min-height: clamp(290px, 42vw, 420px);
  background-size: cover;
  background-position: center;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  flex: 0 0 auto;
}
.modal_01-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,20,17,.08), rgba(24,20,17,.32)), linear-gradient(90deg, rgba(24,20,17,.54), rgba(24,20,17,.16) 48%, transparent);
  pointer-events: none;
}
.modal_01-hero-story {
  background-image: url("../img/workshop03.jpg");
}
.modal_01-hero-copy {
  position: absolute;
  left: clamp(22px, 4vw, 42px);
  bottom: clamp(24px, 4vw, 38px);
  z-index: 2;
  width: 33%;
  min-width: 240px;
  max-width: 360px;
  display: grid;
  gap: 8px;
  color: #f5ede3;
  text-shadow: 0 2px 18px rgba(0,0,0,.42);
}
.modal_01-hero-heading {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: .025em;
  color: #f5ede3;
}
.modal_01-hero-subheading {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 1.55vw, 18px);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(245,237,227,.92);
}
.modal_01-hero-heading:empty,
.modal_01-hero-subheading:empty {
  display: none;
}
.modal_01-content {
  padding: clamp(20px, 3vw, 30px);
  color: #3b3028;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal_01-content p {
  color: #3b3028;
  line-height: 1.65;
  font-size: 17px;
  margin: 0 0 14px;
}
.modal_01-content h3 {
  margin: 8px 0 0;
  color: #181411;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
@media (max-width: 760px) {
  .modal-panel.modal_01 { border-radius: 22px; }
  .modal_01-hero { min-height: 300px; }
  .modal_01-hero-copy {
    width: calc(100% - 44px);
    min-width: 0;
    max-width: none;
    left: 22px;
    bottom: 24px;
  }
  .modal_01-close {
    top: 14px;
    right: 14px;
  }
}
/* REP 20260427 policies modal_01 accordion */
.modal_01-policies {
  width: min(100%, 1000px);
}

.modal_01-hero-policies {
  background-image: url("../img/policy_terms.jpg");
}

.policy-modal-content {
  padding-top: clamp(18px, 3vw, 28px);
}

.policy-accordion {
  display: grid;
  gap: 12px;
}

.policy-accordion-item {
  border: 1px solid rgba(169,136,69,.28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.34));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.policy-accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #181411;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  cursor: pointer;
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.1;
}

.policy-accordion-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #181411;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 20px;
  flex: 0 0 auto;
}

.policy-accordion-panel {
  display: none;
  padding: 0 18px 18px;
  color: #3b3028;
}

.policy-accordion-panel p {
  margin: 0;
  line-height: 1.65;
  font-size: 16px;
}

.policy-accordion-item.is-open .policy-accordion-panel {
  display: block;
}

.policy-accordion-item.is-open .policy-accordion-icon {
  background: #a98845;
  color: #181411;
}

@media (max-width: 760px) {
  .policy-accordion-trigger {
    padding: 15px 16px;
  }

  .policy-accordion-icon {
    width: 30px;
    height: 30px;
  }
}


/* REP 20260427 modal_01 unified modal model */
.modal-panel.modal_01 .tabbar {
  margin: 0 0 18px;
}

.modal-panel.modal_01 .btn-primary {
  margin-top: 10px;
}

.modal_01-hero-product {
  background-image: url("../img/shea_tree.jpg");
}

.modal_01-hero-ingredient {
  background-image: url("../img/hero04.jpg");
}

.modal_01-hero-highlight {
  background-image: url("../img/hero02.jpg");
}

.modal_01-hero-testimonial {
  background-image: url("../img/testimony01.jpg");
}

.modal_01-hero-submission {
  background-image: url("../img/workshop03.jpg");
}

.modal_01-hero-contact {
  background-image: url("../img/workshop03.jpg");
}

.modal_01-hero-more-testimonials {
  background-image: url("../img/testimony01.jpg");
}

.modal-panel.modal_01 .modal-copy {
  color: #3b3028;
  line-height: 1.75;
  font-size: 17px;
  margin: 0 0 18px;
}

.modal-panel.modal_01 .bullet-list {
  color: #3b3028;
  line-height: 1.85;
}

.modal-panel.modal_01 .highlight-nav-row {
  position: relative;
  z-index: 4;
}

.modal-panel.modal_01 .highlight-info-heading {
  color: #181411;
}

.modal-panel.modal_01 .testimonial-list {
  padding-bottom: 8px;
}

/* REP 20260427 card overlay and ingredient details fix */
.product-card-overlay {
  justify-content: flex-start !important;
  padding-top: clamp(34px, 4.6vw, 72px) !important;
}

.ingredient-single-action {
  grid-template-columns: minmax(180px, 300px) !important;
}

.ingredient-details-button {
  width: 100%;
}

.ingredient-details-content {
  display: grid;
  gap: 18px;
}

.ingredient-detail-block {
  border: 1px solid rgba(169,136,69,.24);
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.32));
  box-shadow: var(--shadow-soft);
}

.ingredient-detail-block h3 {
  margin: 0 0 8px;
  color: #181411;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.1;
  font-weight: 500;
}

.ingredient-detail-block p {
  margin: 0;
  color: #3b3028;
  line-height: 1.68;
  font-size: 16px;
}


/* REP 20260427 ingredient accordion conversion */
.ingredient-accordion {
  display: grid;
  gap: 12px;
}

.ingredient-accordion-item {
  border: 1px solid rgba(169,136,69,.28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.34));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ingredient-accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #181411;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  align-items: center;
}

.ingredient-accordion-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.25vw, 26px);
  line-height: 1.1;
  font-weight: 500;
}

.ingredient-accordion-preview {
  grid-column: 1 / 2;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #3b3028;
}

.ingredient-accordion-icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #181411;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 20px;
  align-self: center;
}

.ingredient-accordion-panel {
  display: none;
  padding: 0 18px 18px;
  color: #3b3028;
}

.ingredient-accordion-panel p {
  margin: 0;
  line-height: 1.68;
  font-size: 16px;
}

.ingredient-accordion-item.is-open .ingredient-accordion-panel {
  display: block;
}

.ingredient-accordion-item.is-open .ingredient-accordion-icon {
  background: #a98845;
  color: #181411;
}

@media (max-width: 760px) {
  .ingredient-accordion-trigger {
    padding: 15px 16px;
  }

  .ingredient-accordion-icon {
    width: 30px;
    height: 30px;
  }
}


/* TFS policy modal and contact form update */
.policy-doc-brand,
.policy-doc-title {
  font-weight: 700;
}

.policy-section-heading {
  margin: 16px 0 6px !important;
  color: #181411;
  font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: clamp(18px, 2vw, 18px);
  line-height: 1.1;
  font-weight: 600;
}

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

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #181411;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(24,20,17,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  color: #181411;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(169,136,69,.72);
  box-shadow: 0 0 0 3px rgba(169,136,69,.16);
}

.contact-form .btn-primary {
  justify-self: start;
}

@media (max-width: 760px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}


/* TFS modal_02 individual policy modal layout */
.policy-button-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  align-items: center;
}

.modal-panel.modal_02 {
  position: relative;
  width: min(100%, 920px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(251,247,241,.94), rgba(246,238,229,.9));
  border: 1px solid rgba(169,136,69,.45);
  box-shadow: 0 30px 100px rgba(16,12,9,.36), inset 0 1px 0 rgba(255,255,255,.42);
  overflow: hidden;
}

.modal_02-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 8;
  background: rgba(24,20,17,.9);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.modal_02-hero {
  position: relative;
  min-height: clamp(87px, 12.6vw, 126px);
  background-size: cover;
  background-position: center;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  flex: 0 0 auto;
}

.modal_02-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,20,17,.12), rgba(24,20,17,.34)), linear-gradient(90deg, rgba(24,20,17,.58), rgba(24,20,17,.18) 52%, transparent);
  pointer-events: none;
}

.modal_02-hero-policies {
  background-image: url("../img/banner_01.jpg");
}

.modal_02-hero-copy {
  position: absolute;
  left: clamp(20px, 4vw, 38px);
  bottom: clamp(16px, 2vw, 22px);
  z-index: 2;
  width: calc(100% - 120px);
  max-width: 640px;
  display: grid;
  gap: 4px;
  color: #f5ede3;
  text-shadow: 0 2px 18px rgba(0,0,0,.42);
}

.modal_02-hero {
  min-height: clamp(126px, 16.8vw, 182px);
}

.modal_02-hero-heading {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: .025em;
  color: #f5ede3;
}

.modal_02-hero-subheading {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(13px, 1.35vw, 16px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(245,237,227,.92);
}

.modal_02-content {
  padding: clamp(20px, 3vw, 30px);
  color: #3b3028;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal_02-content p {
  color: #3b3028;
  line-height: 1.65;
  font-size: 17px;
  margin: 0 0 14px;
}

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

  .policy-button-grid button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .modal-panel.modal_02 {
    border-radius: 22px;
  }

  .modal_02-hero {
    min-height: 96px;
  }

  .modal_02-hero-copy {
    width: calc(100% - 44px);
    left: 22px;
    bottom: 16px;
  }

  .modal_02-close {
    top: 10px;
    right: 10px;
  }

  .policy-button-grid {
    grid-template-columns: 1fr;
  }
}
