/* ═══════════════════════════════════════════
   REVISION WOMEN — DESIGN SYSTEM v3
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Great+Vibes&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c87a;
  --gold-dim:    rgba(201,168,76,0.18);
  --cream:       #fdf8f2;
  --cream-muted: rgba(253,248,242,0.65);
  --cream-dim:   rgba(253,248,242,0.35);
  --body-bg:     #06030f;
  --section-alt: #08041a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--body-bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Ambient depth orbs — make glass panels pop */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 55% at 8% 18%,  rgba(110, 40, 200, 0.20) 0%, transparent 62%),
    radial-gradient(ellipse 65% 50% at 92% 78%,  rgba(180, 120, 20,  0.16) 0%, transparent 58%),
    radial-gradient(ellipse 55% 65% at 52% 3%,   rgba(60,  20, 130,  0.14) 0%, transparent 58%),
    radial-gradient(ellipse 45% 40% at 78% 22%,  rgba(201,168, 76,  0.08) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
  opacity: 1;
}

/* ─────────────────────────────────────
   LIQUID GLASS SYSTEM — ENHANCED GLASSMORPHISM
───────────────────────────────────── */

.liquid-glass {
  background: rgba(255, 255, 255, 0.04);
  background-blend-mode: luminosity;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.30);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* White-tinted glass panel */
.liquid-glass-white {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 -1px 0 rgba(255,255,255,0.10),
    0 8px 48px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}
.liquid-glass-white::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.18) 20%,
    rgba(255, 255, 255, 0) 45%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.18) 82%,
    rgba(255, 255, 255, 0.50) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Dark glass panel */
.liquid-glass-dark {
  background: rgba(12, 6, 32, 0.52);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.04),
    0 4px 24px rgba(0,0,0,0.35),
    0 16px 48px rgba(0,0,0,0.20);
  position: relative;
  overflow: hidden;
}
.liquid-glass-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0.10) 22%,
    rgba(255,255,255,0) 48%,
    rgba(201,168,76,0.05) 72%,
    rgba(201,168,76,0.28) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Gold-tinted glass */
.liquid-glass-gold {
  background: rgba(201, 168, 76, 0.07);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(201,168,76,0.30),
    inset 0 -1px 0 rgba(201,168,76,0.08),
    0 4px 28px rgba(201,168,76,0.10),
    0 12px 40px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}
.liquid-glass-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    145deg,
    rgba(201,168,76,0.65) 0%,
    rgba(201,168,76,0.22) 22%,
    rgba(201,168,76,0) 48%,
    rgba(201,168,76,0.14) 75%,
    rgba(201,168,76,0.52) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Frosted glass — light surface for hero/page-header text blocks */
.glass-frosted {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 8px 40px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
}

/* ─────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
.script  { font-family: 'Great Vibes', cursive; color: var(--gold); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--cream-muted); }

/* ─────────────────────────────────────
   NAVIGATION
───────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 70px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 4, 22, 0.48);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 1px 0 rgba(201,168,76,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 24px rgba(0,0,0,0.20);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-nav.scrolled {
  background: rgba(6, 3, 15, 0.80);
  box-shadow: 0 1px 0 rgba(201,168,76,0.18), 0 8px 32px rgba(0,0,0,0.35);
}

.nav-logo img { height: 46px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,248,242,0.6);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--body-bg);
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--cream); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 0;
  background: rgba(6,3,15,0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─────────────────────────────────────
   LAYOUT
───────────────────────────────────── */
.page-wrap {
  position: relative;
  z-index: 1;
  padding-top: 70px;
}

.section {
  padding: 80px 0;
  position: relative;
}
.section-alt {
  background: rgba(255,255,255,0.012);
  backdrop-filter: blur(0px);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.section-label {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 0 28px rgba(201,168,76,0.45), 0 0 8px rgba(201,168,76,0.20);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 18px;
}
.divider { display: block; width: 48px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────
   IMAGE CARDS — never stretch/blur
───────────────────────────────────── */
.img-card {
  overflow: hidden;
  position: relative;
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.img-card:hover img { transform: scale(1.03); }

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--body-bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.30), 0 0 0 1px rgba(201,168,76,0.15);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45), 0 0 0 1px rgba(201,168,76,0.25);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 30px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(201,168,76,0.45);
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }

/* ─────────────────────────────────────
   HERO SECTION
───────────────────────────────────── */
.hero-section {
  padding: 60px 0 80px;
  position: relative;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.site-footer {
  background: rgba(4,2,10,0.98);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 64px 40px 32px;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3,1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 28px;
}
.footer-logo { height: 54px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.8rem; color: var(--cream-muted); line-height: 1.75; }
.footer-col-title { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(253,248,242,0.28); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.8rem; color: rgba(253,248,242,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.7rem; color: rgba(253,248,242,0.22); }
.footer-social { display: flex; gap: 18px; }
.footer-social a { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(253,248,242,0.28); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

/* ─────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp 0.65s ease forwards; }
.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.2s; }
.reveal.d3 { animation-delay: 0.3s; }
.reveal.d4 { animation-delay: 0.4s; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 960px) {
  .site-nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding: 0 24px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
