/* ══════════════════════════════════════════════
   REFRESH — MODERN LUXURY DESIGN SYSTEM
   ══════════════════════════════════════════════ */

:root {
  --gold:        #c9a84c;
  --gold-lt:     #e8c96a;
  --gold-dk:     #8a6820;
  --black:       #080808;
  --dark:        #101010;
  --dark2:       #181818;
  --dark3:       #222;
  --surface:     rgba(255,255,255,0.04);
  --border:      rgba(201,168,76,0.15);
  --text:        #f0e8d8;
  --muted:       rgba(240,232,216,0.5);
  --white:       #ffffff;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --r:           8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── CONTAINER ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── LABELS & EYEBROWS ─────────────────────────── */
.label, .eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.label--light { color: var(--gold-lt); }

/* ── HEADINGS ──────────────────────────────────── */
h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
h2 em { color: var(--gold); font-style: italic; }
.h2-light { color: var(--white); }
.h2-light em { color: var(--gold-lt); }

/* ── SECTION BASE ──────────────────────────────── */
.section { padding: 120px 0; }

/* ── BUTTONS ───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(240,232,216,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-large { padding: 18px 52px; font-size: 0.8rem; }
.btn-full  { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
  padding: 0;
}
.nav.stuck {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img { height: 36px; width: auto; filter: brightness(1.1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-btn {
  padding: 9px 22px;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-btn:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: 0.3s; }
.nav-drawer {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 14px 48px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.5) 50%,
    rgba(8,8,8,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 48px 100px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(240,232,216,0.7);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stat bar */
.hero-stat-bar {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(201,168,76,0.2);
  background: rgba(8,8,8,0.65);
  backdrop-filter: blur(12px);
}
.hero-stat {
  flex: 1;
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-n {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat-divider { width: 1px; background: var(--border); align-self: stretch; margin: 16px 0; }

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.about { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack { position: relative; }
.about-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--r);
  filter: brightness(0.85);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  border-radius: var(--r);
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.4;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.badge-icon { font-size: 1.4rem; }
.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.85;
}

/* ══════════════════════════════════════════════
   THE EXPERIENCE (GUEST JOURNEY)
   ══════════════════════════════════════════════ */
.experience { background: var(--black); }
.experience-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.experience-intro {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto;
}
.experience-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.exp-step { position: relative; }
.exp-img-wrap {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--r);
}
.exp-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.8);
  transition: transform 0.6s var(--ease), filter 0.6s;
}
.exp-step:hover .exp-img-wrap img {
  transform: scale(1.04);
  filter: brightness(0.9);
}
.exp-step-num {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  opacity: 0.85;
}
.exp-step h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.exp-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════
   IN-VENUE GALLERY
   ══════════════════════════════════════════════ */
.gallery {
  padding: 64px 0 0;
  background: var(--dark);
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-strip {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: galleryScroll 35s linear infinite;
}
.gallery-strip:hover { animation-play-state: paused; }
.gallery-item {
  position: relative;
  flex: 0 0 380px;
  height: 340px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
  transition: filter 0.4s, transform 0.4s var(--ease);
}
.gallery-item:hover img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.04);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 100%);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   PRODUCT
   ══════════════════════════════════════════════ */
.product { padding: 0; }
.product-fullbleed { position: relative; min-height: 90vh; display: flex; align-items: center; }
.product-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.9) 30%, rgba(8,8,8,0.4) 100%);
}
.product-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0;
}
.product-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.feat-card {
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 40px 28px;
  transition: border-color 0.3s, background 0.3s;
}
.feat-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.feat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.feat-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.feat-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════════════════
   WHY
   ══════════════════════════════════════════════ */
.why { background: var(--black); }
.why-header { margin-bottom: 72px; }
.why-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
}
.why-image { position: relative; }
.why-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--r);
}
.why-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(8,8,8,0.9), transparent);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  border-radius: 0 0 var(--r) var(--r);
}
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.why-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.why-card:hover { border-color: var(--border); transform: translateY(-3px); }
.why-card-inner { display: flex; flex-direction: column; gap: 12px; }
.why-icon { color: var(--gold); font-size: 1.2rem; }
.why-card h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}
.why-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════════════════
   FRAGRANCE CTA
   ══════════════════════════════════════════════ */
.fragrance-cta {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fragrance-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.4);
}
.fragrance-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.7) 100%);
}
.fragrance-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 48px;
}
.fragrance-text blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-style: italic;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.3;
}
.fragrance-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════
   OPERATE
   ══════════════════════════════════════════════ */
.operate { background: var(--dark); }
.operate-header { margin-bottom: 80px; }
.operate-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.op-step {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.op-step:last-child { border-right: none; }
.op-step:hover { background: rgba(201,168,76,0.04); }
.op-step-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.op-step:hover .op-step-line { background: var(--gold); }
.op-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 20px;
}
.op-step h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
}
.op-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════════════════
   PARTNERSHIP
   ══════════════════════════════════════════════ */
.partnership { background: var(--black); }
.partnership-header { margin-bottom: 64px; }
.partnership-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
}
.p-card {
  padding: 56px 48px;
  background: var(--dark2);
  border: 1px solid var(--border);
}
.p-card--gold {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.02) 100%);
  border-color: rgba(201,168,76,0.35);
}
.p-card-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border: 1px solid var(--border);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 2px;
}
.p-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
}
.p-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.p-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.p-card ul li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.p-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-size: 0.7rem;
}
.p-card-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  flex-direction: column;
  gap: 8px;
}
.p-card-connector-line { width: 1px; flex: 1; background: var(--border); min-height: 40px; }
.p-card-connector-dot { color: var(--gold); font-size: 1.5rem; }
.partnership-cta { text-align: center; }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.contact-left p { font-size: 0.98rem; color: var(--muted); margin-bottom: 40px; line-height: 1.85; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: color 0.2s;
}
.contact-item:hover .contact-value { color: var(--gold); }
.contact-icon { color: var(--gold); font-size: 1.3rem; margin-top: 2px; }
.contact-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 3px;
}
.contact-value { font-size: 0.9rem; color: var(--text); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,232,216,0.25); }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.form-consent input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin-top: 3px; accent-color: var(--gold); }
.form-consent a { color: var(--gold); }
.form-success {
  display: none;
  color: var(--gold);
  font-size: 0.85rem;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { height: 44px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; max-width: 260px; }
.footer-copy { margin-top: 28px !important; font-size: 0.75rem !important; color: rgba(240,232,216,0.3) !important; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col h5 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a { font-size: 0.82rem; color: var(--muted); transition: color 0.2s; line-height: 1; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  color: rgba(240,232,216,0.3);
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom span { opacity: 0.4; }

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s 0.25s var(--ease), transform 0.75s 0.25s var(--ease);
}
.reveal-delay.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════ */
.legal-page {
  min-height: 100vh;
  background: var(--black);
  padding: 140px 0 100px;
}
.legal-page .container { max-width: 800px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  transition: gap 0.2s;
}
.legal-back:hover { gap: 14px; }
.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.legal-date { font-size: 0.72rem; color: var(--gold-dk); letter-spacing: 0.1em; margin-bottom: 52px; display: block; }
.legal-page h2 {
  font-size: 1.1rem !important;
  color: var(--gold) !important;
  margin: 44px 0 12px !important;
  font-family: var(--sans) !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
}
.legal-page p { font-size: 0.9rem; color: var(--muted); line-height: 1.95; margin-bottom: 16px; }
.legal-page ul { padding-left: 22px; margin-bottom: 16px; }
.legal-page ul li { font-size: 0.9rem; color: var(--muted); line-height: 1.9; margin-bottom: 6px; }
.legal-page a { color: var(--gold); }
.legal-page a:hover { text-decoration: underline; }
.legal-page strong { color: var(--text); font-weight: 500; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner  { padding: 20px 32px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-main { height: 420px; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-image img { height: 400px; }
  .experience-journey { grid-template-columns: 1fr 1fr; }
  .exp-img-wrap img { height: 320px; }
  .gallery-item { flex: 0 0 300px; height: 280px; }
  .product-features { grid-template-columns: repeat(2, 1fr); }
  .operate-steps { grid-template-columns: 1fr 1fr; }
  .op-step { border-bottom: 1px solid var(--border); }
  .op-step:nth-child(2) { border-right: none; }
  .partnership-cards { grid-template-columns: 1fr; }
  .p-card-connector { flex-direction: row; padding: 12px 0; }
  .p-card-connector-line { width: 40px; height: 1px; min-height: unset; }
  .p-card--gold { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav  { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
  .nav-inner  { padding: 18px 24px; }
  .section    { padding: 80px 0; }
  .container  { padding: 0 24px; }
  .hero-content { padding: 140px 24px 80px; }
  .hero-stat-bar { flex-direction: column; }
  .hero-stat  { padding: 18px 24px; border-bottom: 1px solid var(--border); }
  .hero-stat-divider { display: none; }
  .experience-journey { grid-template-columns: 1fr; }
  .exp-img-wrap img { height: 280px; }
  .gallery-item { flex: 0 0 260px; height: 240px; }
  .why-cards  { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: 1fr; }
  .operate-steps { grid-template-columns: 1fr; }
  .op-step { border-right: none; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .fragrance-text blockquote { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .footer-nav   { grid-template-columns: 1fr; }
  .footer-bottom { flex-wrap: wrap; }
  .about-img-badge { bottom: 12px; right: 12px; }
}
