/* =========================================================
   Queen Liz — Maison de Luxe
   Vanilla CSS. Serif headings (Cormorant), sans body (Jost).
   ========================================================= */

:root {
  /* Palette */
  --black: #0a0a0a;
  --ink: #141210;
  --char: #1c1813;
  --cream: #f6f1e7;
  --cream-2: #efe7d6;
  --gold: #c9a24b;
  --gold-light: #e8cf8f;
  --gold-deep: #9c7a2f;
  --emerald: #0f5132;
  --sapphire: #1b3a6b;
  --ruby: #7b1f2b;
  --muted: #a99f8c;
  --line: rgba(201, 162, 75, 0.28);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1240px;
  --pad: clamp(1.15rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.5px;
  color: var(--cream);
}
.section-lead { color: var(--muted); max-width: 46ch; margin-top: 1rem; }

.accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.7rem; }
.btn-block { width: 100%; }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-gold:hover { gap: 0.9rem; color: var(--gold-light); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand-logo { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.nav-link {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }
.nav-cta { color: var(--black); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--gold-light);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 2; padding-top: 84px; }
.hero-content { max-width: 640px; }
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0.5px;
  margin-bottom: 1.6rem;
}
.hero-sub {
  color: var(--cream-2);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 52ch;
  margin-bottom: 2.2rem;
  opacity: 0.9;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-marks {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.hero-marks li {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-marks span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; justify-content: center;
}
.scroll-hint span {
  width: 3px; height: 8px; margin-top: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* =========================================================
   SECTIONS (general)
   ========================================================= */
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 3.4rem; }

.collections { background: var(--ink); }
.story { background: var(--black); }
.showcase { background: var(--ink); }
.ethos { background: var(--char); }
.vip { background: var(--black); }
.contact { background: var(--ink); }

/* =========================================================
   COLLECTIONS
   ========================================================= */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.collection-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--char);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.collection-card--wide { grid-column: span 2; }
.collection-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.collection-card:hover .collection-img { transform: scale(1.06); }
.collection-body {
  position: relative;
  z-index: 2;
  padding: 1.8rem;
  width: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 10%, rgba(10,10,10,0.2) 70%, transparent);
}
.collection-body h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.collection-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }

/* =========================================================
   STORY
   ========================================================= */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story-media {
  border: 1px solid var(--line);
  overflow: hidden;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-content p { color: var(--cream-2); margin-top: 1.2rem; opacity: 0.9; }
.story-content .section-title { margin-bottom: 0.4rem; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.pillar p { font-size: 0.85rem; color: var(--muted); }

/* =========================================================
   SHOWCASE CAROUSEL
   ========================================================= */
.carousel { position: relative; overflow: hidden; border: 1px solid var(--line); }
.carousel-track { display: flex; transition: transform 0.7s var(--ease); }
.slide { position: relative; min-width: 100%; }
.slide img { width: 100%; height: clamp(340px, 52vw, 620px); object-fit: cover; }
.slide figcaption {
  position: absolute;
  left: 0; bottom: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  max-width: 560px;
  background: linear-gradient(to top, rgba(10,10,10,0.92), transparent);
  width: 100%;
}
.slide figcaption h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.slide figcaption p { color: var(--cream-2); opacity: 0.9; max-width: 44ch; }

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  background: rgba(10,10,10,0.5);
  color: var(--gold-light);
  font-size: 1.6rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  z-index: 3;
}
.carousel-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }
.carousel-dots {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 3;
}
.carousel-dots button {
  width: 30px; height: 3px;
  border: none;
  background: rgba(246,241,231,0.3);
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.carousel-dots button.active { background: var(--gold); }

/* =========================================================
   ETHOS
   ========================================================= */
.ethos-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.ethos-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  line-height: 1.3;
  color: var(--cream);
  margin: 1rem 0 1.4rem;
}
.ethos-attrib { color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.8rem; }
.ethos-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 2.4rem;
}
.ethos-values > div { display: flex; flex-direction: column; }
.value-num { font-family: var(--font-serif); font-size: 1.7rem; color: var(--gold-light); }
.value-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.06em; }

/* =========================================================
   VIP
   ========================================================= */
.vip-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(201,162,75,0.08), transparent 60%),
    var(--char);
}
.vip-copy p { color: var(--cream-2); margin-top: 1rem; opacity: 0.9; }
.vip-benefits { margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.vip-benefits li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--cream-2);
  font-size: 0.95rem;
}
.vip-benefits li::before {
  content: "";
  position: absolute; left: 0; top: 0.65em;
  width: 8px; height: 8px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* ---------- Forms ---------- */
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(10,10,10,0.5);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(169,159,140,0.6); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(10,10,10,0.75);
}
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; }
.form-note { margin-top: 0.9rem; font-size: 0.85rem; color: var(--gold-light); min-height: 1.2em; }
.form-note.error { color: #e08a8a; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-copy p { color: var(--cream-2); margin-top: 1rem; opacity: 0.9; }
.contact-list { margin: 1.8rem 0 2rem; display: grid; gap: 0.9rem; }
.contact-list li {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  color: var(--cream-2);
}
.contact-list span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-form {
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background: var(--char);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding-top: 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.4rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 32ch; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  color: var(--cream-2);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  opacity: 0.85;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.social { display: flex; gap: 0.8rem; }
.social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  margin: 0;
}
.social a:hover { background: var(--gold); color: var(--black); padding-left: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
}
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--muted); font-size: 0.82rem; transition: color 0.3s var(--ease); }
.footer-legal a:hover { color: var(--gold-light); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-card--wide { grid-column: span 2; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 520px; margin: 0 auto; }
  .vip-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0 1.4rem;
    transform: translateY(-120%);
    transition: transform 0.45s var(--ease);
    max-height: calc(100svh - 84px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav-link {
    padding: 1rem var(--pad);
    border-bottom: 1px solid rgba(201,162,75,0.12);
    opacity: 1;
  }
  .nav-link::after { display: none; }
  .nav-cta { margin: 1rem var(--pad) 0; }
  .nav-toggle { display: flex; }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .carousel-btn { width: 44px; height: 44px; font-size: 1.3rem; }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
}

@media (max-width: 460px) {
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card--wide { grid-column: span 1; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .scroll-hint span { animation: none; }
  .carousel-track { transition: none; }
}
