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

:root {
  --bg:           #FAF7F2;
  --text:         #2C2416;
  --accent:       #7B5E3A;
  --accent-hover: #5E4527;
  --accent-light: #D4B896;
  --border:       #E8DDD0;
  --card:         #FFFFFF;
  --muted:        #8A7660;
  --nav-bg:       #1E1710;
  --nav-text:     #FAF7F2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ── Navigation ── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 64px;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-brand {
  color: var(--nav-text);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav-brand small {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.85;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.25rem;
}

.nav-links a {
  color: rgba(250,247,242,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Page wrapper ── */
.page-wrap { padding-top: 64px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-outline-brown {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline-brown:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Section helpers ── */
.section { padding: 5rem 0; }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-body {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
}

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 2px;
  margin: 1.25rem 0 2rem;
}

/* ── Card ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

/* ── Footer ── */
footer {
  background: var(--nav-bg);
  color: var(--nav-text);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--accent-light);
}
.footer-brand small {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: right;
  line-height: 1.8;
}
.footer-contact a {
  color: var(--accent-light);
  text-decoration: none;
}

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

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }

  .section { padding: 3.5rem 0; }
  .section-heading { font-size: 1.75rem; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-contact { text-align: center; }
}
