:root {
  --black: #050505;
  --black-2: #0b0b0d;
  --black-3: #121214;
  --ink: #171717;
  --white: #ffffff;
  --off-white: #f7f4ed;
  --muted: #aaa7a0;
  --muted-dark: #6f6b63;
  --gold-1: #8b6426;
  --gold-2: #c99d4e;
  --gold-3: #f1d28a;
  --gold-4: #fff0bd;
  --gold-gradient: linear-gradient(135deg, #8f682a 0%, #d2aa5b 45%, #fff0b8 72%, #b17c2d 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(201, 157, 78, .18), rgba(255, 240, 189, .04));
  --line: rgba(220, 183, 105, .22);
  --shadow-gold: 0 20px 80px rgba(172, 116, 30, .18);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, .38);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 84px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 0%, rgba(201, 157, 78, .12), transparent 26rem),
    radial-gradient(circle at 100% 34%, rgba(201, 157, 78, .07), transparent 30rem),
    linear-gradient(#050505, #080808 46%, #050505);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-2); color: var(--black); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 9999; background: var(--gold-3); color: #000; padding: 10px 16px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 16px; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 7vw, 6.7rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.3rem, 2.3vw, 2rem); margin-bottom: 12px; }
p { color: #cfccc5; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.32rem); line-height: 1.75; max-width: 740px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-3);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold-gradient); }
.gold-text { background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section { position: relative; padding: clamp(78px, 10vw, 140px) 0; }
.section--light { background: var(--off-white); color: var(--ink); }
.section--light p { color: #58544d; }
.section--compact { padding-block: 72px; }
.section-header { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 50px; }
.section-header > div:first-child { max-width: 760px; }
.section-header p:last-child { margin-bottom: 0; }
.section-rule { border-top: 1px solid var(--line); }

.announcement { background: var(--gold-gradient); color: #12100b; font-size: .8rem; font-weight: 750; letter-spacing: .03em; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 14px; text-align: center; }
.announcement__dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,.55); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, .76);
  backdrop-filter: blur(18px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled { background: rgba(5, 5, 5, .94); border-color: var(--line); box-shadow: 0 12px 40px rgba(0,0,0,.28); }
.header__inner { min-height: var(--header-h); display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(241,210,138,.5); box-shadow: 0 0 24px rgba(201,157,78,.12); }
.brand__copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand__copy strong { font-family: Georgia, serif; letter-spacing: .14em; font-size: 1rem; }
.brand__copy small { color: var(--gold-3); font-size: .61rem; letter-spacing: .13em; text-transform: uppercase; margin-top: 5px; }
.primary-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.primary-nav a { position: relative; color: #d8d5ce; font-size: .88rem; font-weight: 650; padding: 28px 0; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 1px; background: var(--gold-gradient); transition: right var(--transition); }
.primary-nav a:hover, .primary-nav a.is-active { color: var(--white); }
.primary-nav a:hover::after, .primary-nav a.is-active::after { right: 0; }
.header__actions { display: flex; align-items: center; gap: 10px; margin-left: 10px; }
.icon-button, .cart-button { min-height: 44px; border: 1px solid var(--line); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; transition: border-color var(--transition), background var(--transition), transform var(--transition); }
.icon-button { width: 44px; }
.icon-button:hover, .cart-button:hover { border-color: var(--gold-2); background: rgba(201,157,78,.09); transform: translateY(-2px); }
.icon-button svg, .cart-button svg { width: 18px; height: 18px; fill: var(--gold-3); }
.cart-button { gap: 8px; padding: 0 12px; font-size: .82rem; font-weight: 750; }
.cart-count { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-gradient); color: #111; font-size: .72rem; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; padding: 11px; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; background: var(--white); margin: 5px 0; transition: transform var(--transition), opacity var(--transition); }

.button-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.button:hover { transform: translateY(-3px); }
.button--gold { color: #15100a; background: var(--gold-gradient); box-shadow: 0 12px 34px rgba(201,157,78,.2); }
.button--gold:hover { box-shadow: 0 18px 44px rgba(201,157,78,.32); }
.button--ghost { border-color: var(--line); color: var(--white); background: rgba(255,255,255,.02); }
.button--ghost:hover { border-color: var(--gold-2); background: rgba(201,157,78,.08); }
.button--dark { background: var(--black); color: var(--white); border-color: #2b2b2b; }
.button--small { min-height: 43px; padding: 10px 17px; font-size: .8rem; }
.button svg { width: 17px; height: 17px; fill: currentColor; }

.hero { min-height: calc(100svh - 122px); display: flex; align-items: center; overflow: hidden; position: relative; padding: 76px 0 92px; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.84) 44%, rgba(5,5,5,.24) 100%); z-index: -1; }
.hero__mountains { position: absolute; inset: auto 0 0; height: 56%; opacity: .45; z-index: -2; background-image: url('../img/mountain-lines.svg'); background-size: cover; background-position: center bottom; }
.hero__glow { position: absolute; width: 720px; height: 720px; right: -80px; top: 50%; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(241,210,138,.18) 0, rgba(201,157,78,.1) 30%, transparent 69%); filter: blur(4px); z-index: -1; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); align-items: center; gap: 44px; }
.hero__copy { position: relative; z-index: 2; max-width: 720px; }
.hero__copy h1 { max-width: 760px; }
.hero__copy .lead { margin-bottom: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 34px; }
.trust-chip { display: inline-flex; align-items: center; gap: 9px; color: #d5d1c9; font-size: .8rem; font-weight: 650; }
.trust-chip::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(241,210,138,.5); color: var(--gold-3); font-size: .7rem; }
.hero__visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero__visual::before, .hero__visual::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(241,210,138,.22); }
.hero__visual::before { width: 520px; height: 520px; }
.hero__visual::after { width: 410px; height: 410px; border-style: dashed; animation: rotate 32s linear infinite; }
.hero__visual img { position: relative; z-index: 2; width: min(100%, 580px); filter: drop-shadow(0 42px 48px rgba(0,0,0,.58)) drop-shadow(0 0 34px rgba(201,157,78,.12)); animation: float 6s ease-in-out infinite; }
.hero__seal { position: absolute; z-index: 4; right: 2%; bottom: 10%; width: 128px; height: 128px; border-radius: 50%; display: grid; place-items: center; text-align: center; background: var(--gold-gradient); color: #15100a; border: 7px solid rgba(5,5,5,.85); box-shadow: 0 20px 50px rgba(0,0,0,.4); font-family: Georgia, serif; font-weight: 700; line-height: 1.2; transform: rotate(7deg); }
.hero__seal small { display: block; font-family: system-ui; font-size: .57rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 5px; }
.hero__answer { margin-top: 34px; max-width: 650px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.hero__answer strong { color: var(--gold-3); }
.hero__answer p { margin: 5px 0 0; font-size: .9rem; line-height: 1.6; }

.logo-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.logo-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.logo-strip__item { min-height: 108px; padding: 24px; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.logo-strip__item:last-child { border-right: 0; }
.logo-strip__icon { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-3); }
.logo-strip__icon svg { width: 21px; height: 21px; fill: currentColor; }
.logo-strip__item strong { display: block; font-family: Georgia, serif; font-size: 1.05rem; }
.logo-strip__item span { color: var(--muted); font-size: .77rem; }

.cards { display: grid; gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { position: relative; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); box-shadow: 0 20px 50px rgba(0,0,0,.16); }
.card--light { background: #fff; border-color: #ded8ca; box-shadow: 0 20px 50px rgba(33,25,11,.08); }
.card__body { padding: 28px; }
.card__number { display: block; margin-bottom: 24px; color: var(--gold-2); font-family: Georgia, serif; font-size: 2.6rem; line-height: 1; }
.card__icon { width: 52px; height: 52px; margin-bottom: 22px; border-radius: 14px; display: grid; place-items: center; color: var(--gold-3); background: rgba(201,157,78,.08); border: 1px solid var(--line); }
.card__icon svg { width: 25px; height: 25px; fill: currentColor; }
.card p:last-child { margin-bottom: 0; }

.product-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 600px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #090909; box-shadow: var(--shadow-deep); }
.product-card__media { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 45%, rgba(218,174,87,.18), transparent 46%), #070707; }
.product-card__media::after { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(241,210,138,.12); border-radius: 50%; }
.product-card__media img { width: 82%; max-height: 500px; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 28px 32px rgba(0,0,0,.52)); transition: transform 650ms cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card__media img { transform: scale(1.035) translateY(-6px); }
.product-card__content { padding: clamp(34px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.product-card__content h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.product-card__content .price { margin: 8px 0 22px; }
.price { font-family: Georgia, serif; font-size: 1.75rem; color: var(--gold-3); }
.price small { font-family: system-ui; color: var(--muted); font-size: .76rem; }
.badge { display: inline-flex; align-items: center; width: fit-content; border-radius: 999px; padding: 7px 12px; background: rgba(201,157,78,.11); color: var(--gold-3); border: 1px solid var(--line); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.list-check { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 10px; }
.list-check li { position: relative; padding-left: 27px; color: #d7d3cb; }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-3); font-weight: 900; }
.section--light .list-check li { color: #3f3a33; }

.comparison { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); }
.comparison table { width: 100%; border-collapse: collapse; min-width: 760px; }
.comparison th, .comparison td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.comparison th { color: var(--gold-3); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; background: rgba(201,157,78,.05); }
.comparison tr:last-child td { border-bottom: 0; }
.comparison td { color: #d3cfc7; }

.process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--line); }
.process__item { min-height: 260px; padding: 26px 22px; background: #090909; }
.process__number { color: var(--gold-2); font-family: Georgia, serif; font-size: 2.4rem; }
.process__item h3 { margin-top: 26px; font-size: 1.2rem; }
.process__item p { font-size: .83rem; margin-bottom: 0; }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(44px, 8vw, 110px); }
.split__media { position: relative; min-height: 560px; border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(circle at 50% 45%, rgba(201,157,78,.2), transparent 46%), #090909; border: 1px solid var(--line); display: grid; place-items: center; }
.split__media img { width: 84%; max-height: 540px; object-fit: contain; filter: drop-shadow(0 34px 42px rgba(0,0,0,.55)); }
.split__media--editorial::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, transparent 66%, rgba(3,3,3,.34)); }
.split__media--editorial img { width: 100%; height: 100%; max-height: none; object-fit: cover; filter: none; }
.split__media--logo img { width: 72%; border-radius: 50%; border: 1px solid rgba(241,210,138,.24); }
.quote { padding: 26px 0 26px 28px; border-left: 2px solid var(--gold-2); font-family: Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.7rem); color: #f3ead8; }
.section--light .quote { color: #2c251c; }

.answer-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; }
.answer-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; background: var(--gold-gradient-soft); }
.answer-card h3 { font-size: 1.55rem; }
.answer-card p:last-child { margin-bottom: 0; }
.fact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.fact { padding: 22px; background: #080808; }
.fact small { display: block; color: var(--muted); text-transform: uppercase; font-size: .65rem; letter-spacing: .11em; }
.fact strong { display: block; margin-top: 7px; color: var(--gold-3); }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.02); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 21px 54px 21px 22px; position: relative; font-weight: 750; color: #f2eee6; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--gold-3); transition: transform var(--transition); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__answer { padding: 0 22px 22px; max-width: 900px; }
.faq-item__answer p:last-child { margin-bottom: 0; }

.final-cta { padding: 76px 0; border-block: 1px solid var(--line); background: radial-gradient(circle at 10% 50%, rgba(201,157,78,.16), transparent 34%), #080808; }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.8rem); margin-bottom: 12px; }
.final-cta p:last-child { margin-bottom: 0; }
.site-footer { background: #030303; padding: 78px 0 22px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 48px; }
.footer__brand > p { max-width: 460px; margin: 22px 0; }
.footer__contact { display: grid; gap: 6px; color: #c9c5bd; font-size: .88rem; }
.footer__grid h2 { font-family: system-ui; font-size: .76rem; text-transform: uppercase; letter-spacing: .13em; color: var(--gold-3); margin-bottom: 18px; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer__grid > div:not(.footer__brand) a { color: #bdb9b1; padding: 5px 0; font-size: .88rem; }
.footer__grid a:hover { color: var(--gold-3); }
.footer__bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 22px; font-size: .75rem; }
.footer__bottom p { margin: 0; color: #77746f; }

.page-hero { padding: clamp(74px, 9vw, 124px) 0 68px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 540px; height: 540px; right: -160px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(201,157,78,.16), transparent 68%); z-index: -1; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); max-width: 980px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 26px; color: var(--muted); font-size: .76rem; }
.breadcrumb a:hover { color: var(--gold-3); }
.breadcrumb span[aria-hidden] { color: #555; }

.product-detail { padding: 74px 0 110px; }
.product-detail__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr); gap: clamp(48px, 7vw, 90px); align-items: start; }
.product-gallery { position: sticky; top: 120px; min-height: 610px; border: 1px solid var(--line); border-radius: var(--radius-lg); display: grid; place-items: center; background: radial-gradient(circle at 50% 45%, rgba(201,157,78,.2), transparent 45%), #080808; overflow: hidden; }
.product-gallery::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; border: 1px solid rgba(241,210,138,.14); }
.product-gallery img { width: 88%; max-height: 580px; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 34px 45px rgba(0,0,0,.55)); }
.product-info h1 { font-size: clamp(2.7rem, 5vw, 4.9rem); }
.product-info__meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.product-info__price { font-size: 2rem; color: var(--gold-3); font-family: Georgia, serif; margin: 20px 0 28px; }
.variant-label { display: flex; justify-content: space-between; align-items: center; margin: 26px 0 12px; }
.variant-label strong { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.variant-label span { color: var(--muted); font-size: .75rem; }
.variant-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.variant-option { position: relative; }
.variant-option input { position: absolute; opacity: 0; pointer-events: none; }
.variant-option label { min-height: 74px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; display: flex; flex-direction: column; justify-content: center; text-align: center; cursor: pointer; transition: border-color var(--transition), background var(--transition), transform var(--transition); }
.variant-option label strong { color: #f5f1e8; }
.variant-option label small { color: var(--muted); font-size: .66rem; }
.variant-option input:checked + label { border-color: var(--gold-2); background: rgba(201,157,78,.1); transform: translateY(-2px); }
.product-actions { display: grid; grid-template-columns: 92px 1fr; gap: 11px; margin: 20px 0; }
.quantity { display: grid; grid-template-columns: 30px 1fr 30px; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.quantity button { border: 0; background: transparent; color: var(--white); }
.quantity input { width: 100%; border: 0; background: transparent; color: var(--white); text-align: center; outline: 0; }
.product-fineprint { font-size: .75rem; color: var(--muted); }
.product-quick { margin-top: 34px; display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); border-radius: 15px; overflow: hidden; }
.product-quick__row { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 15px 17px; background: #090909; }
.product-quick__row strong { color: var(--gold-3); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.product-quick__row span { color: #d3cfc7; font-size: .84rem; }
.product-tabs { margin-top: 84px; }
.product-tabs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 30px; }
.filter-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-button { border: 1px solid var(--line); background: transparent; color: #d9d5cd; border-radius: 999px; padding: 9px 15px; font-size: .77rem; font-weight: 700; }
.filter-button.is-active { background: var(--gold-gradient); color: #111; border-color: transparent; }
.shop-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.shop-item { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: #090909; }
.shop-item__media { height: 370px; display: grid; place-items: center; background: radial-gradient(circle, rgba(201,157,78,.16), transparent 46%), #080808; overflow: hidden; }
.shop-item__media img { width: 76%; height: 90%; object-fit: contain; transition: transform 500ms ease; filter: drop-shadow(0 20px 26px rgba(0,0,0,.48)); }
.shop-item:hover .shop-item__media img { transform: scale(1.04); }
.shop-item__body { padding: 26px; }
.shop-item__body h2 { font-size: 2rem; }
.shop-item__variants { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0; }
.shop-item__variants span { border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; color: #c9c5bd; font-size: .72rem; }

.article { width: min(calc(100% - 40px), 880px); margin-inline: auto; padding: 74px 0 120px; }
.article__intro { font-size: 1.22rem; line-height: 1.8; }
.article h2 { margin-top: 62px; font-size: clamp(2rem, 4vw, 3.25rem); }
.article h3 { margin-top: 34px; }
.article p, .article li { color: #cac6be; }
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article-note { margin: 36px 0; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(201,157,78,.07); }
.article-note strong { color: var(--gold-3); }
.reference-list { padding-top: 24px; border-top: 1px solid var(--line); }
.reference-list a { color: var(--gold-3); text-decoration: underline; text-underline-offset: 3px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.02); }
.contact-list { display: grid; gap: 16px; margin-top: 26px; }
.contact-list a, .contact-list span { display: flex; align-items: center; gap: 12px; color: #d9d5cd; }
.contact-list svg { width: 20px; height: 20px; fill: var(--gold-3); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .75rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; color: #d3cfc7; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: #080808; color: var(--white); padding: 14px 15px; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(201,157,78,.1); }

.cart-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 28px; align-items: start; }
.cart-panel { border: 1px solid var(--line); border-radius: var(--radius-md); background: #090909; overflow: hidden; }
.cart-panel__head { padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-panel__head h2 { font-family: system-ui; font-size: 1rem; margin: 0; }
.cart-items { min-height: 170px; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 90px; height: 90px; object-fit: contain; border-radius: 12px; background: #060606; }
.cart-item h3 { font-family: system-ui; font-size: .98rem; margin: 0 0 5px; }
.cart-item p { margin: 0; font-size: .77rem; }
.cart-item__controls { display: flex; align-items: center; gap: 9px; margin-top: 12px; }
.cart-item__controls button { width: 29px; height: 29px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--white); }
.cart-item__remove { color: #cf867a; border: 0; background: transparent; font-size: .72rem; padding: 0; }
.cart-empty { padding: 54px 24px; text-align: center; }
.cart-empty h3 { font-family: system-ui; font-size: 1.1rem; }
.order-summary { position: sticky; top: 116px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(160deg, rgba(201,157,78,.08), rgba(255,255,255,.02)); }
.order-summary h2 { font-family: system-ui; font-size: 1rem; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; color: #c9c5bd; border-bottom: 1px solid rgba(201,157,78,.12); }
.summary-row--total { font-size: 1.15rem; color: var(--white); font-weight: 800; border-bottom: 0; }
.checkout-fields { display: grid; gap: 12px; margin-top: 22px; }
.consent { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: .7rem; }
.consent input { margin-top: 3px; }

.policy { width: min(calc(100% - 40px), 900px); margin-inline: auto; padding: 74px 0 120px; }
.policy h2 { margin-top: 48px; font-size: 2.2rem; }
.policy h3 { margin-top: 30px; }
.policy p, .policy li { color: #c9c5bd; }
.policy a { color: var(--gold-3); }

.toast { position: fixed; right: 20px; bottom: 20px; z-index: 2000; max-width: min(380px, calc(100% - 40px)); padding: 14px 18px; border-radius: 12px; background: #f6e4b6; color: #18120b; font-size: .84rem; font-weight: 750; box-shadow: 0 18px 50px rgba(0,0,0,.4); transform: translateY(140%); opacity: 0; transition: transform 350ms ease, opacity 350ms ease; }
.toast.is-visible { transform: translateY(0); opacity: 1; }

.reveal { opacity: 1; transform: none; transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

@media (max-width: 1080px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: .8rem; }
  .brand__copy { display: none; }
  .process { grid-template-columns: repeat(3, 1fr); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  :root { --header-h: 72px; }
  .announcement__inner span:nth-of-type(2), .announcement__inner span:nth-of-type(3), .announcement__dot { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .header__actions { margin-left: 0; }
  .icon-button { display: none; }
  .primary-nav { position: fixed; inset: calc(38px + var(--header-h)) 0 auto; background: rgba(5,5,5,.98); border-bottom: 1px solid var(--line); padding: 18px 20px 24px; display: grid; gap: 0; transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform 300ms ease, opacity 300ms ease; }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { padding: 14px 2px; border-bottom: 1px solid rgba(201,157,78,.1); }
  .primary-nav a::after { display: none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 60px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 800px; }
  .hero__visual { min-height: 460px; }
  .hero__visual::before { width: 430px; height: 430px; }
  .hero__visual::after { width: 340px; height: 340px; }
  .hero__visual img { width: min(90%, 520px); }
  .logo-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .logo-strip__item:nth-child(2) { border-right: 0; }
  .logo-strip__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-card { grid-template-columns: 1fr; }
  .product-card__media { min-height: 460px; }
  .split, .answer-grid, .contact-grid, .cart-layout { grid-template-columns: 1fr; }
  .split__media { min-height: 480px; }
  .product-detail__grid { grid-template-columns: 1fr; }
  .product-gallery { position: relative; top: auto; min-height: 520px; }
  .product-tabs__grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header__inner { gap: 10px; }
  .brand img { width: 46px; height: 46px; }
  .cart-button span:not(.cart-count) { display: none; }
  .cart-button { padding: 0 10px; }
  h1 { font-size: clamp(2.85rem, 15vw, 4.6rem); }
  .hero__copy .lead { font-size: 1.02rem; }
  .hero__visual { min-height: 360px; }
  .hero__visual::before { width: 330px; height: 330px; }
  .hero__visual::after { width: 265px; height: 265px; }
  .hero__seal { width: 100px; height: 100px; right: 0; font-size: .8rem; }
  .hero__answer { padding: 16px; }
  .logo-strip__item { min-height: 96px; padding: 16px 12px; align-items: flex-start; flex-direction: column; gap: 8px; }
  .logo-strip__icon { width: 34px; height: 34px; flex-basis: 34px; }
  .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; }
  .section-header { align-items: flex-start; flex-direction: column; gap: 14px; }
  .product-card__media { min-height: 370px; }
  .product-card__content { padding: 30px 24px 36px; }
  .process { grid-template-columns: 1fr; }
  .process__item { min-height: auto; }
  .split__media { min-height: 390px; }
  .fact-list { grid-template-columns: 1fr; }
  .product-gallery { min-height: 410px; }
  .variant-grid { grid-template-columns: repeat(2, 1fr); }
  .product-actions { grid-template-columns: 1fr; }
  .quantity { width: 120px; min-height: 48px; }
  .product-quick__row { grid-template-columns: 1fr; gap: 5px; }
  .shop-item__media { height: 310px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item img { width: 70px; height: 70px; }
  .cart-item > strong { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.coupon-box{padding:14px 0 18px;border-bottom:1px solid rgba(213,177,93,.2);margin-bottom:8px}.coupon-entry{display:flex;gap:8px;margin-top:8px}.coupon-entry input{min-width:0;flex:1;border:1px solid rgba(213,177,93,.3);background:#090909;color:#fff;border-radius:8px;padding:10px 11px;text-transform:uppercase}.order-success{margin-top:16px;padding:14px;border:1px solid rgba(90,203,137,.45);background:rgba(38,120,74,.14);border-radius:10px;color:#d5ffe5;line-height:1.55}.visually-hidden-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.razorpay-checkout{padding:16px;border:1px solid rgba(82,108,255,.35);border-radius:12px;background:linear-gradient(145deg,rgba(34,54,160,.2),rgba(0,0,0,.2))}.razorpay-checkout>p:first-child{margin:0 0 14px;line-height:1.5}.razorpay-checkout>p:first-child strong{color:#fff}.razorpay-checkout>p:first-child span{color:var(--muted);font-size:.82rem}.button--razorpay{width:100%;background:linear-gradient(135deg,#5a73ff,#2941b8);color:#fff;box-shadow:0 10px 30px rgba(41,65,184,.28)}
.stars{color:#b98524;letter-spacing:.08em;font-size:1.05rem}.promo-popup{position:fixed;right:22px;bottom:22px;z-index:80;width:min(390px,calc(100vw - 32px));padding:24px;background:linear-gradient(150deg,#17130d,#050505 65%);border:1px solid rgba(221,180,86,.48);border-radius:18px;box-shadow:0 26px 90px rgba(0,0,0,.64);color:#fff}.promo-popup h2{font-size:clamp(1.7rem,4vw,2.5rem);margin:.2em 0}.promo-popup p{color:#d2c9b6}.promo-popup__close{position:absolute;top:8px;right:10px;border:0;background:transparent;color:#fff;font-size:1.8rem;cursor:pointer}@media(max-width:600px){.promo-popup{right:16px;bottom:16px}}

/* 2026 premium homepage and product gallery refresh */
.hero {
  isolation: isolate;
  min-height: min(820px, calc(100svh - 110px));
  background-image: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.93) 36%, rgba(5,5,5,.34) 66%, rgba(5,5,5,.08) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(222,180,83,.18);
}
.hero::before { background: linear-gradient(180deg, rgba(5,5,5,.12), rgba(5,5,5,.02) 58%, rgba(5,5,5,.82)); z-index: 0; }
.hero__mountains { opacity: .16; z-index: 0; }
.hero__glow { display: none; }
.hero__grid { position: relative; z-index: 1; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); }
.hero__copy { padding: 24px 0; }
.hero__copy h1 { font-size: clamp(4rem, 6.3vw, 6.2rem); line-height: .92; letter-spacing: -.05em; text-wrap: balance; }
.hero__copy .lead { max-width: 650px; color: #d9d5cd; }
.hero__answer { backdrop-filter: blur(14px); background: rgba(8,8,8,.48); border-color: rgba(224,186,99,.22); }
.hero__visual { align-items: end; justify-items: end; min-height: 590px; }
.hero__visual::before, .hero__visual::after { display: none; }
.hero__edition { display: flex; align-items: center; gap: 15px; width: min(330px, 100%); padding: 15px 18px; margin: 0 8px 26px 0; border: 1px solid rgba(234,200,123,.34); border-radius: 14px; background: rgba(5,5,5,.68); box-shadow: 0 20px 60px rgba(0,0,0,.38); backdrop-filter: blur(16px); }
.hero__edition > span { color: var(--gold-3); font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.hero__edition strong, .hero__edition small { display: block; }
.hero__edition strong { font-family: Georgia, serif; font-size: 1.02rem; }
.hero__edition small { margin-top: 3px; color: #aaa49a; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.formula-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.3vw, 34px); }
.formula-card { display: flex; min-height: 0; flex-direction: column; border-radius: 28px; background: linear-gradient(155deg, #111 0%, #070707 72%); }
.formula-card__number { position: absolute; z-index: 4; top: 22px; left: 22px; padding: 8px 12px; border: 1px solid rgba(236,199,113,.28); border-radius: 999px; color: #e8d3a3; background: rgba(6,6,6,.7); backdrop-filter: blur(12px); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.formula-card .product-card__media { aspect-ratio: 1.18 / 1; min-height: 0; background: radial-gradient(circle at 50% 60%, rgba(220,168,66,.2), transparent 52%), #060606; }
.formula-card .product-card__media::after { inset: 9%; border-radius: 22px; }
.formula-card .product-card__media img { width: 100%; height: 100%; max-height: none; object-fit: cover; }
.formula-card .product-card__content { flex: 1; padding: clamp(28px, 3.2vw, 48px); justify-content: flex-start; }
.formula-card .product-card__content h2 { margin-top: 15px; font-size: clamp(2rem, 3vw, 3.15rem); line-height: 1.02; }
.formula-card__fit { margin: 2px 0 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: #c7c1b6; }
.formula-card__fit strong { color: var(--gold-3); }
.formula-card .button-row { margin-top: auto; }
.formula-card--gold { border-color: rgba(229,181,70,.32); }

.product-gallery-wrap { position: sticky; top: 120px; min-width: 0; }
.product-gallery { position: relative; top: auto; min-height: 590px; }
.product-gallery__slide { width: 100%; height: 100%; min-height: 590px; margin: 0; display: grid; place-items: center; }
.product-gallery__slide[hidden] { display: none; }
.product-gallery__slide img { width: 100%; height: 100%; max-height: 590px; object-fit: cover; filter: none; }
.gallery-arrow { position: absolute; z-index: 5; top: 50%; width: 46px; height: 46px; display: grid; place-items: center; transform: translateY(-50%); border: 1px solid rgba(235,198,111,.34); border-radius: 50%; color: #fff; background: rgba(5,5,5,.68); backdrop-filter: blur(10px); cursor: pointer; transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.gallery-arrow:hover { border-color: var(--gold-2); background: rgba(194,145,54,.36); transform: translateY(-50%) scale(1.06); }
.gallery-arrow--prev { left: 18px; }
.gallery-arrow--next { right: 18px; }
.gallery-count { position: absolute; z-index: 5; right: 18px; bottom: 16px; padding: 7px 11px; border: 1px solid rgba(235,198,111,.26); border-radius: 999px; color: #c8c1b4; background: rgba(5,5,5,.7); backdrop-filter: blur(10px); font-size: .72rem; }
.gallery-count b { color: var(--gold-3); }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.product-gallery__thumb { aspect-ratio: 1; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #080808; cursor: pointer; opacity: .64; transition: opacity var(--transition), border-color var(--transition), transform var(--transition); }
.product-gallery__thumb:hover, .product-gallery__thumb.is-active { opacity: 1; border-color: var(--gold-2); transform: translateY(-2px); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 920px) {
  .hero { min-height: 860px; background-position: 63% center; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 700px; padding-top: 10px; }
  .hero__visual { min-height: 180px; }
  .formula-grid { grid-template-columns: 1fr; }
  .formula-card .product-card__media { aspect-ratio: 1.35 / 1; }
  .product-gallery-wrap { position: static; }
}
@media (max-width: 680px) {
  .hero { min-height: 820px; padding: 50px 0 42px; background-position: 68% center; background-image: linear-gradient(180deg, rgba(5,5,5,.93) 0%, rgba(5,5,5,.72) 55%, rgba(5,5,5,.28) 76%, rgba(5,5,5,.88) 100%), var(--hero-image); }
  .hero__copy h1 { font-size: clamp(3.55rem, 17vw, 5.2rem); }
  .hero__trust { gap: 10px 14px; }
  .hero__answer { margin-top: 24px; }
  .hero__visual { min-height: 120px; }
  .hero__edition { margin: 0 0 0 auto; }
  .formula-card .product-card__media { aspect-ratio: 1 / 1; min-height: 0; }
  .product-gallery, .product-gallery__slide { min-height: 390px; }
  .product-gallery__slide img { max-height: 390px; }
  .gallery-arrow { width: 40px; height: 40px; }
  .gallery-arrow--prev { left: 10px; }
  .gallery-arrow--next { right: 10px; }
  .product-gallery__thumbs { gap: 6px; }
  .product-gallery__thumb { border-radius: 8px; }
}
