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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --mid: #2a2a2a;
  --border: rgba(255,255,255,0.1);
  --white: #ffffff;
  --off-white: #f0ece4;
  --accent: #c8a96e;
  --accent-light: #e2c99a;
  --text-muted: rgba(255,255,255,0.5);
  --text-secondary: rgba(255,255,255,0.7);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img { height: 36px; width: auto; }

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent-light) !important; }

.page-hero {
  padding: 160px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.05;
  max-width: 700px;
}

.page-hero h1 em { font-style: italic; color: var(--accent); }

.page-hero p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  margin-top: 24px;
  line-height: 1.9;
}

section { padding: 100px 48px; }

.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-title em { font-style: italic; color: var(--accent); }

.btn-primary {
  background: var(--accent);
  color: var(--black);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }

.btn-ghost {
  color: var(--white);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.4); }

.cta-section {
  border-top: 1px solid var(--border);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 48px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img { height: 32px; width: auto; margin-bottom: 20px; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a, .footer-col > a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.footer-col ul li a:hover, .footer-col > a:hover { color: var(--accent); }

.footer-col p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 12px; color: var(--text-muted); }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
