/* ============================================
   LUMINAE INTERIORS — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Outfit:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --warm-white: #FAFAF8;
  --stone: #E8E4DC;
  --charcoal: #1C1C1A;
  --gold: #B8946A;
  --grey: #C4BDB4;
  --text: #2A2A28;
  --text-light: #6B6560;
  --nav-h: 88px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--warm-white);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
.display { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.display-italic { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  background: rgba(250,250,248,0.97);
  box-shadow: 0 1px 0 var(--stone);
  backdrop-filter: blur(8px);
}
.nav-logo svg { width: auto; height: 44px; }
.nav-links {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--charcoal);
  transition: background 0.3s, transform 0.3s;
}

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--charcoal);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--warm-white);
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 1.5rem;
  color: var(--grey);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}
.nav-overlay.open { display: block; }

/* ── Gold Rule ── */
.gold-rule {
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}
.gold-rule-full {
  display: block;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ── Section Spacing ── */
.section { padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px); }
.section-sm { padding: clamp(60px, 7vw, 100px) clamp(24px, 5vw, 80px); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--warm-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--charcoal); color: var(--warm-white); }
.btn-outline-light {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--warm-white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline-light:hover { border-color: var(--warm-white); background: rgba(255,255,255,0.08); }

/* ── Label / Eyebrow ── */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: var(--stone);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--grey);
  margin-top: 20px;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 10px;
  transition: color 0.3s;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--warm-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  height: 65vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,26,0.75) 0%, rgba(28,28,26,0.1) 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--warm-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
