/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --graphite: #0e0e10;
  --charcoal: #1a1a1d;
  --ink: #2a2a2e;
  --champagne: #e8dcc4;
  --ivory: #faf7f2;
  --cream: #f3ece0;
  --gold: #c9a961;
  --gold-soft: #d8bf86;
  --gold-dark: #a8893f;
  --muted: #6b6b6f;
  --font-display: "Playfair Display", "Cormorant Garamond", serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--ivory);
  color: var(--graphite);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--graphite);
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--graphite); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; }
@media(max-width:768px){ .container{ padding: 0 1.25rem; } }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.gold-line {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.75rem;
}

.divider { width: 3rem; height: 1px; background: var(--gold); margin: 2rem 0; }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  overflow: hidden;
  transition: color 0.5s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--graphite); }
.btn:hover::before { transform: translateY(0); }

.btn-light {
  border-color: rgba(250,247,242,0.7);
  color: var(--ivory);
}
.btn-light::before { background: var(--ivory); }
.btn-light:hover { color: var(--graphite); }

/* ============================================================
   NAV-LINK
   ============================================================ */
.nav-link {
  position: relative;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  transition: color 0.3s;
  color: var(--ivory);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s;
}
#site-header.scrolled {
  background: rgba(14,14,16,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(201,169,97,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1; color: var(--ivory); }
.logo-main { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; letter-spacing: 0.04em; }
.logo-main em { font-style: italic; color: var(--gold); }
.logo-sub { font-size: 0.56rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(232,220,196,0.65); margin-top: 0.25rem; }

/* Desktop nav */
.desktop-nav { display: flex; align-items: center; gap: 2.5rem; }

/* Icons row */
.header-icons { display: flex; align-items: center; gap: 1.25rem; color: var(--ivory); }
.icon-btn {
  background: none; border: none; color: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s;
}
.icon-btn:hover { color: var(--gold); }
.cart-wrap { position: relative; }
.cart-badge {
  position: absolute; top: -4px; right: -8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); color: var(--graphite);
  font-size: 0.55rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; color: var(--ivory);
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: currentColor;
  transition: transform 0.4s ease, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
#mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: var(--graphite);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
#mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--ivory); transition: color 0.3s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); font-style: italic; }
.mobile-address { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(250,247,242,0.5); }

@media(max-width:1024px){
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  #mobile-menu { display: flex; }
  .icon-btn.desktop-only { display: none; }
}

@media(max-width:1024px) and (max-height:780px){
  #mobile-menu { gap:1rem; padding-top:4.5rem; }
  .mobile-nav { gap:.7rem; }
  .mobile-nav a { font-size:1.45rem; }
  .mobile-address { display:none; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: slowZoom 14s ease-out forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.14); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,16,.6) 0%, rgba(14,14,16,.2) 45%, rgba(14,14,16,.82) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-bottom: 7rem;
  max-width: 800px;
  color: var(--ivory);
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1.02;
  color: var(--ivory);
  font-weight: 500;
}
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-content p { font-size: 1rem; line-height: 1.75; color: rgba(250,247,242,.75); max-width: 500px; margin-top: 2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2.5rem; }
.scroll-hint {
  position: absolute; right: 2.5rem; bottom: 2rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: rgba(250,247,242,.55);
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 72vh; min-height: 520px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,16,.65) 0%, rgba(14,14,16,.35) 50%, rgba(14,14,16,.7) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding-bottom: 5rem; max-width: 900px; color: var(--ivory); }
.page-hero-content h1 { font-size: clamp(2.4rem, 5vw, 5rem); color: var(--ivory); font-weight: 500; }
.page-hero-content h1 em { color: var(--gold); font-style: italic; }
.page-hero-content p { font-size: 1rem; line-height: 1.75; color: rgba(250,247,242,.75); max-width: 540px; margin-top: 1.5rem; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section { padding: 6rem 0; }
.section-lg { padding: 8rem 0; }
@media(max-width:768px){ .section{ padding: 4rem 0; } .section-lg{ padding: 5rem 0; } }

.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--graphite); color: var(--ivory); }
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4 { color: var(--ivory); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2.5rem; }
.grid-12 { display: grid; grid-template-columns: repeat(12,1fr); gap: 3rem; align-items: center; }
@media(max-width:900px){
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-12 { grid-template-columns: 1fr; }
}
@media(max-width:600px){
  .grid-3,.grid-4 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gold-dark { color: var(--gold-dark); }
.text-muted { color: rgba(14,14,16,.65); }
.text-ivory { color: var(--ivory); }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.intro-band { border-bottom: 1px solid rgba(14,14,16,.06); padding: 5rem 0; }
.intro-band .quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  line-height: 1.4;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 600px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 176px; height: 176px;
  background: var(--graphite); color: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
@media(max-width:900px){ .about-badge { display: none; } }
.about-badge .num { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold); }
.about-badge .lbl { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 0.35rem; }

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.cats-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.cat-card {
  position: relative; overflow: hidden; background: var(--graphite);
  display: block; cursor: pointer;
}
.cat-card--tall { grid-row: span 2; }
.cat-img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; object-position: center;
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1), opacity 0.6s;
  opacity: 0.85;
}
.cat-card:hover .cat-img { transform: scale(1.06); opacity: 1; }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,16,.9) 0%, rgba(14,14,16,.2) 50%, transparent 100%);
}
.cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 2.25rem;
}
.cat-info .eyebrow { color: var(--gold); margin-bottom: 0.5rem; }
.cat-info h3 {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--ivory); font-weight: 500;
}
.cat-arrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(250,247,242,.65);
  transition: color 0.3s;
}
.cat-arrow-line {
  display: inline-block; height: 1px; background: currentColor;
  width: 2rem; transition: width 0.5s;
}
.cat-card:hover .cat-arrow { color: var(--gold); }
.cat-card:hover .cat-arrow-line { width: 4rem; }

.cats-right { display: grid; grid-row: span 2; gap: 1.25rem; }
.cats-right .cat-img { min-height: 300px; }

@media(max-width:900px){
  .cats-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cat-card--tall { grid-row: span 1; }
  .cats-right { display: contents; }
}

/* ============================================================
   SIGNATURE / DARK SPLIT
   ============================================================ */
.dark-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.dark-split .split-img { position: relative; }
.dark-split .split-img img { width: 100%; height: 580px; object-fit: cover; }
.gia-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--ivory); color: var(--graphite);
  padding: 0.7rem 1.2rem;
}
.gia-badge .lbl { font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(14,14,16,.55); }
.gia-badge .mark { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2.5rem; }
@media(max-width:1024px){ .features-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .features-grid { grid-template-columns: 1fr; } }
.feature-card { text-align: center; }
.feat-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  border: 1px solid rgba(201,169,97,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin: 0 auto 1.5rem;
  transition: background 0.5s, color 0.5s;
}
.feature-card:hover .feat-icon { background: var(--gold); color: var(--graphite); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.85rem; line-height: 1.7; color: rgba(14,14,16,.62); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  position: relative; padding: 9rem 0;
  overflow: hidden;
}
.testimonial-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.testimonial-overlay { position: absolute; inset: 0; background: rgba(14,14,16,.86); }
.testimonial-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; color: var(--ivory); }
.testimonial-mark { font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 1; margin-bottom: 1.25rem; }
.testimonial-content blockquote {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic; line-height: 1.45; color: var(--ivory);
}
.testimonial-attr {
  margin-top: 2.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.testimonial-attr .line { width: 2.5rem; height: 1px; background: var(--gold); }
.testimonial-attr span { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   EDITORIAL CTA
   ============================================================ */
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.editorial img { width: 100%; height: 520px; object-fit: cover; }
@media(max-width:900px){ .editorial { grid-template-columns: 1fr; } }

/* ============================================================
   OFFER PAGE
   ============================================================ */
.offer-subnav { position: sticky; top: 72px; z-index: 35; background: rgba(250,247,242,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(14,14,16,.1); }
.offer-subnav-inner { display: flex; gap: 2.5rem; padding: 1rem 0; overflow-x: auto; }
.offer-cat { scroll-margin-top: 130px; }
.offer-split { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.offer-split.reverse { direction: rtl; }
.offer-split.reverse > * { direction: ltr; }
.offer-split img { width: 100%; height: 560px; object-fit: cover; }
@media(max-width:900px){ .offer-split { grid-template-columns: 1fr; direction: ltr; } }

.offer-items { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.75rem; border-top: 1px solid rgba(14,14,16,.1); padding-top: 4rem; }
@media(max-width:1024px){ .offer-items { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .offer-items { grid-template-columns: 1fr; } }
.offer-item-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.offer-item-head h3 { font-size: 1.1rem; }
.offer-item-price { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); white-space: nowrap; margin-top: 0.15rem; }
.offer-item-line { width: 2rem; height: 1px; background: rgba(201,169,97,.45); margin-bottom: 0.75rem; transition: width 0.4s; }
.offer-item:hover .offer-item-line { width: 4rem; }
.offer-item p { font-size: 0.85rem; line-height: 1.65; color: rgba(14,14,16,.6); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
@media(max-width:1000px){ .process-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .process-grid { grid-template-columns: 1fr; } }
.proc-step { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.proc-title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.proc-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(14,14,16,.62); }

.svc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.svc-split img { width: 100%; height: 560px; object-fit: cover; }
@media(max-width:900px){ .svc-split { grid-template-columns: 1fr; } }
.svc-list { margin: 1.5rem 0 2rem; list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.svc-list li { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.9rem; line-height: 1.6; color: rgba(14,14,16,.78); }
.svc-list li::before { content: ""; flex-shrink: 0; display: block; width: 1.5rem; height: 1px; background: var(--gold); margin-top: 0.7rem; }

.brands-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 3rem 5rem;
}
.brands-row span {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.08em;
  color: rgba(250,247,242,.62); transition: color 0.3s;
}
.brands-row span:hover { color: var(--gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
@media(max-width:900px){ .contact-cards { grid-template-columns: 1fr; } }
.contact-card { text-align: center; border-top: 1px solid rgba(201,169,97,.3); padding-top: 2.5rem; }
.contact-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.contact-card .eyebrow { margin-bottom: 0.75rem; }
.contact-card ul { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.9rem; color: rgba(14,14,16,.72); }
.contact-card a:hover { color: var(--gold); }

.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media(max-width:900px){ .contact-form-grid { grid-template-columns: 1fr; } }

.lux-input, .lux-select, .lux-textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(250,247,242,.25);
  padding: 0.85rem 0; color: var(--ivory);
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 300;
  letter-spacing: 0.05em;
  transition: border-color 0.4s;
}
.lux-input:focus, .lux-select:focus, .lux-textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.lux-input::placeholder, .lux-textarea::placeholder {
  color: rgba(250,247,242,.4); letter-spacing: 0.12em;
  text-transform: uppercase; font-size: 0.68rem;
}
.lux-select { cursor: pointer; }
.lux-select option { background: var(--graphite); }
.lux-textarea { resize: none; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media(max-width:600px){ .form-row-2 { grid-template-columns: 1fr; } }
.form-fields { display: flex; flex-direction: column; gap: 2rem; }

/* Map placeholder */
.map-box {
  position: relative; min-height: 450px; height: 100%;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0; opacity: 0.5;
}
.map-pin-wrap { position: relative; z-index: 2; text-align: center; }
.map-pin {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--graphite);
  margin-bottom: 1.5rem;
}
.map-ping {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(201,169,97,.35);
  animation: ping 1.8s ease-in-out infinite;
}
@keyframes ping {
  0%,100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.7); opacity: 0; }
}
.map-pin-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory); }
.map-pin-addr { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(250,247,242,.55); margin-top: 0.5rem; }
.map-open-btn {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(14,14,16,.12); }
.faq-item:last-child { border-bottom: 1px solid rgba(14,14,16,.12); }
details.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.15rem;
  gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  color: var(--gold); font-size: 1.6rem; font-weight: 300;
  transition: transform 0.35s; flex-shrink: 0; line-height: 1;
}
details.faq-item[open] summary .faq-plus { transform: rotate(45deg); }
details.faq-item[open] summary { color: var(--gold-dark); }
.faq-body { padding: 0 0 1.5rem; font-size: 0.9rem; line-height: 1.75; color: rgba(14,14,16,.68); max-width: 700px; }

/* ============================================================
   NEWSLETTER BAND
   ============================================================ */
.newsletter-band { border-bottom: 1px solid rgba(250,247,242,.1); padding: 4rem 0; }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: flex-end; }
@media(max-width:900px){ .newsletter-grid { grid-template-columns: 1fr; } }
.newsletter-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.8rem); line-height: 1.15; color: var(--ivory); }
.newsletter-title em { color: var(--gold); font-style: italic; }
.newsletter-form { display: flex; gap: 1rem; flex-wrap: wrap; }
.newsletter-form .lux-input { flex: 1; min-width: 200px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--graphite); color: var(--ivory); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding: 4rem 0; }
@media(max-width:1024px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-col-title { margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.88rem; color: rgba(250,247,242,.65); }
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul li { color: rgba(250,247,242,.65); font-size: 0.88rem; }
.footer-col ul li a { color: rgba(250,247,242,.65); transition: color 0.3s; }
.social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(250,247,242,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,242,.65);
  transition: border-color 0.3s, color 0.3s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250,247,242,.1);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(250,247,242,.35);
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.65rem; color: rgba(250,247,242,.35); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   PEOPLE GRID
   ============================================================ */
.people-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
@media(max-width:900px){ .people-grid { grid-template-columns: 1fr; } }
.person img { width: 100%; height: 440px; object-fit: cover; object-position: top; filter: grayscale(1); transition: filter 0.7s, transform 0.7s; }
.person:hover img { filter: grayscale(0); transform: scale(1.02); }
.person .overflow-hidden { overflow: hidden; margin-bottom: 1.25rem; }
.person .eyebrow { margin-bottom: 0.35rem; }
.person h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.person p { font-size: 0.85rem; line-height: 1.7; color: rgba(14,14,16,.62); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-top: 1rem; }
.timeline::before {
  content: ""; position: absolute;
  left: 1rem; top: 0; bottom: 0; width: 1px;
  background: rgba(201,169,97,.3);
}
@media(min-width:768px){
  .timeline::before { left: 50%; transform: translateX(-0.5px); }
}
.tl-item { position: relative; margin-bottom: 3.5rem; }
.tl-dot {
  position: absolute; left: 1rem; top: 0.5rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 4px solid var(--cream);
  transform: translateX(-50%);
}
@media(min-width:768px){ .tl-dot { left: 50%; } }
.tl-body { padding-left: 3.5rem; }
@media(min-width:768px){
  .tl-item:nth-child(odd) .tl-body { margin-right: 52%; padding-left: 0; text-align: right; }
  .tl-item:nth-child(even) .tl-body { margin-left: 52%; padding-left: 2rem; text-align: left; }
}
.tl-year { font-family: var(--font-display); font-size: 2.8rem; color: var(--gold); }
.tl-title { font-family: var(--font-display); font-size: 1.2rem; margin: 0.25rem 0; }
.tl-text { font-size: 0.9rem; line-height: 1.7; color: rgba(14,14,16,.65); }

/* ============================================================
   SHOP NAV, CATEGORY PAGES & CART
   ============================================================ */
.shop-menu { position: relative; padding: 0.75rem 0; }
.shop-menu > .nav-link { border: 0; background: transparent; }
.shop-dropdown {
  position: absolute; top: 100%; left: 50%; width: 245px;
  transform: translate(-50%, 12px); opacity: 0; visibility: hidden;
  background: rgba(14,14,16,.98); border: 1px solid rgba(201,169,97,.22);
  padding: 0.8rem; transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.shop-menu:hover .shop-dropdown,
.shop-menu:focus-within .shop-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.shop-dropdown a {
  display: block; padding: 0.85rem 1rem; color: rgba(250,247,242,.72);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: color 0.25s, background 0.25s;
}
.shop-dropdown a:hover { color: var(--gold); background: rgba(255,255,255,.04); }

.shop-hero { padding: 11rem 0 5rem; background: var(--graphite); color: var(--ivory); }
.shop-hero h1 { color: var(--ivory); font-size: clamp(2.8rem,6vw,5.6rem); }
.shop-hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.shop-hero-grid { display:grid; grid-template-columns: 1.4fr 0.6fr; gap:4rem; align-items:end; }
.shop-hero-copy { color: rgba(250,247,242,.66); line-height:1.8; max-width:600px; margin-top:1.5rem; }
.shop-count { text-align:right; }
.shop-count strong { display:block; font-family:var(--font-display); color:var(--gold); font-size:3.2rem; font-weight:400; }
.shop-count span { font-size:.65rem; letter-spacing:.26em; text-transform:uppercase; color:rgba(250,247,242,.48); }

.shop-toolbar {
  position: sticky; top: 70px; z-index:35; background:rgba(250,247,242,.96);
  backdrop-filter:blur(12px); border-bottom:1px solid rgba(14,14,16,.1);
}
.shop-toolbar-inner { display:flex; align-items:center; gap:1rem; padding:1rem 0; overflow-x:auto; }
.filter-btn {
  flex:0 0 auto; border:1px solid rgba(14,14,16,.16); padding:0.7rem 1.1rem;
  font-size:0.62rem; font-weight:500; letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(14,14,16,.65); transition:all 0.3s; background:transparent;
}
.filter-btn:hover,.filter-btn.active { background:var(--graphite); color:var(--ivory); border-color:var(--graphite); }
.shop-sort { margin-left:auto; flex:0 0 auto; color:rgba(14,14,16,.6); font-size:0.7rem; letter-spacing:0.1em; }

.product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2.5rem 1.4rem; }
.product-card { min-width:0; transition:opacity 0.3s, transform 0.3s; }
.product-card.filtered-out { display:none; }
.product-image { position:relative; overflow:hidden; aspect-ratio:1/1.15; background:#ece5da; }
.product-image img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s cubic-bezier(.22,1,.36,1); }
.product-card:hover .product-image img { transform:scale(1.045); }
.product-label {
  position:absolute; top:1rem; left:1rem; padding:0.45rem 0.65rem;
  background:var(--ivory); color:var(--graphite); font-size:0.55rem;
  letter-spacing:0.18em; text-transform:uppercase;
}
.product-info { padding-top:1.15rem; }
.product-meta { color:var(--gold-dark); font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; margin-bottom:0.45rem; }
.product-name { font-family:var(--font-display); font-size:1.15rem; line-height:1.35; min-height:3.05rem; }
.product-spec { color:rgba(14,14,16,.55); font-size:0.75rem; line-height:1.6; margin:0.55rem 0 1rem; min-height:2.4rem; }
.product-bottom { display:flex; align-items:center; justify-content:space-between; gap:0.75rem; border-top:1px solid rgba(14,14,16,.1); padding-top:0.9rem; }
.product-price { font-family:var(--font-display); font-size:1.1rem; white-space:nowrap; }
.add-btn {
  width:38px; height:38px; border:1px solid var(--gold); color:var(--gold-dark);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem;
  transition:background 0.3s,color 0.3s,transform 0.3s;
}
.add-btn:hover { background:var(--gold); color:var(--graphite); transform:translateY(-2px); }
.source-link { display:inline-block; margin-top:0.8rem; font-size:0.58rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold-dark); }
.source-link:hover { text-decoration:underline; }

.category-intro { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; margin-bottom:4.5rem; }
.category-list { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
.category-list li { border-top:1px solid rgba(14,14,16,.14); padding:1rem 0; font-family:var(--font-display); font-size:1.1rem; }
.brand-cloud { display:flex; flex-wrap:wrap; gap:0.75rem; }
.brand-cloud span { border:1px solid rgba(14,14,16,.14); padding:0.65rem 0.9rem; font-size:0.63rem; letter-spacing:0.16em; text-transform:uppercase; }

.cart-drawer {
  position:fixed; top:0; right:0; bottom:0; width:min(430px,100%); z-index:150;
  background:var(--ivory); transform:translateX(100%); transition:transform 0.45s cubic-bezier(.77,0,.175,1);
  box-shadow:-30px 0 80px rgba(0,0,0,.25); display:flex; flex-direction:column;
}
.cart-drawer.open { transform:translateX(0); }
.cart-backdrop { position:fixed; inset:0; z-index:149; background:rgba(0,0,0,.56); opacity:0; pointer-events:none; transition:opacity 0.35s; }
.cart-backdrop.open { opacity:1; pointer-events:auto; }
.cart-head { padding:2rem; display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid rgba(14,14,16,.1); }
.cart-head h2 { font-size:1.7rem; }
.cart-close { font-size:1.6rem; color:var(--graphite); }
.cart-items { flex:1; overflow-y:auto; padding:1.5rem 2rem; }
.cart-empty { color:rgba(14,14,16,.55); line-height:1.7; padding:2rem 0; }
.cart-item { display:grid; grid-template-columns:1fr auto; gap:1rem; padding:1.1rem 0; border-bottom:1px solid rgba(14,14,16,.1); }
.cart-item-name { font-family:var(--font-display); font-size:1rem; }
.cart-item-price { color:var(--gold-dark); font-size:0.8rem; margin-top:0.35rem; }
.cart-remove { color:rgba(14,14,16,.4); font-size:1.1rem; }
.cart-foot { padding:1.5rem 2rem 2rem; border-top:1px solid rgba(14,14,16,.1); }
.cart-total { display:flex; justify-content:space-between; margin-bottom:1.2rem; font-family:var(--font-display); font-size:1.2rem; }
.cart-foot .btn { width:100%; justify-content:center; }
.cart-note { font-size:0.67rem; line-height:1.6; color:rgba(14,14,16,.5); margin-top:1rem; }

@media(max-width:1100px){ .product-grid{grid-template-columns:repeat(3,1fr)} }
@media(max-width:800px){
  .shop-hero-grid,.category-intro{grid-template-columns:1fr;gap:2rem}
  .shop-count{text-align:left}.product-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .product-grid{grid-template-columns:1fr}.category-list{grid-template-columns:1fr}
  .product-name,.product-spec{min-height:0}.shop-sort{display:none}
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ============================================================
   IMAGE LOADING
   ============================================================ */
img[data-managed-image] {
  background: linear-gradient(135deg, #171719, #2b261d 55%, #0e0e10);
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.7s ease, filter 0.7s ease;
}
img[data-managed-image].image-loaded,
img[data-managed-image].image-fallback { opacity: 1; }
.managed-bg { background-color: var(--charcoal); }
.managed-bg.image-fallback {
  background-image:
    radial-gradient(circle at 70% 25%, rgba(201,169,97,.2), transparent 28%),
    linear-gradient(135deg, #171719, #2b261d 55%, #0e0e10) !important;
}
