:root {
  --black: #000000;
  --charcoal: #1d1d1b;
  --gold: #c9a32f;
  --gold-hover: #dbb64d;
  --ice: #e7f0f8;
  --ink: var(--black);
  --ink-soft: var(--charcoal);
  --wine: var(--charcoal);
  --ember: var(--gold);
  --ivory: var(--ice);
  --paper: var(--ice);
  --surface: #f2f7fc;
  --stone: #bac6d0;
  --sage: #5d666d;
  --muted-dark: #444a50;
  --line-dark: rgba(231, 240, 248, 0.22);
  --line-light: rgba(0, 0, 0, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::selection {
  background: var(--ember);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(231, 240, 248, 0.12);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 50px;
}

.brand__logo--ember {
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 13px;
  color: rgba(231, 240, 248, 0.78);
  white-space: nowrap;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button .icon-right {
  margin-left: 8px;
  font-size: 12px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.button--ghost {
  border-color: rgba(231, 240, 248, 0.34);
  color: var(--ivory);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 104px 0 40px;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  color: var(--ivory);
}

.site-intro__inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(760px, 100%);
  text-align: center;
}

.site-intro__logo {
  width: min(280px, 58vw);
  height: auto;
}

.site-intro__pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(231, 240, 248, 0.22);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-intro__title {
  max-width: 940px;
  margin: 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
}

.site-intro__traits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(760px, 100%);
}

.site-intro__trait {
  min-height: 124px;
  padding: 24px 20px;
  border: 1px solid rgba(231, 240, 248, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.site-intro__trait strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ivory);
  font-size: 22px;
  font-weight: 700;
}

.site-intro__trait span {
  color: rgba(231, 240, 248, 0.76);
  font-size: 15px;
}

.site-intro__note {
  max-width: 620px;
  margin: 0;
  color: rgba(231, 240, 248, 0.56);
  font-size: 13px;
}

.site-intro__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.site-intro__enter,
.site-intro__exit {
  min-width: 180px;
}

.section--paper .button--ghost,
.reserve .button--ghost {
  border-color: rgba(0, 0, 0, 0.42);
  color: var(--charcoal);
}

.section--paper .button--ghost:hover,
.section--paper .button--ghost:focus-visible,
.reserve .button--ghost:hover,
.reserve .button--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--black);
}

html:not(.age-verified),
html:not(.age-verified) body {
  overflow: hidden;
}

html.age-verified .site-intro {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86vh;
  padding: 124px 0 58px;
  isolation: isolate;
  background: var(--ink);
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--black);
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) saturate(1.04);
  opacity: 0;
  transform: scale(1.02);
  animation: heroFade 18s infinite;
}

.hero__slide--one {
  opacity: 1;
}

.hero__slide--two {
  animation-delay: 6s;
}

.hero__slide--three {
  animation-delay: 12s;
  object-position: center 55%;
}

@keyframes heroFade {
  0%,
  30% {
    opacity: 1;
    transform: scale(1.02);
  }

  38%,
  92% {
    opacity: 0;
    transform: scale(1.07);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.hero__layout {
  display: block;
}

.hero > .container {
  display: none;
}

.hero__corner-logo {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 1;
  width: clamp(56px, 7vw, 78px);
  height: auto;
  opacity: 0.62;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section-title,
.expression-card h3,
.reserve h2,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--ivory);
  font-size: 72px;
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(231, 240, 248, 0.82);
  font-size: 19px;
}

.hero__lead,
.hero__facts {
  display: none;
}

.hero__actions {
  display: none;
}

.hero__copy-slides {
  position: relative;
  width: min(560px, 100%);
  min-height: 132px;
}

.hero__copy-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  color: rgba(231, 240, 248, 0.9);
  font-size: 21px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(12px);
  animation: heroCopyFade 18s infinite;
}

.hero__copy-slide--one {
  opacity: 1;
}

.hero__copy-slide--two {
  animation-delay: 6s;
}

.hero__copy-slide--three {
  animation-delay: 12s;
}

@keyframes heroCopyFade {
  0%,
  30% {
    opacity: 1;
    transform: translateY(0);
  }

  36%,
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.proof-strip {
  background: var(--paper);
  color: var(--ink);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line-light);
}

.proof-item {
  min-height: 142px;
  padding: 28px 24px;
  border-right: 1px solid var(--line-light);
}

.proof-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.proof-item span {
  color: var(--muted-dark);
  font-size: 14px;
}

.gallery-showcase {
  padding-top: 88px;
}

.gallery-showcase--solo {
  padding: 0;
}

.gallery-showcase--solo + .section {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  grid-template-rows: repeat(2, minmax(245px, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.gallery-poster {
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-card {
  position: relative;
  min-height: 245px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.gallery-card--wide {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.84) 100%);
  pointer-events: none;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: var(--ivory);
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--ink);
  color: var(--ivory);
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section--wine {
  background: var(--wine);
  color: var(--ivory);
}

.section-kicker {
  margin-bottom: 13px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section--dark .section-kicker,
.section--wine .section-kicker {
  color: var(--gold);
}

.section-title {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 48px;
}

.section-copy {
  max-width: 790px;
  color: var(--muted-dark);
  font-size: 18px;
}

.section--dark .section-copy,
.section--wine .section-copy {
  color: rgba(231, 240, 248, 0.78);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.intro-callout {
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.intro-callout h3 {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.intro-callout ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-callout li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted-dark);
}

.intro-callout .icon-right {
  color: var(--ember);
  font-size: 15px;
  transform: translateY(4px);
}

.expressions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.expression-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.expression-bottle {
  position: relative;
  display: grid;
  place-items: stretch;
  min-height: 238px;
  margin: -10px -10px 24px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: none;
  perspective: 840px;
  isolation: isolate;
}

.expression-bottle::before {
  content: none;
}

.expression-bottle::after {
  content: none;
}

.expression-bottle__link {
  display: grid;
  place-items: stretch;
  width: 100%;
  height: 100%;
  min-height: inherit;
  outline-offset: 5px;
}

.expression-bottle__link:focus-visible {
  outline: 2px solid var(--gold);
}

.expression-bottle img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transform: none;
  transform-origin: center;
  filter: none;
  transition: transform 260ms ease, filter 260ms ease;
}

.expression-card:hover .expression-bottle img {
  transform: none;
  filter: none;
}

.expression-bottle--amburana img {
  clip-path: none;
}

.expression-bottle--carvalho img {
  clip-path: none;
  transform: none;
}

.expression-card:hover .expression-bottle--carvalho img {
  transform: none;
}

.expression-bottle--blend img {
  width: 100%;
  height: 100%;
  max-height: none;
  transform: none;
}

.expression-card:hover .expression-bottle--blend img {
  transform: none;
}

.expression-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
}

.tag--sage {
  background: var(--charcoal);
  color: var(--ice);
}

.expression-card h3 {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: 32px;
}

.expression-card p {
  color: var(--muted-dark);
}

.expression-card__notes {
  display: grid;
  gap: 14px;
  margin: 10px 0 24px;
  padding: 0;
  list-style: none;
}

.expression-card__notes li {
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  color: var(--muted-dark);
  font-size: 15px;
}

.expression-card__notes strong {
  display: block;
  color: var(--ink);
}

.expression-card .button {
  width: 100%;
  margin-top: auto;
}

.ritual-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.ritual-photo {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.ritual-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.ritual-content .section-title {
  max-width: 620px;
}

.ritual-content .section-copy {
  max-width: 700px;
  margin-bottom: 34px;
}

.ritual-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ritual-list li {
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
}

.ritual-list h3 {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 20px;
}

.ritual-list p {
  margin-bottom: 0;
  color: rgba(231, 240, 248, 0.74);
}

.gift-set {
  background: var(--charcoal);
  color: var(--ivory);
}

.gift-set__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 42px;
  align-items: center;
}

.gift-set__copy .section-title {
  max-width: 560px;
  margin-bottom: 20px;
}

.gift-set__copy .section-kicker {
  color: var(--gold);
}

.gift-set__copy .section-copy {
  max-width: 560px;
  margin-bottom: 18px;
  color: rgba(231, 240, 248, 0.76);
}

.gift-set__facts {
  display: grid;
  gap: 16px;
  margin: 28px 0 28px;
  padding: 0;
  list-style: none;
}

.gift-set__facts li {
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.gift-set__facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 18px;
}

.gift-set__facts span {
  color: rgba(231, 240, 248, 0.74);
}

.gift-set__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.34);
}

.gift-set__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

.gift-set__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 68% center;
}

.reserve {
  position: relative;
  background: var(--paper);
  color: var(--ink);
}

.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.reserve h2 {
  margin-bottom: 20px;
  font-size: 46px;
}

.reserve p {
  color: var(--muted-dark);
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--surface);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.steps span {
  color: var(--muted-dark);
}

.store-promo {
  position: relative;
  min-height: 760px;
  padding: 76px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 44%, rgba(184, 117, 43, 0.22), rgba(184, 117, 43, 0) 34%),
    linear-gradient(135deg, #0b0907 0%, #160f0a 48%, #0b0907 100%);
}

.store-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(232, 212, 162, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(232, 212, 162, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 18%);
  background-size: 78px 78px, 78px 78px, 100% 100%;
  mix-blend-mode: screen;
}

.store-promo::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -12%;
  width: 46%;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(213, 179, 106, 0.28), rgba(184, 117, 43, 0.13) 36%, transparent 72%);
  filter: blur(18px);
}

.store-promo__inner {
  position: relative;
  z-index: 1;
}

.store-promo__scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
  min-height: 608px;
  padding: 56px 58px;
  overflow: hidden;
  border: 1px solid rgba(213, 179, 106, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(58, 36, 22, 0.94), rgba(184, 117, 43, 0.76) 46%, rgba(45, 27, 15, 0.96) 100%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(247, 241, 230, 0.14),
    inset 0 0 0 1px rgba(11, 9, 7, 0.34);
}

.store-promo__scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 45%, rgba(247, 179, 89, 0.36), transparent 28%),
    linear-gradient(90deg, transparent 0%, rgba(247, 241, 230, 0.04) 54%, rgba(213, 179, 106, 0.12) 100%);
}

.store-promo__scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(247, 241, 230, 0.4) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
}

.store-promo__content,
.store-promo__product,
.store-promo__footer {
  position: relative;
  z-index: 1;
}

.store-promo__content {
  max-width: 620px;
}

.store-promo__brand-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 34px;
}

.store-promo__logo {
  width: min(136px, 100%);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.32));
}

.store-promo__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(213, 179, 106, 0.56);
  border-radius: 50%;
  background: rgba(11, 9, 7, 0.52);
  color: #d5b36a;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.store-promo__eyebrow {
  margin-bottom: 14px;
  color: #e8d4a2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-promo__title {
  max-width: 600px;
  margin: 0 0 18px;
  color: #f7f1e6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.store-promo__lead,
.store-promo__text {
  max-width: 590px;
  color: rgba(247, 241, 230, 0.9);
  font-size: 17px;
  line-height: 1.68;
}

.store-promo__lead {
  margin-bottom: 14px;
}

.store-promo__text {
  margin-bottom: 24px;
  color: rgba(232, 212, 162, 0.88);
}

.store-promo__shop-callout {
  max-width: 540px;
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid rgba(213, 179, 106, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 9, 7, 0.5), rgba(58, 36, 22, 0.42)),
    radial-gradient(circle at 88% 24%, rgba(213, 179, 106, 0.2), transparent 42%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(247, 241, 230, 0.1);
}

.store-promo__shop-label {
  display: block;
  margin-bottom: 8px;
  color: #d5b36a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-promo__shop-callout p {
  max-width: 450px;
  margin: 0 0 16px;
  color: rgba(247, 241, 230, 0.86);
  font-size: 15px;
  line-height: 1.55;
}

.store-promo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid rgba(213, 179, 106, 0.68);
  border-radius: 6px;
  color: #f7f1e6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.store-promo__button:hover,
.store-promo__button:focus-visible {
  border-color: #f7f1e6;
  transform: translateY(-2px);
  outline: 0;
}

.store-promo__button:focus-visible {
  box-shadow: 0 0 0 3px rgba(213, 179, 106, 0.3);
}

.store-promo__button--primary {
  background: #0b0907;
  color: #d5b36a;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.store-promo__button--primary:hover,
.store-promo__button--primary:focus-visible {
  background: #f7f1e6;
  color: #0b0907;
}

.store-promo__product {
  display: grid;
  place-items: center;
  min-width: 0;
  margin: 0;
}

.store-promo__product-frame {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(213, 179, 106, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 54% 44%, rgba(213, 179, 106, 0.36), transparent 34%),
    linear-gradient(160deg, rgba(11, 9, 7, 0.56), rgba(58, 36, 22, 0.52));
  box-shadow:
    0 30px 58px rgba(0, 0, 0, 0.48),
    -28px 20px 80px rgba(184, 117, 43, 0.24);
}

.store-promo__product-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(247, 241, 230, 0.12) 50%, transparent 72%),
    radial-gradient(ellipse at 74% 46%, rgba(213, 179, 106, 0.32), transparent 42%);
  mix-blend-mode: screen;
}

.store-promo__product-frame::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 6%;
  height: 12%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  filter: blur(18px);
}

.store-promo__product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.06);
}

.store-promo__footer {
  position: absolute;
  right: 58px;
  bottom: 24px;
  max-width: 420px;
  margin: 0;
  color: rgba(247, 241, 230, 0.62);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: right;
}

.technical-details .section-copy {
  max-width: 860px;
  color: rgba(29, 29, 27, 0.76);
}

.technical-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  margin-top: 40px;
}

.technical-panel {
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    var(--surface);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
}

.technical-panel h3 {
  margin-bottom: 20px;
  color: var(--charcoal);
  font-size: 22px;
}

.technical-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.technical-list div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
}

.technical-list dt {
  margin-bottom: 6px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technical-list dd {
  margin: 0;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.technical-expression {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.technical-expression:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.technical-expression h4 {
  margin: 0 0 8px;
  color: var(--charcoal);
  font-size: 17px;
}

.technical-expression p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.technical-notice {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: rgba(201, 163, 47, 0.12);
  color: var(--muted-dark);
}

.technical-notice strong {
  color: var(--charcoal);
}

.final-cta {
  position: relative;
  padding: 88px 0;
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
}

.final-cta h2 {
  width: min(760px, 100%);
  margin: 0 auto 18px;
  font-size: 50px;
}

.final-cta p {
  width: min(680px, 100%);
  margin: 0 auto 28px;
  color: rgba(231, 240, 248, 0.76);
  font-size: 18px;
}

.site-footer {
  padding: 44px 0 36px;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
  color: rgba(231, 240, 248, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
}

.footer-logo {
  width: min(240px, 100%);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--gold);
}

.legal {
  margin-top: 18px;
  color: rgba(231, 240, 248, 0.5);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: #25d366;
  color: #0d2617;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(10, 68, 34, 0.28);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-1px);
  background: #1fbc58;
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.whatsapp-float__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-float__label {
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 14px;
  }

  .site-intro__traits {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.68) 44%, rgba(29, 29, 27, 0.44) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.84) 100%);
  }

  .hero h1 {
    font-size: 58px;
  }

  .gift-set__layout {
    grid-template-columns: 1fr;
  }

  .expressions-grid {
    grid-template-columns: 1fr;
  }

  .expression-card {
    min-height: 0;
  }

  .expression-bottle {
    min-height: 250px;
  }

  .expression-bottle img {
    height: 100%;
  }

  .expression-bottle--blend img {
    width: 100%;
    max-height: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card--wide {
    grid-column: span 2;
    min-height: 430px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .site-intro {
    padding: 96px 0 32px;
  }

  .site-intro__inner {
    gap: 20px;
  }

  .site-intro__title {
    font-size: 42px;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand__text,
  .site-nav a:not(.button) {
    display: none;
  }

  .site-nav {
    margin-left: auto;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 0 46px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.74) 58%, rgba(0, 0, 0, 0.48) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.8) 100%);
  }

  .hero__slide {
    object-position: center;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__corner-logo {
    right: 20px;
    bottom: 20px;
    width: 64px;
  }

  .proof-strip__grid,
  .gallery-grid,
  .intro-layout,
  .ritual-grid,
  .reserve-layout,
  .store-promo__inner,
  .technical-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: none;
  }

  .gallery-card,
  .gallery-card--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .ritual-photo,
  .ritual-photo img {
    min-height: 360px;
  }

  .section {
    padding: 72px 0;
  }

  .section-title,
  .reserve h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .store-promo__scene {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 42px 34px 64px;
  }

  .store-promo__content {
    max-width: none;
  }

  .store-promo__title {
    font-size: 44px;
  }

  .store-promo__product-frame {
    width: min(100%, 420px);
    aspect-ratio: 4 / 5;
  }

  .store-promo__footer {
    right: 34px;
    bottom: 24px;
    left: 34px;
    max-width: none;
    text-align: left;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: auto;
    height: 40px;
  }

  .brand__logo--ember {
    height: 28px;
  }

  .site-intro__logo {
    width: min(220px, 62vw);
  }

  .site-intro__title {
    font-size: 34px;
  }

  .site-intro__trait {
    min-height: 0;
    padding: 20px 18px;
  }

  .site-intro__actions {
    width: 100%;
  }

  .site-nav .button {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__corner-logo {
    right: 16px;
    bottom: 16px;
    width: 54px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-promo__scene {
    padding: 30px 20px 66px;
  }

  .store-promo__brand-row {
    gap: 14px;
    margin-bottom: 24px;
  }

  .store-promo__logo {
    width: 116px;
  }

  .store-promo__seal {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  .store-promo__title {
    font-size: 36px;
  }

  .store-promo__lead,
  .store-promo__text {
    font-size: 15px;
  }

  .store-promo__shop-callout {
    padding: 18px;
  }

  .store-promo__button {
    width: 100%;
    min-height: 54px;
    font-size: 12px;
  }

  .store-promo__product-frame {
    width: 100%;
    aspect-ratio: 3 / 4;
  }

  .store-promo__footer {
    right: 20px;
    left: 20px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 10px 14px 10px 10px;
    font-size: 14px;
  }

  .whatsapp-float__icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .ritual-photo,
  .ritual-photo img {
    min-height: 280px;
  }

  .proof-item,
  .intro-callout,
  .expression-card,
  .technical-panel {
    padding: 22px;
  }

  .technical-list {
    grid-template-columns: 1fr;
  }

  .expression-bottle {
    min-height: 220px;
    margin: -6px -6px 22px;
  }

  .expression-bottle img {
    height: 100%;
  }

  .expression-bottle--blend img {
    width: 100%;
    max-height: none;
  }
}

@media (max-width: 430px) {
  .site-header__inner {
    gap: 12px;
  }

  .brand img {
    height: 34px;
  }

  .brand__logo--ember {
    height: 24px;
  }

  .site-nav .button {
    min-width: 116px;
    padding: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    animation: none;
  }

  .hero__slide--one {
    opacity: 1;
  }

  .hero__slide--two,
  .hero__slide--three {
    opacity: 0;
  }

  .gallery-card img,
  .button {
    transition: none;
  }
}

@media (max-height: 720px) and (min-width: 861px) {
  .hero {
    padding-top: 102px;
  }

  .hero h1 {
    font-size: 56px;
    margin-bottom: 18px;
  }

  .hero__lead {
    margin-bottom: 22px;
  }

  .hero__facts li {
    min-height: 78px;
    padding: 12px 14px;
  }
}

.hero .hero__actions,
.hero .hero__lead,
.hero .hero__facts,
.hero .hero__slide-brand {
  display: none !important;
}
