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

:root {
  --steel:      #7d8ca3;
  --steel-dark: #5f6f84;
  --steel-light:#c5cdd8;
  --rose:       #d9a7a7;
  --rose-light: #f0dede;
  --charcoal:   #2e2e2e;
  --warm-white: #f7f6f2;
  --sage:       #b9cbb9;
  --sage-light: #dce9dc;
  --sage-dark:  #7a9a7a;
  --mid:        #7a7570;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
}

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

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3.5rem;
  background: rgba(247,246,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,46,46,0.07);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(46,46,46,0.07); }
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; color: var(--charcoal); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--steel); }
.nav-btn { background: var(--charcoal) !important; color: var(--warm-white) !important; padding: 0.5rem 1.25rem !important; transition: background 0.25s !important; }
.nav-btn:hover { background: var(--steel) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s; }

/* BUTTONS */
.btn { display: inline-block; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all 0.25s ease; padding: 0.95rem 2.1rem; }
.btn-dark { background: var(--charcoal); color: var(--warm-white); }
.btn-dark:hover { background: var(--steel); transform: translateY(-2px); }
.btn-steel { background: var(--steel); color: var(--warm-white); }
.btn-steel:hover { background: var(--steel-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--charcoal); border: 1.5px solid rgba(46,46,46,0.3); }
.btn-ghost:hover { border-color: var(--steel); color: var(--steel); }
.btn-rose { background: var(--rose); color: var(--charcoal); }
.btn-rose:hover { background: #c99090; color: var(--warm-white); transform: translateY(-2px); }
.btn-white { background: var(--warm-white); color: var(--steel-dark); }
.btn-white:hover { background: var(--rose-light); }

/* EYEBROW */
.eyebrow { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 0.9rem; }
.eyebrow-steel { color: var(--steel); }
.eyebrow-rose  { color: var(--rose); }
.eyebrow-sage  { color: var(--sage-dark); }
.eyebrow-muted { color: rgba(247,246,242,0.55); }

/* HEADINGS */
h1, h2 { font-family: var(--serif); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 em, h1 em { font-style: italic; font-weight: 400; color: var(--steel); }

/* DIVIDER */
.divider { display: flex; align-items: center; gap: 1.75rem; padding: 0 3.5rem; }
.divider-line { flex: 1; height: 1px; background: rgba(46,46,46,0.1); }
.divider-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }

/* FOOTER */
footer { background: var(--charcoal); color: var(--warm-white); padding: 4rem 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(247,246,242,0.08); }
.footer-brand { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-brand span { color: var(--rose); }
.footer-tagline { font-size: 0.88rem; color: rgba(247,246,242,0.4); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,246,242,0.35); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.9rem; color: rgba(247,246,242,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(247,246,242,0.28); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity: 1; transform: none; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--warm-white); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 300; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 400; position: relative; }
  .divider { padding: 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem 2rem; }
}
