/* ═══════════════════════════════════════════════════════════
   YASMINE VARANAI — GLOBAL STYLESHEET
   Palette: Blush Rose · Champagne · Warm Charcoal · Rose Gold
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* ── Core Palette */
  --ivory:        #FDFAF6;
  --ivory-deep:   #F7F2EB;
  --champagne:    #EDE3D5;
  --blush-light:  #F5EAE4;
  --blush:        #E8CEBF;
  --blush-deep:   #D4A898;
  --rose-gold:    #C4856A;
  --rose-dark:    #A0604A;
  --charcoal:     #2B2320;
  --charcoal-mid: #4A3D38;
  --charcoal-soft:#7A6860;
  --text-muted:   #A09088;
  --border:       #E5D8CC;
  --border-light: #EFE6DC;
  --white:        #FFFFFF;

  /* ── Shadows */
  --shadow-xs:  0 2px 8px rgba(43,35,32,.06);
  --shadow-sm:  0 4px 16px rgba(43,35,32,.08);
  --shadow-md:  0 12px 40px rgba(43,35,32,.10);
  --shadow-lg:  0 24px 64px rgba(43,35,32,.12);

  /* ── Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY HELPERS */
.serif    { font-family: 'Playfair Display', serif; }
.eyebrow  {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; color: var(--rose-gold);
}
.eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: currentColor;
}
h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.1; }
h1 { font-size: clamp(3rem,5.5vw,5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 500; }
p  { font-size: .95rem; line-height: 1.9; font-weight: 300; color: var(--charcoal-soft); }

/* ── BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 2.4rem; border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; border: none;
  transition: all .28s var(--ease);
  white-space: nowrap;
}
.btn-dark {
  background: var(--charcoal); color: var(--ivory);
}
.btn-dark:hover { background: var(--charcoal-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); transform: translateY(-2px); }

.btn-rose {
  background: var(--rose-gold); color: var(--white);
}
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── NAVIGATION */
.navbar {
  position: fixed; inset: 0 0 auto;
  height: 74px; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(253,250,246,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .3s var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 500;
  color: var(--charcoal); letter-spacing: .02em;
}
.nav-brand span { color: var(--rose-gold); font-style: italic; }

.nav-links {
  display: flex; gap: 2.5rem; align-items: center; list-style: none;
  height: 100%;
}
.nav-links a {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; color: var(--charcoal-mid);
  position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0; height: 1px;
  background: var(--rose-gold); transform: scaleX(0);
  transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta-btn {
  background: var(--rose-gold); color: #fff;
  padding: .6rem 1.6rem;
  border-radius: 2px;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; transition: background .25s, transform .2s;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px;
}
.nav-cta-btn:hover { background: var(--rose-dark); color: #fff; transform: translateY(-1px); }
.nav-cta-btn::after { display: none !important; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--charcoal); transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
  background: var(--ivory); z-index: 199;
  padding: 3rem 5%; flex-direction: column; gap: 0;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 400;
  color: var(--charcoal); padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--rose-gold); }

/* ── SECTION BASE */
section { padding: 6rem 6%; }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-top: .8rem; color: var(--charcoal); }
.section-header h2 em { font-style: italic; color: var(--rose-gold); }
.section-header p { margin-top: 1rem; max-width: 560px; }

/* ── DIVIDERS */
.rose-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blush-deep) 30%, var(--rose-gold) 50%, var(--blush-deep) 70%, transparent);
  margin: 0;
}

/* ── CARDS */
.card {
  background: var(--white);
  border-radius: 3px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── PAGE HERO (inner pages) */
.page-hero {
  padding-top: 74px;
  min-height: 42vh;
  background: var(--charcoal);
  display: flex; align-items: flex-end;
  padding-bottom: 4rem; padding-left: 6%; padding-right: 6%;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,133,106,.18) 0%, transparent 60%);
}
.page-hero-eyebrow { color: var(--blush); }
.page-hero-eyebrow::before { background: var(--blush); }
.page-hero h1 { color: var(--ivory); margin-top: .8rem; }
.page-hero h1 em { font-style: italic; color: var(--blush-deep); }
.page-hero p { color: rgba(253,250,246,.65); max-width: 560px; margin-top: 1rem; }

/* ── FOOTER */
.footer {
  background: var(--charcoal);
  color: rgba(253,250,246,.55);
  padding: 4rem 6% 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 500; color: var(--ivory);
}
.footer-brand-name span { color: var(--blush-deep); font-style: italic; }
.footer-tagline { margin-top: .5rem; font-size: .83rem; line-height: 1.6; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.5rem; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .85rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--rose-gold); color: #fff; }
.footer-col h4 {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ivory); font-weight: 500; margin-bottom: 1.2rem;
  font-family: 'DM Sans', sans-serif;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul a {
  font-size: .82rem; color: rgba(253,250,246,.5);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--blush-deep); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .9rem; }
.footer-contact-item i { color: var(--blush-deep); font-size: .8rem; margin-top: .15rem; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span {
  font-size: .82rem; color: rgba(253,250,246,.5);
  transition: color .2s; line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--blush-deep); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; padding-top: 2rem;
}
.footer-bottom p { font-size: .73rem; color: rgba(253,250,246,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: .73rem; color: rgba(253,250,246,.35);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--blush-deep); }

/* ── SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ── FORM ELEMENTS */
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--ivory-deep);
  border: 1px solid var(--border);
  padding: .9rem 1.1rem; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: var(--charcoal); outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  background: var(--white);
}
.form-group textarea { resize: none; height: 130px; }

/* ── RESPONSIVE */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { min-height: 36vh; }
}
