/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --charcoal: #1a1814;
  --dark-brown: #1a0a0a;
  --gold: #cc0000;
  --gold-light: #e53333;
  --taupe: #8c7b6b;
  --sand: #e8ddd0;
  --text-muted: #6b5f52;
  --border: rgba(184,147,74,0.2);
}
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid #e8e8e8;
  transition: padding 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 56px; width: auto; object-fit: contain; filter: none; }
.nav-logo-text { display: none; }
.nav-logo-text span { display: none; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(20,20,20,0.85);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  padding: 10px 26px;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--charcoal); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { width: 24px; height: 2px; background: #111111; transition: all 0.3s; display: block; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  min-height: 52vh;
  background: var(--charcoal);
  display: flex; align-items: flex-end;
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,24,20,1) 0%, rgba(44,36,24,0.85) 100%);
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.page-header-content { position: relative; z-index: 2; }
.page-header-label {
  font-size: 11px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.page-header-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300; line-height: 1.05; color: var(--cream);
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header-sub {
  font-size: 14px; font-weight: 300; line-height: 1.9;
  color: rgba(245,240,232,0.55); max-width: 500px; margin-top: 18px;
}
.breadcrumb { display: flex; gap: 10px; align-items: center; margin-top: 28px; }
.breadcrumb a, .breadcrumb span {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); opacity: 0.5; }
.breadcrumb .current { color: var(--gold); }

/* ── SECTIONS ── */
section { padding: 90px 0; }
.container { max-width: 1260px; margin: 0 auto; padding: 0 60px; }
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 300; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--text-muted); max-width: 520px; }

/* ── BUTTONS ── */
.btn-primary {
  padding: 15px 40px; background: var(--gold); color: white;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  padding: 15px 40px; background: transparent; color: var(--charcoal);
  border: 1px solid var(--charcoal); font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; cursor: pointer; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── AWARDS TICKER ── */
.awards-bar { background: var(--gold); padding: 14px 0; overflow: hidden; }
.awards-track { display: flex; gap: 0; animation: ticker 30s linear infinite; white-space: nowrap; }
.awards-item {
  display: flex; align-items: center; gap: 30px;
  padding: 0 50px; flex-shrink: 0;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--charcoal);
}
.awards-item::after { content: '✦'; opacity: 0.6; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── STATS BANNER ── */
.stats-banner { background: var(--dark-brown); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 30px; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; width: 1px; height: 60%; background: rgba(184,147,74,0.2); }
.stat-big { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-sup { font-size: 32px; vertical-align: top; margin-top: 10px; display: inline-block; }
.stat-desc { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,240,232,0.75); margin-top: 10px; }

/* ── BRANDS ── */
.brands { background: #f8f8f8; padding: 70px 0; }
.brands-label { text-align: center; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(30,30,30,0.45); margin-bottom: 44px; }
.brands-track { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; letter-spacing: 3px; color: rgba(30,30,30,0.4); text-transform: uppercase; transition: color 0.3s; cursor: default; }
.brand-name:hover { color: var(--gold-light); }

/* ── CTA BAND ── */
.cta-band {
  position: relative; overflow: hidden;
  background: url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?w=1600&q=80') center/cover;
  padding: 130px 0;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: rgba(26,24,20,0.80); }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner .section-label { justify-content: center; }
.cta-inner .section-label::before { display: none; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 72px); font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 22px; }
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-desc { font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(245,240,232,0.7); max-width: 520px; margin: 0 auto 50px; }
.cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #ffffff; border-top: 1px solid rgba(204,0,0,0.2); }
.footer-top { padding: 80px 0 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo img { height: 54px; width: auto; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; letter-spacing: 3px; color: var(--charcoal); }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--taupe); margin-bottom: 22px; }
.footer-about { font-size: 13px; font-weight: 300; line-height: 1.9; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 38px; height: 38px; border: 1px solid rgba(204,0,0,0.3); display: flex; align-items: center; justify-content: center; color: #555; font-size: 13px; text-decoration: none; transition: all 0.3s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(30,30,30,0.75); text-decoration: none; transition: color 0.3s; letter-spacing: 0.5px; }
.footer-links a:hover { color: var(--charcoal); }
.footer-contact-item { display: flex; gap: 14px; margin-bottom: 18px; }
.footer-contact-icon { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 13px; font-weight: 300; color: rgba(30,30,30,0.75); line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(204,0,0,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(30,30,30,0.6); letter-spacing: 1px; }
.footer-policy { display: flex; gap: 28px; }
.footer-policy a { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(30,30,30,0.45); text-decoration: none; transition: color 0.3s; }
.footer-policy a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── WHATSAPP ── */
.whatsapp-float { position: fixed; bottom: 36px; right: 36px; z-index: 1000; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: transform 0.3s; text-decoration: none; font-size: 24px; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px !important; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(255,255,255,0.98); align-items: center; justify-content: center; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 16px 0; }
  .nav-links a { font-size: 16px; letter-spacing: 3px; }
  .nav-cta { display: none; }
  .burger { display: flex; z-index: 1001; }
  .container { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2)::after { display: none; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
}

/* ── NAV LOGO TEXT ── */
.nav-logo-text { display: none; }
.nav-logo-text span { display: none; }
/* ── FOOTER LOGO BLOCK ── */
.footer-logo-block { margin-bottom: 16px; }
