:root {
  --bg: #120d09;
  --bg-soft: rgba(19, 12, 8, 0.72);
  --panel: rgba(255, 248, 239, 0.08);
  --panel-strong: rgba(255, 248, 239, 0.13);
  --line: rgba(244, 214, 159, 0.25);
  --text: #f8efe6;
  --muted: rgba(248, 239, 230, 0.72);
  --gold: #ebc780;
  --gold-deep: #a66d2d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(244, 183, 105, 0.18), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(255, 245, 220, 0.12), transparent 20%),
    linear-gradient(180deg, #2e1f16 0%, #140e0a 28%, #0e0a08 100%);
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.22;
  z-index: 0;
}

.page-shell::before {
  top: -8rem;
  right: -9rem;
  background: rgba(245, 200, 136, 0.42);
}

.page-shell::after {
  bottom: -10rem;
  left: -10rem;
  background: rgba(155, 103, 44, 0.38);
}

.site-header,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  width: var(--content-width);
  margin: 0 auto;
  padding: 26px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  letter-spacing: 0.28em;
}

.brand-mark,
.brand-submark {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.brand-mark {
  font-size: 1.85rem;
}

.brand-submark {
  font-size: 0.88rem;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 11, 8, 0.45);
  backdrop-filter: blur(18px);
}

.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 180ms ease;
}

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

main {
  width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 56px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 40px);
  display: grid;
  align-items: end;
  padding: 44px 0 56px;
}

.hero-media {
  position: absolute;
  inset: 16px 0 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 50% 35%, rgba(237, 199, 130, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(32, 22, 16, 0.92), rgba(14, 10, 8, 0.98)),
    url("assets/images/parfum.png") center center / cover no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.95) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 6, 5, 0.18) 0%, rgba(9, 6, 5, 0.38) 35%, rgba(7, 5, 4, 0.86) 100%),
    linear-gradient(90deg, rgba(8, 5, 4, 0.68) 0%, rgba(8, 5, 4, 0.24) 46%, rgba(8, 5, 4, 0.46) 100%);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(680px, 100%);
  padding: 0 34px 34px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.product-copy h2,
.film-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  max-width: 11ch;
}

.hero-copy,
.intro-copy p,
.product-copy p,
.note-card p,
.film-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-copy {
  max-width: 54ch;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button-solid {
  background: linear-gradient(135deg, #f6dbab, #c79248 58%, #98622d);
  color: #22150e;
  box-shadow: 0 14px 30px rgba(187, 128, 57, 0.24);
}

.button-ghost {
  border-color: rgba(255, 244, 227, 0.28);
  background: rgba(255, 250, 244, 0.08);
}

.hero-card {
  width: min(320px, calc(100% - 28px));
  justify-self: end;
  margin: 0 28px 24px;
  padding: 22px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.16), rgba(255, 248, 240, 0.07)),
    rgba(17, 11, 8, 0.45);
  backdrop-filter: blur(20px);
}

.hero-card-label,
.hero-card-copy,
.hero-card-title {
  margin: 0;
}

.hero-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-card-title {
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.hero-card-copy {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

section {
  margin-top: 44px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.section-heading h2,
.product-copy h2,
.film-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 13ch;
}

.section-heading-center {
  text-align: center;
}

.section-heading-center h2 {
  margin-inline: auto;
}

.intro,
.film,
.contact-panel,
.notes,
.product-frame {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.07), rgba(255, 248, 240, 0.02)),
    rgba(14, 10, 8, 0.56);
  box-shadow: var(--shadow);
}

.intro,
.film,
.contact-panel,
.notes {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 42px);
}

.intro-copy {
  display: grid;
  gap: 10px;
}

.product {
  gap: 28px;
}

.product-frame {
  position: relative;
  border-radius: 34px;
  padding: 18px;
  overflow: hidden;
}

.product-frame::after {
  content: "";
  position: absolute;
  inset: auto auto 12px 12px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(246, 221, 174, 0.34), transparent 68%);
  pointer-events: none;
}

.product-frame img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.specs article {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 214, 159, 0.14);
  background: var(--panel);
}

.spec-label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.specs strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

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

.note-card {
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(248, 238, 224, 0.12), rgba(248, 238, 224, 0.03)),
    rgba(18, 12, 8, 0.6);
  border: 1px solid rgba(244, 214, 159, 0.18);
}

.note-index {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.note-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.film-panel {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 50% 35%, rgba(237, 199, 130, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(32, 22, 16, 0.92), rgba(14, 10, 8, 0.98));
}

.film-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #090606;
}

.contact-panel {
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(241, 197, 128, 0.18), transparent 28%),
    linear-gradient(120deg, transparent 0%, rgba(255, 245, 228, 0.03) 100%);
  pointer-events: none;
}

.contact {
  position: relative;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 28px;
}

.contact-grid > div {
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  flex: 0 1 auto;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid rgba(244, 214, 159, 0.14);
}

.contact-label {
  margin: 0 0 10px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-grid a {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
  color: #fff7dc;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .section-grid,
  .product,
  .film {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .product-copy h2,
  .film-copy h2 {
    max-width: none;
  }

  .specs,
  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .hero-media {
    inset: 8px 0 0;
    border-radius: 28px;
  }

  .hero-content {
    padding: 0 20px 20px;
  }

  .hero-card {
    justify-self: stretch;
    width: auto;
    margin: 20px;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --content-width: min(100vw - 28px, 1180px);
  }

  .hero h1 {
    font-size: clamp(2.9rem, 16vw, 4.4rem);
  }

  .intro,
  .film,
  .contact-panel,
  .notes {
    padding: 22px 18px;
  }

  .specs,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid > div {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
