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

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

:root {
  --obsidian: #1c1c18;
  --deep-earth: #3a3628;
  --umber: #6b5f3e;
  --gold: #b4a378;
  --gold-light: #c4b48a;
  --dry-grass: #d4c9a0;
  --parchment: #eeead9;
  --linen: #f5f2eb;
  --text-muted: #8a7d5e;
  --text-mid: #5a5446;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--obsidian);
  background: var(--linen);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: rgba(28,28,24,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(180,163,120,0.15);
  transition: padding 0.4s ease;
}

nav.scrolled { padding: 16px 48px; }

.nav-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  color: #f0ebe0;
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  z-index: 201;
}

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

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

.nav-links a {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.55);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}

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

.nav-cta {
  color: var(--gold) !important;
  border: 0.5px solid rgba(180,163,120,0.35) !important;
  padding: 10px 20px !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: rgba(180,163,120,0.1) !important;
  border-color: var(--gold) !important;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 201;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 0.5px;
  background: rgba(240,235,224,0.7);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,28,24,0.98);
  z-index: 199;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 80px 40px 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  color: rgba(240,235,224,0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 18px 0;
  border-bottom: 0.5px solid rgba(180,163,120,0.1);
  width: 100%;
  text-align: center;
  transition: color 0.3s;
}

.mobile-menu a em { font-style: italic; color: var(--gold); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }

.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--gold);
  border: 0.5px solid rgba(180,163,120,0.3);
  padding: 16px 40px;
  width: auto;
}

.mobile-tagline {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(180,163,120,0.3);
  margin-top: 40px;
  font-weight: 200;
}

/* PAGE HERO */
.page-hero {
  background: var(--obsidian);
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 0.5px solid rgba(180,163,120,0.1);
}

.page-eyebrow {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(180,163,120,0.5);
  margin-bottom: 20px;
  font-weight: 300;
}

.page-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  color: #f0ebe0;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.page-title em { font-style: italic; color: var(--gold); }

.page-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(240,235,224,0.5);
  max-width: 560px;
}

.page-divider {
  width: 48px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.4;
  margin: 24px 0;
}

.section-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 400;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.3s;
  font-family: var(--sans);
}

.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.6);
  padding: 16px 0;
  text-decoration: none;
  font-weight: 300;
  border-bottom: 0.5px solid rgba(180,163,120,0.3);
  transition: all 0.3s;
  font-family: var(--sans);
}

.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* FADE IN */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }

/* FOOTER */
footer {
  background: #141410;
  padding: 64px 48px 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(180,163,120,0.1);
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: #e8e2d5;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-decoration: none;
  display: block;
}

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

.footer-tagline {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(180,163,120,0.35);
  margin-top: 10px;
  font-weight: 200;
}

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.footer-nav-group h5 {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(180,163,120,0.35);
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-nav-group a {
  font-size: 13px;
  color: rgba(240,235,224,0.35);
  text-decoration: none;
  letter-spacing: 0.03em;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-nav-group a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; }

.footer-copy {
  font-size: 11px;
  color: rgba(180,163,120,0.2);
  letter-spacing: 0.1em;
  font-weight: 300;
}

.footer-est {
  font-family: var(--serif);
  font-size: 11px;
  color: rgba(180,163,120,0.2);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-group { border-bottom: 0.5px solid rgba(180,163,120,0.15); padding: 20px 0; }

.form-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(180,163,120,0.4);
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  color: #e8e2d5;
  padding: 0;
  letter-spacing: 0.02em;
  appearance: none;
  -webkit-appearance: none;
}

.form-select option { background: var(--deep-earth); color: #e8e2d5; }
.form-textarea { resize: none; height: 80px; line-height: 1.6; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(240,235,224,0.2); font-style: italic; }

.form-submit { margin-top: 40px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.submit-btn {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  padding: 18px 40px;
  border: none;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.3s;
}

.submit-btn:hover { background: var(--gold-light); }

.submit-note {
  font-size: 11px;
  color: rgba(180,163,120,0.35);
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 100px 24px 56px; }
  footer { padding: 48px 24px 32px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
