/* =========================================================
   Glow Parfume — Parfumerie de Mer
   Design tokens
   ========================================================= */
:root {
  --navy: #0b2a4a;
  --navy-deep: #071b32;
  --navy-soft: #123a63;
  --gold: #b9924f;
  --gold-deep: #8a6a2e; /* accessible text variant of --gold on light backgrounds */
  --gold-soft: #e4cb99;
  --cream: #f7f2e9;
  --cream-dark: #eee6d6;
  --white: #f7f2e8;
  --ink: #12203a;
  --ink-soft: #4c5b72;
  --line: rgba(11, 42, 74, 0.12);

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  --container: 1220px;
  --radius: 2px;


  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --anim-dur: 0.6s; /* Увеличили с 0.3s до 0.6s для большинства элементов */
  --anim-dur-fast: 0.35s; /* Для мелких элементов, где нужна скорость */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 300;
  margin: 0;
  color: var(--navy);
}
p {
  margin: 0;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}


:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

/* =========================================================
   Type helpers
   ========================================================= */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
  display: inline-block;
}
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.lede {
  color: var(--ink-soft);
  font-size: 16px;
  margin-top: 18px;
  max-width: 56ch;
}
.section-head.center .lede {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--anim-dur-fast) var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  transition:
    background 0.4s var(--ease),
    padding 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.is-solid {
  background: rgba(247, 242, 233, 0.94);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--line);
}
.logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--navy);
}
body.on-dark .site-header:not(.is-solid) .logo {
  color: var(--white);
}
.logo span {
  color: var(--gold);
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
}
body.on-dark .site-header:not(.is-solid) .main-nav a {
  color: var(--white);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--anim-dur-fast) var(--ease);
} 
.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}
.main-nav a.is-active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  border: none;
  background: none;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--navy);
  transition: all var(--anim-dur-fast) var(--ease);
}
body.on-dark .site-header:not(.is-solid) .nav-toggle span {
  background: var(--white);
}
.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 10px;
}
.nav-toggle span:nth-child(3) {
  top: 20px;
}
.nav-toggle.is-open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    var(--navy-deep) 65%,
    #081525 100%
  );

  padding-top: 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(20, 24, 26, 0.6) 0%,
    rgba(20, 24, 26, 0.35) 45%,
    rgba(20, 24, 26, 0.4) 100%
  );
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 1;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  /* padding: 100px 0 0 32px; */
}
.hero-eyebrow {
  color: var(--gold-soft);
}
.hero-eyebrow::before {
  background: var(--gold-soft);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  margin: 22px 0 26px;
  max-width: 16ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-sub {
  max-width: 46ch;
  font-size: 1rem;
  color: rgba(247, 242, 233, 0.82);
  margin-bottom: 40px;
}
.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 28px;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: rgba(247, 242, 233, 0.7);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    place-items: center;
  }
  .hero-eyebrow {
    font-size: clamp(0.72rem, 2vw, 0.8rem);
    letter-spacing: 0.22em;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 7.2vw, 3.1rem);
    line-height: 1.06;
    margin: 16px 0 20px;
    max-width: 100%;
  }
  .hero-sub {
    font-size: clamp(0.95rem, 2.7vw, 1.03rem);
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 100px 0;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }
  .hero h1 {
    font-size: clamp(2.95rem, 8.4vw, 2.5rem);
    margin: 14px 0 16px;
  }
  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  .hero-actions .btn {
    padding: 13px 18px;
  }
  .about-figure {
  position: relative;
  aspect-ratio: 4/5 !important;
  border-radius: var(--radius);
  overflow: hidden;
}
}

/* Wave divider */
.wave-divider {
  position: relative;
  display: block;
  width: 100%;
  height: 64px;
  margin-top: -60px;
}
.wave-divider path {
  fill: var(--cream);
}
.wave-divider.flip path {
  fill: var(--navy);
}

/* =========================================================
   About / Brand section
   ========================================================= */
.about {
  padding: 120px 0 100px;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-figure {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-figure .frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(247, 242, 233, 0.6);
  pointer-events: none;
}
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 42px;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* =========================================================
   Featured products
   ========================================================= */
.featured {
  padding: 100px 0 120px;
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.featured .section-head p {
  color: rgba(247, 242, 233, 0.75);
}
.featured .eyebrow {
  color: var(--gold-soft);
}
.featured .eyebrow::before {
  background: var(--gold-soft);
}
.featured .section-title {
  color: var(--white);
}
.featured .section-title em {
  color: var(--gold-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-grid.catalog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--anim-dur) var(--ease),
    box-shadow var(--anim-dur) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(3, 14, 28, 0.28);
}
.card-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(150deg, var(--cream-dark), var(--cream));
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card:hover .card-media img {
  transform: scale(1.06);
}
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--radius);
}
.card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 1px solid var(--line);
  border-top: none;
}
.card-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.card p.desc {
  color: var(--ink-soft);
  font-size: 14.5px;
  flex: 1;
  margin-bottom: 20px;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
}
.price::after {
  content: " ₽";
  font-size: 16px;
}
.card-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease);
}
.card-link:hover svg {
  transform: translateX(4px);
}
.card-link:hover {
  color: var(--gold-deep);
}

.featured-foot {
  margin-top: 56px;
  text-align: center;
}

/* Illustrated bottle art */
.bottle-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.bottle-art svg {
  width: 100%;
  height: 100%;
  max-height: 320px;
}

/* =========================================================
   Advantages
   ========================================================= */
.advantages {
  padding: 110px 0;
  background: var(--cream);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.advantage {
  background: var(--cream);
  padding: 40px 34px;
  transition: background 0.35s var(--ease);
}
.advantage:hover {
  background: var(--white);
}
.advantage .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 22px;
  display: block;
}
.advantage svg {
  width: 30px;
  height: 30px;
  color: var(--navy);
  margin-bottom: 20px;
}
.advantage h4 {
  font-size: 19px;
  margin-bottom: 10px;
}
.advantage p {
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247, 242, 233, 0.72);
  padding: 90px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(247, 242, 233, 0.12);
}
.footer-brand .logo {
  color: var(--white);
}
.footer-brand p {
  margin-top: 20px;
  max-width: 32ch;
  font-size: 14.5px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 242, 233, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}
.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul li {
  margin-bottom: 13px;
}
.footer-col ul a {
  font-size: 14.5px;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--white);
}

.footer-newsletter form {
  display: flex;
  border-bottom: 1px solid rgba(247, 242, 233, 0.3);
  padding-bottom: 10px;
  margin-top: 22px;
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 6px 0;
}
.footer-newsletter input::placeholder {
  color: rgba(247, 242, 233, 0.5);
}
.footer-newsletter input:focus {
  outline: none;
}
.footer-newsletter button {
  background: none;
  border: none;
  color: var(--gold-soft);
}
.footer-newsletter button svg {
  width: 18px;
  height: 18px;
}
.footer-note {
  font-size: 12.5px;
  margin-top: 12px;
  color: rgba(247, 242, 233, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 12.5px;
  color: rgba(247, 242, 233, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  margin-left: 22px;
}
.footer-bottom a:hover {
  color: var(--gold-soft);
}

/* =========================================================
   Page header (catalog / product)
   ========================================================= */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 170px 0 70px;
  position: relative;
}
.page-hero .eyebrow {
  color: var(--gold-soft);
}
.page-hero .eyebrow::before {
  background: var(--gold-soft);
}
.page-hero h1 {
  color: var(--white);
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 60px);
}
.page-hero p {
  color: rgba(247, 242, 233, 0.75);
  margin-top: 16px;
  max-width: 56ch;
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.55);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a:hover {
  color: var(--gold-soft);
}
.breadcrumb .sep {
  opacity: 0.5;
}
.breadcrumb .current {
  color: var(--gold-soft);
}

/* =========================================================
   Catalog controls
   ========================================================= */
.catalog-section {
  padding: 70px 0 130px;
  background: var(--cream);
}
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-tabs button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 20px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.filter-tabs button:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-tabs button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.sort-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sort-control label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.sort-control select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 6px 4px;
}
.sort-control select:focus {
  outline: none;
}

.results-count {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.empty-state {
  text-align: center;
  padding: 90px 20px;
  color: var(--ink-soft);
}
.empty-state h3 {
  margin-bottom: 12px;
}

/* fade in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   Product detail
   ========================================================= */
.product-detail {
  padding: 90px 0 60px;
  background: var(--cream);
}
.product-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: flex-start;
}
.product-media {
  position: sticky;
  top: 120px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, var(--cream-dark), var(--white));
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-media .bottle-art {
  padding: 46px;
}

.product-info .card-kicker {
  font-size: 12px;
}
.product-info h1 {
  font-size: clamp(34px, 4vw, 48px);
  margin: 10px 0 18px;
}
.product-info .price {
  font-size: 28px;
}
.product-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 26px;
}
.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.product-desc {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 58ch;
}

.divider-line {
  height: 1px;
  background: var(--line);
  margin: 34px 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr {
  border-bottom: 1px solid var(--line);
}
.spec-table tr:last-child {
  border-bottom: none;
}
.spec-table td {
  padding: 14px 0;
  font-size: 14.5px;
}
.spec-table td:first-child {
  color: var(--ink-soft);
  width: 42%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.spec-table td:last-child {
  color: var(--navy);
  font-weight: 500;
}

.block-title {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  font-weight: 600;
}

/* Fragrance pyramid — genuinely sequential (top -> heart -> base) */
.pyramid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
}
.pyramid-tier {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.pyramid-tier:first-child {
  border-top: none;
}
.pyramid-tier .tier-label {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy);
  font-size: 19px;
  position: relative;
  padding-left: 22px;
}
.pyramid-tier .tier-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.pyramid-tier .tier-sub {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
  padding-left: 22px;
}
.tier-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}
.tier-notes span {
  font-size: 13px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ingredient-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
.ingredient-row:first-child {
  border-top: none;
}
.ingredient-row .amt {
  color: var(--gold);
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 16px;
}

.brand-strip {
  margin-top: 90px;
  padding: 56px 0;
  background: var(--navy);
  color: var(--white);
}
.brand-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brand-strip h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 14px;
}
.brand-strip p {
  color: rgba(247, 242, 233, 0.75);
  font-size: 15px;
}

.related {
  padding: 100px 0 130px;
  background: var(--cream);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-figure {
    aspect-ratio: 16/9;
  }
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-media {
    position: static;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .brand-strip-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .product-grid,
  .product-grid.catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(84vw, 340px);
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 99;
  }
  .main-nav.is-open {
    transform: translateX(0);
  }
  .main-nav a {
    color: var(--white);
    font-size: 16px;
  }
  .nav-toggle {
    display: block;
    z-index: 101;
  }
  body.on-dark .site-header:not(.is-solid) .nav-toggle span,
  .nav-toggle span {
    background: var(--navy);
  }
  body.on-dark .site-header.is-solid .nav-toggle span {
    background: var(--navy);
    height: 1.5px;
  }
/* More specific selector to ensure this wins over other rules */
.site-header .nav-toggle.is-open span {
  background: var(--white) !important;
}
  .site-header:not(.is-solid) .nav-toggle span {
    background: var(--white);
  }

  .hero {
    min-height: 92vh;
  }
  /* .hero-inner{ padding-top: 140px; padding-bottom: 80px; } */
  .hero-scroll {
    display: none;
  }
  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .about {
    padding: 80px 0 70px;
  }
  .featured {
    padding: 70px 0 90px;
  }
  .advantages {
    padding: 70px 0;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom a {
    margin-left: 0;
    margin-right: 18px;
  }

  .page-hero {
    padding: 140px 0 50px;
  }
  .catalog-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .pyramid-tier {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  .stat b {
    display: flex;
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--navy);
    line-height: 1;
    flex-direction: column;
    align-items: center;
  }
}

/* =========================================================
   Inline styles moved to CSS
   (kept grouped here to preserve original visual intent)
   ========================================================= */
.hero .btn-outline.hero-cta {
  border-color: rgba(247, 242, 233, 0.5);
  color: #fff;
}
.section-head .section-title {
  margin-top: 18px;
}
.page-hero.tight {
  padding-bottom: 56px;
}
.page-hero .eyebrow {
  margin-top: 22px;
}
.page-hero h1 {
  margin-top: 14px;
}
.footer-newsletter p {
  font-size: 14px;
}
.brand-strip .eyebrow {
  color: var(--gold-soft);
}
.brand-strip h3 {
  margin-top: 16px;
}
.mt-28 {
  margin-top: 28px;
}
