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

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

:root {
  --dark:  #1e3319;
  --green: #2d4a28;
  --sage:  #8aad86;
  --body:  #3d5034;
  --rule:  #d8d8d0;
  --bg:    #ffffff;
  --bg2:   #f7f7f5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  height: 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 400; letter-spacing: 0.02em;
  color: var(--dark); text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--body); text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }

/* ── HAMBURGER ───────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  width: 32px; height: 32px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--dark); transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── SHARED ELEMENTS ─────────────────────────────── */
.eyebrow {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage); font-weight: 500; margin-bottom: 16px;
  display: block;
}
.rule { width: 40px; height: 1px; background: var(--rule); margin: 24px 0; }
.rule-full { border: none; border-top: 1px solid var(--rule); }

h1, h2 {
  font-family: 'Playfair Display', serif; font-weight: 400;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--rule);
  padding: 40px 52px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 400; color: var(--dark);
}
.footer-brand span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; color: var(--body); font-weight: 300;
  letter-spacing: 0.06em; margin-top: 3px;
}
.footer-contacts {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.footer-contact {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--body); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--rule); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-contact:hover { color: var(--green); border-color: var(--sage); }

/* ── MOBILE ──────────────────────────────────────── */
@media (max-width: 720px) {
  nav { padding: 0 24px; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 40px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 13px; letter-spacing: 0.2em; }

  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .footer-contacts { align-items: flex-start; }
}
