/* ============================================================
   GUCCHI — Sections & components
   ============================================================ */

/* ---------- HERO / WEBGL STAGE ---------- */
.stage {
  position: relative;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #0B1420 0%, #1A2430 42%, #2C2320 74%, var(--maroon-950) 100%);
}
#gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
/* fallback still for no-WebGL / no-JS — the warm blurred Himalayan dawn, so
   even without WebGL the hero shows a premium mountain backdrop. */
.stage__fallback {
  position: absolute; inset: 0; z-index: 0;
  background: #2A1B22 center/cover no-repeat;
  background-image: url("../assets/images/himalaya-blur.jpg");
}
.stage__veil {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 78% at 50% 8%, transparent 30%, rgba(11,20,32,.35) 78%),
    linear-gradient(180deg, rgba(11,20,32,.55) 0%, transparent 26%, transparent 62%, rgba(26,7,8,.86) 100%);
}

.hero {
  position: relative;
  z-index: 4;
  height: 100%;
  display: grid;
  align-content: center;
  text-align: center;
  padding-inline: var(--gut);
  transition: opacity .35s ease, transform .35s ease;
}
.hero__eyebrow {
  justify-content: center;
  margin-bottom: 1.9rem;
}
.hero__eyebrow::before { display: none; }
.hero__eyebrow span {
  padding: .5rem 1.15rem;
  border: 1px solid rgba(242,181,96,.34);
  border-radius: 999px;
  background: rgba(26,7,8,.32);
  backdrop-filter: blur(8px);
  font-size: var(--t-xs);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.hero__title {
  font-family: var(--display);
  font-size: var(--t-hero);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--cream-100);
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 40px rgba(0,0,0,.45);
}
.hero__title em { font-style: italic; color: var(--gold-400); }
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(251,246,234,.78);
  max-width: 52ch;
  margin: 0 auto 2.6rem;
  line-height: 1.7;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Line-mask reveal for headline words */
.mask { display: block; overflow: hidden; }
.mask > i { display: block; font-style: inherit; }

/* Scroll-scene captions pinned over the canvas */
.scenecap {
  position: fixed;
  z-index: 5;
  left: 50%;
  bottom: 13vh;
  transform: translateX(-50%);
  width: min(640px, 88vw);
  text-align: center;
  opacity: 0;
  pointer-events: none;
}
.scenecap h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-weight: 300;
  color: var(--cream-100);
  margin-bottom: .6rem;
  text-shadow: 0 3px 30px rgba(0,0,0,.6);
}
.scenecap p { font-size: var(--t-sm); color: rgba(251,246,234,.7); letter-spacing: .04em; }

/* Sticky WebGL journey wrapper */
.journey { position: relative; }
.journey__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.journey__spacer { height: 340vh; }

/* ---------- SECTION HEADS ---------- */
.head { max-width: 60ch; margin-bottom: clamp(2.6rem, 5vw, 4.4rem); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
.head--center .eyebrow::before { display: none; }
.head h2 {
  font-family: var(--display);
  font-size: var(--t-h1);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream-100);
  margin-bottom: 1.25rem;
}
.head h2 em { font-style: italic; color: var(--gold-400); }
.head p { font-size: var(--t-body); color: rgba(251,246,234,.68); line-height: 1.75; }

/* ---------- PILLARS (Why Gucchi) ---------- */
.pillars { background: var(--maroon-900); position: relative; }
.pillars__grid { grid-template-columns: repeat(4, 1fr); }
.pillar {
  padding: 2.2rem 1.6rem 2.4rem;
  border-top: 1px solid rgba(242,181,96,.22);
  position: relative;
  transition: background .5s var(--ease);
}
.pillar::before {
  content: "";
  position: absolute; top: -1px; left: 0;
  width: 0%; height: 1px;
  background: var(--gold-400);
  transition: width .8s var(--ease-out);
}
.pillar:hover::before { width: 100%; }
.pillar:hover { background: rgba(242,181,96,.045); }
.pillar__ico {
  width: 40px; height: 40px;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  transition: transform .5s var(--ease);
}
.pillar:hover .pillar__ico { transform: translateY(-4px) scale(1.06); }
.pillar h3 {
  font-family: var(--display);
  font-size: var(--t-h3);
  font-weight: 500;
  color: var(--cream-100);
  margin-bottom: .7rem;
}
.pillar p { font-size: var(--t-sm); color: rgba(251,246,234,.62); line-height: 1.7; }

/* ---------- ORIGIN / MAP ---------- */
.origin {
  background: var(--pine-900);
  position: relative;
  overflow: hidden;
}
.origin::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 78% 40%, rgba(242,181,96,.06), transparent 70%);
  pointer-events: none;
}
.origin__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.map { position: relative; }
.map svg { width: 100%; height: auto; overflow: visible; }
.map__land {
  fill: rgba(47,74,61,.5);
  stroke: rgba(242,181,96,.42);
  stroke-width: 1.1;
  stroke-linejoin: round;
}
.map__ridge { fill: none; stroke: rgba(198,207,210,.22); stroke-width: .8; }

/* Pins are HTML buttons positioned over the map by % (left/top inline). */
.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  padding: 0; margin: 0;
  background: none; border: 0;
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 2;
}
.pin__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(242,181,96,.18);
  transition: transform .3s var(--ease), background .3s;
}
.pin__ring {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  opacity: 0;
  pointer-events: none;
}
.pin.is-live .pin__ring { animation: ping 2.2s var(--ease) infinite; }
@keyframes ping {
  0%   { opacity: .8; transform: scale(.6); }
  100% { opacity: 0;  transform: scale(2.8); }
}
.pin:hover .pin__dot, .pin.is-on .pin__dot {
  transform: scale(1.45);
  background: var(--cream-100);
}
.pin__lbl {
  position: absolute;
  top: 140%; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251,246,234,.72);
  transition: color .3s;
}
.pin:hover .pin__lbl, .pin.is-on .pin__lbl { color: var(--gold-300); }

.region {
  border-left: 2px solid var(--gold-400);
  padding-left: 1.6rem;
  min-height: 250px;
}
.region__name {
  font-family: var(--display);
  font-size: var(--t-h2);
  font-weight: 300;
  color: var(--cream-100);
  margin-bottom: .3rem;
}
.region__alt {
  font-family: var(--mono);
  font-size: var(--t-xs);
  letter-spacing: .16em;
  color: var(--gold-400);
  margin-bottom: 1.3rem;
  text-transform: uppercase;
}
.region__body { font-size: var(--t-sm); color: rgba(251,246,234,.68); line-height: 1.8; margin-bottom: 1.6rem; }
.region__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.stat { border-top: var(--rule); padding-top: .8rem; }
.stat dt {
  font-size: var(--t-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(251,246,234,.48);
  margin-bottom: .3rem;
}
.stat dd { font-family: var(--display); font-size: 1.32rem; color: var(--gold-300); }

.tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tab {
  padding: .5rem 1.05rem;
  border: 1px solid rgba(242,181,96,.28);
  background: transparent;
  border-radius: 999px;
  font-size: var(--t-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(251,246,234,.7);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.tab:hover { border-color: var(--gold-400); color: var(--cream-100); }
.tab[aria-selected="true"] { background: var(--gold-400); border-color: var(--gold-400); color: var(--maroon-900); font-weight: 600; }

/* ---------- PRODUCTS ---------- */
.prods { background: var(--maroon-950); }
.prods__grid { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: linear-gradient(165deg, var(--maroon-800), var(--maroon-900));
  border: 1px solid rgba(242,181,96,.16);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .6s var(--ease), border-color .6s, box-shadow .6s;
  will-change: transform;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(242,181,96,.5);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(242,181,96,.08);
}
.card__media {
  position: relative;
  aspect-ratio: 4/3.4;
  overflow: hidden;
  background: radial-gradient(70% 70% at 50% 42%, var(--maroon-700), var(--maroon-950));
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .7s;
  filter: saturate(1.05);
}
.card:hover .card__media img { transform: scale(1.07); }
.card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  padding: .35rem .8rem;
  background: rgba(26,7,8,.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(242,181,96,.4);
  border-radius: 999px;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
}
.card__body { padding: 1.7rem 1.6rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.card__sci {
  font-family: var(--display);
  font-style: italic;
  font-size: var(--t-sm);
  color: var(--gold-500);
  margin-bottom: .35rem;
}
.card h3 {
  font-family: var(--display);
  font-size: 1.72rem;
  font-weight: 400;
  color: var(--cream-100);
  margin-bottom: .8rem;
  line-height: 1.2;
}
.card p { font-size: var(--t-sm); color: rgba(251,246,234,.6); line-height: 1.72; margin-bottom: 1.5rem; }
.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: var(--rule);
}
.card__price { font-family: var(--display); font-size: 1.42rem; color: var(--gold-300); }
.card__price small { font-family: var(--body); font-size: .68rem; color: rgba(251,246,234,.45); letter-spacing: .1em; display: block; }
.card__link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--t-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
}
.card__link .arw { transition: transform .4s var(--ease); }
.card:hover .card__link .arw { transform: translateX(4px); }

/* ---------- PRODUCT DETAIL (products.html) ---------- */
.pdp { border-bottom: var(--rule); }
.pdp:nth-child(even) { background: var(--maroon-900); }
.pdp__grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.pdp:nth-child(even) .pdp__media { order: 2; }
.pdp__media {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  background: radial-gradient(60% 60% at 50% 45%, var(--maroon-700), var(--maroon-950) 78%);
  display: grid;
  place-items: center;
}
.pdp__media canvas { width: 100% !important; height: 100% !important; }
.pdp__media img { width: 82%; filter: drop-shadow(0 40px 60px rgba(0,0,0,.6)); }
.pdp__hint {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(251,246,234,.45);
  display: flex; align-items: center; gap: .5rem;
  pointer-events: none;
}

.spec { margin-top: 2rem; border-top: var(--rule); }
.spec__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: .95rem 0;
  border-bottom: var(--rule);
  font-size: var(--t-sm);
}
.spec__row dt { color: rgba(251,246,234,.48); letter-spacing: .1em; text-transform: uppercase; font-size: var(--t-xs); padding-top: 2px; }
.spec__row dd { color: rgba(251,246,234,.82); }

.nutri { margin-top: 2rem; }
.nutri table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.nutri caption {
  text-align: left;
  font-size: var(--t-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding-bottom: 1rem;
  font-weight: 600;
}
.nutri th, .nutri td { padding: .72rem .6rem; text-align: left; border-bottom: var(--rule); }
.nutri th { color: rgba(251,246,234,.5); font-weight: 500; font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; }
.nutri td { color: rgba(251,246,234,.8); }
.nutri td:last-child { text-align: right; font-family: var(--mono); color: var(--gold-300); }

.uses { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.use {
  padding: 1.2rem 1rem;
  border: 1px solid rgba(242,181,96,.18);
  border-radius: 3px;
  text-align: center;
  transition: border-color .4s, background .4s;
}
.use:hover { border-color: rgba(242,181,96,.45); background: rgba(242,181,96,.04); }
.use svg { width: 26px; height: 26px; color: var(--gold-400); margin: 0 auto .7rem; }
.use span { font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; color: rgba(251,246,234,.72); }

/* ---------- TESTIMONIALS ---------- */
.voices { background: var(--pine-900); overflow: hidden; }
.rail {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}
.quote {
  flex: 0 0 min(430px, 84vw);
  padding: 2.2rem 2rem;
  background: rgba(251,246,234,.035);
  border: 1px solid rgba(242,181,96,.16);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}
.quote__stars { color: var(--gold-400); font-size: .82rem; letter-spacing: .22em; margin-bottom: 1.2rem; }
.quote p {
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 300;
  line-height: 1.62;
  color: rgba(251,246,234,.88);
  margin-bottom: 1.6rem;
  flex: 1;
}
.quote footer { border-top: var(--rule); padding-top: 1.1rem; }
.quote cite {
  display: block;
  font-style: normal;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--cream-100);
  margin-bottom: .18rem;
}
.quote small { font-size: var(--t-xs); color: var(--gold-500); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- TRUST ---------- */
.trust { background: var(--maroon-900); }
.trust__grid { grid-template-columns: repeat(4,1fr); text-align: center; }
.trust__item { padding: 1.6rem 1rem; }
.trust__n {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: .55rem;
  font-weight: 300;
}
.trust__l { font-size: var(--t-xs); letter-spacing: .18em; text-transform: uppercase; color: rgba(251,246,234,.55); }

/* ---------- CTA BAND ---------- */
.band {
  position: relative;
  background: linear-gradient(120deg, var(--maroon-800), var(--maroon-950));
  text-align: center;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 100%, rgba(242,181,96,.14), transparent 70%);
}
.band .wrap { position: relative; z-index: 1; }
.band h2 {
  font-family: var(--display);
  font-size: var(--t-h1);
  font-weight: 300;
  color: var(--cream-100);
  margin-bottom: 1.1rem;
}
.band h2 em { font-style: italic; color: var(--gold-400); }
.band p { max-width: 52ch; margin: 0 auto 2.4rem; color: rgba(251,246,234,.7); }

/* ---------- PAGE HEADER (inner pages) ---------- */
.phead {
  position: relative;
  padding-block: clamp(9rem, 18vh, 13rem) clamp(3.5rem, 7vh, 6rem);
  background: linear-gradient(180deg, var(--maroon-950), var(--maroon-900));
  overflow: hidden;
  text-align: center;
}
.phead::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,181,96,.45), transparent);
}
.phead__bg {
  position: absolute; inset: 0;
  opacity: .10;
  background: center/cover no-repeat;
  filter: grayscale(.3);
  transform: scale(1.1);
}
.phead .wrap { position: relative; z-index: 1; }
.phead h1 {
  font-family: var(--display);
  font-size: var(--t-h1);
  font-weight: 300;
  color: var(--cream-100);
  margin-bottom: 1rem;
  line-height: 1.06;
}
.phead h1 em { font-style: italic; color: var(--gold-400); }
.phead p { max-width: 58ch; margin: 0 auto; color: rgba(251,246,234,.68); }
.crumb {
  display: flex; justify-content: center; gap: .6rem;
  font-size: var(--t-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251,246,234,.42);
  margin-bottom: 1.6rem;
}
.crumb a:hover { color: var(--gold-400); }

/* ---------- ABOUT: chapters ---------- */
.chap { border-bottom: var(--rule); }
.chap__grid {
  grid-template-columns: 200px 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.chap__num {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 300;
  color: rgba(242,181,96,.28);
  line-height: 1;
  position: sticky;
  top: 120px;
}
.chap__num small {
  display: block;
  font-family: var(--body);
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: .6rem;
}
.chap h2 {
  font-family: var(--display);
  font-size: var(--t-h2);
  font-weight: 300;
  color: var(--cream-100);
  margin-bottom: 1.3rem;
  line-height: 1.15;
}
.chap h2 em { font-style: italic; color: var(--gold-400); }
.chap p { color: rgba(251,246,234,.7); margin-bottom: 1.2rem; max-width: 68ch; line-height: 1.82; }
.chap p:last-child { margin-bottom: 0; }
.chap__fig { margin-top: 2rem; border-radius: 3px; overflow: hidden; border: 1px solid rgba(242,181,96,.18); }
.chap__fig img { width: 100%; }
.chap__fig figcaption {
  padding: .9rem 1.1rem;
  font-size: var(--t-xs);
  letter-spacing: .08em;
  color: rgba(251,246,234,.5);
  background: rgba(26,7,8,.6);
  border-top: var(--rule);
}

.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.value { padding: 1.5rem; border: 1px solid rgba(242,181,96,.16); border-radius: 3px; background: rgba(242,181,96,.025); }
.value h4 { font-family: var(--display); font-size: 1.18rem; color: var(--gold-300); margin-bottom: .5rem; font-weight: 500; }
.value p { font-size: var(--t-sm); margin: 0; color: rgba(251,246,234,.62); }

/* ---------- CONTACT ---------- */
.contact__grid { grid-template-columns: 1.25fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }

.form { display: grid; gap: 1.35rem; }
.field { position: relative; display: grid; gap: .5rem; }
.field label {
  font-size: var(--t-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251,246,234,.6);
  font-weight: 500;
}
.field label .req { color: var(--gold-400); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: .95rem 1.05rem;
  background: rgba(251,246,234,.04);
  border: 1px solid rgba(242,181,96,.2);
  border-radius: 3px;
  color: var(--cream-100);
  font-size: var(--t-body);
  transition: border-color .35s var(--ease), background .35s;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23F2B560' stroke-width='1.5'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  background-size: 12px;
  padding-right: 2.6rem;
  cursor: pointer;
}
.field select option { background: var(--maroon-900); color: var(--cream-100); }
.field textarea { resize: vertical; min-height: 148px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(251,246,234,.07);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(251,246,234,.3); }
.field--2 { grid-template-columns: 1fr 1fr; gap: 1.35rem; display: grid; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #E0645A; }
.err {
  font-size: var(--t-xs);
  color: #E88A81;
  min-height: 1em;
  letter-spacing: .02em;
}
/* honeypot */
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; overflow: hidden; }

.note {
  padding: 1rem 1.15rem;
  border-radius: 3px;
  font-size: var(--t-sm);
  display: none;
  border: 1px solid;
  line-height: 1.6;
}
.note.is-on { display: block; }
.note--ok { background: rgba(90,150,105,.12); border-color: rgba(120,190,135,.5); color: #B4E3C0; }
.note--bad { background: rgba(200,70,60,.1); border-color: rgba(224,100,90,.45); color: #F0AAA3; }

.info__blk { padding-bottom: 1.7rem; margin-bottom: 1.7rem; border-bottom: var(--rule); }
.info__blk:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.info__blk h3 {
  font-size: var(--t-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: .9rem;
  font-weight: 600;
}
.info__blk p, .info__blk address { font-size: var(--t-sm); color: rgba(251,246,234,.75); font-style: normal; line-height: 1.8; }
.info__blk a { color: var(--gold-300); transition: color .3s; }
.info__blk a:hover { color: var(--cream-100); }
.info__blk strong { color: var(--cream-100); font-weight: 600; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .38rem .85rem;
  border: 1px solid rgba(242,181,96,.28);
  border-radius: 999px;
  font-size: var(--t-xs);
  letter-spacing: .1em;
  color: rgba(251,246,234,.72);
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: var(--rule); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--cream-100);
  transition: color .3s;
}
.faq__q:hover { color: var(--gold-300); }
.faq__q i {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
  transition: transform .45s var(--ease);
}
.faq__q i::before, .faq__q i::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold-400);
  transform: translate(-50%,-50%);
  transition: transform .45s var(--ease), opacity .3s;
}
.faq__q i::before { width: 13px; height: 1.5px; }
.faq__q i::after  { width: 1.5px; height: 13px; }
.faq__q[aria-expanded="true"] i::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; height: 0; }
.faq__a > div { padding: 0 0 1.6rem; font-size: var(--t-sm); color: rgba(251,246,234,.66); line-height: 1.82; max-width: 66ch; }

/* ---------- MISC ---------- */
.pack-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(242,181,96,.16); }
.pack-strip figure { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--maroon-900); }
.pack-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s; filter: saturate(.95) brightness(.92); }
.pack-strip figure:hover img { transform: scale(1.06); filter: saturate(1.1) brightness(1); }
.pack-strip figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.4rem 1rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(26,7,8,.9));
  font-size: var(--t-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251,246,234,.85);
  text-align: center;
}

/* skip link */
.skip {
  position: absolute;
  left: 50%; top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  padding: .8rem 1.4rem;
  background: var(--gold-400);
  color: var(--maroon-900);
  font-size: var(--t-sm);
  font-weight: 600;
  border-radius: 0 0 4px 4px;
  transition: top .3s var(--ease);
}
.skip:focus { top: 0; }
