/* ═══════════════════════════════════════
   MAISON ELSYMAR — GLOBAL STYLESHEET
   ═══════════════════════════════════════ */

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

:root {
  --ink:       #0D0D0D;
  --ink-soft:  #141414;
  --ink-mid:   #252525;
  --gold:      #C9933A;
  --gold-pale: #E2B96A;
  --gold-dim:  rgba(201,147,58,0.18);
  --cream:     #F5EDD8;
  --cream-dim: #EDE4CC;
  --ash:       #5A5A5A;
  --rule:      rgba(201,147,58,0.18);
  --white:     #FDFAF4;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Jost', sans-serif;
  --ff-fine:    'Cormorant', Georgia, serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22,0.61,0.36,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
button { cursor:pointer; font-family:var(--ff-body); }

.container { max-width:var(--max); margin:0 auto; padding:0 5%; }

/* NAV */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:0 5%;
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
  background:rgba(13,13,13,0.92);
  backdrop-filter:blur(18px) saturate(150%);
  border-bottom:1px solid var(--rule);
}
.nav-brand { display:flex; align-items:center; gap:0.75rem; }
.nav-brand-mark {
  width:34px; height:34px;
  border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-display); font-size:1.05rem; color:var(--gold);
}
.nav-brand-name {
  font-family:var(--ff-display); font-size:1.05rem; font-weight:500;
  letter-spacing:0.05em; color:var(--cream);
}
.nav-links { display:flex; gap:2.5rem; list-style:none; }
.nav-links a {
  font-size:0.7rem; font-weight:500; letter-spacing:0.14em;
  text-transform:uppercase; color:rgba(245,237,216,0.5);
  transition:color 0.25s, border-color 0.25s;
  padding-bottom:3px; border-bottom:1px solid transparent;
}
.nav-links a:hover,.nav-links a.active { color:var(--gold); border-bottom-color:var(--gold); }
.nav-cta {
  background:transparent; border:1px solid var(--gold);
  color:var(--gold); padding:0.5rem 1.3rem;
  font-size:0.7rem; font-weight:600; letter-spacing:0.14em;
  text-transform:uppercase; transition:all 0.3s;
}
.nav-cta:hover { background:var(--gold); color:var(--ink); }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  padding:4px; background:none; border:none;
}
.hamburger span { display:block; width:22px; height:1.5px; background:var(--cream); transition:all 0.3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(4.5px,-4.5px); }
.mobile-menu {
  display:none; position:fixed; top:72px; left:0; right:0; z-index:899;
  background:var(--ink-soft); border-bottom:1px solid var(--rule);
  flex-direction:column; padding:1.5rem 5%;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-size:0.82rem; font-weight:400; letter-spacing:0.12em;
  text-transform:uppercase; color:rgba(245,237,216,0.55);
  padding:0.9rem 0; border-bottom:1px solid var(--rule);
  transition:color 0.25s;
}
.mobile-menu a:hover,.mobile-menu a.active { color:var(--gold); }

/* FOOTER */
.footer { background:var(--ink-soft); border-top:1px solid var(--rule); padding:5rem 5% 2.5rem; }
.footer-inner {
  max-width:var(--max); margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:4rem;
}
.footer-brand-name { font-family:var(--ff-display); font-size:1.5rem; font-weight:400; color:var(--gold); margin-bottom:1rem; }
.footer-tagline { font-family:var(--ff-fine); font-style:italic; font-size:0.92rem; color:rgba(245,237,216,0.35); line-height:1.75; }
.footer-col h5 {
  font-size:0.62rem; font-weight:600; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--gold); margin-bottom:1.4rem;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.85rem; }
.footer-col ul a { font-size:0.8rem; font-weight:300; color:rgba(245,237,216,0.4); transition:color 0.25s; }
.footer-col ul a:hover { color:var(--cream); }
.footer-bottom {
  max-width:var(--max); margin:3rem auto 0;
  padding-top:2rem; border-top:1px solid var(--rule);
  display:flex; justify-content:space-between; align-items:center;
}
.footer-bottom p { font-size:0.7rem; color:rgba(245,237,216,0.25); letter-spacing:0.05em; }
.footer-legal { display:flex; gap:2rem; }
.footer-legal a { font-size:0.7rem; color:rgba(245,237,216,0.25); transition:color 0.25s; }
.footer-legal a:hover { color:var(--gold); }

/* PLACEHOLDERS */
.ph {
  background:var(--ink-mid);
  border:1px dashed rgba(201,147,58,0.28);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:0.7rem; position:relative; overflow:hidden;
}
.ph::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(-45deg,transparent,transparent 20px,rgba(201,147,58,0.03) 20px,rgba(201,147,58,0.03) 21px);
}
.ph-icon { font-size:2.2rem; position:relative; z-index:1; opacity:0.6; }
.ph-label {
  font-family:var(--ff-body); font-size:0.62rem; font-weight:500;
  letter-spacing:0.16em; text-transform:uppercase;
  color:rgba(201,147,58,0.5); position:relative; z-index:1; text-align:center; line-height:1.5;
}

/* COMMON */
.eyebrow {
  display:inline-flex; align-items:center; gap:0.7rem;
  font-size:0.62rem; font-weight:600; letter-spacing:0.26em;
  text-transform:uppercase; color:var(--gold); margin-bottom:1.2rem;
}
.eyebrow::before,.eyebrow::after { content:''; width:22px; height:1px; background:var(--gold); flex:none; }
.display-title { font-family:var(--ff-display); font-weight:400; line-height:1.07; color:var(--cream); letter-spacing:-0.01em; }
.display-title em { font-style:italic; color:var(--gold); }
.body-text { font-family:var(--ff-body); font-weight:300; color:rgba(245,237,216,0.5); line-height:1.9; }
.gold-rule { width:44px; height:1px; background:var(--gold); margin:1.4rem 0; }

.btn-gold {
  display:inline-flex; align-items:center; gap:0.6rem;
  background:var(--gold); color:var(--ink);
  padding:0.85rem 2.2rem;
  font-size:0.7rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase;
  border:none; transition:all 0.3s var(--ease);
}
.btn-gold:hover { background:var(--gold-pale); transform:translateY(-2px); box-shadow:0 14px 40px rgba(201,147,58,0.22); }
.btn-ghost {
  display:inline-flex; align-items:center; gap:0.6rem;
  background:transparent; color:var(--cream);
  padding:0.85rem 2.2rem;
  font-size:0.7rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase;
  border:1px solid rgba(245,237,216,0.28); transition:all 0.3s var(--ease);
}
.btn-ghost:hover { border-color:var(--cream); background:rgba(245,237,216,0.05); }
.btn-wa {
  display:inline-flex; align-items:center; gap:0.55rem;
  background:#1FAD50; color:#fff;
  padding:0.7rem 1.4rem;
  font-size:0.68rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  border:none; transition:all 0.25s; white-space:nowrap;
}
.btn-wa:hover { background:#178F42; transform:scale(1.03); }
.btn-wa svg { width:14px; height:14px; fill:#fff; flex-shrink:0; }

@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.fade-in { animation:fadeUp 0.7s var(--ease) both; }
.fade-in-d1 { animation-delay:0.15s; }
.fade-in-d2 { animation-delay:0.3s; }
.fade-in-d3 { animation-delay:0.45s; }
.fade-in-d4 { animation-delay:0.6s; }

@media(max-width:960px) {
  .nav-links,.nav-cta { display:none; }
  .hamburger { display:flex; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:2.5rem; }
}
@media(max-width:600px) {
  .footer-inner { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:1rem; text-align:center; }
  .footer-legal { justify-content:center; }
}
