:root {
  --brown: #875519;
  --gold: #d1b53f;
  --gold-soft: #d7c78c;
  --text-muted: #6f7785;
  --light-border: #dddddd;
  --maroon: #895457;
  --footer: #2f2f2f;
}

* {
  box-sizing: border-box;
}


html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: var(--brown);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-shell {
  width: 1300px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 221, 221, 0.4);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(135, 85, 25, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand img {
  width: 145px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  color: var(--brown);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 18px;
  border-radius: 30px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s ease, left 0.25s ease;
}

.nav-item:hover {
  color: var(--gold);
}

.nav-item:hover::after {
  width: 60%;
  left: 20%;
}

.nav-item.active {
  background: var(--gold);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.nav-item.active::after {
  display: none;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 30px;
  background: var(--gold);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 16px rgba(209, 181, 63, 0.25);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.contact-btn:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 2px 8px rgba(209, 181, 63, 0.15);
}

.contact-btn:hover i {
  transform: translateX(3px);
}

.hero {
  margin-top: 53px;
}

.hero-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-title-wrap h1 {
  margin: 0;
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  color: var(--brown);
  letter-spacing: -0.5px;
  max-width: 790px;
}

.hero-title-wrap h1 span {
  display: block;
  padding-left: 82px;
  position: relative;
  white-space: nowrap;
}

.hero-title-wrap h1 span::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 50px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--gold);
}

.spark-line {
  width: 165px;
  height: 2px;
  margin-top: 62px;
  margin-right: 543px;
  background: var(--gold);
  position: relative;
  overflow: visible;
}

.spark-line::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.spark {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
}

.spark::before,
.spark::after {
  content: none;
}

.spark-line .spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spark-line .spark::before {
  content: "✦";
  font-size: 58px;
  line-height: 1;
  color: var(--gold);
  display: block;
}

.hero-collage-wrap {
  margin-top: 39px;
  position: relative;
}

.hero-collage-picture {
  display: block;
}

.hero-collage {
  width: 100%;
  height: auto;
  display: block;
}

.hero-copy {
  position: absolute;
  left: 462px;
  top: 327px;
  width: 838px;
  background: #ffffff;
  border-radius: 36px 34px 0 0;
  padding: 18px 0 0 45px;
}

.hero-copy p {
  margin: 0;
  width: 785px;
  font-size: 37px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--brown);
  transform-origin: top left;
  transform: scale(0.49);
}

.hero-copy strong {
  font-weight: 700;
}

.hero-bottom-row {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 495px;
  align-items: start;
  column-gap: 44px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  border: 1px solid var(--light-border);
  border-radius: 20px;
  height: 145px;
  padding: 18px 24px 18px;
  will-change: box-shadow, border-color;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover,
.stat-card:focus-within {
  border-color: var(--gold-soft);
  box-shadow: 0 8px 24px rgba(135, 85, 25, 0.15);
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-top h3 {
  margin: 0;
  font-size: 37px;
  font-weight: 400;
  line-height: 1;
  color: var(--brown);
}

.stat-top i {
  color: var(--gold);
  font-size: 33px;
}

.stat-card p {
  margin: 13px 0 0;
  font-size: 23px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.search-box {
  display: grid;
  grid-template-columns: 1px 1fr;
  column-gap: 42px;
  row-gap: 16px;
}

.search-divider {
  grid-row: 1 / span 2;
  width: 1px;
  height: auto;
  background: var(--gold);
  margin: 0;
  align-self: stretch;
}

.search-box input {
  grid-column: 2;
  height: 66px;
  border: 1px solid var(--light-border);
  border-radius: 20px;
  background: #ffffff;
  padding: 0 24px;
  color: #8f98a8;
  font-size: 35px;
  font-weight: 300;
  line-height: 1;
  transform-origin: left center;
  transform: scale(0.46);
}

.search-box button {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  height: 65px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  background: var(--gold);
  color: #ffffff;
  font-size: 65px;
  font-weight: 600;
  line-height: 1;
  transform-origin: center;
  transform: scale(0.47);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.search-box button:hover {
  background: transparent;
  color: var(--gold);
}

.section-line {
  margin: 50px auto 0;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.insights {
  width: min(1454px, calc(100% - 40px));
  padding-top: 30px;
  padding-bottom: 20px;
}

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

.insight-card {
  position: relative;
  height: clamp(340px, 27vw, 395px);
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #d9d5c8;
  isolation: isolate;
}

.insight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/images/pattern-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
  border-radius: inherit;
}

.insight-vision {
  background:
    radial-gradient(circle at 142px 50%, #f8f7ef00 0 178px, transparent 179px),
    #cfbb46;
  border-color: #c9b440;
}

.insight-mission {
  background:
    radial-gradient(circle at calc(100% - 134px) 50%, #cfbb4600 0 210px, transparent 211px),
    #fbfaf4;
}

.insight-photo {
  position: absolute;
  display: block;
  z-index: 1;
  object-fit: contain;
  pointer-events: none;
}

.insight-vision .insight-photo {
  left: clamp(-244px, -15vw, -205px);
  top: clamp(-122px, -10vw, -130px);
  width: clamp(640px, 47vw, 765px);
  height: clamp(640px, 47vw, 740px);
  object-position: center;
}

.insight-mission .insight-photo {
  right: clamp(-238px, -21vw, -285px);
  top: clamp(-131px, -9vw, -118px);
  width: clamp(660px, 48vw, 760px);
  height: clamp(660px, 48vw, 760px);
  object-position: center;
}

.insight-copy {
  position: absolute;
  z-index: 2;
}

.insight-vision .insight-copy {
  top: 34px;
  right: 30px;
  bottom: 28px;
  left: auto;
  width: 350px;
  text-align: center;
}

.insight-mission .insight-copy {
  top: 34px;
  right: auto;
  bottom: 26px;
  left: 38px;
  width: 340px;
  text-align: center;
}

.insight-copy h3 {
  margin: 0 auto;
  width: 224px;
  height: 58px;
  border-radius: 13px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.insight-vision .insight-copy h3 {
  margin-left: auto;
  margin-right: auto;
  color: var(--brown);
  background: #f7f7f5;
}

.insight-mission .insight-copy h3 {
  margin-right: auto;
  color: #ffffff;
  background: #cfbb46;
}

.insight-copy p {
  margin: clamp(18px, 1.6vw, 24px) 0 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-spacing: -0.16em;
  text-transform: uppercase;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: normal;
  text-rendering: geometricPrecision;
}

.insight-vision .insight-copy p {
  color: #ffffff;
  text-align: justify;
}

.insight-mission .insight-copy p {
  color: var(--brown);
  text-align: justify;
}

@media (min-width: 861px) {
  .insight-copy p {
    font-size: 19px;
    line-height: 1.2;
  }
}

.insight-leaf {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.96;
}

.insight-leaf-left {
  left: 26%;
  bottom: -12px;
  width: 190px;
  transform: rotate(10deg);
}

.insight-leaf-right {
  right: 26%;
  bottom: -14px;
  width: 175px;
}

/* About Showcase */
.about-showcase {
  width: min(1454px, calc(100% - 40px));
  padding-top: 230px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: 72px;
  align-items: center;
}

.about-showcase-visual {
  position: relative;
  min-height: 504px;
}

.about-image {
  position: absolute;
  overflow: hidden;
  border-radius: 22px;
  background: #f6efe7;
  box-shadow: 0 22px 42px rgba(128, 82, 32, 0.08);
}

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

.about-image-primary {
  left: 70px;
  bottom: 74px;
  width: 340px;
  height: 425px;
}

.about-image-primary img {
  object-position: center top;
}

.about-image-secondary {
  right: 12px;
  bottom: 22px;
  width: 340px;
  height: 410px;
}

.about-image-secondary img {
  object-position: 54% 30%;
}

.sales-card {
  display: none;
  position: absolute;
  top: 0;
  right: 70px;
  width: 245px;
  min-height: 250px;
  padding: 38px 26px 28px;
  border-radius: 0 0 10px 10px;
  background: #ffffff;
  color: var(--brown);
  box-shadow: 0 24px 55px rgba(130, 89, 40, 0.08);
}

.sales-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.sales-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sales-card i {
  color: var(--gold);
  font-size: 24px;
}

.sales-card p {
  margin: 18px 0 0;
  max-width: 190px;
  font-size: 13px;
  line-height: 1.34;
  font-weight: 500;
}

.sales-line {
  width: 100%;
  height: 2px;
  margin: 30px 0 24px;
  background: var(--gold);
}

.avatar-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 8px;
  max-width: 205px;
}

.avatar-cloud span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #df8755;
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.avatar-cloud span:nth-child(6n + 2) {
  background: #d5b73d;
}

.avatar-cloud span:nth-child(6n + 4) {
  background: #8c5a28;
}

.avatar-cloud img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating-card {
  display: none;
  position: absolute;
  left: 318px;
  bottom: 0;
  width: 170px;
  min-height: 120px;
  padding: 22px 24px 18px;
  border-radius: 0 0 10px 10px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(130, 89, 40, 0.08);
}

.rating-card h4 {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.rating-line {
  width: 72px;
  height: 6px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: #eeeeee;
}

.rating-line-long {
  width: 92px;
}

.rating-faces {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 20px;
}

.about-showcase-copy {
  color: var(--brown);
  max-width: 625px;
}

.about-showcase-copy > span {
  display: block;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.56em;
}

.about-showcase-copy h2 {
  margin: 0 0 34px;
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-showcase-copy p {
  margin: 0;
  font-size: 21px;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: 0.02em;
  word-spacing: 0.22em;
  text-align: justify;
}

.about-showcase-copy strong {
  font-weight: 700;
}

/* ── Science Section ── */
.science-section {
  margin-top: 0;
  position: relative;
  overflow: visible;
}

.science-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fdf8f0 6%, #f9f1e3 50%, #f5ead4 85%, rgba(245,234,212,0) 100%);
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
}

.science-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(380px, 520px);
  align-items: center;
  column-gap: 40px;
  padding-top: 0px;
  padding-bottom: 50px;
}

.science-visual {
  position: relative;
}

.science-visual img {
  width: 110%;
  max-width: none;
  margin-left: auto;
  margin-right: -80px;
  height: auto;
  display: block;
}

.science-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.science-badge i {
  font-size: 12px;
}

.science-copy h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
}

.science-copy h2 span {
  display: block;
  color: var(--gold);
}

.science-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 3px;
  margin: 20px 0;
}

.science-copy p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: #6b5a3e;
  text-align: justify;
}

.science-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 32px;
  border-radius: 30px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(209, 181, 63, 0.3);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 5;
}

.science-cta i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.science-cta:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 2px 10px rgba(209, 181, 63, 0.15);
}

.science-cta:hover i {
  transform: translateX(4px);
}

/* ── Biolyft Banner ── */
.biolyft-banner {
  margin-top: -60px;
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(133, 85, 88, 0.72), rgba(133, 85, 88, 0.72)),
              url("./assets/images/biolyft-banner.png") center 35% / cover no-repeat;
  contain: layout style paint;
}

.biolyft-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--maroon));
  z-index: 3;
  pointer-events: none;
  transform: translateZ(0);
}

.biolyft-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.biolyft-title {
  margin: 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 222px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.biolyft-subtitle {
  margin: 22px 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.5px;
}

/* ── Products ── */
.products {
  margin-top: 0;
  background: #ffffff;
  position: relative;
  min-height: 1252px;
  contain: layout style paint;
  align-content: center;
}

.products-overlay {
  position: absolute;
  inset: 0;
  background-image: url("./assets/images/pattern-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  transform: translateZ(0);
  pointer-events: none;
}

.products-inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 118px;
}

.product-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 347px);
  justify-content: space-between;
  row-gap: 22px;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  padding: 28px 28px 24px;
  border: 1px solid rgba(221, 213, 200, 0.5);
  transition: border-color 0.15s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  border-color: var(--gold-soft);
}

.card-arrow {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold-soft);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.card-arrow:hover {
  opacity: 0.65;
}

.product-image-wrap {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrap img {
  max-width: 55%;
  max-height: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  margin: 8px 0 0;
}

.product-meta {
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-meta div {
  flex: 1;
  min-width: 0;
}

.product-meta h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--brown);
}

.product-meta p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.product-meta strong {
  font-size: 21px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 16px;
}

.shop-btn {
  margin: 50px auto 0;
  width: 260px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  background: linear-gradient(135deg, #d1b53f, #e6ca5a);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(209, 181, 63, 0.35);
  will-change: opacity;
  transition: opacity 0.2s ease;
}

.shop-btn:hover {
  opacity: 0.85;
}

.contact {
  padding-top: 95px;
  padding-bottom: 78px;
  display: grid;
  grid-template-columns: 494px 1fr;
  column-gap: 69px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 12px;
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
  transform-origin: left center;
  transform: scale(0.47);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--light-border);
  border-radius: 20px;
  background: #ffffff;
  color: #adb4c1;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 300;
  padding: 0 24px;
  transform-origin: left center;
  transform: scale(0.46);
}

.contact-form input,
.contact-form select {
  height: 66px;
  margin-bottom: 19px;
}

.contact-form textarea {
  height: 173px;
  resize: none;
  padding-top: 21px;
  margin-bottom: 17px;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  cursor: pointer;
}

.select-wrap i {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #cbcbcb;
}

.submit-btn {
  height: 51px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold), #e6ca5a);
  color: #ffffff;
  font-size: 93px;
  font-weight: 600;
  line-height: 1;
  transform-origin: center;
  transform: scale(0.49);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(209, 181, 63, 0.3);
  transition: box-shadow 0.25s ease, opacity 0.25s ease;
}

.submit-btn:hover {
  box-shadow: 0 6px 24px rgba(209, 181, 63, 0.45);
  opacity: 0.9;
}

.faq-area h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

.faq-area h2 span {
  display: block;
}

.faq-area p {
  margin: 27px 0 0;
  font-size: 33px;
  line-height: 1.45;
  font-weight: 400;
  transform-origin: left top;
  transform: scale(0.49);
}

.contact-info-row {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.icon-char {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.info-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown);
}

.info-item p {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-muted);
}

.faq-question-row {
  margin-top: 31px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.faq-question-row h3 {
  margin: 0;
  font-size: 39px;
  font-weight: 500;
  line-height: 1;
  transform-origin: left center;
  transform: scale(0.47);
}

.faq-line {
  flex: 1;
  height: 3px;
  background: var(--gold);
}

.site-footer {
  background: #1a1a1a;
  color: #f2f2f2;
  position: relative;
  padding: 0 0 40px;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 30%, var(--gold-soft) 50%, var(--gold) 70%, transparent 95%);
}

.footer-main {
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.8fr;
  gap: 40px;
}

.footer-brand img {
  width: 130px;
  display: block;
}

.footer-brand p {
  margin: 20px 0 0;
  max-width: 320px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.footer-links-group h4,
.footer-contact h4 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 14px;
}

.footer-links-group h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links-group ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links-group li {
  margin-top: 10px;
}

.footer-links-group li a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links-group li a:hover {
  color: var(--gold);
}

.socials {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 10px 0 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a,
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 400;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

@media (min-width: 1281px) {
  .hero {
    margin-top: 52px;
  }

  .hero-title-wrap h1 {
    font-size: 84px;
    max-width: 840px;
    letter-spacing: -0.3px;
  }

  .hero-title-wrap h1 span {
    padding-left: 80px;
  }

  .spark-line {
    width: 170px;
    margin-top: 61px;
    margin-right: 522px;
  }

  .hero-collage-wrap {
    margin-top: -165px;
  }

  .hero-copy {
    top: 545px;
    left: 462px;
    width: 838px;
    border-radius: 34px 34px 0 0;
    padding: 18px 0 0 45px;
  }


  .hero-copy p {
    width: 765px;
    font-size: 16px;
    line-height: 1.55;
    transform: none;
  }

  .hero-bottom-row {
    margin-top: 42px;
  }

  .stat-card {
    height: 146px;
    padding: 19px 24px 18px;
  }

  .stat-top h3 {
    font-size: 48px;
    transform: none;
  }

  .stat-card p {
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.1;
    white-space: nowrap;
    transform: none;
  }

  .search-box input {
    font-size: 16px;
    transform: none;
  }

  .search-box button {
    font-size: 24px;
    transform: none;
  }

  .insight-copy h3 {
    font-size: 40px;
  }

  .insight-copy p {
    font-size: 19px;
    line-height: 1.4;
  }

  .science-copy h2 {
    font-size: 54px;
  }

  .science-copy p {
    font-size: 21px;
    line-height: 1.6;
    text-align: justify;
  }

  .science-visual img {
    width: 900px;
    margin-left: -142px;
  }


  .contact-form label {
    font-size: 18px;
    transform: none;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    transform: none;
  }

  .submit-btn {
    font-size: 29px;
    transform: none;
    width: 41%;
    align-self: center;
  }

  .faq-area p {
    margin-top: 21px;
    font-size: 16px;
    transform: none;
  }

  .info-item h3 {
    font-size: 17px;
  }

  .info-item p {
    margin-top: 3px;
    font-size: 14px;
  }

  .faq-question-row h3 {
    font-size: 18px;
    transform: none;
  }
}

/* ── Header Actions & Mobile Drawer Base ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ── Cart Icon ── */
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(209, 181, 63, 0.08);
  border: 1px solid rgba(209, 181, 63, 0.2);
  color: var(--brown);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-cart:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(209, 181, 63, 0.3);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  background: var(--maroon);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  line-height: 1;
}

.mobile-toggle, .mobile-close {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--brown);
  cursor: pointer;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 20, 15, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

@media (max-width: 1280px) {
  .page {
    width: 100%;
  }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 16px 0;
    gap: 12px;
  }

  .site-nav {
    display: flex;
  }

  .hero-title-wrap {
    display: block;
  }

  .hero-title-wrap h1 {
    font-size: 58px;
  }

  .hero-title-wrap h1 span {
    padding-left: 0;
  }

  .hero-title-wrap h1 span::before {
    display: none;
  }

  .spark-line {
    margin: 26px 0 0;
    width: 140px;
  }

  .hero-copy {
    position: static;
    width: auto;
    border-radius: 20px;
    margin-top: 20px;
    padding: 16px 18px;
  }

  .hero-copy p {
    width: auto;
    transform: none;
    font-size: 16px;
  }

  .hero-bottom-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .search-box {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .search-divider {
    display: none;
  }

  .search-box input,
  .search-box button {
    transform: none;
    font-size: 20px;
    height: 56px;
  }

  .insights {
    padding-top: 50px;
  }

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

  .insight-card {
    min-height: 312px;
  }

  .insight-vision .insight-photo,
  .insight-mission .insight-photo {
    width: 40%;
  }

  .insight-copy h3,
  .science-copy h2,
  .products-inner h2,
  .faq-area h2 {
    font-size: 40px;
  }

  .insight-copy p {
    font-size: 16px;
    line-height: 1.32;
  }

  .science-copy p,
  .faq-area p {
    font-size: 18px;
  }

  .insight-leaf-left {
    left: 90px;
    width: 220px;
  }

  .insight-leaf-right {
    right: 88px;
    width: 188px;
  }

  .science-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .science-visual {
    max-width: 500px;
    margin: 0 auto;
    order: -1;
  }

  .science-visual img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 20px;
  }

  .shop-btn {
    width: min(280px, 100%);
  }

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

  .contact-form label,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .submit-btn,
  .info-item h3,
  .info-item p,
  .faq-question-row h3 {
    transform: none;
  }

  .contact-form label {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 18px;
  }

  .submit-btn {
    font-size: 18px;
  }

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

  .faq-question-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .faq-line {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 860px) {
  .section-shell {
    max-width: 100%;
    padding: 0 20px;
  }

  /* General Section Spacing */
  section, .hero, .insights-area, .science-inner, .products-area, .faq-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* Header Drawer */
  .header-actions .contact-btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-close {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
  }
  
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: #fdf8f0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 30px;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .site-nav.open { right: 0; }
  .site-nav .nav-item {
    font-size: 20px;
    font-weight: 500;
  }

  /* Typography Refinements */
  .hero-title-wrap h1 { font-size: 34px; line-height: 1.2; }
  .hero-copy p { font-size: 15px; }
  .science-copy h2, .products-inner h2, .faq-area h2, .insight-copy h3 { font-size: 30px; line-height: 1.25; }
  .science-copy p, .insight-copy p, .faq-area p { font-size: 15px; line-height: 1.6; }

  /* Buttons */
  .shop-btn, .submit-btn, .contact-btn {
    width: 100%;
    height: 54px;
    line-height: 54px;
    font-size: 16px;
    padding: 0;
    border-radius: 27px;
  }

  /* Edge-to-Edge Swipeable Horizontal Carousels */
  .product-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 20px 20px;
    margin-left: -20px;
    margin-right: -20px;
    scrollbar-width: none; 
    -ms-overflow-style: none;
  }
  .product-grid::-webkit-scrollbar { display: none; }
  .product-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .stats-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 20px 20px;
    margin-left: -20px;
    margin-right: -20px;
    scrollbar-width: none;
  }
  .stats-grid::-webkit-scrollbar { display: none; }
  .stat-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    padding: 24px;
  }
  
  .stat-top h3, .stat-card p { transform: none; }
  .stat-top h3 { font-size: 34px; }
  .stat-card p { font-size: 18px; }

  /* Insights Stacked gracefully */
  .insight-card { min-height: 0; flex-direction: column; }
  .insight-vision .insight-photo, .insight-mission .insight-photo {
    position: static;
    width: 100%;
    height: 200px;
    border-radius: 20px 20px 0 0;
  }
  .insight-vision .insight-copy, .insight-mission .insight-copy {
    max-width: none;
    margin-left: 0;
    padding: 20px;
    text-align: left;
  }
  .insight-copy h3 { font-size: 28px; padding: 0; margin-bottom: 15px; }
  .insight-copy p { margin-top: 0; font-size: 15px; }
  .insight-leaf, .insight-card::before { display: none; }

  /* Forms */
  .contact-form input, .contact-form select { height: 50px; font-size: 15px; }
  .contact-form textarea { font-size: 15px; }
  .contact-form label { font-size: 15px; margin-bottom: 6px; }
  .submit-btn {
    width: 100%;
    height: 54px;
    font-size: 16px;
    border-radius: 27px;
  }

  /* Contact Info Section */
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }
  .info-item {
    gap: 14px;
  }
  .icon-badge {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .info-item h3 {
    font-size: 16px;
  }
  .info-item p {
    font-size: 13px;
  }

  /* FAQ Section */
  .faq-question-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .faq-question-row h3 {
    font-size: 16px;
    transform: none;
  }
  .faq-line {
    width: 100%;
  }

  /* Footer Overhaul */
  .site-footer { padding: 50px 0 30px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-brand p { margin: 15px auto 0; }
  
  /* Create 2-column layout for the two link groups */
  .footer-links-group { text-align: left; }
  .footer-inner > .footer-links-group:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2;
    width: 50%;
    float: left;
  }
  .footer-inner > .footer-links-group:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2;
    width: 50%;
    float: right;
    margin-left: 50%;
  }
  /* Ensure float clear */
  .footer-contact {
    clear: both;
    padding-top: 20px;
  }
  .socials { justify-content: center; margin-top: 15px; }
  
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
}
