*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory: #FAF8F3;
  --cream: #FAF8F3;
  --teal: #2A9688;
  --dark: #1A1A1A;
  --border: rgba(201,168,76,0.2);
  --teal-dark: #1A3A38;
  --teal-accent: #2A9688;
  --gold: #C9A84C;
  --blush: #E8C4B0;
  --body: #1A1A1A;
  --light: #FAF8F3;
  --muted: #888;
  --footer-bg: #1A3A38;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--body);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

/* ── ANNOUNCEMENT BAR ── */
#announcement-bar {
  background: var(--teal-dark);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 16px;
  position: relative;
  z-index: 1000;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
#announcement-bar a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  display: inline-block;
  background: var(--teal) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #23847a !important; transform: translateY(-1px); }

/* ── HAMBURGER (hidden on desktop, shown on mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
}

/* ── MOBILE NAV OVERLAY ── */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--teal-dark);
  text-decoration: none;
}
#mobile-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--body);
}
#mobile-nav .mobile-cta {
  background: var(--teal-accent);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 100px;
  margin-top: 16px;
}

/* ── SHARED BUTTON STYLES ── */
.btn-primary {
  background: white;
  color: var(--teal-dark);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid white;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-teal {
  display: inline-block;
  background: var(--teal-accent);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-teal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-teal:hover::after { transform: translateX(100%); }
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,56,0.3);
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--teal-dark);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:hover {
  background: #d4b357;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

/* ── FADE UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── FOOTER (homepage style) ── */
footer {
  background: var(--teal-dark);
  padding: 80px 60px 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,248,243,0.1);
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(250,248,243,0.6);
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
}
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(250,248,243,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(250,248,243,0.4);
}
.footer-family {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(250,248,243,0.4);
}
.footer-family a {
  color: rgba(250,248,243,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(250,248,243,0.2);
  transition: color 0.2s;
}
.footer-family a:hover { color: var(--gold); }

/* ── BLOG/ABOUT FOOTER (simpler) ── */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 60px 40px 40px;
  text-align: center;
}
.site-footer .footer-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ── MOBILE STYLES ── */
@media (max-width: 900px) {
  html, body { overflow-x: hidden !important; width: 100% !important; }
  *, *::before, *::after { box-sizing: border-box; max-width: 100%; }

  #announcement-bar {
    font-size: 11px;
    padding: 9px 14px;
    letter-spacing: 0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navbar { padding: 0 18px; height: 58px; }
  .nav-wordmark { font-size: 0.9rem; letter-spacing: 0.06em; }
  .nav-links { display: none !important; }
  .nav-hamburger {
    display: flex !important;
    visibility: visible !important;
    width: 36px !important;
    height: 36px !important;
    overflow: visible !important;
  }

  #mobile-nav a { font-size: 28px; }

  footer { padding: 48px 22px 32px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-links { gap: 16px; }
  .footer-links a { font-size: 14px; }
}
