:root {
  --bg: #fdfbf7;
  --green: #2d4635;
  --text: #2b1e1c;
  --body: #666666;
  --line: #e5e7eb;
  --light: #f5eee2;
  --yellow: #ffcf06;
  --white: #ffffff;
  --brown: #5C3A21;
  --gold: #C09B4B;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--body);
  background: var(--white);
}
a{
  color: var(--gold);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--green);
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: 72px;
  font-weight: 600;
  line-height: 72px;
  margin: 0 0 24px;
}
h2 {
  font-size: 48px;
  margin: 0 0 16px;
  font-weight: 600;
}

h3{
  font-size: 36px;
  font-weight: 600;
}
h4{
  font-size: 24px;
  font-weight: 600;
}
h5{
  font-size: 18px;
  font-weight: 600;
}

.font-13 {
  font-size: 13px !important;
}
.bold{
  font-weight: 600 !important;
}

.section-pad {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2{
  font-weight: 600;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--body);
  font-size: 20px;
  line-height: 30px;
}

.section-dark .stitle-lbl {
  color: var(--yellow);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-dark{
  background: var(--green);
  color: var(--white);
}

.section-head.dark{
  color: var(--white);
}
.section-head.dark h2, .section-head.dark .section-title {
  color: var(--white);
}
.section-head.dark .section-subtitle{
  color: rgba(255, 255, 255, 0.8);
}

.card-surface {
  background: var(--card-bg, var(--white));
  border: 1px solid var(--card-border, #e5e7eb);
  border-radius: var(--card-radius, 24px);
  box-shadow: var(--card-shadow, 0 4px 20px rgba(0, 0, 0, 0.05));
}

.card-title {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  color: var(--green);
}

.card-subtitle {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.card-copy {
  margin: 0;
  color: var(--body)
}

.site-header {
  background: rgba(253, 251, 247, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-wrap {
  min-height: 90px;
  transition: min-height 0.2s ease, padding 0.2s ease;
}

.logo {
  width: 146px;
  height: 70px;
  object-fit: cover;
  transition: width 0.2s ease, height 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(253, 251, 247, 0.96);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled .nav-wrap {
  min-height: 68px;
}

.site-header.is-scrolled .logo {
  width: 118px;
  height: 56px;
}
.fssai{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fssai span{
  font-size: 10px;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav .nav-link {
  color: var(--body);
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 6px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.main-nav .nav-link.active {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}

.mobile-nav-panel {
  width: min(320px, 85vw);
  background: #fdfbf7;
}

.mobile-nav-panel .offcanvas-title {
  font: 700 20px/28px "Playfair Display", serif;
  color: #2d4635;
}

.offcanvas-backdrop.show {
  background-color: #000;
  opacity: 0.45;
}

.hero {
  position: relative;
  background: var(--light);
  min-height: 790px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: inherit;
    padding: 48px 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/hero-bg.png") center/cover no-repeat;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 1024px;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.hero-content  h1{
  color: var(--white);
}

.pill {
  display: inline-block;
  background: var(--green);
  color: var(--yellow);
  border-radius: 30px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 24px;
}



.hero-copy {
  color: #f0f0f0;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

.pillars {
  text-align: center;
}



.sub {
  color: rgba(43, 30, 28, 0.8);
  font-size: 18px;
  line-height: 30px;
  margin: 0 auto 48px;
  max-width: 646px;
}

.pillar-card {
  --card-border: #f3f4f6;
  --card-radius: 24px;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 33px 32px 33px 33px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* .pillar-card::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: block;
  margin-bottom: 24px;
} */

.pillar-glyph {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-sleep .pillar-glyph {
  color: #2563eb;
}

.pillar-intimate .pillar-glyph {
  color: #ca8a04;
}

.pillar-bone .pillar-glyph {
  color: #1a1a1a;
}

.pillar-immunity .pillar-glyph {
  color: #16a34a;
}

.pillar-sleep .pillar-glyph {
  background: #e8f0fe;
}

.pillar-intimate .pillar-glyph {
  background: #fff8e1;
}

.pillar-bone .pillar-glyph{
  background: #efebe9;
}

.pillar-immunity .pillar-glyph{
  background: #e8f5e9;
}

.pillar-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 128px;
  height: 128px;
  border-radius: 0 0 0 999px;
  opacity: 0.5;
}

.pillar-sleep::after {
  background: #e8f0fe;
}

.pillar-intimate::after {
  background: #fff8e1;
}

.pillar-bone::after {
  background: #efebe9;
}

.pillar-immunity::after {
  background: #e8f5e9;
}

.pillar-card h3 {
  font: 700 20px/28px "Playfair Display", serif;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.pillar-card p {
  font: 400 14px/20px "Manrope", sans-serif;
  letter-spacing: -0.0357em;
  position: relative;
  z-index: 1;
}

.path {
  background: var(--white);
}

.product-card {
  --card-bg: #f5eee2;
  --card-border: #d8d8d8;
  --card-radius: 24px;
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 33px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e8f0fe;
  border-radius: 999px;
  color: #1e40af;
  padding: 4px 12px 5px;
  font-size: 12px;
  line-height: 16px;
}

.photo {
  width: 280px;
  max-width: 100%;
  height: 256px;
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.photo img {
  position: absolute;
  object-fit: cover;
}

.photo-bone{
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-bone img {
  inset: 0;
  width: 95%;
  position: relative;
}

.photo-sleep img:first-child {
  width: 82%;
  left: 5%;
  top: 25%;
  object-fit: contain;
  transform: rotate(-28deg);
}

.photo-sleep img:last-child {
  width: 82%;
  right: 6%;
  bottom: 4%;
  object-fit: cover;
  border-radius: 8px;
}

.photo-vitality img:first-child {
  width: 45%;
  left: 10%;
  top: 6%;
  object-fit: cover;
}

.photo-vitality img:last-child {
  width: 45%;
  right: 10%;
  bottom: 5%;
  object-fit: cover;
  border-radius: 8px;
}

.photo-immunity img:first-child {
  width: 80%;
  left: 10%;
  top: 15%;
  object-fit: cover;
  transform: rotate(-28deg);
}

.photo-immunity img:last-child {
  width: 80%;
  right: 6%;
  bottom: 0;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.0278em;
}

.product-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: var(--green);
  font-weight: 400;
}

.product-card p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 24px;
  min-height: 48px;
}

.herbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.herbs span {
  font-size: 12px;
  line-height: 16px;
  padding: 4px 8px 5px;
  border-radius: 4px;
  background: var(--bg);
  color: #6b7280;
}

.herbs span:first-child {
  background: transparent;
  color: #6b7280;
  padding-left: 0;
  width: 100%;
}
.herbs span:last-child {
  background: transparent;
  color: #6b7280;
  padding-left: 0;
}

.packs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.packs span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 4px;
  padding: 5px 8px;
  background: #e3e9e5;
  color: #6b7280;
  font-size: 12px;
  line-height: 16px;
  min-width: 82px;
}

.packs em {
  font-style: normal;
  color: #6b7280;
}

.packs b {
  color: #2d4635;
  font-weight: 700;
}

.view-btn, .buy-btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 16px;
  background: #2d4635;
  color: var(--white);
  text-decoration: none;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 24px;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.view-btn:hover, .buy-btn:hover {
  background: #24382b;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(45, 70, 53, 0.24);
}

.view-btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.buy-now{
  background: var(--yellow);
  font-weight: 600;
  color: var(--green);
  padding: 4px 16px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-now:hover, .buy-now:focus-visible, .buy-now:active {
  background: #ffcf06;
  color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 207, 6, 0.24);
}

.fortico-buy-modal .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.fortico-buy-modal .modal-header {
  border-bottom: 1px solid rgba(45, 70, 53, 0.12);
  padding: 22px 26px 16px;
}

.fortico-buy-modal .modal-title {
  font: 700 30px/38px "Playfair Display", serif;
  letter-spacing: -0.01em;
  color: #2d4635;
}

.fortico-buy-modal .modal-body {
  padding: 12px 26px 20px;
}

.fortico-buy-modal .modal-body p {
  margin: 0;
  font: 400 17px/28px "Manrope", sans-serif;
  color: rgba(43, 30, 28, 0.8);
}

.fortico-buy-modal .modal-footer {
  border-top: 0;
  padding: 0 26px 24px;
}

.fortico-modal-ok {
  border: 0;
  border-radius: 16px;
  background: #2d4635;
  color: var(--white);
  min-width: 96px;
  font: 600 16px/24px "Manrope", sans-serif;
  padding: 10px 22px;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.fortico-modal-ok:hover, .fortico-modal-ok:focus-visible, .fortico-modal-ok:active {
  background: #24382b !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(45, 70, 53, 0.24);
}

.guarantee {
  background: #f5eee2;
}

.guarantee-panel {
  background: var(--white);
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
  padding: 80px;
}

.guarantee h2 {
  margin-bottom: 16px;
  text-align: left;
  line-height: 44px;
  letter-spacing: 0;
}

.guarantee-copy {
  font-size: 18px;
  line-height: 30px;
  color: rgba(43, 30, 28, 0.8);
  max-width: 100%;
  margin-bottom: 24px;
}

.good-to-know {
  font: 700 22px/30px "Playfair Display", serif;
  letter-spacing: -0.0227em;
  color: #2d4635;
  margin-bottom: 24px;
}

.good-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.good-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #2b1e1c;
}

.good-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(45, 70, 53, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d4635;
  flex: 0 0 auto;
}

.testimonials {
  padding: 72px 0;
  background: #f7f9f6;
}

.testimonials .section-head h2 {
  margin-bottom: 32px;
}

.testimonial-slider {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.carousel-inner{
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

.testimonial-message {
  margin: 0;
  padding: 28px 24px;
  color: var(--brown);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  
}

.testimonial-slider .carousel-control-prev,
.testimonial-slider .carousel-control-next {
  width: 42px;
  height: 42px;
  top: auto;
  bottom: 0;
  transform: none;
  background: rgba(20, 38, 26, 0.85);
  border-radius: 50%;
  opacity: 1;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
  width: 20px;
  height: 20px;
}

.testimonial-slider .carousel-control-prev {
  left: calc(50% - 52px);
}

.testimonial-slider .carousel-control-next {
  right: calc(50% - 52px);
}

.site-footer {
  background: #2d4635;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.logo.small {
  max-width: 325px;
    height: inherit;
    width: 100% !important;
    object-fit: contain;
}

.quick-links {
  max-width: 300px;
  display: grid;
  gap: 12px;
}

.quick-links h3 {
  margin: 0 0 8px;
  color: var(--white);
  font: 700 18px/28px "Playfair Display", serif;
}

.quick-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact {
  width: 300px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-contact h3 {
  margin: 0 0 8px;
  color: var(--yellow);
  font: 700 18px/28px "Playfair Display", serif;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.socials a:hover {
  background: var(--yellow);
  color: var(--green) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.socials a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.footer-bottom {
  margin-top: 33px;
  padding-top: 33px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 16px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.policy-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.policy-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.quick-links a,
.footer-contact a,
.policy-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.quick-links a:hover,
.footer-contact a:hover,
.policy-links a:hover {
  color: var(--yellow);
  transform: translateX(2px);
}

.quick-links a:focus-visible,
.footer-contact a:focus-visible,
.policy-links a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

  .nav-wrap {
    padding: 12px 0;
  }

  .guarantee-panel {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .mobile-nav-panel .offcanvas-body {
    padding-top: 8px;
  }

  .mobile-nav-panel .main-nav {
    width: 100%;
    display: grid;
    gap: 10px;
  }

  .mobile-nav-panel .main-nav .nav-link {
    padding: 10px 4px;
    border-bottom: 1px solid rgba(45, 70, 53, 0.12);
  }

  .mobile-nav-panel .main-nav .nav-link.active {
    border-bottom: 2px solid #2d4635;
  }
}

@media (max-width: 760px) {
  .foot {
    flex-direction: column;
  }

  h1 {
    font-size: 36px;
    line-height: 42px;
  }

  h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .product-card {
    padding: 20px;
  }

  .photo {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Sleep Support page */
.sleep-page section {
  overflow: hidden;
}

.sleep-hero {
  background: linear-gradient(135deg, rgba(231, 222, 254, 0.4) 0%, #fdfbf7 50%, #d9e8fe 100%);
  padding: 100px 0;
}

.sleep-hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.sleep-hero-content h1 {
  color: #2d4635;
  font-size: 72px;
  line-height: 80px;
  margin-bottom: 24px;
}

.sleep-hero-sub {
  color: rgba(45, 70, 53, 0.8);
  font: 500 24px/32px "Playfair Display", serif;
  margin-bottom: 24px;
}

.sleep-hero-copy {
  color: var(--body);
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

.sleep-hero-visual {
  position: relative;
  min-height: 600px;
}

.sleep-hero-main {
  width: 373px;
  height: 373px;
  border-radius: 16px;
  /* background: url("../img/sleep-hero-main.png") center/cover no-repeat; */
}
.sleep-hero-main img{
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
}

/* .sleep-hero-visual img {
  position: absolute;
  width: 370px;
  height: 370px;
  object-fit: cover;
  border-radius: 16px;
  left: 50%;
  top: 15%;
  transform: translateX(-5%);
} */

.sleep-hero-secondary {
  position: absolute;
  width: 373px;
  height: 373px;
  border-radius: 16px;
  /* background: url("../img/sleep-hero-secondary.png") center/cover no-repeat; */
  left: 38%;
  top: 34%;
}
.sleep-hero-secondary img{
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
}

.sleep-natural {
  background: var(--green);
  color: var(--white);
}

.sleep-section-head {
  max-width: 900px;
}

.sleep-natural .sleep-section-head {
  margin: 0 auto 32px;
}



.sleep-natural h2 {
  color: var(--white);
  font-size: 48px;
  line-height: 48px;
}

.sleep-natural p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 33px;
}

.sleep-benefits-band {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  padding: 33px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sleep-benefits-band article {
  text-align: center;
  padding: 0 24px;
}

.sleep-benefits-band article+article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.sleep-benefits-band i {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.12);
}

.sleep-benefits-band h3 {
  color: var(--white);
  font: 700 24px/32px "Playfair Display", serif;
  margin: 0 0 8px;
}

.sleep-benefits-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
}

.sleep-ingredients {
  background: #fdfbf7;
  border-top: 1px solid #f0ece4;
  border-bottom: 1px solid #f0ece4;
}

.sleep-light {
  margin: 0 auto 40px;
}

.sleep-light h2 {
  color: var(--green);
}

.sleep-light p {
  color: var(--body);
  font-size: 20px;
  line-height: 28px;
}

.sleep-light .label {
  font-weight: 600;
  margin-bottom: 8px;
}

.sleep-card {
  --card-bg: #f5eee2;
  --card-border: #f5efe6;
  --card-radius: 32px;
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 40px 32px;
  height: 100%;
}

.sleep-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 50%;
  border: solid 1px var(--brown);
}

.sleep-card h3 {
  font: 700 24px/32px "Playfair Display", serif;
}

.sleep-card h4 {
  line-height: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.sleep-card p {
  font-size: 16px;
  line-height: 23px;
}

.sleep-point {
  height: 100%;
  --card-border: #f0ece4;
  --card-radius: 32px;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 41px;
}

.sleep-point span {
  width: 64px;
  height: 64px;
  padding-bottom: 8px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font: 700 36px/36px "Playfair Display", serif;
  color: var(--green);
  background: rgba(45, 70, 53, 0.1);
}

.sleep-point p {
  font-size: 16px;
  line-height: 26px;
}

.sleep-goodnight {
  background: var(--white);
}

.sleep-goodnight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sleep-goodnight-grid img {
  width: 100%;
  object-fit: cover;
}

.sleep-ritual {
  background: var(--green);
}

.sleep-ritual .sleep-section-head {
  margin: 0 auto 48px;
}

.sleep-ritual .sleep-section-head h2 {
  color: var(--white);
}

.sleep-ritual .sleep-section-head p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 28px;
}

.sleep-ritual-box {
  position: relative;
  max-width: 911px;
  margin: 0 auto;
  padding: 90px 40px 40px;
  border: 2px solid #a98a48;
  border-radius: 40px;
  background: #1f3426;
}

.sleep-ritual-title {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: #a98a48;
  color: var(--white);
  border-radius: 30px;
  padding: 6px 24px;
  font: 700 24px/32px "Playfair Display", serif;
  text-align: center;
}

.sleep-step {
  text-align: center;
  color: var(--white);
}

.sleep-step-img {
  width: 120px;
  height: 120px;
  border: solid 2px #a98a48;
  border-radius: 999px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sleep-step-img img{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
}



.sleep-step h3 {
  font: 700 20px/28px "Playfair Display", serif;
  margin-bottom: 8px;
  color: var(--white);
}

.sleep-step h3 em {
  font-style: normal;
  color: #a98a48;
}

.sleep-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 24px;
}

.sleep-cta {
  background: #fdfbf7;
}

.cta-panel {
  border-radius: 48px;
  padding: 96px;
  text-align: center;
  background:
    linear-gradient(rgba(169, 138, 72, 0.8), rgba(169, 138, 72, 0.8)),
    url("../img/sleep-cta-bg.png") center/cover no-repeat;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.cta-panel h2 {
  color: var(--white);
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 24px;
}

.cta-panel p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 1200px) {
  .sleep-hero-wrap {
    grid-template-columns: 1fr;
  }

  .sleep-hero-content h1 {
    font-size: 54px;
    line-height: 60px;
  }

  .sleep-hero-visual {
    min-height: 500px;
    justify-self: center;
  }

  .sleep-hero-main,
  .sleep-hero-secondary,
  .sleep-hero-visual img {
    width: 300px;
    height: 300px;
  }

  .sleep-benefits-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sleep-benefits-band article+article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
  }
}

@media (max-width: 767px) {
  .sleep-hero {
    padding: 64px 0;
  }

  .section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .sleep-hero-content h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .sleep-natural h2,
  .cta-panel h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .sleep-goodnight-grid {
    grid-template-columns: 1fr;
  }

  .sleep-ritual-box {
    padding: 76px 24px 24px;
  }

  .cta-panel {
    padding: 64px 24px;
    border-radius: 24px;
  }
}

/* Sexual wellness page */
.sexual-hero {
  background: linear-gradient(135deg, rgba(255, 209, 241, 0.4) 0%, rgba(253, 251, 247, 1) 50%, rgba(230, 239, 251, 1) 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}

.sexual-hero-wrap {
}

.sexual-hero-copy h1 {
  color: var(--green);
  font-size: 72px;
  line-height: 80px;
  margin-bottom: 24px;
  font-weight: 700;
}

.sexual-hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
}

.sexual-lead {
  color: rgba(45, 70, 53, 0.8);
  font-size: 24px;
  line-height: 32px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  margin-bottom: 16px;
}

.sexual-text {
  color: var(--body);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 24px;
  text-align: justify;
}

.sexual-mini {
  --card-bg: var(--white);
  --card-border: #eef0f3;
  --card-radius: 24px;
  --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  padding: 22px 24px;
  max-width: 540px;
}

.sexual-mini h3 {
  margin: 0 0 10px;
  color: var(--green);
  font: 700 18px/26px "Manrope", sans-serif;
}

.sexual-mini ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.sexual-mini li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2b1e1c;
  font-size: 16px;
  line-height: 24px;
}

.sexual-mini .dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(45, 70, 53, 0.12);
  position: relative;
  flex: 0 0 auto;
}

.sexual-mini .dot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--brown);
  border-radius: 999px;
  position: absolute;
  inset: 0;
  margin: auto;
}

.sexual-hero-media {
  position: relative;
}

.sexual-hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 48px;
  object-fit: cover;
}



.sexual-stat {
  --card-bg: rgba(255, 255, 255, 0.92);
  --card-border: rgba(255, 255, 255, 0.8);
  --card-radius: 32px;
  --card-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 60px;
  bottom: 60px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f6f1e0;
  color: #9d2853;
}

.sexual-stat span {
  display: grid;
  gap: 2px;
}

.sexual-stat b {
  font-size: 16px;
  line-height: 22px;
  color: var(--body)
}

.sexual-stat em {
  font-style: normal;
  color: var(--green);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.sexual-products {
  background: #fdfbf7;
}

.sexual-products-head {
  max-width: 1344px;
}

.sexual-products-head .section-title {
  font-size: 48px;
  line-height: 48px;
}

.sexual-products-sub {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 28px;
}

.sexual-product-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.sexual-product-card {
  --card-bg: var(--white);
  --card-border: #f3f4f6;
  --card-radius: 48px;
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  --sexual-glow: rgba(33, 91, 143, 0.16);
  padding: 57px;
  position: relative;
  overflow: hidden;
}

.sexual-product-card.men {
  --card-bg: var(--white);
  --card-border: #f3f4f6;
  --sexual-glow: rgba(33, 91, 143, 0.18);
}

.sexual-product-card.women {
  --card-bg: var(--white);
  --card-border: rgba(255, 207, 6, 0.2);
  --sexual-glow: rgba(157, 40, 83, 0.18);
}

.sexual-product-card::before {
  content: "";
  position: absolute;
  top: -96px;
  right: -96px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sexual-glow) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.sexual-product-card>* {
  position: relative;
  z-index: 1;
}

.sexual-product-card h3 {
  margin: 0;
  font: 700 42px/36px "Playfair Display", serif;
}

.sexual-product-card.men h3 {
  color: #215b8f;
}

.sexual-product-card.women h3 {
  color: #9d2853;
}

.sexual-product-card h4 {
  margin: 8px 0 18px;
  color: var(--green);
  font: 400 italic 30px/36px "Playfair Display", serif;
}

.sexual-product-card img {
  width: 100%;
}

.sexual-product-card .packs {
  justify-content: center;
  margin-bottom: 18px;
}

.sexual-herb-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  border-top: 1px solid rgba(45, 70, 53, 0.12);
}

.sexual-herb-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  min-height: 49px;
  border-bottom: 1px solid rgba(45, 70, 53, 0.12);
  color: var(--body);
  font-size: 14px;
  line-height: 20px;
}

.herb-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(92, 58, 33, 0.1);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 14px;
}

.sexual-herb-list b {
  color: var(--green);
  margin-right: 8px;
  font-weight: 600;
}

.sexual-note {
  color: var(--brown);
  font: 600 18px/26px "Playfair Display", serif;
  margin: 16px 0 0;
}

.sexual-buy-btn,
.sexual-journey-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 16px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.sexual-buy-btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  background: #215b8f;
  color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sexual-buy-btn.women {
  background: #9d2853;
}

.sexual-cta {
  background: #fdfbf7;
}

.sexual-cta-panel {
  border-radius: 48px;
  padding: 96px;
  text-align: center;
  background:
    linear-gradient(rgba(169, 138, 72, 0.8), rgba(169, 138, 72, 0.8)),
    url("../img/sexual-cta-bg.png") center/cover no-repeat;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.sexual-cta-panel h2 {
  color: var(--white);
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 24px;
}

.sexual-cta-panel p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  line-height: 30px;
}

.sexual-journey-btn {
  background: var(--green);
  color: var(--white);
}

@media (max-width: 1200px) {
  .sexual-hero-wrap {
    grid-template-columns: 1fr;
  }

  .sexual-product-grid {
    grid-template-columns: 1fr;
  }

  .sexual-hero-copy h1 {
    font-size: 44px;
    line-height: 50px;
  }

  .sexual-hero-media {
    width: 100%;
    height: auto;
  }

  .sexual-hero-media img {
    width: min(600px, 100%);
    height: auto;
  }
}

@media (max-width: 767px) {
  .sexual-product-card {
    padding: 24px;
    border-radius: 24px;
  }

  .sexual-cta-panel {
    padding: 64px 24px;
    border-radius: 24px;
  }

  .sexual-cta-panel h2 {
    font-size: 38px;
    line-height: 42px;
  }

  .sexual-stat {
    position: static;
    margin-top: 16px;
  }
}

/* Bone health page */
.bone-hero {
  background: linear-gradient(135deg, rgba(246, 229, 196, 0.45) 0%, #fdfbf7 50%, rgba(233, 244, 231, 0.8) 100%);
}

.bone-hero-head {
  max-width: 1343px;
}

.bone-hero-copy h1 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 64px;
  line-height: 72px;
  text-align: center;
}

.bone-hero-copy h2 {
  margin: 0 0 24px;
  color: rgba(45, 70, 53, 0.8);
  font: 500 24px/32px "Playfair Display", serif;
  text-align: center;
}

.bone-hero-copy p {
  margin: 0 0 12px;
  color: var(--body);
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}

.bone-hero-media-wrap {
  margin-top: 24px;
}

.bone-hero-media img {
  width: 100%;
  border-radius: 22px;
  border: 3px solid #c7984a;
  height: auto;
  object-fit: contain;
}

.bone-blocks {
  background: #2f4f2f;
}

.bone-feature {
  --card-bg: var(--white);
  --card-border: var(--white);
  --card-radius: 32px;
  --card-shadow: none;
  height: 100%;
  padding: 24px;
}

.bone-feature-img {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}

.bone-feature-img img {
  width: 100%;
  object-fit: cover;
}

.bone-feature h3 {
  color: var(--green);
  font: 700 24px/32px "Playfair Display", serif;
  margin: 0 0 10px;
}

.bone-feature p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 26px;
}

.bone-stage {
  background: #ede0d4;
}

.bone-stage-card {
  --card-bg: var(--white);
  --card-border: rgba(47, 79, 47, 0.2);
  --card-radius: 32px;
  --card-shadow: 0 10px 40px rgba(47, 79, 47, 0.08);
  padding: 24px;
  height: 100%;
}

.bone-stage-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 16px;
}

.bone-stage-card h3 {
  color: var(--green);
  margin: 0 0 4px;
  font: 700 24px/30px "Playfair Display", serif;
}

.bone-stage-card h4 {
  margin: 0 0 14px;
  color: var(--brown);
  font: 600 16px/24px "Manrope", sans-serif;
}

.bone-stage-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bone-stage-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(47, 79, 47, 0.2);
  color: var(--green);
  font-size: 16px;
  line-height: 24px;
}

.bone-stage-card li img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 999px;
}

@media (max-width: 1200px) {
  .bone-hero-copy h1 {
    font-size: 44px;
    line-height: 52px;
  }
}

/* Immunity support page */
.immunity-hero {
  background: linear-gradient(135deg, #E4EED5 0%, #fdfbf7 50%, #B7C99C 100%);
}

.immunity-hero-wrap {
  display: grid;
  grid-template-columns: 648px 1fr;
  gap: 32px;
  align-items: center;
}


.immunity-hero-copy h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
}

.immunity-hero-copy p {
  margin: 0 0 10px;
  color: var(--body);
  font: 400 18px/30px "Manrope", sans-serif;
  text-align: justify;
}

.immunity-hero-highlights strong {
  color: rgba(45, 70, 53, 0.8);
  font-size: 24px;
  line-height: 32px;
  font-family: "Playfair Display", serif;
}

.immunity-hero-copy strong {
  font-weight: 600;
}

.immunity-hero-card {
  position: relative;
  width: 600px;
  height: 600px;
  border-radius: 48px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background: linear-gradient(136deg, #fefdff 2%, #fdfdf6 21%, #b58b5c 81%, #ad773e 100%);
}

.immunity-hero-main {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immunity-hero-overlay {
  position: absolute;
  left: -20px;
  bottom: 48px;
  width: 92%;
  opacity: 0.95;
}

.immunity-herbs {
  background: var(--white);
}

.immunity-herb-card {
  --card-bg: var(--white);
  --card-border: var(--light-gray);
  --card-radius: 32px;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 32px;
  height: 100%;
}

.immunity-herb-card img {
  width: 100%;
  /* height: 300px; */
  object-fit: cover;
  border-radius: 24px;
  background: #f9f5f2;
  margin-bottom: 24px;
}

.immunity-herb-card h3 {
  margin: 0 0 4px;
  font-size: 24px;
}

.immunity-herb-card h4 {
  margin: 0 0 10px;
  color: var(--brown);
  font: 400 16px/24px "Playfair Display", serif;
}

.immunity-herb-card p {
  margin: 0;
  color: var(--body);
  font: 400 16px/24px "Manrope", sans-serif;
}

.immunity-product {
  background: var(--white);
}

.immunity-product-wrap {
  max-width: 991px;
  margin: 0 auto;
  position: relative;
}

.immunity-product-panel {
  --card-bg: var(--light);
  --card-border: var(--gold);
  --card-radius: 40px;
  --card-shadow: none;
  padding: 64px;
}


.immunity-product-copy h3 {
  margin: 0 0 12px;
  color: var(--body);
  font: 700 24px/32px "Manrope", sans-serif;
}

.immunity-kicker {
  margin: 0 0 16px;
  font: 700 18px/28px "Manrope", sans-serif;
}

.immunity-product-copy p {
  margin: 0 0 10px;
  font: 400 16px/24px "Manrope", sans-serif;
}

.immunity-product-copy ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.immunity-product-copy li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font: 400 16px/24px "Manrope", sans-serif;
}

.immunity-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(45, 70, 53, 0.1);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.immunity-product-media {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}

.immunity-sublist {
  margin-top: 8px;
  padding-left: 50px;
}

.immunity-sublist p {
  margin: 0 0 8px;
}


.immunity-product-media .main-pack {
  width: 50%;
  max-width: none;
  object-fit: cover;
}


@media (max-width: 1200px) {
  .immunity-hero-wrap {
    grid-template-columns: 1fr;
  }

  .immunity-hero-card {
    width: min(600px, 100%);
    height: 520px;
    margin: 0 auto;
  }

  .immunity-product-panel {
    min-height: auto;
    padding: 48px 32px;
  }

  .immunity-product-copy {
    max-width: 100%;
  }

  .immunity-product-media-breakout {
    position: static;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .immunity-hero-copy h1 {
    font-size: 44px;
    line-height: 52px;
  }

  .immunity-product-panel {
    padding: 32px 24px;
  }

  .immunity-product-copy h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .immunity-product-media {
    flex-direction: column;
  }

  .immunity-product-media .main-pack,
  .immunity-product-media .sub-pack {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .immunity-sublist {
    padding-left: 0;
  }
}

/* About page */
.about-hero {
  background: linear-gradient(135deg, rgba(245, 238, 226, 0.9) 0%, #fdfbf7 52%, rgba(232, 240, 254, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -220px;
  top: -180px;
  border-radius: 999px;
  background: rgba(232, 240, 254, 0.48);
  filter: blur(64px);
}

.about-hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 56px;
  align-items: center;
}


.about-hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
}

.about-hero-lead {
  margin: 0 0 24px;
  font: 400 24px/39px "Manrope", sans-serif;
  max-width: 541px;
}

.about-pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-pill-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  font-size: 14px;
  line-height: 20px;
}

.about-pill-list span img {
  width: 14px;
  height: 14px;
}

.about-pill-list i {
  color: var(--green);
}

.about-hero-media {
  --card-border: #f2eee7;
  --card-radius: 48px;
  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  width: 560px;
  height: 560px;
  overflow: hidden;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-brand-intro {
  background: var(--white);
  padding-top: 96px;
}

.about-intro-media {
  --card-radius: 22px;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.about-intro-media img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.about-difference {
  background: #fdfbf7;
}

.about-feature {
  --card-border: #e5e7eb;
  --card-radius: 32px;
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.about-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 24px;
}

.about-icon img {
  width: 24px;
  height: 24px;
}

.about-icon-food {
  background: #fff8e1;
  color: #5C3A21;
}

.about-icon-preventive {
  background: #e8f5e9;
  color: #2D4635;
}

.about-icon-daily {
  background: #efebe9;
  color: #2D4635;
}

.about-icon-modern {
  background: #e8f0fe;
  color: #5C3A21;
}

.about-feature h3 {
  margin: 0 0 12px;
  color: #2b1e1c;
  font: 700 24px/32px "Playfair Display", serif;
  letter-spacing: -0.0208em;
}

.about-feature p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.0313em;
}

.about-partnership {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.about-partnership-grid {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 40px;
  align-items: center;
}

.about-kicker {
  margin: 0 0 8px;
  color: rgba(45, 70, 53, 0.8);
  font-size: 18px;
  line-height: 28px;
}

.about-partnership-copy h2 {
  margin: 0 0 16px;
  color: #2b1e1c;
  font-size: 60px;
  line-height: 60px;
}

.about-partnership-copy p {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 20px;
  line-height: 33px;
}

.about-legacy {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.about-legacy .about-icon {
  margin-bottom: 0;
  width: 56px;
  height: 56px;
  background: var(--light);
  color: var(--yellow);
}

.about-legacy h4 {
  margin: 0;
  font: 600 16px/32px "Playfair Display", serif;
}

.about-legacy p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 24px;
}

.about-partnership-media {
  --card-radius: 48px;
  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.about-partnership-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.about-research {
  background: #fdfbf7;
}

.about-research-card {
  --card-bg: var(--white);
  --card-border: var(--light-gray);
  --card-radius: 48px;
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 72px 85px;
  max-width: 946px;
  margin: 0 auto;
}

.about-research-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  margin-bottom: 32px;
  font-size: 24px;
}

.about-research-icon img {
  width: 24px;
  height: 24px;
}



.about-research-card p {
  margin: 0 0 6px;
  color: #6b7280;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: -0.025em;
}

.about-approach {
  background: var(--white);
}

.about-approach-item {
  --card-bg: #fdfbf7;
  --card-radius: 32px;
  --card-shadow: none;
  text-align: center;
  padding: 40px 24px;
}



.about-approach-item .about-icon {
  margin-bottom: 16px;
  width: 40px;
  height: 40px;
  background: transparent;
  font-size: 24px;
  color: var(--green);
}

.about-philosophy {
  background: #2b1e1c;
  position: relative;
  overflow: hidden;
}

.about-philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0.3;
}

.about-philosophy-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}

.about-philosophy h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 48px;
}

.about-philosophy p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 24px;
  max-width: 760px;
  font-size: 20px;
  line-height: 33px;
}

.about-chip-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.about-chip-list span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 32px;
  color: var(--white);
  padding: 14px 24px;
  font-size: 16px;
  line-height: 24px;
}
.about-chip-list span:last-child {
  padding: 32px;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}


.about-disclaimer {
  border-top: 1px solid #e5e7eb;
  padding: 49px 0 48px;
  background: #f9fafb;
}

.about-disclaimer .container-xxl {
  max-width: 1440px;
  text-align: center;
}

.about-disclaimer-inner {
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
}

.about-disclaimer p {
  margin: 0;
  color: rgba(102, 102, 102, 0.8);
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.0357em;
}

.about-disclaimer p+p {
  margin-top: 8px;
}

@media (max-width: 1200px) {

  .about-hero-wrap,
  .about-partnership-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy h1 {
    font-size: 52px;
    line-height: 58px;
  }

  .about-hero-media img,
  .about-partnership-media img {
    height: auto;
  }
}

@media (max-width: 767px) {

  .about-feature,
  .about-research-card,
  .about-approach-item {
    padding: 24px;
  }

  .about-pill-list span {
    border: 1px solid var(--light-gray);
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--white);
  }

  .about-partnership-copy h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .about-research-card h3 {
    font-size: 34px;
    line-height: 40px;
  }

  .about-philosophy blockquote {
    font-size: 18px;
    line-height: 32px;
    padding: 20px;
  }
}

/* Contact page */
.contact-page {
  background: #fdfbf7;
}

.contact-hero {
  padding-bottom: 48px;
}

.contact-hero .section-subtitle{
  max-width: 768px;
  margin: 0 auto;
}

.contact-kicker {
  margin: 0 0 16px;
  color: var(--body);
  font-size: 20px;
  line-height: 20px;
}


.contact-main {
  padding-bottom: 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 24px;
  align-items: start;
}

.contact-info {
  --card-bg: var(--white);
  --card-border: var(--light-gray);
  --card-radius: 28px;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 32px 28px;
}

.contact-info h2 {
  margin: 0 0 12px;
  color: #2b1e1c;
  font-size: 24px;
  line-height: 32px;
}

.contact-info>p {
  margin: 0 0 28px;
  color: var(--body);
  font-size: 14px;
  line-height: 24px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-info-item+.contact-info-item {
  margin-top: 20px;
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 207, 6, 0.2);
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.contact-info-item h3 {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 20px;
  color: #7a7a7a;
  font-weight: 600;
}

.contact-info-item a,
.contact-info-item p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
}
.contact-info-item a:hover {
  text-decoration: underline;
}
.contact-form-wrap {
  --card-bg: var(--white);
  --card-border: var(--light-gray);
  --card-radius: 36px;
  --card-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
  padding: 40px;
}

.contact-form-wrap h2 {
  margin: 0 0 24px;
  color: #2b1e1c;
  font-size: 30px;
  line-height: 38px;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

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

.contact-field label {
  color: #7a7a7a;
  font-size: 12px;
  line-height: 18px;
}

.contact-field input,
.contact-field textarea {
  border: 0;
  border-bottom: 1px solid #c7c9ce;
  border-radius: 0;
  padding: 8px 0;
  font-size: 16px;
  line-height: 24px;
  color: #2b1e1c;
  background: transparent;
}

.contact-field textarea {
  resize: vertical;
  min-height: 44px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(43, 30, 28, 0.6);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-bottom-color: var(--green);
}

.contact-submit {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  font-size: 14px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-submit i {
  color: var(--yellow);
}

.contact-cta {
  padding-top: 32px;
}

.contact-cta-panel {
  border-radius: 40px;
  background: linear-gradient(135deg, #b1853f 0%, #c49a53 60%, #bb8c3f 100%);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.14);
  text-align: center;
  padding: 72px 24px;
}

.contact-cta-panel h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 64px;
  line-height: 70px;
}

.contact-cta-panel p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 32px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 22px;
}

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

  .contact-hero h1,
  .contact-cta-panel h2 {
    font-size: 44px;
    line-height: 52px;
  }
}

@media (max-width: 767px) {
  .contact-form-wrap {
    padding: 24px;
  }

  .contact-form-wrap h2 {
    font-size: 36px;
    line-height: 40px;
  }

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

  .contact-subtitle,
  .contact-cta-panel p {
    font-size: 16px;
    line-height: 26px;
  }
}

ul.bullets{
  margin: 0;
  padding: 0;
}
ul.bullets li{
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
}
ul.bullets li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 2px;
}