/* ============================================================
   AKSEN — Extrait de Parfum
   Design: Editorial, minimal, light theme
   Font: Montserrat 300/400/500
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:     #FAFAF8;
  --text:   #1A1A1A;
  --beige:  #F0EDE8;
  --gray-1: #999999;
  --gray-2: #BBBBBB;
  --gray-3: #CCCCCC;
  --dark:   #1A1A1A;
  --font:   'Montserrat', sans-serif;
  --nav-h:  120px; /* logo 40px + 40px clear-space top + 40px clear-space bottom */
  --max-w:  1280px;
  --pad:    56px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); }

/* ── TYPOGRAPHY ── */

h1, h2, h3, h4 {
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

p {
  font-weight: 400;
}

.label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-1);
}

.label-light {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.35);
}

/* ── LAYOUT ── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   HAMBURGER + MOBILE OVERLAY
   ============================================================ */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 201;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* White hamburger on dark-nav pages before scroll */
body.dark-nav #nav:not(.past-dark) .hamburger span { background: #FAFAF8; }

/* Morph to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Compact dropdown — appears just below the navbar */
.nav-overlay {
  position: fixed;
  top: 0;          /* JS sets padding-top = nav.offsetHeight on open */
  left: 0;
  right: 0;
  height: auto;
  background: var(--bg);
  z-index: 199;    /* nav sits on top at z-index 200 */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-bottom: 1px solid var(--gray-3);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  padding: 4px var(--pad) 12px;
}

.nav-overlay-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 13px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-3);
  transition: opacity 0.2s;
  display: block;
  text-transform: uppercase;
}

.nav-overlay-links a:last-child {
  border-bottom: none;
}

.nav-overlay-links a:hover { opacity: 0.4; }

.nav-overlay-meta { display: none; }

/* ── NAV ── */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* No fixed height — auto-sizes from padding + logo, JS drives both */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px var(--pad); /* JS overrides top/bottom on scroll */
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  /* No padding transition — JS animates it scroll-driven (no CSS lag) */
  transition: border-color 0.4s ease, background 0.4s ease;
}

#nav.scrolled {
  border-bottom-color: var(--gray-3);
}

/* Dark-start nav (The Distance page) */
body.dark-nav #nav {
  background: transparent;
}

body.dark-nav #nav .nav-links a {
  color: rgba(250, 250, 248, 0.8);
}

body.dark-nav #nav.past-dark {
  background: var(--bg);
}

body.dark-nav #nav.past-dark .nav-links a {
  color: var(--gray-1);
}

body.dark-nav #nav.past-dark .nav-links a:hover {
  color: var(--text);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.7;
}

/* Tight-crop EPS PNG — clear space rule: padding = 1× logo height */
.nav-logo-img {
  height: 40px; /* JS overrides this on scroll */
  width: auto;
  max-width: 45vw; /* prevent overflow on very narrow screens */
  display: block;
  will-change: height;
  transition: opacity 0.3s;
}

/* Dual logo: dark default, light on dark-nav pages */
.logo-light { display: none; }

body.dark-nav #nav:not(.past-dark) .logo-dark  { display: none; }
body.dark-nav #nav:not(.past-dark) .logo-light { display: block; }

.nav-links {
  display: flex;
  gap: 40px;
}

/* ── Mobile: hamburger replaces nav links ── */
@media (max-width: 768px) {
  .nav-links  { display: none !important; }
  .hamburger  { display: flex; }
}

.nav-links a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-1);
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

/* ── SCROLL REVEAL ── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }
.reveal-delay-5 { transition-delay: 0.56s; }

/* Word-by-word text reveal */
/* The container is always visible; individual words do the revealing */
[data-words] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

[data-words] .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-words].visible .word {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ── */

.hero {
  height: 100svh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) 88px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: clamp(1.75rem, 6vw, 5.25rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 820px;
  margin: 18px 0 28px;
  color: var(--text);
}

.hero-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-2);
}

@keyframes blink-arrow {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

.hero-scroll-indicator {
  display: block;
  margin-top: 28px;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-scroll-indicator.visible {
  opacity: 1;
}

.scroll-arrow {
  font-size: 1.5rem;
  line-height: 1;
  color: #FAFAF8;
  animation: blink-arrow 2.4s ease-in-out infinite;
  user-select: none;
}

/* ── PRODUCTS PREVIEW (homepage) ── */

.products-preview {
  padding: 160px 0 140px;
}

.section-header {
  margin-bottom: 72px;
}

.section-intro {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--gray-1);
  margin-top: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.product-card {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.product-card-image {
  aspect-ratio: 3 / 4;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.product-card-image-inner {
  position: absolute;
  inset: -8% 0;
  height: 116%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transition: background 0.4s ease;
}

.product-card:hover .product-card-photo {
  transform: scale(1.03);
  transition: transform 0.7s ease;
}

.product-card-photo {
  transition: transform 0.7s ease;
}

.product-placeholder-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-3);
  user-select: none;
}

.product-card-body {
  padding: 22px var(--pad) 0;
}

.product-card-name {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
}

.product-card-tagline {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray-1);
  margin-top: 5px;
  line-height: 1.5;
}

/* ── MARQUEE ── */

.marquee-strip {
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
  padding: 14px 0;
  overflow: hidden;
  background: var(--bg);
  user-select: none;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-2);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── DISTANCE FEATURE (dark section on homepage) ── */

.distance-feature {
  background: var(--dark);
  color: #FAFAF8;
  padding: 140px var(--pad) 160px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -48px 80px rgba(0,0,0,0.22);
}

.distance-headline {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 720px;
  color: #FAFAF8;
  margin: 22px 0 80px;
}

.distance-sub {
  font-size: 0.9375rem;
  color: rgba(250,250,248,0.45);
  max-width: 400px;
  line-height: 1.8;
  margin-top: -56px;
  margin-bottom: 80px;
}

.distance-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 64px;
  margin-bottom: 80px;
}

.distance-step-num {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.distance-step-title {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #FAFAF8;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.distance-step-desc {
  font-size: 0.8125rem;
  color: rgba(250,250,248,0.4);
  line-height: 1.75;
}

.distance-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FAFAF8;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 6px;
  transition: gap 0.3s ease, border-color 0.3s ease;
}

.distance-cta:hover {
  gap: 24px;
  border-color: rgba(255,255,255,0.7);
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.distance-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* ── FOOTER ── */

footer {
  padding: 80px var(--pad) 64px;
  border-top: 1px solid var(--gray-3);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 72px;
}

.footer-logo {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--gray-1);
  font-weight: 400;
}

.footer-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.footer-nav a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-1);
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--gray-3);
}

.footer-bottom p {
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--gray-2);
  letter-spacing: 0.08em;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

.page-header {
  padding: calc(var(--nav-h) + 120px) var(--pad) 96px;
  border-bottom: 1px solid var(--gray-3);
}

.page-header-inner {
  max-width: 700px;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-top: 16px;
}

.page-intro {
  font-size: 0.9375rem;
  color: var(--gray-1);
  margin-top: 20px;
  line-height: 1.8;
  max-width: 440px;
}

/* Individual product sections */
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 84vh;
  border-bottom: 1px solid var(--gray-3);
}

.product-section.reverse {
  direction: rtl;
}

.product-section.reverse > * {
  direction: ltr;
}

.product-section-image {
  background: var(--beige);
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.product-section-image-inner {
  position: absolute;
  inset: -8% 0;
  height: 116%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.product-section-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--gray-3);
}

.product-section.reverse .product-section-content {
  border-left: none;
  border-right: 1px solid var(--gray-3);
}

.product-number {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 24px;
}

.product-name-large {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 10px;
}

.product-tagline-italic {
  font-size: 0.9375rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gray-1);
  margin-bottom: 40px;
  line-height: 1.5;
}

.product-desc {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #555555;
  max-width: 400px;
  margin-bottom: 40px;
  font-weight: 400;
}

.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 52px;
}

.note-tag {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-1);
  border: 1px solid var(--gray-3);
  padding: 7px 14px;
  transition: border-color 0.25s, color 0.25s;
}

.note-tag:hover {
  border-color: var(--gray-2);
  color: var(--text);
}

.product-meta {
  font-size: 0.6875rem;
  color: var(--gray-2);
  margin-bottom: 48px;
  letter-spacing: 0.06em;
}

.light-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--gray-3);
  padding-bottom: 7px;
  transition: gap 0.3s ease, border-color 0.3s ease;
  width: fit-content;
}

.light-cta:hover {
  gap: 20px;
  border-color: var(--text);
}

.light-cta .cta-arrow {
  transition: transform 0.3s ease;
}

.light-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* ============================================================
   THE DISTANCE PAGE
   ============================================================ */

.distance-page-hero {
  background: var(--dark);
  color: #FAFAF8;
  padding: calc(var(--nav-h) + 140px) var(--pad) 140px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.distance-page-headline {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.07;
  max-width: 800px;
  color: #FAFAF8;
  margin: 24px 0 20px;
}

.distance-page-sub {
  font-size: 0.9375rem;
  color: rgba(250,250,248,0.45);
  max-width: 480px;
  line-height: 1.85;
}

.distance-narrative {
  padding: 120px var(--pad) 80px;
  max-width: 900px;
}

.distance-narrative p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: #4a4a4a;
  margin-bottom: 20px;
  font-weight: 400;
}

.distance-narrative strong {
  font-weight: 400;
  color: var(--text);
}

.distance-divider {
  width: 40px;
  height: 1px;
  background: var(--gray-3);
  margin: 56px 0;
}

/* Order form */
.order-section {
  padding: 0 var(--pad) 160px;
  max-width: 960px;
}

.order-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 72px;
}

.form-block {
  margin-bottom: 56px;
}

.form-block-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 20px;
}

/* Scent selector */
.scent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.scent-option {
  cursor: pointer;
  position: relative;
  display: block;
}

.scent-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scent-option-body {
  background: var(--beige);
  padding: 28px 24px;
  transition: background 0.3s ease;
  user-select: none;
}

.scent-option:hover .scent-option-body {
  background: #e7e3dd;
}

.scent-option input:checked + .scent-option-body {
  background: var(--text);
}

.scent-option-name {
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 5px;
  transition: color 0.3s;
}

.scent-option-hint {
  font-size: 0.6875rem;
  color: var(--gray-1);
  transition: color 0.3s;
}

.scent-option input:checked + .scent-option-body .scent-option-name {
  color: #FAFAF8;
}

.scent-option input:checked + .scent-option-body .scent-option-hint {
  color: rgba(250,250,248,0.4);
}

.scent-limit-note {
  font-size: 0.6875rem;
  color: var(--gray-2);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* Form inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.field-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 10px;
}

.field-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-3);
  padding: 10px 0 12px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}

.field-input::placeholder {
  color: var(--gray-3);
}

.field-input:focus {
  border-bottom-color: var(--text);
}

.field-input.full {
  width: 100%;
}

.shipping-note {
  font-size: 0.8125rem;
  color: var(--gray-1);
  line-height: 1.75;
  padding: 28px 0;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
  margin-bottom: 48px;
}

.submit-btn {
  background: var(--text);
  color: #FAFAF8;
  border: none;
  padding: 18px 52px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s;
  display: inline-block;
}

.submit-btn:hover {
  opacity: 0.78;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-hero {
  padding: calc(var(--nav-h) + 120px) var(--pad) 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  min-height: 72vh;
  border-bottom: 1px solid var(--gray-3);
}

.about-headline {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.about-intro {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--gray-1);
  max-width: 460px;
}

/* About hero full-bleed variant */
.about-hero--full {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 24px) var(--pad) 88px;
  grid-template-columns: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.38) 50%,
    rgba(0,0,0,0.12) 100%
  );
}

.about-hero--full .about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-hero--full .label            { color: rgba(255,255,255,0.55); }
.about-hero--full .about-headline   { color: #FAFAF8; }
.about-hero--full .about-intro      { color: rgba(255,255,255,0.6); }
.about-hero--full .brand-key-message {
  color: rgba(255,255,255,0.48);
  border-left-color: rgba(255,255,255,0.22);
}

/* Manifesto */
.manifesto-section {
  background: var(--beige);
  padding: 120px var(--pad);
}

.manifesto-inner {
  max-width: 760px;
}

.manifesto-body {
  font-size: clamp(1.0625rem, 2.2vw, 1.4375rem);
  font-weight: 300;
  line-height: 1.82;
  color: var(--text);
  letter-spacing: -0.01em;
}

.manifesto-body p + p {
  margin-top: 28px;
}

/* Values */
.values-section {
  padding: 120px var(--pad);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  border-top: 1px solid var(--gray-3);
  padding-top: 72px;
}

.value-num {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 18px;
}

.value-title {
  font-size: 1.1875rem;
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.8125rem;
  color: var(--gray-1);
  line-height: 1.75;
  font-weight: 400;
}

/* About outro (dark) */
.about-outro {
  background: var(--dark);
  color: #FAFAF8;
  padding: 160px var(--pad);
}

.about-outro-text {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.18;
  max-width: 700px;
  color: #FAFAF8;
}

.about-outro-meta {
  margin-top: 56px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.28);
}

/* ============================================================
   UTILITIES
   ============================================================ */

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  :root {
    --pad: 32px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .product-card-image {
    aspect-ratio: 4 / 3;
  }

  .distance-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .product-section.reverse {
    direction: ltr;
  }

  .product-section-image {
    min-height: 340px;
  }

  .product-section-content {
    padding: 48px 36px;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid var(--gray-3);
  }

  .about-hero {
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 36px;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }
}

/* ── 768px — hamburger + marquee + headline + footer nav ── */
@media (max-width: 768px) {
  .marquee-track span {
    font-size: 0.45rem;
    letter-spacing: 0.18em;
  }

  .hero-headline {
    font-size: clamp(1.5rem, 7.5vw, 2.75rem);
  }

  /* Hero label — tighten so "Jakarta, Indonesia — Extrait de Parfum"
     fits on one line at narrow viewport widths */
  .hero-content .label {
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  :root {
    --pad: 20px;
    --nav-h: 84px; /* 28px logo + 28px clear-space each side */
  }

  #nav {
    padding: 28px 20px;
  }

  .nav-logo-img {
    height: 28px;
  }

  .footer-logo-img {
    height: 20px; /* 28px × 0.7 */
  }

  /* nav-links already hidden by 768px rule; hamburger replaces them */
}

/* ============================================================
   REAL ASSETS — logo, photos
   ============================================================ */

/* Footer logo — 30% smaller than nav initial logo */
.footer-logo {
  display: block;
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* ── Product notes — Top / Middle / Base ── */
.product-notes-full {
  margin-bottom: 32px;
  border-top: 1px solid var(--gray-3);
  padding-top: 24px;
}

.notes-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-3);
  align-items: baseline;
}

.notes-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-3);
}

.notes-list {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray-1);
  line-height: 1.55;
}

/* ── MSRP pricing ── */
.product-pricing {
  margin-bottom: 44px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-3);
}

.price-row:first-child {
  border-top: 1px solid var(--gray-3);
}

.price-size {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
}

.price-amount {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ── Hero image panel ── */
.hero-image-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Left-side gradient so text doesn't collide with the photo */
.hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 120px;
  background: linear-gradient(to right, var(--bg), transparent);
  z-index: 1;
}

@media (max-width: 960px) {
  /* Side-panel hero (non-full-bleed): fade to ghost */
  .hero-image-panel {
    width: 100%;
    opacity: 0.18;
  }
  .hero-image-panel::before { display: none; }

  /* Full-bleed homepage hero: keep image dark and moody */
  .hero--full .hero-image-panel {
    opacity: 1;
  }
  .hero--full .hero-image-panel::before {
    display: block;
  }
}

/* ── Product card real photo ── */
.product-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Product section real photo ── */
.product-section-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── About hero image ── */
.about-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  align-self: stretch;
}

.about-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

@media (max-width: 960px) {
  .about-hero-image {
    min-height: 320px;
  }
}

/* ── Distance page vials image ── */
.distance-vials-wrap {
  padding: 0 var(--pad) 96px;
}

.distance-vials-img {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Key product points (The Distance page) ── */
.distance-key-points {
  padding: 0 var(--pad) 80px;
  max-width: 760px;
  border-top: 1px solid var(--gray-3);
  padding-top: 64px;
  margin-bottom: 0;
}

.key-points-list {
  list-style: none;
  margin-top: 28px;
}

.key-point {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-3);
  font-size: 0.8125rem;
  color: var(--gray-1);
  line-height: 1.7;
}

.key-point-num {
  color: var(--gray-3);
  font-weight: 300;
  padding-top: 1px;
}

/* ── Full-bleed homepage hero ── */
.hero--full .hero-image-panel {
  width: 100%;
  right: 0;
  left: 0;
}

.hero--full .hero-image-panel img {
  object-position: center 38%;
}

/* Replace left-edge gradient with a bottom-heavy dark wash */
.hero--full .hero-image-panel::before {
  inset: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.38) 45%,
    rgba(0,0,0,0.12) 100%
  );
}

/* Ensure text sits above overlay */
.hero--full .hero-content,
.hero--full .hero-scroll-indicator {
  position: relative;
  z-index: 2;
}

/* White text on dark image */
.hero--full .label           { color: rgba(255,255,255,0.55); }
.hero--full .hero-headline   { color: #FAFAF8; }
.hero--full .hero-sub        { color: rgba(255,255,255,0.42); }
.hero--full .scroll-line     { background: rgba(255,255,255,0.3); }
.hero--full .scroll-text     { color: rgba(255,255,255,0.42); }

/* ── Distance hero background image ── */
.distance-page-hero {
  position: relative;
}

.distance-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.distance-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.distance-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.74);
}

.distance-page-hero > *:not(.distance-hero-bg) {
  position: relative;
  z-index: 1;
}

/* ── Scent option — extended info ── */
.scent-option-notes {
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gray-1);
  margin-top: 8px;
  line-height: 1.55;
  transition: color 0.3s;
}

.scent-option-desc {
  font-size: 0.6875rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gray-1);
  margin-top: 8px;
  line-height: 1.6;
  transition: color 0.3s;
}

.scent-option input:checked + .scent-option-body .scent-option-notes {
  color: rgba(250,250,248,0.38);
}

.scent-option input:checked + .scent-option-body .scent-option-desc {
  color: rgba(250,250,248,0.5);
}

.scent-option-name strong {
  font-weight: 700;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  padding: calc(var(--nav-h) + 80px) var(--pad) 120px;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-brand-side {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.contact-brand-logo {
  height: 200px;
  width: auto;
  opacity: 0.1;
}

.contact-info-side {}

.contact-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin: 16px 0 72px;
}

.contact-methods {
  border-top: 1px solid var(--gray-3);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-3);
  text-decoration: none;
  color: inherit;
  transition: gap 0.3s ease;
}

.contact-item:hover {
  gap: 28px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-info {
  flex: 1;
}

.contact-item-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 4px;
}

.contact-item-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
}

.contact-item-arrow {
  font-size: 0.875rem;
  color: var(--gray-3);
  transition: transform 0.3s ease, color 0.25s ease;
}

.contact-item:hover .contact-item-arrow {
  transform: translateX(6px);
  color: var(--text);
}

.contact-location {
  margin-top: 48px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-2);
}

@media (max-width: 960px) {
  .contact-page {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-brand-side {
    display: none;
  }
}

/* ── Product name bold accent (FIRST / ROMANCE / TRACE) ── */
.product-name-large strong,
.product-card-name strong,
.catalog-card-name strong {
  font-weight: 700;
}

/* ── Brand key message (About page) ── */
.brand-key-message {
  font-size: 0.9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gray-1);
  margin-top: 32px;
  line-height: 1.7;
  max-width: 400px;
  letter-spacing: -0.01em;
  border-left: 2px solid var(--gray-3);
  padding-left: 20px;
}

/* ============================================================
   CATALOG PAGE — The Collection
   ============================================================ */

.catalog-page-hero {
  padding: calc(var(--nav-h) + 72px) var(--pad) 48px;
  border-bottom: 1px solid var(--gray-3);
}

.catalog-page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-top: 14px;
}

.catalog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  border-bottom: 1px solid var(--gray-3);
}

.catalog-filter-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.catalog-count-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.catalog-card {
  display: block;
  border-right: 1px solid var(--gray-3);
  text-decoration: none;
  color: inherit;
}

.catalog-card:last-child {
  border-right: none;
}

.catalog-card-label {
  padding: 20px var(--pad) 0;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-3);
}

.catalog-card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  margin-top: 14px;
}

.catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s ease;
}

.catalog-card:hover .catalog-card-image img {
  transform: scale(1.04);
}

.catalog-card-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px var(--pad) 36px;
  border-top: 1px solid var(--gray-3);
  margin-top: 0;
}

.catalog-card-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}

.catalog-card-sub {
  display: block;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-top: 4px;
}

.catalog-card-price {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-1);
  white-space: nowrap;
  padding-top: 1px;
}

/* ============================================================
   INDIVIDUAL PRODUCT PAGES
   ============================================================ */


/* Hero: full-viewport split */
.product-single-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 100svh;
  padding-top: var(--nav-h);
  border-bottom: 1px solid rgba(26,26,26,0.12);
}

.product-single-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(26,26,26,0.12);
}

.product-single-image {
  position: relative;
  overflow: hidden;
}

.product-single-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 56px;
  text-decoration: none;
  transition: color 0.25s, gap 0.3s;
}

.product-back-link:hover {
  color: var(--text);
  gap: 14px;
}

/* Gallery section */
.product-gallery {
  padding: 120px 0 0;
}

.gallery-header {
  padding: 0 var(--pad) 64px;
  max-width: 640px;
}

.gallery-tagline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: 14px;
  color: var(--text);
}

/* CSS columns masonry collage */
.collage {
  columns: 3;
  column-gap: 3px;
}

.collage-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  display: block;
}

.collage-item img {
  width: 100%;
  display: block;
  transition: transform 0.9s ease;
}

.collage-item:hover img {
  transform: scale(1.04);
}

/* Responsive — catalog + product pages */
@media (max-width: 960px) {
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-card:nth-child(2) {
    border-right: none;
  }
  .catalog-card:nth-child(3) {
    border-right: none;
    border-top: 1px solid var(--gray-3);
    grid-column: span 2;
  }
  .product-single-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .product-single-image {
    height: 70vw;
    min-height: 300px;
  }
  .product-single-content {
    padding: 56px 32px;
    border-right: none;
    border-top: 1px solid rgba(26,26,26,0.12);
  }
  .collage {
    columns: 2;
  }
}

@media (max-width: 600px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .catalog-card:nth-child(2) {
    border-right: none;
    border-top: 1px solid var(--gray-3);
  }
  .catalog-card:nth-child(3) {
    grid-column: span 1;
    border-top: 1px solid var(--gray-3);
  }
  .collage {
    columns: 1;
  }
}
