/* ============================================
   LUXELLE & FAIR — Premium CSS
   Navy Blue + Luxury Gold Design System
============================================ */

:root {
  --navy: #0A2A5A;
  --navy-light: #0e3570;
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --gold-dim: rgba(212,175,55,0.15);
  --silver: #6B737D;
  --white: #FFFFFF;
  --black: #111111;
  --bg-dark: #08111f;
  --bg-card: #0d1e35;
  --bg-card2: #0f2240;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.5);
  --border-gold: rgba(212,175,55,0.3);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-sub: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gap: 130px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

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

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-gap { padding: var(--gap) 0; }

.amp { color: var(--gold); font-style: italic; }

/* ============================================
   PAGE LOADER
============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--white);
  opacity: 0;
  animation: loaderFadeIn 0.8s ease 0.3s forwards;
}
.loader-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
  opacity: 0;
  animation: loaderFadeIn 0.8s ease 0.1s forwards;
}

.loader-line {
  height: 1px;
  background: var(--border-gold);
  margin-top: 18px;
  overflow: hidden;
}
.loader-line span {
  display: block;
  height: 1px;
  background: var(--gold);
  width: 0;
  animation: loaderLine 1s ease 0.8s forwards;
}

@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderLine { to { width: 100%; } }

/* ============================================
   WHATSAPP BUTTON
============================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(212,175,55,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(212,175,55,0.55);
}

/* ============================================
   NAVIGATION
============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#site-header.scrolled {
  background: rgba(8,17,31,0.92);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-gold);
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo:hover { color: var(--gold); }
.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
  padding-bottom: 4px;
  position: relative;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { width: 100%; }

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  min-width: 180px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition), background var(--transition);
}
.dropdown li a:hover { color: var(--gold); background: var(--gold-dim); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================
   BUTTONS & LINKS
============================================ */
.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold-sm {
  display: inline-block;
  padding: 10px 26px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-gold-sm:hover { background: var(--gold); color: var(--black); }

.link-gold {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity var(--transition);
  display: inline-block;
}
.link-gold:hover { opacity: 0.7; }
.link-gold-sm { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--gold); transition: opacity var(--transition); }
.link-gold-sm:hover { opacity: 0.7; }

/* ============================================
   SECTION TYPOGRAPHY
============================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  margin-bottom: 70px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.section-header > div, .section-header h2 { flex: 1; }
.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-header.centered .section-title { margin-bottom: 0; }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(10,42,90,0.8) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #08111f 0%, #0A2A5A 50%, #08111f 100%);
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}
@keyframes heroBgPulse {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,17,31,0.3) 0%, rgba(8,17,31,0.5) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  animation: heroReveal 1.2s ease 1.8s forwards;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.amp-large {
  font-size: 0.6em;
  color: var(--gold);
  font-style: italic;
  display: block;
  line-height: 1;
}

.hero-tagline {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-top: 20px;
  letter-spacing: 0.1em;
}

.hero-divider {
  margin: 32px auto;
  width: 120px;
  height: 1px;
  background: var(--border-gold);
  position: relative;
}
.hero-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: heroReveal 1s ease 2.8s forwards;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   BRAND STORY
============================================ */
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story-body {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.9;
}

.brand-visual-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 40px 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.vc-1 { grid-column: 1 / -1; }
.visual-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.vc-inner { display: flex; flex-direction: column; gap: 10px; }
.vc-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.vc-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   COLLECTIONS
============================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.collection-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.cc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
}
.collection-card:hover .cc-bg { transform: scale(1.06); }

.cc-fashion {
  background:
    linear-gradient(160deg, var(--navy) 0%, #1a3a70 50%, var(--bg-dark) 100%);
}
.cc-beauty {
  background:
    linear-gradient(160deg, #1a0a2e 0%, #2d1054 50%, var(--navy) 100%);
}
.cc-accessories {
  background:
    linear-gradient(160deg, #1a2a10 0%, #2d4a1e 50%, var(--navy) 100%);
}
.cc-lifestyle {
  background:
    linear-gradient(160deg, #2a1a0a 0%, #4a3010 50%, var(--navy) 100%);
}

.cc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,17,31,0.85) 0%, rgba(8,17,31,0.2) 60%, transparent 100%);
  transition: background var(--transition);
}
.collection-card:hover .cc-overlay {
  background: linear-gradient(to top, rgba(8,17,31,0.9) 0%, rgba(8,17,31,0.4) 60%, rgba(212,175,55,0.06) 100%);
}

.cc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 28px;
  z-index: 2;
}

.cc-num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.cc-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.collection-card:hover .cc-title { color: var(--gold); }
.cc-desc {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: none;
  transition: all var(--transition);
}
.collection-card:hover .cc-desc { display: block; }
.cc-link {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.collection-card:hover .cc-link { border-color: var(--gold); }

/* Gold border glow on hover */
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color var(--transition);
  pointer-events: none;
  z-index: 3;
}
.collection-card:hover::after { border-color: rgba(212,175,55,0.4); }

/* ============================================
   FEATURED PRODUCTS
============================================ */
.featured-editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

.fe-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: border-color var(--transition);
}
.fe-card:hover { border-color: var(--gold); }

.fe-img {
  width: 100%;
  background-size: cover;
  background-position: center;
}
.fe-large .fe-img { height: 480px; }
.fe-card-sm .fe-img { height: 220px; }

.fe-img-1 {
  background: linear-gradient(135deg, #0e2a5c, #1a3a80, #0e2a5c);
  position: relative;
}
.fe-img-1::after {
  content: 'ÉLITE SILK';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: rgba(212,175,55,0.3);
}
.fe-img-2 { background: linear-gradient(135deg, #1a0a2e, #2d1054, #1a0a2e); }
.fe-img-3 { background: linear-gradient(135deg, #2a200a, #4a3820, #2a200a); }

.fe-info { padding: 28px; }
.fe-category {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.fe-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.fe-card-sm .fe-name { font-size: 1.05rem; }
.fe-desc {
  font-family: var(--font-sub);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.fe-right { display: flex; flex-direction: column; gap: 24px; }

/* ============================================
   WHY US
============================================ */
.why-us {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.why-us-body {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.9;
}

.why-us-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 40px;
}

.pillar {}
.pillar-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.pillar h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--white);
}
.pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   GALLERY
============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gi-tall { grid-row: 1 / 3; }
.gi-wide { grid-column: 2 / 4; }

.gi-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gi-bg { transform: scale(1.05); }

.gi-bg-1 { background: linear-gradient(135deg, #0a2a5a 0%, #1a3a80 50%, #0a1a40 100%); }
.gi-bg-2 { background: linear-gradient(135deg, #2d1054 0%, #4a1a80 50%, #1a0a30 100%); }
.gi-bg-3 { background: linear-gradient(135deg, #2a1a08 0%, #4a3010 50%, #1a0a05 100%); }
.gi-bg-4 { background: linear-gradient(135deg, #0a2a1a 0%, #1a4a30 50%, #0a1a10 100%); }

/* Decorative grid lines over gallery items */
.gi-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.gi-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
  background: rgba(8,17,31,0.7);
  padding: 6px 12px;
  border-left: 2px solid var(--gold);
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 44px 36px;
  position: relative;
  transition: border-color var(--transition);
}
.tc-featured {
  background: var(--bg-card2);
  border-color: var(--gold);
  transform: translateY(-12px);
}
.testimonial-card:hover { border-color: var(--gold); }

.testi-quote {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.6;
}
.testi-text {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}
.testi-author { border-top: 1px solid var(--border-gold); padding-top: 20px; }
.testi-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.testi-role {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ============================================
   JOURNAL
============================================ */
.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.journal-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: border-color var(--transition);
}
.journal-card:hover { border-color: var(--gold); }

.jc-img { background-size: cover; background-position: center; }
.jc-large .jc-img { height: 360px; }
.jc-sm .jc-img { height: 160px; }

.jc-img-1 { background: linear-gradient(135deg, #0a2a5a 0%, #1e3f7a 100%); }
.jc-img-2 { background: linear-gradient(135deg, #2d1054 0%, #4a2070 100%); }
.jc-img-3 { background: linear-gradient(135deg, #1a2a0a 0%, #2a4010 100%); }

.jc-info { padding: 28px; }
.jc-cat {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.jc-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--white);
  transition: color var(--transition);
}
.jc-sm .jc-title { font-size: 0.95rem; }
.journal-card:hover .jc-title { color: var(--gold); }
.jc-excerpt {
  font-family: var(--font-sub);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.jc-read {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.journal-side { display: flex; flex-direction: column; gap: 24px; }

/* ============================================
   NEWSLETTER
============================================ */
.newsletter {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-body {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.newsletter-form {}
.form-row {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 16px;
}
.nl-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-right: none;
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}
.nl-input:focus { border-color: var(--gold); }
.nl-input::placeholder { color: var(--text-muted); }
.nl-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #060e18;
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-gold);
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-sub);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-group {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-nav ul li,
.footer-collections ul li { margin-bottom: 12px; }
.footer-nav ul li a,
.footer-collections ul li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav ul li a:hover,
.footer-collections ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

/* ============================================
   ABOUT PAGE
============================================ */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10,42,90,0.9) 0%, var(--bg-dark) 70%);
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; width: 100%; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
}

/* About content */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.av-block {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 36px 24px;
  text-align: center;
}
.av-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.av-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   COLLECTIONS PAGE
============================================ */
.collections-full {
  padding-top: 120px;
}
.coll-section { padding: var(--gap) 0; border-bottom: 1px solid var(--border-gold); }
.coll-section:last-child { border-bottom: none; }

.coll-header { margin-bottom: 60px; }
.coll-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.coll-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: border-color var(--transition);
  cursor: pointer;
}
.coll-item:hover { border-color: var(--gold); }
.coll-item-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.coll-item-info { padding: 24px; }
.coll-item-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.coll-item:hover .coll-item-name { color: var(--gold); }
.coll-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 24px;
}
.contact-detail {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-gold);
}
.contact-detail:last-child { border-bottom: none; }
.cd-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cd-value {
  font-size: 0.9rem;
  color: var(--text-light);
}
.cd-value a { transition: color var(--transition); }
.cd-value a:hover { color: var(--gold); }

.inquiry-form {}
.inquiry-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-gold);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { min-height: 120px; }

/* ============================================
   JOURNAL PAGE
============================================ */
.journal-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.journal-article {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: border-color var(--transition);
}
.journal-article:hover { border-color: var(--gold); }
.ja-img { height: 240px; background-size: cover; background-position: center; }
.ja-info { padding: 28px; }
.ja-date {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

/* ============================================
   SUCCESS MESSAGE
============================================ */
.success-toast {
  position: fixed;
  bottom: 100px;
  right: 32px;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 16px 28px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  z-index: 2000;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
}
.success-toast.show { opacity: 1; transform: translateY(0); }

/* ============================================
   REVEAL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid .collection-card { height: 420px; }
  .brand-story-grid,
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .brand-visual-block { max-width: 480px; }
  .why-us-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-editorial { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --gap: 80px; }
  .container { padding: 0 20px; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-gold);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 40px;
    gap: 0;
    transition: right var(--transition);
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li { width: 100%; border-bottom: 1px solid var(--border-gold); }
  .nav-menu > li > a { display: block; padding: 16px 0; }
  .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: none; border: none; padding: 0 0 12px 16px; }
  .nav-toggle { display: flex; }

  .collections-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tc-featured { transform: none; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-page-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-tall, .gi-wide { grid-column: auto; grid-row: auto; }
  .gallery-item { height: 200px; }
  .why-us-pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { flex-direction: column; }
  .nl-input { border-right: 1px solid var(--border-gold); border-bottom: none; }
  .coll-items { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .collections-grid { grid-template-columns: 1fr; }
  .journal-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .coll-items { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .about-visual { grid-template-columns: 1fr 1fr; }
}
