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

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

:root {
  --black: #0e0e0d;
  --off-white: #f5f3ef;
  --warm-white: #faf9f6;
  --sand: #e8e4da;
  --stone: #c4bfb4;
  --muted: #8a8680;
  --accent: #b8975a;
  --accent-dark: #9a7c44;
  --text: #1a1917;
  --text-light: #5a5754;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max: 1180px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 2.5rem;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
}

.nav-inner {
  max-width: var(--max); width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

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

.nav-links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark) !important;
  border: 1px solid var(--accent);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

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

/* ── PAGE WRAPPER ── */
.page { padding-top: var(--nav-h); min-height: 100vh; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--sand);
  padding: 3rem 2.5rem;
  margin-top: 6rem;
}

.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}

.footer-logo span { color: var(--accent); }

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  letter-spacing: 0.03em;
}

.footer-contact {
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-contact a { color: var(--accent-dark); text-decoration: none; }

.footer-note {
  font-size: 0.72rem;
  color: var(--stone);
  margin-top: 1.5rem;
  text-align: center;
}

/* ── SHARED SECTION STYLES ── */
.section { padding: 5rem 2.5rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.5rem;
}

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

.body-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 62ch;
}

.divider {
  width: 40px; height: 1px;
  background: var(--accent);
  margin: 1.5rem 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--black);
  color: var(--warm-white);
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline:hover { background: var(--black); color: var(--warm-white); }

.btn-gold {
  background: var(--accent);
  color: #fff;
}

.btn-gold:hover { background: var(--accent-dark); }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: all 0.2s;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--sand);
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .nav-cta { display: none; }

  .section { padding: 3.5rem 1.25rem; }

  footer { padding: 2rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
