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

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

:root {
  --cream: #FAF7F2;
  --cream-dark: #F3EEE6;
  --warm-brown: #5C3D2E;
  --warm-brown-dark: #4A3025;
  --sage: #7A8C6E;
  --sage-light: #EEF1EB;
  --sand: #C9A97A;
  --sand-light: #F0E5D0;
  --charcoal: #2C2420;
  --border: rgba(92,61,46,0.13);
  --border-mid: rgba(92,61,46,0.22);
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 68px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--warm-brown);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-logo-sub {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-style: italic;
  color: var(--sage);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }

.nav-cta {
  background: var(--warm-brown);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--warm-brown-dark); }

/* hamburger mobile */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--warm-brown); margin: 5px 0; transition: all 0.25s; }

/* ── FOOTER ── */
footer {
  background: var(--warm-brown);
  color: var(--cream);
  padding: 48px 56px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 0.5px solid rgba(250,247,242,0.15);
  margin-bottom: 28px;
}
.footer-logo-area .footer-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-logo-area .footer-logo-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--sand);
  margin-bottom: 16px;
}
.footer-logo-area p {
  font-size: 13px;
  color: rgba(250,247,242,0.6);
  line-height: 1.7;
  max-width: 220px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(250,247,242,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 0.5px solid rgba(250,247,242,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(250,247,242,0.65);
  font-size: 15px;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--sand); color: var(--sand); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(250,247,242,0.4);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--warm-brown);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--warm-brown-dark); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--warm-brown);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--warm-brown);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--warm-brown); color: var(--cream); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--sage);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--warm-brown); border-color: var(--warm-brown); }

/* ── SECTION UTILITY ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--warm-brown);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--sand); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--sage-light);
  padding: 72px 56px 60px;
  border-bottom: 0.5px solid var(--border);
}
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--warm-brown);
  line-height: 1.15;
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: italic; color: var(--sand); }
.page-hero p {
  font-size: 17px;
  color: var(--charcoal);
  opacity: 0.7;
  max-width: 520px;
  line-height: 1.75;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0;
}

/* ── FADE IN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.2s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.3s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px;
    border-bottom: 0.5px solid var(--border);
    gap: 20px;
  }
  .nav-links.open + .nav-cta { display: block; margin: 0 24px 16px; }
  .page-hero { padding: 48px 24px 40px; }
  .page-hero h1 { font-size: 34px; }
  .section-title { font-size: 26px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
