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

:root {
  --bg: #faf8f4;
  --bg2: #f4f0e8;
  --bg3: #ede8dc;
  --gold: #9a7b3c;
  --gold2: #b8943f;
  --gold-light: rgba(154,123,60,0.1);
  --text: #1a1812;
  --text2: #3d3826;
  --muted: #8a8070;
  --border: rgba(154,123,60,0.15);
  --border2: rgba(26,24,18,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s;
}
.cursor-follower {
  width: 28px; height: 28px;
  border: 1px solid rgba(154,123,60,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 16px; height: 16px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 48px; height: 48px; }

/* NAV */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 4rem;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
  background: rgba(250,248,244,0);
}
#navbar.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border2);
  box-shadow: 0 1px 30px rgba(26,24,18,0.06);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.logo span { color: var(--gold); display: block; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  padding: 0.4rem 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--text) !important;
  color: var(--bg) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.4rem !important;
  margin-left: 1rem;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: #fff !important; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none;
  border: 1px solid var(--border2); padding: 8px; cursor: pointer; z-index: 1001;
}
.hamburger span { display: block; height: 1px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(250,248,244,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%; padding: 0 2rem; }
.mobile-menu-links li { width: 100%; border-bottom: 1px solid var(--border2); opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; }
.mobile-menu-links li:first-child { border-top: 1px solid var(--border2); }
.mobile-menu.open .mobile-menu-links li { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-links li:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-links li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-links li:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu-links a { display: block; font-family:'Cormorant Garamond',serif; font-size: 2rem; font-weight: 400; color: var(--muted); text-decoration: none; padding: 1.2rem 0; transition: color 0.2s; }
.mobile-menu-links a:hover { color: var(--gold); }
.mobile-menu-cta { margin-top: 2.5rem; opacity: 0; transform: translateY(20px); transition: opacity 0.3s 0.25s, transform 0.3s 0.25s; }
.mobile-menu.open .mobile-menu-cta { opacity: 1; transform: translateY(0); }
.mobile-menu-cta a { background: var(--text); color: var(--bg); font-family:'DM Sans',sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.8rem 2rem; text-decoration: none; display: inline-block; }

/* BUTTONS */
.btn-primary {
  background: var(--text); color: var(--bg);
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 2.2rem; border: none;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem;
  cursor: none; transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold); }
.btn-ghost {
  background: none; border: 1px solid var(--border2);
  color: var(--muted); font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.95rem 2rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  cursor: none; transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* SECTIONS */
section { padding: 7rem 4rem; position: relative; }
.section-tag { display: inline-block; font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; line-height: 1.1; margin-bottom: 1.5rem; color: var(--text); }
.section-sub { font-size: 0.95rem; color: var(--muted); max-width: 460px; line-height: 1.85; }

/* PAGE HERO */
.page-hero {
  min-height: 55vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 4rem 5rem;
  position: relative; overflow: hidden;
  background: var(--bg2); border-bottom: 1px solid var(--border2);
}
.page-hero-line { position: absolute; inset: 0; background-image: linear-gradient(rgba(154,123,60,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(154,123,60,0.05) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 90% 90% at 20% 80%, black 30%, transparent 100%); }
.page-hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(154,123,60,0.08); border: 1px solid rgba(154,123,60,0.2); color: var(--gold); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 0.85rem; margin-bottom: 1.8rem; width: fit-content; font-family: 'DM Sans', sans-serif; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 400; line-height: 1.0; max-width: 800px; color: var(--text); }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero-sub { font-size: 0.95rem; color: var(--muted); max-width: 460px; line-height: 1.85; margin-top: 1.5rem; }

/* MARQUEE */
.marquee-section { padding: 1.1rem 0; border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); overflow: hidden; background: var(--bg2); }
.marquee-track { display: flex; gap: 3rem; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; font-family: 'DM Sans', sans-serif; }
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border2); }
.footer-top { padding: 4rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; max-width: 220px; margin-top: 1rem; }
.footer-col h4 { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; cursor: none; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 4rem; border-top: 1px solid var(--border2); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }

/* MOBILE */
@media (max-width: 900px) {
  #navbar { padding: 0 1.5rem; height: 65px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 5rem 1.5rem; }
  .page-hero { padding: 0 1.5rem 3.5rem; min-height: 50vh; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
