:root {
  color-scheme: dark;
  --bg: #090807;
  --bg-soft: #110f0d;
  --panel: #161310;
  --panel-soft: #1f1a16;
  --accent: #d6ae67;
  --accent-soft: #efdcaf;
  --text: #f5ecdd;
  --muted: #b6a88f;
  --line: rgba(214, 174, 103, 0.24);
  --line-strong: rgba(214, 174, 103, 0.42);
  --success: #7ca38e;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
  --gutter: clamp(1rem, 4vw, 4rem);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

:where(main[id], section[id]) {
  scroll-margin-top: 160px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 174, 103, 0.14), transparent 26rem),
    radial-gradient(circle at 0% 36%, rgba(107, 73, 53, 0.2), transparent 34rem),
    linear-gradient(170deg, #080706 0%, #100d0b 45%, #16100d 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body.bag-open {
  overflow: hidden;
}

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

[data-card-href] {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

[data-card-href]:hover,
[data-card-href]:focus-within {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  outline: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 2px rgba(214, 174, 103, 0.32);
}

.announcement-bar {
  margin: 0;
  padding: 0.62rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.36);
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background: rgba(8, 7, 6, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-quick-nav {
  display: none;
}

.mobile-action-bar {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 84px;
  height: 58px;
  object-fit: contain;
  object-position: center top;
  clip-path: inset(0 0 8px 0);
  mix-blend-mode: screen;
  opacity: 0.9;
  filter:
    drop-shadow(0 2px 8px rgba(214, 174, 103, 0.2))
    saturate(0.94);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.7vw, 1.55rem);
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -0.36rem;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-soft);
}

.nav-links a[aria-current="page"] {
  color: var(--accent-soft);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-search {
  display: grid;
  grid-template-columns: minmax(160px, 220px) auto;
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.header-search input {
  min-width: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  padding: 0 0.8rem;
}

.header-search input::placeholder {
  color: rgba(182, 168, 143, 0.78);
}

.header-search button {
  border: 0;
  border-left: 1px solid var(--line);
  color: #0f0b07;
  background: linear-gradient(138deg, var(--accent-soft), var(--accent));
  padding: 0 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-button,
.filter {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0.4rem 0.8rem 0.4rem 0.9rem;
  cursor: pointer;
}

.cart-button span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  color: #0e0c09;
  background: linear-gradient(130deg, var(--accent-soft), var(--accent));
  font-size: 0.8rem;
  font-weight: 800;
}

main {
  overflow: clip;
}

.eyebrow,
.tag {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 {
  font-size: 5.4rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #0f0b07;
  background: linear-gradient(138deg, var(--accent-soft), var(--accent));
  border-color: transparent;
}

.button.ghost {
  color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.01);
}

.button.compact {
  min-height: 36px;
  padding: 0 0.9rem;
  font-size: 0.84rem;
}

.button.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 134px);
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1rem, 4vw, 4rem) 4rem;
}

.hero-copy {
  max-width: 600px;
  display: grid;
  gap: 1.2rem;
}

.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-points span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 0.7rem;
  border: 1px solid var(--line);
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 580px;
  align-items: center;
  padding-bottom: 140px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(214, 174, 103, 0.15), rgba(18, 14, 11, 0.85));
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 145px;
  height: 18px;
  content: "";
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.38), transparent 72%);
}

.hero-photo {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: min(72%, 520px);
  height: min(74%, 540px);
  max-height: 540px;
  padding: 0;
  object-fit: contain;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  filter:
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.48))
    saturate(1.04)
    contrast(1.03);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-photo.loaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-photo.bg-softened {
  max-width: min(62%, 440px);
}

.hero-photo.bg-blended {
  max-width: min(64%, 460px);
  mix-blend-mode: multiply;
  filter:
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.5))
    brightness(1.08)
    saturate(1.08)
    contrast(1.08);
}



.hero-feature-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.38rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(10, 8, 7, 0.76);
  backdrop-filter: blur(8px);
}

.hero-feature-card .tag {
  font-size: 0.66rem;
}

.hero-feature-card h3 {
  font-size: 1.2rem;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
}

.hero-feature-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.hero-feature-card strong {
  color: var(--accent-soft);
  font-size: 1rem;
}

.section-intro,
.category-shop,
.scent-guide,
.brand-showcase,
.featured-section,
.exclusive-section,
.ritual,
.consultation,
.trust-strip,
.service-pillars,
.site-footer {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.section-head {
  display: grid;
  gap: 0.75rem;
  max-width: 780px;
}

.section-head h2 {
  max-width: 16ch;
}

.featured-section {
  display: grid;
  gap: 1.8rem;
}

.exclusive-section {
  display: grid;
  gap: 1.8rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(214, 174, 103, 0.1), rgba(0, 0, 0, 0.06)),
    rgba(255, 255, 255, 0.01);
}

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

.featured-card {
  display: grid;
  grid-template-rows: 220px auto auto;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.15));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.featured-art {
  min-height: 220px;
}

.featured-copy {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
}

.featured-copy h3 {
  font-size: 1.05rem;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.35;
}

.featured-copy p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.95rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

.featured-meta strong {
  color: var(--accent-soft);
  font-size: 0.95rem;
}
