@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,500&family=Jost:wght@200;300;400;500&family=Playfair+Display:ital,wght@1,400;1,500&display=swap');

:root {
  /* ══════════════════════════════════
     SAGE GREEN ACCENT
  ══════════════════════════════════ */
  --gold:           #4a6b55;          /* deep sage green (replaces gold role) */
  --gold-light:     #6b8c74;          /* lifted sage */
  --gold-lighter:   #a8c4ae;          /* pale sage mist */
  --gold-dark:      #304a3a;          /* forest shadow */
  --gold-deeper:    #1e3028;          /* deepest fern */
  --gold-sheen:     rgba(74, 107, 85, 0.07);

  /* ══════════════════════════════════
     ANTIQUE BRASS (highlight accent)
  ══════════════════════════════════ */
  --brass:          #b07d45;          /* antique brass */
  --brass-light:    #cc9e68;          /* warm brass highlight */
  --brass-dark:     #7a5428;          /* aged bronze */
  --brass-sheen:    rgba(176, 125, 69, 0.1);

  /* ══════════════════════════════════
     BONE / WARM WHITE SURFACES
  ══════════════════════════════════ */
  --cream:          #f7f4ee;          /* warm bone white */
  --cream-dark:     #ede8df;          /* toasted linen */
  --cream-deeper:   #e2dbd0;          /* warm greige */
  --parchment:      #faf8f3;          /* pure bone */
  --parchment-warm: #f0ead9;          /* aged paper */

  /* ══════════════════════════════════
     DARK TONES (text & nav/footer)
  ══════════════════════════════════ */
  --charcoal:       #1c2420;          /* deep forest black */
  --charcoal-mid:   #243029;          /* dark fern */
  --charcoal-rich:  #2e3d34;          /* rich forest */
  --charcoal-light: #3d5244;          /* lifted forest */
  --text-dark:      #1c2420;          /* body text */
  --text-muted:     #7a8c80;          /* muted sage-grey */
  --text-dim:       #adb8b0;          /* dimmed */
  --text-cream:     rgba(247, 244, 238, 0.9);

  --white:          #ffffff;

  /* ══════════════════════════════════
     GRADIENTS
  ══════════════════════════════════ */
  --gradient-gold:
    linear-gradient(135deg, var(--gold-deeper) 0%, var(--gold) 50%, var(--gold-lighter) 100%);
  --gradient-brass:
    linear-gradient(120deg, var(--brass-dark) 0%, var(--brass) 45%, var(--brass-light) 100%);
  --gradient-dark:
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  --gradient-surface:
    linear-gradient(160deg, var(--parchment) 0%, var(--cream) 55%, var(--cream-dark) 100%);
  --gradient-champagne: var(--gradient-brass);

  /* ══════════════════════════════════
     SHADOWS
  ══════════════════════════════════ */
  --shadow-gold-sm:  0 2px 16px rgba(74, 107, 85, 0.14);
  --shadow-gold-md:  0 8px 40px rgba(74, 107, 85, 0.18);
  --shadow-gold-lg:  0 20px 80px rgba(74, 107, 85, 0.22);
  --shadow-dark:     0 24px 80px rgba(28, 36, 32, 0.18);
  --shadow-dark-sm:  0 4px 20px rgba(28, 36, 32, 0.10);
  --shadow-brass:    0 8px 32px rgba(176, 125, 69, 0.20);
  --shadow-inset:    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  /* ══════════════════════════════════
     MOTION
  ══════════════════════════════════ */
  --ease-luxury:   cubic-bezier(0.25, 0.1, 0.1, 1);
  --ease-reveal:   cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.25s;
  --duration-mid:  0.45s;
  --duration-slow: 0.7s;

  /* ══════════════════════════════════
     BORDERS
  ══════════════════════════════════ */
  --border-gold:      1px solid rgba(74, 107, 85, 0.30);
  --border-gold-dim:  1px solid rgba(74, 107, 85, 0.14);
  --border-brass:     1px solid rgba(176, 125, 69, 0.28);
  --border-light:     1px solid rgba(28, 36, 32, 0.08);
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-dark), var(--gold));
  border-radius: 3px;
}

/* ─── SELECTION ─── */
::selection {
  background: rgba(74, 107, 85, 0.18);
  color: var(--charcoal);
}

/* ═══════════════════════════════════════
   NAV — deep forest, bone white text
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem 5rem;
  background: rgba(28, 36, 32, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(74, 107, 85, 0.2);
  transition:
    padding var(--duration-mid) var(--ease-luxury),
    background var(--duration-mid) var(--ease-luxury),
    box-shadow var(--duration-mid) var(--ease-luxury);
}

nav::after {
  content: '';
  position: absolute; bottom: -1px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  opacity: 0.3;
  pointer-events: none;
}

nav.scrolled {
  padding: 1.1rem 5rem;
  background: rgba(20, 26, 22, 0.99);
  box-shadow: 0 4px 40px rgba(28, 36, 32, 0.5), 0 1px 0 rgba(74, 107, 85, 0.15);
}

/* Logo */
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--cream); text-decoration: none;
  display: flex; align-items: center; gap: 0.7rem;
  transition: opacity var(--duration-fast) var(--ease-luxury);
}
.nav-logo:hover { opacity: 0.82; }
.nav-logo span {
  color: var(--gold-lighter); font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
.nav-logo .logo-ornament {
  width: 22px; height: 22px;
  border: 1px solid rgba(168, 196, 174, 0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--gold-lighter);
  flex-shrink: 0;
}

/* Nav Links */
.nav-links {
  display: flex; gap: 2.8rem; list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(247, 244, 238, 0.6);
  text-decoration: none;
  font-size: 0.73rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color var(--duration-fast) var(--ease-luxury);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 50%;
  width: 0; height: 1px;
  background: var(--gradient-gold);
  transform: translateX(-50%);
  transition: width var(--duration-mid) var(--ease-luxury);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-lighter); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  background: transparent !important;
  border: 1px solid rgba(168, 196, 174, 0.4) !important;
  color: var(--gold-lighter) !important;
  padding: 0.55rem 1.6rem;
  font-size: 0.8rem !important;
  letter-spacing: 0.22em !important;
  transition: all var(--duration-mid) var(--ease-luxury) !important;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '' !important;
  position: absolute; inset: 0;
  background: var(--gradient-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--duration-mid) var(--ease-luxury);
  z-index: -1;
}
.nav-cta:hover {
  color: var(--white) !important;
  border-color: var(--gold) !important;
  box-shadow: var(--shadow-gold-sm) !important;
}
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta::after { display: none !important; }

/* ═══════════════════════════════════════
   FOOTER — charcoal forest, sage accents
═══════════════════════════════════════ */
footer {
  background: var(--charcoal);
  color: rgba(168, 196, 174, 0.5);
  padding: 5rem 7rem 2.5rem;
  border-top: var(--border-gold-dim);
  position: relative; overflow: hidden;
}

footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

footer::after {
  content: '';
  position: absolute; top: 3rem; right: 5rem;
  width: 140px; height: 140px;
  border: 1px solid rgba(74, 107, 85, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem; margin-bottom: 4rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--cream);
  font-weight: 400; letter-spacing: 0.08em;
  margin-bottom: 0.5rem; line-height: 1.2;
}
.footer-brand .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold-light);
  font-size: 0.9rem; letter-spacing: 0.1em;
  display: block; margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.8rem; line-height: 1.9; font-weight: 300;
  color: rgba(168, 196, 174, 0.45); max-width: 28ch;
}

.footer-col h4 {
  color: var(--gold-light); font-size: 0.68rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-col h4::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(74, 107, 85, 0.3), transparent);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a {
  color: rgba(168, 196, 174, 0.45); text-decoration: none;
  font-size: 0.8rem; font-weight: 300;
  transition:
    color var(--duration-fast) var(--ease-luxury),
    letter-spacing var(--duration-fast) var(--ease-luxury);
  display: inline-block;
}
.footer-col ul a:hover { color: var(--cream); letter-spacing: 0.03em; }
.footer-col p {
  font-size: 0.8rem; line-height: 2; font-weight: 300;
  color: rgba(168, 196, 174, 0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(74, 107, 85, 0.15);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(168, 196, 174, 0.3);
}
.footer-bottom a {
  color: var(--gold-light); text-decoration: none;
  transition: color var(--duration-fast) var(--ease-luxury);
  letter-spacing: 0.05em;
}
.footer-bottom a:hover { color: var(--cream); }

/* ═══════════════════════════════════════
   DECORATIVE ELEMENTS
═══════════════════════════════════════ */
.gold-divider {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 2rem;
}
.gold-divider::before,
.gold-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(74, 107, 85, 0.35));
}
.gold-divider::after {
  background: linear-gradient(to left, transparent, rgba(74, 107, 85, 0.35));
}
.gold-divider span { color: var(--gold); font-size: 0.9rem; opacity: 0.8; }

.ornament-rule {
  display: flex; align-items: center; gap: 0; margin: 1.5rem 0;
}
.ornament-rule::before {
  content: ''; flex: 1; height: 2px;
  background:
    linear-gradient(to right, transparent 0%, var(--gold-dark) 30%, var(--gold) 50%, var(--gold-dark) 70%, transparent 100%);
  clip-path: polygon(0 30%, 100% 30%, 100% 70%, 0 70%);
}

.section-label {
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: ''; width: 20px; height: 1px;
  background: var(--gold); opacity: 0.55; flex-shrink: 0;
}

.luxury-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.luxury-heading em {
  font-style: italic; color: var(--gold-dark);
  font-family: 'Playfair Display', serif;
}
.luxury-heading-light { color: var(--gold-lighter); }
.luxury-heading-light em { color: var(--gold); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.95rem 2.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212, 180, 131, 0.45);
  color: var(--gold-dark); background: transparent;
  cursor: pointer;
  transition:
    color var(--duration-mid) var(--ease-luxury),
    border-color var(--duration-mid) var(--ease-luxury),
    box-shadow var(--duration-mid) var(--ease-luxury);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-champagne);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--duration-mid) var(--ease-luxury);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }
.btn:hover {
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-md);
}
.btn:hover::before { transform: scaleX(1); }

.btn .btn-arrow {
  display: inline-block;
  transition: transform var(--duration-mid) var(--ease-luxury);
  font-size: 0.9em;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Navy filled → champagne on hover */
.btn-dark {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-navy-sm);
}
.btn-dark::before { background: var(--gradient-champagne); }
.btn-dark:hover {
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-md);
}

/* Champagne filled → navy on hover */
.btn-champagne {
  background: var(--gradient-champagne);
  color: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-gold-sm);
}
.btn-champagne::before { background: var(--navy); }
.btn-champagne:hover { color: var(--gold-light); box-shadow: var(--shadow-gold-md); }

/* Ghost on dark bg */
.btn-ghost {
  border-color: rgba(250, 246, 238, 0.18);
  color: rgba(250, 246, 238, 0.65);
}
.btn-ghost::before { background: rgba(250, 246, 238, 0.06); }
.btn-ghost:hover { color: var(--gold-light); border-color: rgba(212, 180, 131, 0.4); }

.btn-icon {
  width: 48px; height: 48px; padding: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ═══════════════════════════════════════
   CARDS / PANELS
═══════════════════════════════════════ */
.luxury-card {
  background: var(--parchment);
  border: var(--border-gold-dim);
  padding: 2.5rem;
  position: relative;
  transition:
    box-shadow var(--duration-mid) var(--ease-luxury),
    transform var(--duration-mid) var(--ease-luxury);
}
.luxury-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--duration-mid) var(--ease-luxury);
}
.luxury-card:hover { box-shadow: var(--shadow-gold-md); transform: translateY(-4px); }
.luxury-card:hover::before { opacity: 1; }

.luxury-card-dark {
  background: var(--charcoal-rich);
  border: 1px solid rgba(74, 107, 85, 0.15);
  color: var(--gold-lighter);
}

/* ═══════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════ */
.luxury-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: transparent; border: none;
  border-bottom: 1px solid rgba(74, 107, 85, 0.25);
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; font-weight: 300; letter-spacing: 0.08em;
  outline: none;
  transition:
    border-color var(--duration-fast) var(--ease-luxury),
    box-shadow var(--duration-fast) var(--ease-luxury);
}
.luxury-input::placeholder {
  color: var(--text-muted); letter-spacing: 0.12em;
  font-size: 0.78rem; text-transform: uppercase;
}
.luxury-input:focus {
  border-color: var(--gold);
  box-shadow: 0 2px 0 rgba(74, 107, 85, 0.3);
}
.luxury-input-dark {
  border-bottom-color: rgba(74, 107, 85, 0.25);
  color: var(--cream);
}
.luxury-input-dark::placeholder { color: var(--text-muted); }
.luxury-input-dark:focus {
  border-color: var(--gold-light);
  box-shadow: 0 2px 0 rgba(107, 140, 116, 0.35);
}

/* ═══════════════════════════════════════
   BADGE / PILL
═══════════════════════════════════════ */
.luxury-badge {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border: var(--border-gold);
  color: var(--gold-dark);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 400; font-family: 'Jost', sans-serif;
  background: var(--gold-sheen);
}
.luxury-badge-dark {
  color: var(--gold-lighter);
  border-color: rgba(74, 107, 85, 0.3);
  background: rgba(74, 107, 85, 0.08);
}

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.text-gold-shimmer {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-sage    { color: var(--gold); }
.text-brass   { color: var(--brass); }
.text-bone    { color: var(--cream); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp var(--duration-slow) var(--ease-reveal) both; }
.fade-up-delay-1 { animation-delay: 0.12s; }
.fade-up-delay-2 { animation-delay: 0.24s; }
.fade-up-delay-3 { animation-delay: 0.36s; }

@keyframes sageSweep {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-on-hover:hover {
  background: linear-gradient(
    90deg,
    var(--gold-deeper) 0%,
    var(--gold-lighter) 50%,
    var(--gold-deeper) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sageSweep 1.2s linear;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.4rem 3rem; }
  nav.scrolled { padding: 1rem 3rem; }
  footer { padding: 4rem 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  nav::after { left: 8%; right: 8%; }
  .nav-links { display: none; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  footer::after { display: none; }
  .luxury-card { padding: 1.8rem; }
}