/* ── VARIABLES ──────────────────────────────── */
:root {
  --shadow:     #243319;
  --canopy:     #3e4f2e;
  --living:     #5d802a;
  --rays:       #c5d78c;
  --floor:      #5f5c3b;
  --cedar:      #C8904A;
  --sunlit:     #E46C0C;
  --warm-white: #F7F5F2;
  --off:        #eeecea;
  --muted:      #5f5c3b;
}

/* ── BASE ───────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; font-weight: 300; background: var(--warm-white); color: var(--shadow); }

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  background: #eef2e3;
  border-bottom: 1px solid rgba(36,51,25,0.1);
  overflow: visible;
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--shadow);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-logo em { font-style: italic; color: var(--sunlit); }
.nav-links { display: flex; gap: 2.8rem; list-style: none; align-items: center; margin-left: auto; }
.nav-links a {
  text-decoration: none;
  font-size: clamp(0.6rem, 1vw, 0.78rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--floor);
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--shadow); }
.nav-right { display: flex; align-items: center; gap: 1rem; margin-left: 2.5rem; }
.nav-cta {
  background: var(--sunlit) !important;
  color: white !important;
  text-decoration: none !important;
  font-family: "DM Sans", sans-serif !important;
  text-transform: uppercase !important;
  padding: clamp(0.3rem, 0.6vh, 0.55rem) clamp(0.8rem, 1.5vw, 1.5rem) !important;
  font-weight: 500 !important;
  font-size: clamp(0.6rem, 1vw, 0.78rem) !important;
  letter-spacing: 0.1em !important;
  white-space: nowrap !important;
  transition: background 0.25s !important;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.nav-cta:hover { background: var(--canopy) !important; }
.cta-short { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--shadow); transition: all 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: #eef2e3;
  border-bottom: 1px solid rgba(36,51,25,0.1);
  z-index: 199;
  flex-direction: column;
  padding: 1rem 1.8rem 1.4rem;
  gap: 1rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--floor);
  font-weight: 400;
  transition: color 0.25s;
}
.nav-mobile-menu a:hover { color: var(--shadow); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--shadow);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { font-family: "Playfair Display", serif; font-size: 1rem; color: var(--warm-white); }
.footer-logo em { font-style: italic; color: var(--cedar); }
footer p { font-size: 0.75rem; color: rgba(247,245,242,0.35); }
footer a { color: rgba(247,245,242,0.35); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--cedar); }

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

/* ── SHARED RESPONSIVE ──────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 1.8rem; gap: 1.5rem; }
  footer { padding: 2rem; }
}
@media (max-width: 720px) {
  footer { flex-direction: column; gap: 0.8rem; text-align: center; }
}
@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  footer { padding: 1.6rem 1.4rem; }
}
