:root {
  --black: #050505;
  --black-soft: #111111;
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --white: #f8f8f8;
  --gray: #b8b8b8;
  --line: rgba(212, 175, 55, 0.24);
  --line-strong: rgba(245, 215, 110, 0.45);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(245, 215, 110, 0.05), transparent 32rem),
    var(--black);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(245, 215, 110, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 215, 110, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(245, 215, 110, 0.28);
  color: var(--white);
}

.container {
  width: min(100% - 40px, 1160px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-light);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(245, 215, 110, 0.32);
  background: rgba(5, 5, 5, 0.92);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #000;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.brand-fallback {
  display: none;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-mark.is-missing .brand-logo {
  display: none;
}

.brand-mark.is-missing .brand-fallback {
  display: grid;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--gray);
  font-size: 0.78rem;
  white-space: nowrap;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(245, 215, 110, 0.58);
  border-radius: 8px;
  color: #090909;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 244, 190, 0.92);
  box-shadow: 0 16px 42px rgba(212, 175, 55, 0.31);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button:focus-visible,
.faq-item summary:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.button-small {
  min-width: 154px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.button-large {
  width: fit-content;
  max-width: 100%;
  min-height: 58px;
  padding: 0 28px;
  font-size: 0.94rem;
}

.wa-glyph {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.wa-glyph::before {
  position: absolute;
  right: 1px;
  bottom: -4px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(38deg);
}

.wa-glyph::after {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 5px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: rotate(-35deg);
}

.section {
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 74px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--white);
  font-family: var(--serif);
  line-height: 1.05;
}

h1 {
  margin-bottom: 22px;
  font-size: 4rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.55rem;
  font-weight: 800;
}

h3 {
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--gray);
  font-size: 1.12rem;
}

.hero-line {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 30px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-light);
  background: rgba(17, 17, 17, 0.76);
  font-weight: 700;
}

.cta-group {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.microcopy {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
}

.hero-image {
  aspect-ratio: 0.84;
  border-color: rgba(245, 215, 110, 0.38);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(245, 215, 110, 0.06);
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: 96px;
  display: grid;
  width: min(260px, 72%);
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(245, 215, 110, 0.36);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.hero-note strong {
  color: var(--gold-light);
  font-size: 0.94rem;
}

.hero-note span {
  color: var(--gray);
  font-size: 0.84rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--gray);
  font-size: 1.02rem;
}

.benefits,
.steps,
.faq {
  background: rgba(17, 17, 17, 0.58);
  border-block: 1px solid rgba(245, 215, 110, 0.08);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.perfume-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.perfume-card,
.faq-item,
.seal,
.step-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.64);
}

.benefit-card {
  min-height: 250px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-card:hover {
  border-color: rgba(245, 215, 110, 0.42);
  background: rgba(17, 17, 17, 0.9);
  transform: translateY(-4px);
}

.card-index {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 800;
}

.benefit-card p,
.perfume-card p,
.trust-copy p,
.final-cta p,
.faq-item p,
.site-footer p {
  color: var(--gray);
}

.asset-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(245, 215, 110, 0.16), rgba(17, 17, 17, 0.72)),
    var(--black-soft);
}

.asset-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.asset-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.38));
}

.asset-frame.is-missing img {
  display: none;
}

.placeholder-art {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 28px;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.asset-frame.is-missing .placeholder-art {
  display: grid;
}

.bottle-shape {
  position: relative;
  display: block;
  width: 94px;
  height: 178px;
  border: 1px solid rgba(245, 215, 110, 0.62);
  border-radius: 20px 20px 8px 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 28%, rgba(245, 215, 110, 0.14)),
    rgba(5, 5, 5, 0.5);
  box-shadow: inset 0 0 30px rgba(245, 215, 110, 0.12), 0 18px 38px rgba(0, 0, 0, 0.5);
}

.bottle-shape::before {
  position: absolute;
  top: -42px;
  left: 50%;
  width: 38px;
  height: 42px;
  border: 1px solid rgba(245, 215, 110, 0.58);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(17, 17, 17, 0.72);
  content: "";
  transform: translateX(-50%);
}

.bottle-shape::after {
  position: absolute;
  inset: 54px 14px auto;
  height: 56px;
  border: 1px solid rgba(245, 215, 110, 0.32);
  border-radius: 8px;
  content: "";
}

.placeholder-title {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-image .placeholder-title {
  display: none;
}

.perfume-card {
  overflow: hidden;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.perfume-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
  transform: translateY(-4px);
}

.perfume-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.04);
}

.perfume-image {
  aspect-ratio: 0.86;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
}

.perfume-card h3 {
  min-height: 58px;
  margin: 0;
  padding: 16px;
  color: var(--gold-light);
  font-size: 1rem;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-item {
  position: relative;
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 22px;
}

.step-item span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 800;
}

.step-item p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.safety-note {
  margin: 26px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(245, 215, 110, 0.22);
  border-radius: 8px;
  color: var(--gray);
  background: rgba(5, 5, 5, 0.6);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.trust-copy {
  max-width: 760px;
}

.seal-grid {
  display: grid;
  gap: 14px;
}

.seal {
  padding: 22px;
}

.seal strong,
.seal span {
  display: block;
}

.seal strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.seal span {
  margin-top: 6px;
  color: var(--gray);
  font-size: 0.88rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(245, 215, 110, 0.12);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 48%),
    #080808;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(245, 215, 110, 0.62), transparent);
}

.final-cta::before {
  top: 28px;
}

.final-cta::after {
  bottom: 28px;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  max-width: 820px;
  text-align: center;
}

.final-cta h2 {
  font-size: 3rem;
}

.final-cta p {
  max-width: 680px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
}

.site-footer {
  padding: 42px 0 90px;
  border-top: 1px solid rgba(245, 215, 110, 0.12);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.3fr) auto;
  gap: 28px;
  align-items: start;
}

.footer-brand p {
  margin: 16px 0 0;
}

.footer-notices {
  display: grid;
  gap: 8px;
}

.footer-notices p {
  margin: 0;
  font-size: 0.84rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(245, 215, 110, 0.64);
  border-radius: 999px;
  color: #090909;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.42), 0 0 0 6px rgba(212, 175, 55, 0.08);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.52), 0 0 0 8px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.reveal {
  animation: fade-up 700ms ease both;
}

.reveal:nth-child(2) {
  animation-delay: 80ms;
}

.reveal:nth-child(3) {
  animation-delay: 130ms;
}

.reveal:nth-child(4) {
  animation-delay: 180ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

  .benefit-grid,
  .perfume-grid,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    max-width: 560px;
    margin-inline: auto;
  }

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

  .footer-grid .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .button-small {
    min-width: auto;
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.8rem;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding: 42px 0 66px;
  }

  h1 {
    font-size: 2.52rem;
  }

  h2,
  .final-cta h2 {
    font-size: 1.98rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-line {
    display: block;
    width: 100%;
    font-size: 0.92rem;
  }

  .button-large {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
    font-size: 0.84rem;
  }

  .cta-group {
    justify-items: stretch;
  }

  .benefit-grid,
  .perfume-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .card-index {
    margin-bottom: 28px;
  }

  .hero-note {
    right: 12px;
    bottom: 80px;
    width: calc(100% - 24px);
  }

  .step-item {
    min-height: 142px;
  }

  .faq-item summary {
    min-height: 60px;
    padding-inline: 18px;
  }

  .faq-item p {
    padding-inline: 18px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding-inline: 14px;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    max-width: 112px;
    font-size: 0.82rem;
  }

  .header-inner {
    gap: 10px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2,
  .final-cta h2 {
    font-size: 1.78rem;
  }

  .button-small {
    font-size: 0.75rem;
  }
}

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