:root {
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --charcoal: #1C1C1C;
  --stone: #8A7E72;
  --sage: #7A9B8A;
  --sage-light: #A8C4B4;
  --gold: #C8A96E;
  --border: rgba(140,126,114,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--charcoal); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--stone);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-cta {
  background: var(--charcoal) !important; color: var(--cream) !important;
  padding: 10px 22px !important; letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sage) !important; color: var(--warm-white) !important; }

/* ── SHARED COMPONENTS ── */
.btn-primary {
  background: var(--charcoal); color: var(--cream);
  padding: 14px 32px; font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.25s; font-family: 'DM Sans', sans-serif; font-weight: 500;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--sage); }
.btn-outline {
  background: transparent; color: var(--charcoal);
  padding: 14px 32px; font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; border: 1px solid var(--charcoal); cursor: pointer;
  transition: all 0.25s; font-family: 'DM Sans', sans-serif; font-weight: 500;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

.section-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); font-weight: 500; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--sage); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300;
  line-height: 1.2; margin-bottom: 24px; color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--sage); }
.section-body { font-size: 0.9rem; line-height: 1.8; color: var(--stone); font-weight: 300; margin-bottom: 32px; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: var(--charcoal);
  padding: 100px 80px 64px;
  position: relative; overflow: hidden;
  margin-top: 68px;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: var(--sage); opacity: 0.06; border-radius: 50%;
}
.page-hero-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage-light); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.page-hero-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--sage); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem); font-weight: 300;
  color: var(--cream); max-width: 600px; line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--sage-light); }

/* ── FORMS ── */
.form-section { margin-bottom: 48px; }
.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; margin-bottom: 24px;
  color: var(--charcoal); padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 8px; font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); background: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--charcoal); outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { height: 100px; resize: none; }
.form-note { font-size: 0.78rem; color: var(--stone); margin-top: 6px; line-height: 1.5; }
.submit-btn {
  width: 100%; background: var(--charcoal); color: var(--cream);
  padding: 18px; font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  transition: background 0.25s; margin-top: 8px;
}
.submit-btn:hover { background: var(--sage); }
.form-disclaimer { font-size: 0.75rem; color: var(--stone); margin-top: 14px; line-height: 1.6; text-align: center; }
.success-msg {
  display: none; background: var(--sage); color: white;
  padding: 20px 24px; margin-bottom: 24px; font-size: 0.88rem; line-height: 1.6;
}

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 60px 80px 40px; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--cream); margin-bottom: 12px;
}
.footer-brand p { font-size: 0.78rem; color: rgba(250,248,244,0.45); line-height: 1.7; font-weight: 300; }
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(250,248,244,0.4); margin-bottom: 16px; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { font-size: 0.8rem; color: rgba(250,248,244,0.55); margin-bottom: 8px; }
.footer-col li a { color: rgba(250,248,244,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col li a:hover { color: var(--sage-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.72rem; color: rgba(250,248,244,0.3); }
.footer-reg { font-size: 0.7rem; color: rgba(250,248,244,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .page-hero { padding: 80px 32px 48px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { padding: 48px 32px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
