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

:root {
  --cream: #FAF8F5;
  --cream-light: #FFFFFF;
  --cream-tint: #F3EEE7;
  --dark: #141210;
  --dark-card: #1D1A17;
  --dark-card-hover: #26221E;
  --mid: #38332C;
  --gold: #C8922A;
  --gold-light: #E5B45B;
  --gold-subtle: rgba(200, 146, 42, 0.12);
  --gold-glow: rgba(200, 146, 42, 0.25);
  --rose: #C47A6B;
  --sage: #52796F;
  --text: #1E1B18;
  --muted: #665E54;
  --muted-light: #948B80;
  --border: rgba(26, 23, 20, 0.08);
  --border-hover: rgba(200, 146, 42, 0.4);
  --shadow-sm: 0 2px 8px rgba(20, 18, 16, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 18, 16, 0.07);
  --shadow-lg: 0 20px 40px rgba(20, 18, 16, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.6;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--dark);
  letter-spacing: -0.02em;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
  font-weight: 600;
}

.nav-badge-pill {
  background: var(--gold);
  color: #FFFFFF;
  font-size: 0.675rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  margin-left: 4px;
  vertical-align: middle;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-secondary {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: #FFFFFF;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-secondary:hover {
  border-color: var(--dark);
  background: var(--cream);
}

.nav-cta {
  background: var(--dark);
  color: var(--cream);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 12px rgba(20, 18, 16, 0.15);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--dark);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
}

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem 2rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
}

.mobile-nav-links a.active {
  color: var(--gold);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(250, 248, 245, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 3rem 2.5rem;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  display: inline-block;
  text-decoration: none;
}

.footer-brand .logo span {
  color: var(--gold);
  font-style: italic;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.6);
}

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: rgba(250, 248, 245, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* RESPONSIVE COMMON */
@media (max-width: 1080px) {
  nav { padding: 0 2rem; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-actions .nav-secondary {
    display: none !important;
  }
}

@media (max-width: 640px) {
  nav { padding: 0 1.25rem; height: 62px; }
  .nav-actions { gap: 0.5rem; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .mobile-drawer { top: 62px; }
  footer { padding: 3rem 1.25rem 2rem; }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
