:root {
  --gold: #e5931f;
  --gold-soft: #efb863;
  --bordeaux: #5b1221;
  --bordeaux-deep: #3f0c17;
  --black: #19150c;
  --cream: #f4ede0;
  --paper: #faf6ee;
  --white: #ffffff;
  --line: rgba(229,147,31,0.25);
  --line-dark: rgba(25,21,12,0.12);

  --container: 1280px;
  --pad-x: clamp(20px, 5vw, 80px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}
.divider {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-right: 18px;
}

.h1 {
  font-size: clamp(2.6rem, 7.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.012em;
}
.h2 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.h3 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.lead {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  opacity: 0.85;
  text-align: justify;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); }
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--gold-ghost { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn--gold-ghost:hover { background: var(--gold); color: var(--bordeaux-deep); }
.btn--dark { background: var(--bordeaux); color: var(--white); justify-self: start; }
.btn--dark:hover { background: var(--bordeaux-deep); }

.btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 6px 22px rgba(229,147,31,0.25), 0 0 0 0 rgba(229,147,31,0.4);
  animation: btn-pulse 2.8s ease-in-out infinite;
}
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.55) 48%,
    rgba(255,255,255,0.55) 52%,
    transparent 70%
  );
  transform: translateX(-130%);
  animation: btn-shimmer 3.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.btn--primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  filter: brightness(1.05);
}
@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 6px 22px rgba(229,147,31,0.25),
                0 0 0 0 rgba(229,147,31,0.4);
  }
  50% {
    box-shadow: 0 10px 32px rgba(229,147,31,0.55),
                0 0 0 10px rgba(229,147,31,0);
  }
}
@keyframes btn-shimmer {
  0%   { transform: translateX(-130%); }
  60%  { transform: translateX(130%); }
  100% { transform: translateX(130%); }
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary,
  .btn--primary::before { animation: none; }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(91,18,33,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px var(--pad-x);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  font-weight: 300;
}
.nav__logo svg { width: 42px; height: 42px; color: var(--gold); flex: 0 0 42px; }
.nav__links { display: flex; gap: 32px; margin-left: auto; }
.nav__links a {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav__links a:hover { color: var(--gold); opacity: 1; }
.nav__lang { display: flex; gap: 4px; align-items: center; margin-left: 28px; }
.nav__lang button {
  background: none; border: none;
  color: var(--white);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  padding: 6px 10px;
  transition: opacity 0.2s, color 0.2s;
}
.nav__lang button.active { opacity: 1; color: var(--gold); }
.nav__lang button:hover { opacity: 1; }
.nav__phone { display: none; }
.nav__burger { display: none; }
.nav__drawer { display: none; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(229,147,31,0.09) 0%, transparent 60%),
    linear-gradient(180deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px var(--pad-x) 110px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__mountains {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  opacity: 0.18;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.hero__mountains img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.12) brightness(1.05) saturate(0.9);
}
.hero__logo {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 26%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.35));
}
.hero__logo img {
  width: 100%;
  height: auto;
  display: block;
  animation: heartbeat 1.5s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes heartbeat {
  0%, 70%, 100% { transform: scale(1); }
  14%          { transform: scale(1.06); }
  28%          { transform: scale(1); }
  42%          { transform: scale(1.035); }
  56%          { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__logo img { animation: none; }
}
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,0.012) 2px 3px);
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.hero__content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}
.hero__eyebrow { margin-bottom: 32px; }
.hero__title { max-width: 14ch; margin-bottom: 28px; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__lead {
  max-width: 52ch;
  margin-bottom: 52px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__meta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: var(--pad-x);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__scroll::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: scroll-line 2.4s ease-in-out infinite;
  transform-origin: left;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleX(0.3); }
  50% { transform: scaleX(1); }
}

/* SECTIONS */
section { padding: clamp(80px, 11vw, 150px) 0; }
.section-header { margin-bottom: 72px; max-width: 760px; }
.section-header .h2 { margin-top: 18px; }
.challenge .section-header { max-width: none; }

/* ABOUT */
.about { background: var(--paper); overflow: hidden; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(16px, 16px);
  pointer-events: none;
  z-index: -1;
}
.about__text h2 { margin: 18px 0 32px; }
.about__text p { margin-bottom: 22px; opacity: 0.85; text-align: justify;}
.about__quote {
  margin-top: 40px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--bordeaux);
}
.about__quote::before { content: '"'; color: var(--gold); margin-right: 6px; }
.about__quote::after { content: '"'; color: var(--gold); margin-left: 4px; }
.about__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-top: 32px;
}
.about__keywords li {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  opacity: 0.85;
}

/* CHALLENGE / SOLUTION */
.challenge { background: var(--white); }
.challenge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
}
.challenge__card {
  padding: 44px 40px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  position: relative;
}
.challenge__card--dark {
  background: var(--bordeaux);
  color: var(--white);
  border-left-color: var(--gold);
}
.challenge__card--dark .eyebrow { color: var(--gold-soft); }
.challenge__card h3 { margin: 16px 0 24px; }
.challenge__card p { opacity: 0.85; margin-bottom: 18px; text-align: justify;}
.challenge__list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.challenge__list li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
}
.challenge__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.challenge__standard {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.challenge__standard::before {
  content: '✓';
  font-size: 0.85rem;
}

/* COLLECTION */
.collection { background: var(--white); }
.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.tier {
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(91,18,33,0.25);
}
.tier__image {
  aspect-ratio: 4/4;
  background: var(--cream);
}
.tier__image img {
  width: 100%; height: 100%; object-fit: cover;
  cursor: zoom-in;
  transition: opacity 0.25s ease;
}
.tier__image img:hover { opacity: 0.92; }

/* Full-card details overlay */
.tier__details {
  position: absolute;
  inset: 0;
  background: rgba(91, 18, 33, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 60px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}
.tier--peek .tier__details,
.tier--open .tier__details { transform: translateY(0); }

/* Close button inside overlay */
.tier__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(229,147,31,0.4);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 4;
}
.tier__close:hover {
  background: var(--gold);
  color: var(--bordeaux-deep);
  transform: scale(1.08);
}
.tier__close svg { width: 16px; height: 16px; }

/* Bottom actions row: Request + More info */
.tier__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 16px;
}
.tier__actions .tier__cta {
  margin-top: 0;
  align-self: auto;
}
.tier__more {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.tier__more:hover { color: var(--gold); opacity: 1; }

/* Lightbox — full screen image viewer */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(25, 21, 12, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox--open {
  opacity: 1;
  visibility: visible;
}
.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}
.lightbox--open .lightbox__image { transform: scale(1); }
.lightbox__image--fading { opacity: 0; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(229,147,31,0.4);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.lightbox__nav:hover {
  background: var(--gold);
  color: var(--bordeaux-deep);
  transform: translateY(-50%) scale(1.08);
}
.lightbox__nav--prev { left: clamp(16px, 3vw, 36px); }
.lightbox__nav--next { right: clamp(16px, 3vw, 36px); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(229,147,31,0.4);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lightbox__close:hover {
  background: var(--gold);
  color: var(--bordeaux-deep);
  transform: scale(1.08);
}
.lightbox__close svg { width: 22px; height: 22px; }
.tier__body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.tier__meta { display: none; }
.tier__name {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  text-align: center;
}
.tier__tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
  opacity: 0.55;
  margin-bottom: 22px;
  text-align: center;
}
.tier__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.94;
  margin: 0;
}
.tier__contents {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(229, 147, 31, 0.3);
  margin: 0;
}
.tier__contents li {
  font-size: 0.85rem;
  opacity: 0.92;
  position: relative;
  padding-left: 18px;
}
.tier__contents li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.tier__ideal {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  line-height: 1.5;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(229, 147, 31, 0.2);
}
.tier__ideal strong { color: var(--gold); font-weight: 300; }
.tier__cta {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto;
}
.tier__cta::before { content: '→'; transition: transform 0.25s ease; }
.tier__cta:hover::before { transform: translateX(-4px); }


/* SEAL — special collection */
.seal {
  background: var(--bordeaux);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.seal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.seal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.seal__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.seal__title { margin-bottom: 28px; color: var(--white); }
.seal__title em { font-style: normal; color: var(--gold); }
.seal__lead { opacity: 0.85; margin-bottom: 32px; font-size: clamp(1rem, 1.25vw, 1.15rem); line-height: 1.7; text-align: justify;}
.seal__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.seal__features li {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding-left: 22px;
  position: relative;
  opacity: 0.88;
}
.seal__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.seal__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bordeaux-deep);
  position: relative;
}

/* CAROUSEL */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: none;
}
.carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 6s ease-out;
  pointer-events: none;
  transform: scale(1.04);
  will-change: opacity, transform;
}
.carousel__slide--active {
  opacity: 1;
  transform: scale(1);
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(91, 18, 33, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 147, 31, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 4;
  padding: 0;
  cursor: pointer;
}
.carousel__nav svg { width: 22px; height: 22px; }
.carousel__nav--prev { left: 18px; }
.carousel__nav--next { right: 18px; }
.carousel:hover .carousel__nav,
.carousel:focus-within .carousel__nav { opacity: 1; }
.carousel__nav:hover {
  background: var(--gold);
  color: var(--bordeaux-deep);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.carousel__dots {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  padding: 9px 16px;
  border-radius: 999px;
}
.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;

  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.35s ease, border-radius 0.35s ease;
  position: relative;
}
.carousel__dot::after {
  content: '';
  position: absolute;
  inset: -8px;
}
.carousel__dot:hover { background: rgba(229, 147, 31, 0.75); }
.carousel__dot--active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.carousel__counter {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #675e5e;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 300;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 999px;
  z-index: 4;
  font-variant-numeric: tabular-nums;
}
.carousel__separator { opacity: 0.5; margin: 0 6px; }
.carousel__current { color: var(--gold); }
.carousel__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(229,147,31,0.3), var(--gold));
  z-index: 4;
  width: 0;
  pointer-events: none;
}
.carousel__progress--active {
  width: 100%;
  transition: width 5s linear;
}
@media (prefers-reduced-motion: reduce) {
  .carousel__slide { transition: opacity 0.4s ease; transform: none; }
  .carousel__slide--active { transform: none; }
  .carousel__progress { display: none; }
}

/* PRODUCTS — inside ingredients */
.inside { background: var(--black); color: var(--white); }
.inside__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.inside__intro { max-width: 520px; }
.inside__intro h2 { color: var(--white); margin-top: 18px; margin-bottom: 22px; }
.inside__intro p { opacity: 0.8; }
.inside__map {
  position: relative;
}
.inside__map img {
  width: 100%;
  height: auto;
  display: block;
}
.inside__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bordeaux-deep);
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.05);
  transition: filter 0.5s ease, transform 0.7s ease;
}
.product-card:hover img {
  filter: brightness(1.02) saturate(1.1);
  transform: scale(1.04);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,21,12,0.92) 0%, rgba(25,21,12,0.2) 50%, transparent 100%);
  z-index: 1;
}
.product-card__label {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
}
.product-card__label h4 {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.product-card__label span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}
.product-card__label p {
  margin-top: 12px;
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.55;
}

/* AUDIENCES */
.audiences { background: var(--paper); }
.audiences__intro { margin-bottom: 64px; max-width: 1000px; }
.audiences__intro h2 { margin-top: 18px; }
.audiences__split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}
.audiences__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.audience {
  padding: 30px 34px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  display: flex;
  align-items: flex-start;
  gap: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audience:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -25px rgba(91,18,33,0.2);
}
.audience__icon {
  width: 44px;
  height: 44px;
  color: var(--bordeaux);
  margin-bottom: 0;
  flex-shrink: 0;
}
.audience__content {
  flex: 1;
  min-width: 0;
}
.audience h3 { margin-bottom: 10px; }
.audience p {
  font-size: 0.92rem;
  opacity: 0.78;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: justify;
}
.audience__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.audience__tags span {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--bordeaux);
  opacity: 0.7;
}
.audiences__image {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
  border-top: 2px solid var(--gold);
}
.audiences__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.audiences__image:hover img { transform: scale(1.04); }

/* REGIONS */
.regions { background: var(--bordeaux); color: var(--white); overflow: hidden; position: relative; }
.regions__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.regions__text h2 { margin: 18px 0 32px; color: var(--white); }
.regions__text p { opacity: 0.85; margin-bottom: 22px; }
.regions__cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.regions__cities li {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
  cursor: default;
}
.regions__cities li:hover { color: var(--gold); opacity: 1; transform: translateX(3px); }
.regions__map svg { width: 100%; height: auto; }

/* INQUIRY */
.inquiry { background: var(--paper); }
.inquiry__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
}
.inquiry__intro h2 { margin: 18px 0 28px; }
.inquiry__intro p { margin-bottom: 18px; opacity: 0.82; text-align: justify;}
.inquiry__contacts {
  margin-top: 10px;
  padding-top: 10px;
  display: grid;
  gap: 14px;
}
.inquiry__contact {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 0.95rem;
}
.inquiry__contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-top: 10px;
  text-transform: uppercase;
  color: var(--gold);
  width: 80px;
  flex-shrink: 0;
}
.inquiry__form { display: grid; gap: 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(25,21,12,0.18);
  background: transparent;
  color: var(--black);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 90px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* Required-marker, errors, validation states */
.field__req { color: var(--gold); margin-left: 2px; }
.field__error {
  display: block;
  min-height: 1em;
  font-size: 12px;
  color: #b3261e;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b3261e;
  background: rgba(179, 38, 30, 0.04);
}
.field.is-invalid input:focus,
.field.is-invalid select:focus,
.field.is-invalid textarea:focus { border-color: #b3261e; }

/* Honeypot — hidden from real users, visible to bots */
.field--hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* reCAPTCHA wrapper */
.field--recaptcha { gap: 6px; }
.field--recaptcha #recaptchaContainer { min-height: 0; }
.field--recaptcha #recaptchaContainer:empty { display: none; }

/* Submit feedback */
.form__status {
  min-height: 1.4em;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 2px;
}
.form__status--ok  { color: #0f7a3d; }
.form__status--err { color: #b3261e; }

/* Submit button — busy state */
#submitBtn[disabled],
#contactSubmitBtn[disabled] {
  opacity: 0.6;
  cursor: progress;
  pointer-events: none;
}

/* Inline contact-CTA link inside inquiry__contacts */
.inquiry__contact-cta {
  color: var(--bordeaux);
  font-weight: 400;
  letter-spacing: 0.02em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.inquiry__contact-cta:hover { color: var(--gold); }

/* Pre-fill pulse highlight (used when footer For-Business preselects segment) */
@keyframes fieldPulse {
  0%   { box-shadow: 0 0 0 0 rgba(229, 147, 31, 0.55); }
  60%  { box-shadow: 0 0 0 10px rgba(229, 147, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 147, 31, 0); }
}
.field--pulse > select,
.field--pulse > input {
  border-color: var(--gold) !important;
  animation: fieldPulse 1.4s ease-out;
}

/* ===== Modal (contact popup) ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal--open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 21, 12, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modalFadeIn 0.25s ease-out;
}
.modal__panel {
  position: relative;
  background: var(--paper);
  color: var(--black);
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 44px 38px 34px;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(25, 21, 12, 0.5);
  animation: modalSlideIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--black);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.modal__close:hover { opacity: 1; }
.modal__close svg { width: 22px; height: 22px; }
.modal__panel .h3 {
  margin: 6px 0 8px;
}
.modal__lead {
  margin: 0 0 22px;
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form .btn {
  margin-top: 6px;
  justify-self: start;
}
body.modal-open { overflow: hidden; }

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Footer Contact column: H5 as link */
.footer__col h5 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer__col h5 a:hover {
  border-bottom-color: currentColor;
  color: var(--gold);
}

/* Modal — narrow screens */
@media (max-width: 560px) {
  .modal { padding: 0; align-items: stretch; }
  .modal__panel {
    max-width: none;
    max-height: 100vh;
    border-radius: 0;
    padding: 56px 22px 28px;
  }
  .modal__close { top: 10px; right: 10px; }
  .contact-form .btn { justify-self: stretch; width: 100%; text-align: center; }
}

/* FOOTER */
.footer { background: var(--black); color: var(--white); padding: 90px var(--pad-x) 40px; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .nav__logo { color: var(--white); }
.footer__brand p {
  opacity: 0.55;
  margin-top: 20px;
  max-width: 34ch;
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer__col h5 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 300;
}
.footer__col li { margin-bottom: 12px; opacity: 0.65; font-size: 0.9rem; line-height: 1.6; }
.footer__col a:hover { opacity: 1; color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 28px auto 0;
  font-size: 0.78rem;
  opacity: 0.45;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .collection__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .inside__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 800px) {
  .nav__links { display: none; }
  .about__grid,
  .audiences__split,
  .challenge__grid,
  .seal__grid,
  .regions__grid,
  .inquiry__grid,
  .inside__split { grid-template-columns: 1fr; }
  .seal__features { grid-template-columns: 1fr; gap: 12px; }
  .regions__cities { grid-template-columns: repeat(2, 1fr); }
  .hero__meta { display: none; }
  .nav__lang { display: none; }
  .seal__image { order: -1; aspect-ratio: 1; }
  .audiences__image { position: static; aspect-ratio: 16/10; order: -1; }

  /* Center isolated badges and CTAs on mobile */
  .challenge__standard,
  .seal__badge,
  .seal .btn--gold-ghost {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center Send Request button in inquiry form */
  .inquiry__form .btn--dark {
    justify-self: center;
  }

  /* Footer — brand full width centered, Collection + For Business side-by-side, Contact full */
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__brand .nav__logo {
    gap: 14px;
    font-size: 1rem;
    letter-spacing: 0.3em;
  }
  .footer__brand .nav__logo svg {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }
  .footer__brand p {
    max-width: none;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    margin-top: 22px;
  }
  .footer__col:last-child {
    grid-column: 1 / -1;
  }

  /* Hero — vertical stack on mobile: text → image+logo → buttons */
  .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 110px var(--pad-x) 56px;
    min-height: 100vh;
  }
  .hero__content { display: contents; }
  .hero__eyebrow { order: 1; margin-bottom: 24px; }
  .hero__title {
    order: 1;
    margin-bottom: 22px;
    max-width: none;
    text-align: center;
  }
  .hero__lead {
    order: 1;
    margin-bottom: 0;
    max-width: none;
    font-size: 1rem;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .nav__phone {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    font-weight: 300;
    margin-left: auto;
    opacity: 0.92;
    transition: color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
  }
  .nav__phone:hover { color: var(--gold); opacity: 1; }

  /* Hamburger button — visible on mobile only */
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 14px;
  }
  .nav__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Slide-in drawer */
  .nav__drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88%);
    height: 100vh;
    background: linear-gradient(180deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
    z-index: 200;
    padding: 22px 32px 36px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
  }
  .nav__drawer--open { transform: translateX(0); }
  .nav__drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }
  .nav__drawer-close {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(229, 147, 31, 0.4);
    color: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .nav__drawer-close:hover {
    background: var(--gold);
    color: var(--bordeaux-deep);
    transform: scale(1.06);
  }
  .nav__drawer-close svg { width: 16px; height: 16px; }
  .nav__drawer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .nav__drawer-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__drawer-links a {
    display: block;
    padding: 20px 0;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.2s ease, padding-left 0.25s ease;
  }
  .nav__drawer-links a:hover { color: var(--gold); padding-left: 8px; }
  .nav__drawer-lang {
    display: flex;
    gap: 2px;
    align-items: center;
  }
  .nav__drawer-lang button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    padding: 8px 10px;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s ease, color 0.2s ease;
    font-family: inherit;
    font-weight: 300;
  }
  .nav__drawer-lang button.active { color: var(--gold); opacity: 1; }
  .nav__drawer-lang button:hover { opacity: 1; color: var(--gold); }

  /* Backdrop dim behind drawer */
  body.drawer-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(25, 21, 12, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 199;
  }
  .hero__bg {
    order: 2;
    position: relative;
    inset: auto;
    width: calc(100% + 2 * var(--pad-x));
    height: clamp(240px, 42vh, 340px);
    margin: 36px calc(-1 * var(--pad-x));
    pointer-events: none;
  }
  .hero__mountains {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    right: auto;
    top: 0;
    transform: none;
    opacity: 0.7;
    max-width: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
  }
  .hero__mountains img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    right: auto;
    top: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__logo img {
    width: auto;
    height: auto;
    max-width: 55%;
    max-height: 70%;
  }
  .hero__ctas {
    order: 3;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .collection__grid,
  .inside__grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; gap: 28px; }
  .challenge__card { padding: 32px 26px; }
  .nav { padding: 16px var(--pad-x); gap: 10px; }
  .nav__logo { gap: 12px; font-size: 0.78rem; letter-spacing: 0.24em; }
  .nav__phone { font-size: 0.72rem; }
}
@media (max-width: 420px) {
  .nav__logo span { display: none; }
  .nav__phone { font-size: 0.7rem; }
}
