/* =========================================================
   WEST RIVER — HIMALAYAN PINK SALT — Multi-page site
   ========================================================= */

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

:root {
  --navy: #0b1c2c;
  --navy-2: #122a40;
  --navy-deep: #071320;
  --salt-pink: #e9a89a;
  --salt-pink-2: #f2c4b6;
  --clay: #c17a5f;
  --gold: #c9a15a;
  --gold-bright: #e8c375;
  --cream: #f8f1e8;
  --cream-2: #efe4d4;
  --ink: #1c1712;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
ul {
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ PRELOADER (home page only) ============ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(
    ellipse at 50% 40%,
    var(--navy-2) 0%,
    var(--navy-deep) 75%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition:
    opacity 0.9s var(--ease),
    visibility 0.9s var(--ease);
  perspective: 900px;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-mark {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.pre-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 90, 0.35);
  animation: pre-spin 5s linear infinite;
}
.pre-ring.r2 {
  inset: 14px;
  border-color: rgba(233, 168, 154, 0.3);
  animation-duration: 4s;
  animation-direction: reverse;
}
@keyframes pre-spin {
  to {
    transform: rotate(360deg);
  }
}
.pre-logo-img {
  width: 74px;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 18px rgba(233, 168, 154, 0.55));
  animation:
    pre-logo-in 1.6s var(--ease) forwards 0.15s,
    pre-logo-spin3d 3.2s ease-in-out infinite 1.6s;
}
@keyframes pre-logo-in {
  0% {
    opacity: 0;
    transform: scale(0.65) translateY(10px) rotateY(0deg);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotateY(0deg);
    filter: drop-shadow(0 0 22px rgba(233, 168, 154, 0.6));
  }
}
@keyframes pre-logo-spin3d {
  0%,
  100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(360deg);
  }
}
.pre-wordmark {
  margin-top: 22px;
  font-family: var(--font-display);
  letter-spacing: 0.38em;
  font-size: 15px;
  color: var(--cream);
  opacity: 0;
  animation: pre-fade-up 1s var(--ease) forwards 0.7s;
}
.pre-sub {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0;
  animation: pre-fade-up 1s var(--ease) forwards 0.95s;
}
@keyframes pre-fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pre-bar {
  margin-top: 34px;
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.pre-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--salt-pink));
  animation: pre-load 2.1s var(--ease) forwards 0.2s;
}
@keyframes pre-load {
  to {
    width: 100%;
  }
}

/* ============ NAV ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 0;
  transition:
    background 0.5s var(--ease),
    padding 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
header.scrolled,
header.solid {
  background: rgba(11, 28, 44, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 28px;
}
header .container.nav-inner {
  max-width: 1440px;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: -4px;
  flex-shrink: 0;
  justify-self: start;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: height 0.4s var(--ease);
}
header.scrolled .nav-logo img,
header.solid .nav-logo img {
  height: 42px;
}
nav {
  justify-self: center;
  min-width: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links li:not(:last-child) {
  margin-right: 21px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--gold-bright);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: end;
  flex-shrink: 0;
}
.nav-cta {
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.35s var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--navy-deep);
}

/* ============ CUSTOM LANGUAGE SWITCHER ============ */
/* Google's own widget is rendered off-screen and driven programmatically;
   everything visible here is fully custom-styled to match the theme.
   Google's script sometimes injects extra elements (menu iframe, tooltip,
   banner) directly onto <body> - OUTSIDE this div - so every possible
   piece it can create is locked down here, not just the wrapper. */
#google_translate_element,
#google_translate_element * {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  max-width: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  left: -9999px !important;
  top: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
.goog-te-gadget-icon,
.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}
body {
  top: 0 !important;
}
body.goog-te-editable {
  top: 0 !important;
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 150px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(232, 195, 117, 0.4);
  border-radius: 2px;
  background: rgba(248, 241, 232, 0.04);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.lang-trigger:hover,
.lang-switcher.open .lang-trigger {
  border-color: rgba(232, 195, 117, 0.75);
  background: rgba(248, 241, 232, 0.08);
}
.lang-trigger .lang-current {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lang-trigger svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  stroke: var(--gold-bright);
  transition: transform 0.3s var(--ease);
}
.lang-switcher.open .lang-trigger svg {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 200px;
  max-height: 0;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid rgba(232, 195, 117, 0.3);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    max-height 0.3s var(--ease),
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    visibility 0s linear 0.3s;
  z-index: 600;
}
.lang-switcher.open .lang-menu {
  max-height: 360px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    max-height 0.35s var(--ease),
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.lang-menu ul {
  padding: 6px;
  max-height: 360px;
  overflow-y: auto;
}
.lang-menu li {
  list-style: none;
}
.lang-menu button {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: 3px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.lang-menu button:hover {
  background: rgba(232, 195, 117, 0.12);
  color: var(--gold-bright);
}
.lang-menu button.active {
  color: var(--gold-bright);
}
.lang-menu button .lang-native {
  opacity: 0.65;
  font-size: 11px;
}
@media (max-width: 1050px) {
  .nav-right {
    gap: 10px;
  }
  .lang-trigger {
    width: auto;
    height: 32px;
    padding: 0 10px;
    gap: 6px;
    font-size: 10px;
  }
  .lang-trigger .lang-current {
    max-width: 70px;
  }
  .lang-trigger svg {
    width: 8px;
    height: 8px;
  }
  .lang-menu {
    right: -10px;
  }
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 22px;
  z-index: 39;
}
.nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}
.dd-caret {
  width: 9px;
  height: 9px;
  flex: none;
  transition: transform 0.3s var(--ease);
}
.nav-dropdown.dd-open .dd-caret,
.nav-dropdown:hover .dd-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  background: var(--navy-2);
  border: 1px solid rgba(233, 168, 154, 0.16);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 24px 44px rgba(7, 19, 32, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s;
  z-index: 40;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.dd-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  border-radius: 5px;
  white-space: nowrap;
}
.nav-dropdown-menu li a::after {
  display: none;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  background: rgba(233, 168, 154, 0.12);
  color: var(--gold-bright);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 600;
  background: none;
  border: none;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  position: relative;
  padding: 155px 0 85px;
  background: var(--navy-deep) center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 19, 32, 0.72),
      rgba(7, 19, 32, 0.55) 45%,
      rgba(7, 19, 32, 0.82)
    ),
    radial-gradient(
      ellipse at 30% 20%,
      rgba(233, 168, 154, 0.16),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(201, 161, 90, 0.12),
      transparent 55%
    );
}
.page-hero .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

/* Per-page hero background photography — desktop/tablet: original full-bleed cover look */
.page-hero.hero-bg-about {
  background-image: url("images/about.jpeg");
}
.page-hero.hero-bg-product {
  background-image: url("images/product.jpeg");
}
.page-hero.hero-bg-knowledge {
  background-image: url("images/Knowledge center.jpeg");
}
.page-hero.hero-bg-private-label {
  background-image: url("images/private label.jpeg");
}
.page-hero.hero-bg-contact {
  background-image: url("images/contact.jpeg");
}
.page-hero.hero-bg-privacy {
  background-image: url("images/privacy policy.jpeg");
}

/* This extra layer is unused on desktop/tablet (only the section's own cover
   background above is shown there). On mobile, a separate rule below switches
   it on and switches the section's own background off, so mobile gets its own
   independent treatment that shows the COMPLETE photo instead of a cropped one. */
.page-hero-photo {
  display: none;
}

@media (max-width: 600px) {
  .page-hero-crest {
    width: 68px;
  }
  .hero-crest {
    width: 70px;
  }
}
.page-hero-crest {
  width: 76px;
  margin: 0 auto 22px;
  opacity: 0;
  animation: rise-fade 1s var(--ease) forwards 0.2s;
  filter: drop-shadow(0 0 20px rgba(233, 168, 154, 0.4));
  animation-fill-mode: forwards;
}
.page-eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0;
  animation: rise-fade 1s var(--ease) forwards 0.35s;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  margin: 16px 0 18px;
  opacity: 0;
  animation: rise-fade 1.1s var(--ease) forwards 0.5s;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--salt-pink-2);
}
.page-hero p {
  color: rgba(248, 241, 232, 0.78);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.6;
  font-size: 1.02rem;
  opacity: 0;
  animation: rise-fade 1s var(--ease) forwards 0.68s;
}
.page-hero p:last-of-type {
  margin-bottom: 0;
}
.breadcrumb {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 241, 232, 0.5);
  opacity: 0;
  animation: rise-fade 1s var(--ease) forwards 0.85s;
}
.breadcrumb a {
  color: var(--gold-bright);
}

/* ============ HOME HERO — video loops on its own, normal page scroll ============ */
.hero-scrub-wrap {
  position: relative;
  background: #090b0f;
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy-deep);
}
#heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: var(--navy-deep);
}
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.hero.video-ready .hero-poster {
  opacity: 0;
}

.hero-progress {
  display: none;
}
.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--salt-pink));
}

.hero-story {
  display: none;
}
.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14%;
  margin: 0 auto;
  max-width: 560px;
  padding: 0 24px;
  text-align: center;
  opacity: 0;
  transition:
    opacity 0.25s linear,
    transform 0.25s linear,
    filter 0.25s linear;
}
.hc-tag {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero-caption h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 600;
  margin: 12px 0 10px;
}
.hero-caption p {
  color: rgba(248, 241, 232, 0.78);
  font-size: 0.98rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 19, 32, 0.55) 0%,
    rgba(7, 19, 32, 0.35) 45%,
    rgba(7, 19, 32, 0.85) 100%
  );
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(201, 161, 90, 0.18),
    transparent 60%
  );
}
.hero-parallax {
  position: absolute;
  inset: 0;
  z-index: 1;
  perspective: 1200px;
  pointer-events: none;
  transform-style: preserve-3d;
}
.pshard-wrap {
  position: absolute;
  transition: transform 0.3s ease-out;
}
.pshard-wrap.w1 {
  top: 18%;
  left: 10%;
}
.pshard-wrap.w2 {
  top: 65%;
  left: 16%;
}
.pshard-wrap.w3 {
  top: 24%;
  right: 12%;
}
.pshard-wrap.w4 {
  top: 70%;
  right: 18%;
}
.pshard-wrap.w5 {
  top: 44%;
  left: 48%;
}
.pshard {
  position: relative;
  width: 46px;
  height: 56px;
  background: linear-gradient(
    155deg,
    rgba(242, 196, 182, 0.6),
    rgba(193, 122, 95, 0.4)
  );
  clip-path: polygon(50% 0%, 100% 30%, 82% 100%, 18% 100%, 0% 30%);
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.35));
  animation: shard-tumble-float 9s ease-in-out infinite;
  transform-style: preserve-3d;
}
.s1 {
  width: 34px;
  height: 42px;
  animation-delay: 0s;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.3)) blur(0.4px);
  opacity: 0.75;
}
.s2 {
  width: 60px;
  height: 72px;
  animation-delay: 1.2s;
  opacity: 0.55;
}
.s3 {
  width: 50px;
  height: 60px;
  animation-delay: 0.6s;
  opacity: 0.85;
}
.s4 {
  width: 30px;
  height: 38px;
  animation-delay: 2s;
  opacity: 0.5;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25)) blur(0.6px);
}
.s5 {
  width: 22px;
  height: 28px;
  animation-delay: 1.6s;
  opacity: 0.4;
  filter: blur(0.8px);
}
@keyframes shard-tumble-float {
  0% {
    transform: translateY(0) rotateZ(0deg) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-16px) rotateZ(6deg) rotateX(90deg) rotateY(45deg);
  }
  50% {
    transform: translateY(-26px) rotateZ(8deg) rotateX(180deg) rotateY(90deg);
  }
  75% {
    transform: translateY(-12px) rotateZ(3deg) rotateX(270deg) rotateY(135deg);
  }
  100% {
    transform: translateY(0) rotateZ(0deg) rotateX(360deg) rotateY(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  perspective: 1000px;
}
.hero-crest {
  width: 78px;
  margin: 0 auto 26px;
  opacity: 0;
  animation:
    crest-3d-in 1.6s var(--ease) forwards 0.25s,
    crest-3d-loop 5s ease-in-out infinite 1.9s;
  filter: drop-shadow(0 0 24px rgba(233, 168, 154, 0.4));
  transform-style: preserve-3d;
}
@keyframes crest-3d-in {
  0% {
    opacity: 0;
    transform: rotateY(-90deg) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}
@keyframes crest-3d-loop {
  0%,
  100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(18deg) rotateX(6deg);
  }
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0;
  animation: rise-fade 1s var(--ease) forwards 0.4s;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  line-height: 1.05;
  margin: 18px 0 22px;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: line-up 1.1s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span {
  animation-delay: 0.55s;
}
.hero h1 .line:nth-child(2) span {
  animation-delay: 0.72s;
}
.hero h1 em {
  font-style: italic;
  color: var(--salt-pink-2);
}
@keyframes line-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero p {
  color: rgba(248, 241, 232, 0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 34px;
  opacity: 0;
  animation: rise-fade 1s var(--ease) forwards 0.95s;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise-fade 1s var(--ease) forwards 1.15s;
}
@keyframes rise-fade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 161, 90, 0.35);
}
.btn-ghost {
  border: 1px solid rgba(248, 241, 232, 0.4);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(248, 241, 232, 0.1);
  border-color: var(--cream);
}
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: rise-fade 1s var(--ease) forwards 1.4s;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 241, 232, 0.6);
}
.scroll-line {
  width: 1px;
  height: 38px;
  background: rgba(248, 241, 232, 0.35);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  animation: scroll-drip 2.2s ease-in-out infinite;
}
@keyframes scroll-drip {
  0% {
    top: -100%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

/* ============ SECTION HEADERS ============ */
.section {
  padding: 120px 0;
  position: relative;
}

/* ============ PRIVACY POLICY ============ */
.policy-lead {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
  color: #6a6055;
  font-size: 1.08rem;
  line-height: 1.85;
}
.policy-lead b {
  color: var(--navy);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.policy-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 32px;
  box-shadow: 0 8px 24px rgba(11, 28, 44, 0.06);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(11, 28, 44, 0.1);
}
.policy-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 90, 0.16),
    rgba(233, 168, 154, 0.16)
  );
  color: var(--clay);
  margin-bottom: 20px;
}
.policy-icon svg {
  width: 24px;
  height: 24px;
}
.policy-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.policy-card p {
  color: #6a6055;
  font-size: 0.98rem;
  line-height: 1.75;
}

.policy-note {
  margin-top: 56px;
  padding: 38px 40px;
  background: var(--navy);
  border-radius: 14px;
  text-align: center;
}
.policy-note p {
  color: rgba(248, 241, 232, 0.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-note p:last-child {
  margin-bottom: 0;
}
.policy-note b {
  color: var(--gold-bright);
}
.policy-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--cream) !important;
  font-size: 1.25rem !important;
}

.policy-signoff {
  margin-top: 50px;
  padding-top: 34px;
  border-top: 1px solid rgba(11, 28, 44, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-signoff span:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-size: 1.05rem;
}
.policy-signoff span:last-child {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ KNOWLEDGE CENTER — FAQ ACCORDION ============ */
.faq-list {
  max-width: 880px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(11, 28, 44, 0.08);
  border-radius: 12px;
  padding: 6px 28px;
  box-shadow: 0 6px 20px rgba(11, 28, 44, 0.05);
  transition:
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.faq-item:hover {
  border-color: rgba(201, 161, 90, 0.35);
  box-shadow: 0 14px 30px rgba(11, 28, 44, 0.09);
}
.faq-item[open] {
  box-shadow: 0 18px 36px rgba(11, 28, 44, 0.1);
  border-color: rgba(201, 161, 90, 0.4);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: -3px;
}
.faq-item summary .faq-num {
  color: var(--gold);
  font-style: italic;
  margin-right: 12px;
}
.faq-item-body {
  padding: 0 0 26px;
  margin-top: -8px;
  color: #6a6055;
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ============ KNOWLEDGE CENTER — COOKING GUIDE ============ */
.kc-lead {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
  color: #6a6055;
  font-size: 1.05rem;
  line-height: 1.85;
}
.kc-lead b {
  color: var(--navy);
}
.kc-subhead {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.5rem;
  margin: 64px 0 8px;
}
.kc-subhead em {
  font-style: italic;
  color: var(--clay);
}
.kc-list-check {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  margin-top: 26px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.kc-list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4a4139;
  font-size: 0.98rem;
  line-height: 1.6;
}
.kc-list-check li svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--clay);
}
.kc-tip-box {
  margin-top: 56px;
  padding: 32px 36px;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 90, 0.1),
    rgba(233, 168, 154, 0.08)
  );
  border: 1px solid rgba(201, 161, 90, 0.3);
  border-radius: 14px;
}
.kc-tip-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.kc-tip-box h4 svg {
  width: 22px;
  height: 22px;
  color: var(--clay);
  flex: none;
}
.kc-tip-box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kc-tip-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #5a5148;
  font-size: 0.96rem;
  line-height: 1.7;
}
.kc-tip-box li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
  margin-top: 9px;
  flex: none;
}
.kc-temp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--gold-bright);
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .kc-list-check {
    grid-template-columns: 1fr;
  }
  .faq-item summary {
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
}
.section.tight {
  padding: 90px 0;
}
.section-tag {
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--clay);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-top: 14px;
  color: var(--navy);
}
.section-title em {
  font-style: italic;
  color: var(--clay);
}
.section-lede {
  max-width: 620px;
  color: #5a5148;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.section-head-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay1.in {
  transition-delay: 0.08s;
}
.reveal-delay2.in {
  transition-delay: 0.16s;
}
.reveal-delay3.in {
  transition-delay: 0.24s;
}
.reveal-delay4.in {
  transition-delay: 0.32s;
}
.reveal-delay5.in {
  transition-delay: 0.4s;
}
.reveal-delay6.in {
  transition-delay: 0.48s;
}

/* ============ ABOUT ============ */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  margin-top: 60px;
}
.about-media {
  position: relative;
  perspective: 1200px;
  aspect-ratio: 4/4.6;
  border-radius: 4px;
  overflow: hidden;
}
.about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s var(--ease);
}
.about-media:hover img {
  transform: rotateY(-6deg) rotateX(2deg) scale(1.04);
}
.about-media::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--navy);
}
.stat span {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #7a7168;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--navy);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
}
.marquee {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee span {
  color: rgba(248, 241, 232, 0.75);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}
.marquee span::after {
  content: "✦";
  color: var(--gold-bright);
  font-size: 10px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ PRODUCTS ============ */
.products {
  background: var(--cream-2);
}
.product-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.ptab {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(28, 23, 18, 0.15);
  border-radius: 30px;
  color: #5a5148;
  cursor: pointer;
  background: transparent;
  transition: all 0.35s var(--ease);
}
.ptab:hover {
  border-color: var(--clay);
  color: var(--clay);
}
.ptab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 44px;
}
.pcard {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
  perspective: 900px;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 24px -8px rgba(11, 28, 44, 0.25);
}
.pcard:hover {
  box-shadow:
    0 40px 60px -12px rgba(11, 28, 44, 0.45),
    0 0 0 1px rgba(233, 196, 182, 0.25);
}
.pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 8px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pcard:hover::before {
  opacity: 1;
}
.pcard-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: linear-gradient(160deg, #16324a, #0c2033);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.pcard img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.98;
  transition: transform 0.8s var(--ease);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}
.pcard:hover img {
  transform: scale(1.055);
}
.pcard-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 19, 32, 0) 15%,
    rgba(7, 19, 32, 0.55) 55%,
    rgba(7, 19, 32, 0.97) 100%
  );
}
.pcat {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(7, 19, 32, 0.55);
  padding: 5px 11px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.pinfo {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}
.pinfo h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.pinfo p {
  color: rgba(248, 241, 232, 0.85);
  font-size: 12.5px;
  margin-top: 4px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.pinfo .arrow {
  margin-top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(248, 241, 232, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 14px;
  transition: all 0.4s var(--ease);
}
.pcard:hover .arrow {
  background: var(--gold-bright);
  color: var(--navy-deep);
  border-color: var(--gold-bright);
  transform: translateX(6px);
}
@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ WHY / FEATURES ============ */
.why {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 168, 154, 0.12),
    transparent 70%
  );
  top: -200px;
  right: -150px;
}
.why .section-tag {
  color: var(--salt-pink-2);
}
.why .section-tag::before {
  background: var(--salt-pink-2);
}
.why .section-title {
  color: var(--cream);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: rgba(248, 241, 232, 0.1);
  perspective: 1200px;
}
.feature {
  background: var(--navy);
  padding: 40px 30px;
  transition:
    background 0.4s var(--ease),
    transform 0.5s var(--ease);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.cert-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11, 28, 44, 0.06);
  padding: 20px 16px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 28, 44, 0.12);
}
.cert-card img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .cert-card {
    height: 160px;
  }
  .cert-card img {
    max-height: 120px;
  }
}
.feature:hover {
  background: var(--navy-2);
  transform: translateZ(20px) rotateX(4deg);
}
.feature .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-bright);
  opacity: 0.7;
}
.feature h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 14px 0 10px;
  font-weight: 600;
}
.feature p {
  font-size: 13.5px;
  color: rgba(248, 241, 232, 0.65);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ 3D CRYSTAL SHOWCASE (pure CSS, JS-driven rotation) ============ */
.crystal-stage {
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  position: relative;
}
.crystal {
  position: relative;
  width: 170px;
  height: 220px;
  transform-style: preserve-3d;
  will-change: transform;
}
.crystal-face {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--salt-pink-2), var(--clay) 70%);
  opacity: 0.9;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.crystal-face::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -160%;
  width: 60%;
  height: 220%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: rotate(18deg);
  animation: glint-sweep 3.6s ease-in-out infinite;
}
.crystal-face.f2::after {
  animation-delay: 0.5s;
}
.crystal-face.f3::after {
  animation-delay: 1s;
}
.crystal-face.f4::after {
  animation-delay: 1.5s;
}
.crystal-face.f5::after {
  animation-delay: 2s;
}
.crystal-face.f6::after {
  animation-delay: 2.5s;
}
@keyframes glint-sweep {
  0%,
  20% {
    left: -160%;
  }
  60%,
  100% {
    left: 220%;
  }
}
.crystal-face.f1 {
  transform: rotateY(0deg) translateZ(75px);
  clip-path: polygon(50% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
}
.crystal-face.f2 {
  transform: rotateY(60deg) translateZ(75px);
  clip-path: polygon(50% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
  filter: brightness(0.9);
}
.crystal-face.f3 {
  transform: rotateY(120deg) translateZ(75px);
  clip-path: polygon(50% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
  filter: brightness(1.08);
}
.crystal-face.f4 {
  transform: rotateY(180deg) translateZ(75px);
  clip-path: polygon(50% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
  filter: brightness(0.82);
}
.crystal-face.f5 {
  transform: rotateY(240deg) translateZ(75px);
  clip-path: polygon(50% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
  filter: brightness(1.12);
}
.crystal-face.f6 {
  transform: rotateY(300deg) translateZ(75px);
  clip-path: polygon(50% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
  filter: brightness(0.96);
}
.crystal-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 168, 154, 0.4),
    transparent 70%
  );
  filter: blur(14px);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* ============ PRIVATE LABEL CTA ============ */
.pl-section {
  position: relative;
  background: var(--cream);
}
.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(11, 28, 44, 0.15);
}
.pl-media {
  position: relative;
  min-height: 460px;
  background: linear-gradient(160deg, #16324a, #0c2033);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.pl-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}
.pl-copy {
  background: var(--navy);
  color: var(--cream);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pl-copy .section-tag {
  color: var(--salt-pink-2);
}
.pl-copy .section-tag::before {
  background: var(--salt-pink-2);
}
.pl-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 16px 0 18px;
  font-weight: 600;
}
.pl-copy p {
  color: rgba(248, 241, 232, 0.75);
  line-height: 1.75;
  margin-bottom: 28px;
}
.pl-list {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}
.pl-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(248, 241, 232, 0.85);
}
.pl-list li::before {
  content: "✦";
  color: var(--gold-bright);
  font-size: 11px;
}
@media (max-width: 860px) {
  .pl-grid {
    grid-template-columns: 1fr;
  }
  .pl-media {
    min-height: 320px;
  }
}

/* ============ PRIVATE LABEL SERVICES OVERVIEW BLOCK ============ */
.pl-services {
  background: var(--cream);
}
.pl-services .section-title {
  text-align: center;
}
.pl-lead {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
  color: #6a6055;
  font-size: 1.05rem;
  line-height: 1.85;
}
.pl-lead + .pl-lead {
  margin-top: 16px;
}
.pl-lead b {
  color: var(--navy);
}

.pl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.pl-service-card {
  background: #fff;
  border-radius: 10px;
  padding: 38px 32px;
  box-shadow: 0 20px 40px rgba(11, 28, 44, 0.07);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.pl-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(11, 28, 44, 0.12);
}
.pl-service-card h4 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 28, 44, 0.08);
}
.pl-service-card .pl-list {
  margin-bottom: 0;
}
.pl-service-card .pl-list li {
  color: #4a453e;
  align-items: flex-start;
}
.pl-service-card .pl-list li::before {
  color: var(--clay);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .pl-services-grid {
    grid-template-columns: 1fr;
  }
}

.pl-closing {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: center;
}
.pl-closing p {
  color: #6a6055;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 26px;
}
.pl-cta-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--navy);
}
.pl-cta-line em {
  font-style: italic;
  color: var(--clay);
}

.pl-tagline {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.pl-tagline span {
  width: 44px;
  height: 1px;
  background: var(--gold);
}
.pl-tagline p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  letter-spacing: 0.03em;
  background: linear-gradient(120deg, var(--clay), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 600px) {
  .pl-tagline span {
    display: none;
  }
}

/* ============ PROCESS STEPS (private label page) ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.step {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(11, 28, 44, 0.06);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
}
.step:hover {
  transform: translateY(-8px) rotateX(4deg);
  box-shadow: 0 24px 44px rgba(11, 28, 44, 0.14);
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 12px 0 8px;
}
.step p {
  font-size: 13.5px;
  color: #6a6055;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ CONTACT / FOOTER ============ */
.contact {
  background: var(--cream-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}
.contact-info h4 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.contact-info .row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(28, 23, 18, 0.1);
  align-items: flex-start;
}
.contact-info .row-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(193, 122, 95, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
}
.contact-info .row-icon svg {
  width: 20px;
  height: 20px;
}
.contact-info .row b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 4px;
}
.contact-info .row span {
  color: #4a423a;
  font-size: 14.5px;
}
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.contact-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(28, 23, 18, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  transition: all 0.3s ease;
}
.contact-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}
form.cform {
  display: grid;
  gap: 16px;
}
.cform input,
.cform textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(28, 23, 18, 0.16);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
.cform input:focus,
.cform textarea:focus {
  outline: none;
  border-color: var(--clay);
}
.cform button {
  justify-self: flex-start;
}
.cform .cform-submit {
  justify-self: stretch;
  width: 100%;
  justify-content: center;
  padding: 0px 0px;
}
.cform .cform-submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.map-embed {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  height: 360px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

footer {
  background: var(--navy-deep);
  color: rgba(248, 241, 232, 0.6);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(248, 241, 232, 0.1);
}
.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 280px;
}
footer h5 {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer ul {
  display: grid;
  gap: 10px;
}
footer ul a {
  font-size: 13.5px;
  transition: color 0.3s ease;
}
footer ul a:hover {
  color: var(--gold-bright);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(248, 241, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 241, 232, 0.75);
  transition: all 0.3s ease;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-credit a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-credit a:hover {
  color: var(--gold);
}
@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ JAR LID CLOSING ANIMATION (about page) ============ */
.jar-wrap {
  position: relative;
  width: 230px;
  height: 300px;
  margin: 60px auto 0;
  perspective: 1000px;
}
.jar-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 220px;
  border-radius: 14px 14px 26px 26px;
  background: linear-gradient(
    155deg,
    rgba(242, 196, 182, 0.22),
    rgba(193, 122, 95, 0.35)
  );
  border: 1px solid rgba(248, 241, 232, 0.25);
  overflow: hidden;
  box-shadow:
    0 30px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(255, 255, 255, 0.06);
}
.jar-salt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72%;
  background: linear-gradient(180deg, #f2c4b6, #e9a89a 40%, #c17a5f);
  border-radius: 0 0 24px 24px;
}
.jar-salt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.08) 0 2px,
    transparent 2px 6px
  );
}
.jar-shine {
  position: absolute;
  top: 10px;
  left: 14px;
  width: 24px;
  height: 85%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
  border-radius: 20px;
  filter: blur(2px);
}
.jar-label {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 150px;
  text-align: center;
  background: rgba(11, 28, 44, 0.88);
  border: 1px solid rgba(233, 196, 182, 0.4);
  border-radius: 6px;
  padding: 14px 10px;
  opacity: 0;
  transition:
    opacity 0.8s var(--ease) 0.9s,
    transform 0.8s var(--ease) 0.9s;
}
.jar-label-icon {
  width: 22px;
  margin: 0 auto 6px;
}
.jar-label span {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.jar-label small {
  display: block;
  color: rgba(248, 241, 232, 0.7);
  font-size: 7px;
  letter-spacing: 0.14em;
  margin-top: 3px;
}
.jar-wrap.in .jar-label {
  opacity: 1;
}

.jar-lid {
  position: absolute;
  top: 0;
  left: 50%;
  width: 206px;
  height: 60px;
  transform-origin: 50% 100%;
  transform: translateX(-50%) translateY(-140px) rotate(-32deg);
  transition: transform 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
  z-index: 3;
}
.jar-wrap.in .jar-lid {
  transform: translateX(-50%) translateY(0) rotate(0deg);
}
.jar-lid-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  background: linear-gradient(
    155deg,
    var(--gold-bright),
    var(--gold) 60%,
    #8a6a2f
  );
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.jar-lid-band {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 26px;
  background: linear-gradient(155deg, #c9a15a, #8a6a2f);
  border-radius: 6px;
}
.jar-wrap.in .jar-body {
  animation: jar-settle 0.5s ease-out 1.25s;
}
@keyframes jar-settle {
  0% {
    transform: translateX(-50%) scale(1);
  }
  40% {
    transform: translateX(-50%) scale(1.015, 0.97);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
.jar-dust {
  position: absolute;
  top: 36px;
  left: 50%;
  width: 100px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.5),
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
}
.jar-wrap.in .jar-dust {
  animation: jar-dust-puff 0.6s ease-out 1.2s forwards;
}
@keyframes jar-dust-puff {
  0% {
    opacity: 0.8;
    transform: translateX(-50%) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(2.2);
  }
}
/* ============ CRUSHING SALT ROCK (products page hero) ============ */
.crush-stage {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 10px;
  height: 10px;
  z-index: 1;
  pointer-events: none;
}
.frag {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(155deg, var(--salt-pink-2), var(--clay) 75%);
  clip-path: polygon(20% 0%, 80% 5%, 100% 45%, 75% 100%, 25% 95%, 0% 50%);
  opacity: 0;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
  animation: frag-fall 2.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}
@keyframes frag-fall {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4) rotate(0deg);
  }
  6% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  55% {
    opacity: 1;
    transform: translate(calc(var(--fx) * 0.7), calc(var(--fy) * 0.62))
      scale(var(--fs, 0.8)) rotate(calc(var(--fr) * 0.6));
  }
  78% {
    opacity: 1;
    transform: translate(var(--fx), var(--fy)) scale(var(--fs, 0.8))
      rotate(var(--fr));
  }
  87% {
    transform: translate(calc(var(--fx) + 4px), calc(var(--fy) - 14px))
      scale(var(--fs, 0.8)) rotate(calc(var(--fr) + 8deg));
  }
  100% {
    opacity: 0.95;
    transform: translate(var(--fx), var(--fy)) scale(var(--fs, 0.8))
      rotate(var(--fr));
  }
}
.fr1 {
  width: 64px;
  height: 64px;
  --fx: -260px;
  --fy: 520px;
  --fr: -140deg;
  --fs: 0.9;
  animation-delay: 0.1s;
}
.fr2 {
  width: 50px;
  height: 50px;
  --fx: -140px;
  --fy: 560px;
  --fr: 95deg;
  --fs: 0.75;
  animation-delay: 0.22s;
}
.fr3 {
  width: 70px;
  height: 70px;
  --fx: 20px;
  --fy: 600px;
  --fr: -60deg;
  --fs: 1;
  animation-delay: 0.05s;
}
.fr4 {
  width: 44px;
  height: 44px;
  --fx: 160px;
  --fy: 555px;
  --fr: 180deg;
  --fs: 0.7;
  animation-delay: 0.3s;
}
.fr5 {
  width: 58px;
  height: 58px;
  --fx: 280px;
  --fy: 510px;
  --fr: 70deg;
  --fs: 0.85;
  animation-delay: 0.16s;
}
.fr6 {
  width: 36px;
  height: 36px;
  --fx: -80px;
  --fy: 480px;
  --fr: 220deg;
  --fs: 0.6;
  animation-delay: 0.38s;
}
.fr7 {
  width: 34px;
  height: 34px;
  --fx: 90px;
  --fy: 470px;
  --fr: -190deg;
  --fs: 0.55;
  animation-delay: 0.44s;
}
.fr8 {
  width: 40px;
  height: 40px;
  --fx: -200px;
  --fy: 440px;
  --fr: 130deg;
  --fs: 0.65;
  animation-delay: 0.5s;
}
.fr9 {
  width: 30px;
  height: 30px;
  --fx: 210px;
  --fy: 460px;
  --fr: -90deg;
  --fs: 0.5;
  animation-delay: 0.55s;
}
.crush-dust {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5),
    transparent 70%
  );
  opacity: 0;
  animation: dust-burst 0.7s ease-out 0.08s forwards;
}
@keyframes dust-burst {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(9);
  }
}
@media (max-width: 700px) {
  .crush-stage {
    display: none;
  }
}

/* ============ LAPTOP RESPONSIVENESS ============ */
@media (max-width: 1180px) {
  .container {
    max-width: 1180px;
    padding-left: 32px;
    padding-right: 32px;
  }
  header .container.nav-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-links li:not(:last-child) {
    margin-right: 14px;
  }
  .nav-links a {
    font-size: 11px;
  }
  .nav-right {
    gap: 14px;
  }
}
@media (max-width: 1050px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 90px 40px 60px;
    transition: right 0.5s var(--ease);
    z-index: 550;
    overflow-y: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(233, 168, 154, 0.1);
    width: 100%;
    margin-top: 10px;
    max-height: 0;
    padding: 0 8px;
    overflow: hidden;
    transition:
      max-height 0.4s var(--ease),
      padding 0.4s var(--ease);
  }
  .nav-dropdown.dd-open .nav-dropdown-menu {
    max-height: 200px;
    padding: 8px;
  }
  .nav-dropdown-menu li a {
    white-space: normal;
  }
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 0 40px;
    transition: right 0.5s var(--ease);
    z-index: 550;
    overflow-y: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(233, 168, 154, 0.1);
    width: 100%;
    margin-top: 10px;
    max-height: 0;
    padding: 0 8px;
    overflow: hidden;
    transition:
      max-height 0.4s var(--ease),
      padding 0.4s var(--ease);
  }
  .nav-dropdown.dd-open .nav-dropdown-menu {
    max-height: 200px;
    padding: 8px;
  }
  .nav-dropdown-menu li a {
    white-space: normal;
  }
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .pl-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ============ CATEGORY STRIP (products index) ============ */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.cat-chip {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(11, 28, 44, 0.06);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.cat-chip:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(11, 28, 44, 0.12);
}
.cat-chip .icon {
  font-size: 26px;
  margin-bottom: 10px;
}
.cat-chip h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}
@media (max-width: 900px) {
  .cat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Consistent page gutters across desktop, laptop and mobile */
@media (max-width: 700px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-hero {
    padding: 120px 0 65px;
  }
  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .page-hero p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ===== MOBILE-ONLY hero photo treatment =====
     On phones the photos are much wider than the screen, so the desktop
     "cover" background would zoom in and slice off the left/right edges.
     Here we turn OFF the section's own cropped background and turn ON a
     separate full-image layer (background-size:contain) so the ENTIRE
     photo is always visible on mobile, sitting on the site's navy color. */
  .page-hero {
    background-image: none !important;
    background-color: var(--navy-deep);
  }
  .page-hero-photo {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .page-hero.hero-bg-about .page-hero-photo {
    background-image: url("images/about.jpeg");
  }
  .page-hero.hero-bg-product .page-hero-photo {
    background-image: url("images/product.jpeg");
  }
  .page-hero.hero-bg-knowledge .page-hero-photo {
    background-image: url("images/Knowledge center.jpeg");
  }
  .page-hero.hero-bg-private-label .page-hero-photo {
    background-image: url("images/private label.jpeg");
  }
  .page-hero.hero-bg-contact .page-hero-photo {
    background-image: url("images/contact.jpeg");
  }
  .page-hero.hero-bg-privacy .page-hero-photo {
    background-image: url("images/privacy policy.jpeg");
  }
}

/* ===== MOBILE INNER-PAGE HERO SAFETY =====
   Mobile-only layout correction. Existing content/design remains unchanged. */
@media (max-width: 700px) {
  .page-hero {
    height: auto !important;
    min-height: 0 !important;
    padding: 110px 0 58px !important;
    box-sizing: border-box;
  }
  .page-hero .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-hero-crest {
    width: 60px !important;
    margin: 0 auto 16px !important;
  }
  .page-eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.28em !important;
    line-height: 1.4 !important;
  }
  .page-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.7rem) !important;
    line-height: 1.16 !important;
    margin: 14px auto 16px !important;
    max-width: 100% !important;
    overflow-wrap: break-word;
  }
  .page-hero p {
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 0.94rem !important;
    line-height: 1.65 !important;
  }
  .breadcrumb {
    margin-top: 18px !important;
    line-height: 1.5 !important;
  }
}

/* MOBILE HERO SUBTEXT VISIBILITY FIX — non-home pages */
@media (max-width: 700px) {
  .page-hero p {
    color: #ffffff !important;
    text-shadow: none !important;
  }
}
