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

:root {
  --burgundy: #5c1a1a;
  --wine: #7b2d2d;
  --gold: #c9a84c;
  --gold-light: #e8d49a;
  --cream: #f5eed8;
  --dark: #1a0e0e;
  --forest: #2d4a2d;
  --leaf: #4a6741;
  --text: #2a1a1a;
  --muted: #7a6262;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(26,14,14,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo img {
  width: 50px; height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.nav-logo-text { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 0.85rem; line-height: 1.3; }
.nav-logo-text span { display: block; font-size: 0.6rem; color: rgba(232,212,154,0.8); font-family: 'Montserrat', sans-serif; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(232,212,154,0.75);
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-light); transition: all 0.3s; }
.nav-mobile { display: none; position: fixed; top: 60px; left: 0; right: 0; background: rgba(26,14,14,0.98); padding: 1.5rem 2rem; z-index: 99; flex-direction: column; gap: 1rem; }
.nav-mobile a { text-decoration: none; color: var(--gold-light); font-family: 'Montserrat', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
.nav-mobile.open { display: flex; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 9rem 4rem 5rem;
  background: linear-gradient(160deg, #1a0e0e 0%, #2d1a0e 50%, #1a2d0e 100%);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(92,26,26,0.4) 0%, transparent 60%);
}
.page-header-content { position: relative; z-index: 1; max-width: 700px; }
.page-eyebrow {
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem;
}
.page-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.page-header h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1; color: #ffffff; margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p { font-size: 1.1rem; font-weight: 400; color: rgba(245,238,216,0.92); line-height: 1.7; max-width: 520px; text-shadow: 0 1px 6px rgba(0,0,0,0.7); }

/* ── GENERAL ── */
.section-label { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; margin-bottom: 1.5rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: var(--gold); color: var(--dark);
  text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold); text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.gold-line { width: 50px; height: 2px; background: var(--gold); margin-bottom: 2rem; }
.divider { display: flex; align-items: center; gap: 1.5rem; margin: 2.5rem 0; }
.divider-line { flex: 1; height: 1px; background: rgba(92,26,26,0.12); }
.divider-icon { color: var(--gold); font-size: 0.8rem; }

/* ── FOOTER ── */
footer {
  background: #0d0707; color: rgba(245,238,216,0.75);
  padding: 3rem 4rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(201,168,76,0.1); margin-bottom: 2rem; }
.footer-brand { }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: rgba(201,168,76,0.9); margin-bottom: 0.8rem; }
.footer-tagline { font-size: 0.9rem; font-weight: 300; color: rgba(245,238,216,0.6); line-height: 1.6; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(201,168,76,0.85); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { text-decoration: none; color: rgba(245,238,216,0.65); font-family: 'Montserrat', sans-serif; font-size: 0.72rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; color: rgba(245,238,216,0.65); line-height: 1.8; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(245,238,216,0.45); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(201,168,76,0.35); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(201,168,76,0.75); font-size: 0.9rem; transition: all 0.3s; border-radius: 50%; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER SUPPORT ── */
.footer-support {
  text-align: center;
  padding: 1.2rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,238,216,0.45);
}
.footer-support a {
  color: rgba(201,168,76,0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}
.footer-support a:hover { color: var(--gold); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-header { padding: 7rem 1.5rem 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
