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

:root {
  --cream: #F7F3EE;
  --ivory: #FDFAF6;
  --charcoal: #1E1E1E;
  --dark: #111111;
  --gold: #B8962E;
  --gold-light: #D4AF5A;
  --gold-pale: #F0E6C8;
  --rose: #C4907A;
  --sage: #8A9E8C;
  --mid-gray: #6B6B6B;
  --light-gray: #E8E2D9;
  --border: rgba(184,150,46,0.2);
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-med: 0 12px 48px rgba(0,0,0,0.10);
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Raleway', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-soft); }

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-main {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid-gray);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--charcoal) !important;
  color: var(--ivory) !important;
  padding: 11px 26px !important;
  letter-spacing: 0.15em !important;
  border: 2px solid var(--charcoal) !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; }
.nav-cta::after { display: none !important; }

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

/* ═══ FOOTER ═══ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 72px 5vw 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 48px;
  margin-bottom: 32px;
}
.footer-brand .logo-text {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  display: block;
}
.footer-brand .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: block;
}
.footer-brand p { font-size: 0.83rem; line-height: 1.9; }
.footer-col h4 {
  font-family: var(--serif);
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,150,46,0.3);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: color var(--transition);
  letter-spacing: 0.03em;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.82rem; line-height: 2; }
.footer-col .phone-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 5px;
  gap: 12px;
}
.hours-row .day { font-weight: 600; color: rgba(255,255,255,0.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer-bottom .gold { color: var(--gold-light); }

/* ═══ PAGE HEADER ═══ */
.page-header {
  padding: 155px 5vw 80px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(184,150,46,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-header .subtitle {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 520px;
  margin: 0 auto;
}

/* ═══ SECTION UTILITIES ═══ */
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.divider { width: 48px; height: 1px; background: var(--gold); margin: 18px 0; }
.divider.center { margin: 18px auto; }

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--charcoal);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
  border: 2px solid var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover { background: transparent; color: var(--charcoal); }

.btn-outline {
  display: inline-block;
  padding: 14px 38px;
  background: transparent;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
  border: 2px solid var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }

.btn-gold {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gold);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gold:hover { background: transparent; color: var(--gold); }

/* ═══ FADE ANIMATION ═══ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE NAV ═══ */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--ivory);
    padding: 32px 5vw 48px;
    border-top: 1px solid var(--light-gray);
    gap: 1.4rem;
    box-shadow: var(--shadow-med);
    z-index: 9998;
    align-items: flex-start;
  }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
