/* Site Header — fixed overlay on hero */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(198, 164, 106, 0.28) 50%, transparent 95%);
  pointer-events: none;
}

/* Announcement Bar */
.announcement-bar {
  background: rgba(7, 7, 7, calc(0.92 + var(--header-opacity) * 0.08));
  border-bottom: 1px solid rgba(198, 164, 106, 0.28);
  padding: 10px var(--section-padding-x) 12px;
  text-align: center;
}

.announcement-bar p {
  font-size: var(--type-caption);
  letter-spacing: clamp(1.2px, 0.25vw, 2.2px);
  text-transform: uppercase;
  color: var(--color-gold-dust);
  font-weight: var(--weight-medium);
  line-height: 1.4;
  max-width: 100%;
  margin: 0 auto;
}

/* Header */
.header {
  position: relative;
  overflow: visible;
  background: rgba(7, 7, 7, var(--header-opacity));
  backdrop-filter: blur(calc(12px * var(--header-opacity)));
  -webkit-backdrop-filter: blur(calc(12px * var(--header-opacity)));
  border-bottom: 1px solid rgba(110, 87, 54, calc(var(--header-opacity) * 0.3));
}

.header.header--solid {
  background: rgba(7, 7, 7, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(110, 87, 54, 0.3);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 14px var(--section-padding-x);
  min-height: 80px;
  column-gap: 16px;
}

.header__nav-left,
.header__nav-right,
.header__divider,
.header__dropdown {
  display: none;
}

.header__logo {
  grid-column: 1;
  justify-self: start;
  text-align: left;
}

.header__logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.header__logo-title {
  font-family: var(--font-logo);
  font-size: clamp(32px, 4vw, 38px);
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  color: var(--color-gold);
  text-transform: none;
  direction: rtl;
  line-height: 1;
  text-align: left;
}

.header__logo-tagline {
  font-size: var(--type-header-tagline);
  letter-spacing: clamp(2px, 0.3vw, 2.8px);
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.85);
  line-height: 1.2;
  text-align: left;
}

.header__right {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.header__utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

/* Desktop header — 3-column grid, logo truly centered */
@media (min-width: 1400px) {
  .header__inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px var(--section-padding-x) 12px;
    min-height: 88px;
    column-gap: clamp(24px, 2.5vw, 48px);
  }

  .header__nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(28px, 2.8vw, 40px);
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .header__logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }

  .header__logo a {
    align-items: center;
    gap: 6px;
  }

  .header__logo-title {
    font-size: clamp(40px, 3vw, 46px);
    line-height: 1;
    text-align: center;
  }

  .header__logo-tagline {
    font-size: var(--type-header-tagline);
    letter-spacing: 2.6px;
    line-height: 1.2;
    text-align: center;
  }

  .header__right {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(16px, 1.6vw, 36px);
    min-width: 0;
  }

  .header__nav-right {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(16px, 1.6vw, 36px);
    flex-shrink: 0;
  }

  .header__divider {
    display: block;
    flex-shrink: 0;
    width: 1px;
    height: 12px;
    background: rgba(198, 164, 106, 0.45);
  }

  .header__dropdown {
    display: block;
    position: relative;
    flex-shrink: 0;
  }

  .header__nav a,
  .header__nav-link {
    font-size: var(--type-nav);
    font-weight: var(--weight-regular);
    letter-spacing: clamp(1.2px, 0.12vw, 1.8px);
    line-height: 1;
    text-transform: uppercase;
    color: rgba(247, 245, 241, 0.9);
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--transition-fast);
  }

  .header__utilities {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .header__hamburger {
    display: none;
  }
}

@media (min-width: 1400px) and (max-width: 1519px) {
  .header__inner {
    column-gap: clamp(14px, 1.2vw, 24px);
  }

  .header__nav-left {
    gap: clamp(14px, 1.2vw, 24px);
  }

  .header__right,
  .header__nav-right {
    gap: clamp(10px, 0.9vw, 18px);
  }

  .header__nav a,
  .header__nav-link {
    font-size: var(--type-nav);
    letter-spacing: clamp(1px, 0.1vw, 1.4px);
  }

  .header__utilities {
    gap: 6px;
  }
}

.header__nav a::after,
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-medium);
}

.header__nav a:hover,
.header__nav-link:hover,
.header__dropdown.is-open .header__dropdown-trigger {
  color: var(--color-ivory);
}

.header__nav a:hover::after,
.header__nav-link:hover::after,
.header__dropdown.is-open .header__dropdown-trigger::after {
  width: 100%;
}

.header__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}

.header__dropdown-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.header__dropdown.is-open .header__dropdown-chevron,
.header__dropdown:hover .header__dropdown-chevron,
.header__dropdown:focus-within .header__dropdown-chevron {
  transform: rotate(180deg);
}

.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 188px;
  padding: 8px 0;
  background: rgba(7, 7, 7, 0.98);
  border: 1px solid rgba(198, 164, 106, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition-medium), visibility var(--transition-medium), transform var(--transition-medium);
  z-index: calc(var(--z-header) + 2);
  pointer-events: none;
}

.header__dropdown.is-open .header__dropdown-menu,
.header__dropdown:hover .header__dropdown-menu,
.header__dropdown:focus-within .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__dropdown-menu a {
  display: block;
  padding: 11px 24px;
  font-size: var(--type-nav);
  letter-spacing: clamp(1.2px, 0.12vw, 1.8px);
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.85);
  white-space: nowrap;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.header__dropdown-menu a::after {
  display: none;
}

.header__dropdown-menu a:hover {
  color: var(--color-gold);
  background: rgba(198, 164, 106, 0.08);
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-gold);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 7, 0.98);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__close {
  position: absolute;
  top: max(20px, env(safe-area-inset-top));
  right: max(20px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  border: 1px solid rgba(198, 164, 106, 0.35);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.6);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.mobile-nav__close:hover {
  border-color: var(--color-gold);
  background: rgba(198, 164, 106, 0.12);
}

.mobile-nav__close svg {
  width: 22px;
  height: 22px;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--section-padding-x) 40px;
  max-height: 100%;
  overflow-y: auto;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-ivory);
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--color-gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 0;
}

.hero__slide.active {
  opacity: 1;
  z-index: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.hero__slide.active .hero__video {
  transform: scale(1);
}

.hero__carousel-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 3;
}

.hero__carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(198, 164, 106, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background: rgba(7, 7, 7, 0.55);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.hero__carousel-btn:hover {
  border-color: var(--color-gold);
  background: rgba(198, 164, 106, 0.18);
  transform: scale(1.05);
}

.hero__carousel-btn svg {
  width: 20px;
  height: 20px;
}

.hero__carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__carousel-dot {
  width: 28px;
  height: 2px;
  background: rgba(198, 164, 106, 0.25);
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: background var(--transition-medium), width var(--transition-medium), opacity var(--transition-medium);
  padding: 0;
}

.hero__carousel-dot:hover {
  background: rgba(198, 164, 106, 0.5);
}

.hero__carousel-dot.active {
  background: var(--color-gold);
  width: 40px;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.hero__slide .hero__bg-image {
  opacity: 0.3;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 55% 45% at 50% 55%, rgba(198, 164, 106, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse at 60% 50%, rgba(198, 164, 106, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.35) 0%, rgba(7, 7, 7, 0.55) 45%, var(--color-black) 100%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-gold-dust);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.8; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.4; transform: translateY(-80px) scale(0.5); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.5fr;
  align-items: center;
  width: 100%;
  padding: var(--page-top-offset) var(--section-padding-x) 100px;
  gap: 32px;
}

.hero__content {
  grid-column: 1;
  max-width: 520px;
}

.hero__label {
  margin-bottom: 24px;
}

.hero__title {
  margin-bottom: 28px;
  max-width: 480px;
  letter-spacing: -0.5px;
}

.hero__title span {
  display: block;
  line-height: 1.02;
}

.hero__description {
  font-size: var(--text-small);
  color: var(--color-ivory-muted);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero__bottle {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__bottle-frame {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(198, 164, 106, 0.4);
  background: linear-gradient(160deg, rgba(198, 164, 106, 0.07) 0%, rgba(7, 7, 7, 0.2) 100%);
  box-shadow:
    0 0 80px rgba(198, 164, 106, 0.15),
    inset 0 0 50px rgba(198, 164, 106, 0.04);
}

.hero__bottle-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(198, 164, 106, 0.28) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero__bottle img {
  position: relative;
  z-index: 1;
  max-height: 580px;
  width: auto;
  filter: drop-shadow(0 24px 70px rgba(198, 164, 106, 0.35));
  animation: bottle-rotate 12s ease-in-out infinite;
}

@keyframes bottle-rotate {
  0%, 100% { transform: rotateY(-5deg); }
  50% { transform: rotateY(5deg); }
}

.hero__arabic {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 40px;
  pointer-events: none;
}

.hero__arabic-calligraphy {
  font-family: var(--font-arabic);
  font-size: var(--type-h2);
  color: var(--color-gold);
  opacity: 0.18;
  line-height: 1.2;
  filter: blur(0.3px);
}

/* Collections */
.collections-heading {
  text-align: center;
  margin-bottom: 56px;
}

.collections-heading__eyebrow {
  margin-bottom: 14px;
}

.collections-heading__title {
  font-family: var(--font-heading);
  font-size: var(--type-h2);
  font-weight: var(--weight-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: 100%;
}

/* Best Sellers */
.bestsellers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);
}

/* Signature */
.signature {
  padding: 0;
}

.signature__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 500px;
}

.signature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--section-padding-x);
  background: var(--color-black);
}

.signature__content h2 {
  font-size: var(--text-h2);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.signature__content p {
  font-size: var(--text-small);
  color: var(--color-ivory-muted);
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.signature__image {
  position: relative;
  overflow: hidden;
}

.signature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-black) 0%, transparent 30%);
  z-index: 1;
}

/* House */
.house {
  position: relative;
  overflow: hidden;
}

.house__grid {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
  width: 100%;
}

.house__visual {
  position: relative;
}

.house__visual-media {
  position: relative;
  aspect-ratio: 3 / 4.1;
  overflow: hidden;
  max-height: 640px;
}

.house__visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.house__visual-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 72%, rgba(7, 7, 7, 0.45) 100%),
    linear-gradient(180deg, transparent 70%, rgba(7, 7, 7, 0.55) 100%);
  pointer-events: none;
}

.house__watch {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: translate(-50%, -50%);
  color: var(--color-ivory);
  text-align: center;
}

.house__watch-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 7, 7, 0.55);
  backdrop-filter: blur(8px);
  color: var(--color-ivory);
  transition: transform var(--transition-medium), background var(--transition-medium);
}

.house__watch-ring svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.house__watch-text {
  font-size: var(--type-caption);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-ivory);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.house__watch:hover .house__watch-ring {
  transform: scale(1.06);
  background: rgba(7, 7, 7, 0.72);
}

.house__watch:hover .house__watch-text {
  opacity: 1;
  transform: translateY(0);
}

.house__body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.house__eyebrow {
  margin-bottom: 20px;
}

.house__title {
  font-size: var(--type-h1);
  line-height: 1.02;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  color: var(--color-ivory);
}

.house__title span {
  display: block;
}

.house__text {
  font-family: var(--font-heading);
  font-size: var(--type-body-sm);
  font-style: italic;
  line-height: 1.75;
  color: rgba(247, 245, 241, 0.78);
  margin-bottom: 36px;
}

.house__cta {
  padding: 16px 48px;
  letter-spacing: 3px;
}

.house__values {
  padding-top: 8px;
  border-left: 1px solid rgba(247, 245, 241, 0.12);
  padding-left: clamp(20px, 2.5vw, 36px);
}

.house__pillar {
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 245, 241, 0.08);
}

.house__pillar:first-child {
  padding-top: 0;
}

.house__pillar:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.house__pillar-title {
  font-family: var(--font-heading);
  font-size: var(--type-h3);
  font-weight: var(--weight-light);
  letter-spacing: 0.5px;
  color: var(--color-ivory);
  margin-bottom: 8px;
}

.house__pillar-mark {
  color: var(--color-gold);
  font-size: 14px;
  margin-right: 8px;
}

.house__pillar-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-ivory-muted);
}

/* Legacy house video aliases */
.house__video {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.house__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-medium);
}

.house__video:hover .house__video-overlay {
  background: rgba(7, 7, 7, 0.2);
}

.house__play-btn {
  width: 72px;
  height: 72px;
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: transform var(--transition-medium), background var(--transition-medium);
}

.house__video:hover .house__play-btn {
  transform: scale(1.1);
  background: rgba(198, 164, 106, 0.1);
}

.house__play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.house__content h2 {
  font-size: var(--text-h2);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.house__content p {
  font-size: var(--text-small);
  color: var(--color-ivory-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Fragrances */
.fragrances__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--grid-gap);
}

.fragrances__grid .product-card.hidden {
  display: none;
}

/* Journal */
.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

/* Footer */
.footer {
  position: relative;
  padding: 0 0 32px;
  background: #050505;
  overflow: hidden;
}

.footer__arch {
  color: var(--color-black);
  line-height: 0;
  margin-top: -1px;
}

.footer__arch svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer__floral-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 30% 20% at 8% 15%, rgba(198, 164, 106, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 25% 18% at 92% 20%, rgba(198, 164, 106, 0.03) 0%, transparent 70%);
}

.footer__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: rgba(198, 164, 106, 0.22);
  overflow: hidden;
}

.footer__deco-guilloche {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(120px, 18vw, 220px);
  opacity: 0.55;
}

.footer__deco-molecule {
  position: absolute;
  width: clamp(48px, 5vw, 80px);
  height: auto;
  opacity: 0.35;
}

.footer__deco-molecule--1 {
  top: 12%;
  left: 18%;
}

.footer__deco-molecule--2 {
  top: 8%;
  right: 22%;
}

.footer__deco-molecule--3 {
  top: 16%;
  left: 48%;
}

.footer__deco-dots {
  position: absolute;
  top: 10%;
  left: 4%;
  width: 120px;
  height: 100px;
  background:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(232, 213, 162, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 55%, rgba(198, 164, 106, 0.55) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 20%, rgba(232, 213, 162, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 68%, rgba(198, 164, 106, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 35%, rgba(232, 213, 162, 0.45) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 80%, rgba(198, 164, 106, 0.5) 0%, transparent 100%);
  opacity: 0.8;
}

.footer__deco-mark {
  position: absolute;
  bottom: 88px;
  left: clamp(16px, 3vw, 48px);
  width: 28px;
  height: 28px;
  opacity: 0.3;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer__floral-bg::before {
  content: '';
  position: absolute;
  inset: 80px 0 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 119px,
      rgba(110, 87, 54, 0.04) 119px,
      rgba(110, 87, 54, 0.04) 120px
    );
  mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 70%, transparent 100%);
}

#fragrances.section {
  padding-bottom: clamp(24px, 3vw, 40px);
}

.footer__farewell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 40px) 0 clamp(40px, 5vw, 52px);
  text-align: center;
}

.footer__farewell-inner {
  position: relative;
  max-width: 680px;
  padding: 0 var(--space-md);
}

.footer__farewell-inner::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(198, 164, 106, 0.45), transparent);
}

.footer__farewell-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer__farewell-eyebrow-line {
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 164, 106, 0.55), transparent);
}

.footer__farewell-label {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0;
}

.footer__farewell-calligraphy {
  font-family: var(--font-arabic);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: var(--weight-regular);
  color: var(--color-gold-dust);
  margin-bottom: 24px;
  line-height: 1.35;
  text-shadow: 0 2px 24px rgba(198, 164, 106, 0.18);
}

.footer__farewell-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.footer__farewell-divider span:first-child,
.footer__farewell-divider span:last-child {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 164, 106, 0.4), transparent);
}

.footer__farewell-diamond {
  flex-shrink: 0;
  font-size: var(--type-micro);
  color: var(--color-gold);
  opacity: 0.7;
  line-height: 1;
}

.footer__farewell-text {
  margin: 0;
  padding: 0;
  border: none;
}

.footer__farewell-text p {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.2vw, 20px);
  font-style: italic;
  font-weight: var(--weight-light);
  line-height: 1.75;
  color: var(--color-ivory-muted);
  letter-spacing: 0.4px;
  margin: 0;
}

.footer__crest {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  perspective: 1000px;
}

.footer__crest-card {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1.75 / 1;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(232, 213, 162, 0.55) 0%,
    rgba(198, 164, 106, 0.25) 25%,
    rgba(80, 65, 42, 0.4) 50%,
    rgba(198, 164, 106, 0.3) 75%,
    rgba(232, 213, 162, 0.5) 100%
  );
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(198, 164, 106, 0.08);
  transform: rotateX(3deg);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.footer__crest-card:hover {
  transform: rotateX(0deg) translateY(-6px);
  box-shadow:
    0 40px 72px rgba(0, 0, 0, 0.6),
    0 16px 36px rgba(198, 164, 106, 0.08),
    0 0 0 1px rgba(232, 213, 162, 0.15);
}

.footer__crest-card-foil {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    125deg,
    rgba(232, 213, 162, 0.12) 0%,
    transparent 30%,
    transparent 70%,
    rgba(198, 164, 106, 0.1) 100%
  );
  pointer-events: none;
  z-index: 4;
  opacity: 0.8;
}

.footer__crest-card-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 28px clamp(28px, 4vw, 52px);
  border-radius: 11px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(198, 164, 106, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(110, 87, 54, 0.08) 0%, transparent 55%),
    linear-gradient(165deg, #141210 0%, #080807 45%, #0e0d0b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -3px 12px rgba(0, 0, 0, 0.45),
    inset 0 0 80px rgba(0, 0, 0, 0.25);
}

.footer__crest-card-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(198, 164, 106, 0.008) 3px,
      rgba(198, 164, 106, 0.008) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(198, 164, 106, 0.006) 3px,
      rgba(198, 164, 106, 0.006) 4px
    );
  pointer-events: none;
  opacity: 0.9;
}

.footer__crest-card-shine {
  position: absolute;
  top: -60%;
  left: -30%;
  width: 160%;
  height: 220%;
  background: linear-gradient(
    108deg,
    transparent 42%,
    rgba(255, 255, 255, 0.02) 47%,
    rgba(232, 213, 162, 0.06) 50%,
    rgba(255, 255, 255, 0.02) 53%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 1;
}

.footer__crest-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.45;
}

.footer__crest-corner::before,
.footer__crest-corner::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
}

.footer__crest-corner--tl {
  top: 14px;
  left: 14px;
}

.footer__crest-corner--tl::before {
  top: 0;
  left: 0;
  width: 18px;
  height: 1px;
}

.footer__crest-corner--tl::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 18px;
}

.footer__crest-corner--tr {
  top: 14px;
  right: 14px;
}

.footer__crest-corner--tr::before {
  top: 0;
  right: 0;
  width: 18px;
  height: 1px;
}

.footer__crest-corner--tr::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 18px;
}

.footer__crest-corner--bl {
  bottom: 14px;
  left: 14px;
}

.footer__crest-corner--bl::before {
  bottom: 0;
  left: 0;
  width: 18px;
  height: 1px;
}

.footer__crest-corner--bl::after {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 18px;
}

.footer__crest-corner--br {
  bottom: 14px;
  right: 14px;
}

.footer__crest-corner--br::before {
  bottom: 0;
  right: 0;
  width: 18px;
  height: 1px;
}

.footer__crest-corner--br::after {
  bottom: 0;
  right: 0;
  width: 1px;
  height: 18px;
}

.footer__crest-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  text-align: center;
}

.footer__crest-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.footer__crest-brand-mark {
  font-family: var(--font-logo);
  font-size: 20px;
  color: var(--color-gold);
  direction: rtl;
  line-height: 1;
  opacity: 0.9;
  text-shadow: 0 0 24px rgba(198, 164, 106, 0.2);
}

.footer__crest-brand-en {
  font-family: var(--font-body);
  font-size: var(--type-micro);
  font-weight: var(--weight-medium);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.35);
}

.footer__crest-tier {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: var(--weight-light);
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.15;
  color: var(--color-ivory);
  text-shadow: 0 1px 20px rgba(198, 164, 106, 0.12);
}

.footer__crest-privileges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin: 0 0 16px;
  padding: 0 4px;
}

.footer__crest-privilege-line {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  text-align: center;
  color: rgba(198, 164, 106, 0.72);
  line-height: 1.35;
}

.footer__crest-privilege-line--1 {
  font-size: var(--type-caption);
  letter-spacing: 1.8px;
  max-width: 100%;
}

.footer__crest-privilege-line--2 {
  font-size: var(--type-caption);
  letter-spacing: 2.6px;
  max-width: 58%;
}

.footer__crest-privilege-line--3 {
  font-size: var(--type-micro);
  letter-spacing: 3.4px;
  max-width: 38%;
}

.footer__crest-heritage {
  font-family: var(--font-body);
  font-size: var(--type-micro);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.22);
}

.footer__body {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(280px, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 0;
  border-bottom: none;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  position: relative;
}

.footer__links::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(198, 164, 106, 0.12) 20%, rgba(198, 164, 106, 0.12) 80%, transparent);
  pointer-events: none;
}

.footer__links::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(198, 164, 106, 0.12) 20%, rgba(198, 164, 106, 0.12) 80%, transparent);
  pointer-events: none;
}

.footer__column {
  position: relative;
  padding-top: 4px;
}

.footer__column:nth-child(2)::before,
.footer__column:nth-child(3)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(-1 * clamp(12px, 1.5vw, 24px));
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(198, 164, 106, 0.1) 25%, rgba(198, 164, 106, 0.1) 75%, transparent);
  pointer-events: none;
}

.footer__column-head {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  cursor: default;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(198, 164, 106, 0.2);
}

.footer__column-head::-webkit-details-marker {
  display: none;
}

.footer__column-head::marker {
  content: '';
}

.footer__column h4 {
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0;
  flex: 1;
}

.footer__column-num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  color: var(--color-gold);
  opacity: 0.45;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
}

.footer__column-chevron {
  display: none;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.6;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__column ul li {
  margin-bottom: 11px;
}

.footer__column ul li:last-child {
  margin-bottom: 0;
}

.footer__column a {
  font-size: var(--text-small);
  color: var(--color-ivory-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer__column a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
  opacity: 0.6;
}

.footer__column a:hover {
  color: var(--color-gold-dust);
  padding-left: 14px;
}

.footer__column a:hover::before {
  width: 8px;
}

.footer__newsletter {
  position: relative;
  overflow: hidden;
  align-self: start;
}

.footer__newsletter-dust {
  display: none;
}

.footer__newsletter-dust::after {
  display: none;
}

.footer__newsletter-frame {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  border: 1px solid rgba(184, 149, 106, 0.65);
  border-radius: 2px;
  background:
    linear-gradient(135deg, #d4b87a 0%, #e8d5a2 28%, #c6a46a 62%, #b8956a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.footer__newsletter-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.footer__newsletter-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--type-caption);
  font-weight: var(--weight-medium);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(12, 10, 8, 0.75);
  margin-bottom: 10px;
}

.footer__newsletter h3 {
  font-family: var(--font-heading);
  font-size: var(--type-h3);
  font-weight: var(--weight-regular);
  letter-spacing: 0.5px;
  color: #0c0a08;
  margin-bottom: 12px;
  line-height: 1.15;
}

.footer__newsletter-desc {
  font-size: var(--text-small);
  color: rgba(12, 10, 8, 0.72);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer__newsletter-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(198, 164, 106, 0.7);
  border-radius: 999px;
  background: #1a1816;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.footer__newsletter-form:focus-within {
  border-color: var(--color-gold);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(232, 213, 162, 0.2);
}

.footer__newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  font-size: var(--text-small);
  color: var(--color-ivory);
  background: transparent;
}

.footer__newsletter-form input::placeholder {
  color: rgba(247, 245, 241, 0.42);
}

.footer__newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: 4px;
  padding: 0;
  color: var(--color-gold);
  border-radius: 50%;
  border: none;
  background: transparent;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer__newsletter-form button:hover {
  background: rgba(198, 164, 106, 0.15);
  color: var(--color-gold-dust);
}

.footer__bar {
  position: relative;
  padding-top: 32px;
}

.footer__bar-rule {
  height: 1px;
  margin-bottom: 32px;
  background: linear-gradient(90deg, transparent, rgba(198, 164, 106, 0.45) 20%, rgba(198, 164, 106, 0.45) 80%, transparent);
}

.footer__bar-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer__bar-brand {
  text-align: center;
  justify-self: center;
  grid-column: 1 / -1;
}

.footer__bar-name {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: var(--weight-regular);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.2;
}

.footer__bar-tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-caption);
  font-weight: var(--weight-medium);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(198, 164, 106, 0.55);
}

.footer__bar-socials {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

.footer__bar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-gold);
  opacity: 0.75;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer__bar-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer__bar-socials svg {
  width: 18px;
  height: 18px;
}

.footer__bar-legal {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(110, 87, 54, 0.15);
}

.footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: var(--text-caption);
  color: var(--color-ivory-muted);
}

.footer__legal-sep {
  color: rgba(198, 164, 106, 0.35);
  font-size: var(--type-micro);
}

.footer__legal a {
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--color-gold);
}

.footer__copyright {
  font-size: var(--text-caption);
  color: rgba(247, 245, 241, 0.45);
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

/* Footer — desktop accordion disabled */
@media (min-width: 768px) {
  .footer__column-head {
    pointer-events: none;
  }

  .footer__column-chevron {
    display: none;
  }

  .footer__bar-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .footer__bar-brand {
    grid-column: 2;
    grid-row: 1;
  }

  .footer__bar-socials {
    grid-column: 3;
    grid-row: 1;
  }
}

/* Footer — large desktop */
@media (min-width: 1400px) {
  .footer__crest-card {
    width: min(100%, 560px);
  }

  .footer__crest-card-inner {
    padding: 32px 48px;
  }

  .footer__crest-tier {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .footer__crest-privileges {
    gap: 6px;
    margin-bottom: 18px;
  }

  .footer__crest-privilege-line--1 {
    letter-spacing: 2px;
  }

  .footer__crest-privilege-line--2 {
    max-width: 52%;
    letter-spacing: 2.8px;
  }

  .footer__crest-privilege-line--3 {
    max-width: 34%;
    letter-spacing: 3.6px;
  }

  .footer__body {
    grid-template-columns: minmax(0, 1.85fr) minmax(300px, 1fr);
    gap: 64px;
  }

  .footer__links {
    gap: 40px;
  }
}

/* Cursor Particles */
.cursor-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
}

.cursor-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold-dust);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
