html, body, div, nav, main, header, footer, section, article,
aside, ul, ol, li, p, h1, h2, h3, h4, h5, h6,
a, button, img, span, figure, figcaption, form, input, textarea {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
html {
  font-size: 16px;
}
 
body {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background-color: #314528;
  color: #000000;
  min-height: 100vh;
  overflow-x: hidden;
}
 
img {
  display: block;
  max-width: 100%;
}
 
a {
  color: inherit;
  text-decoration: none;
}
 
 
/* ── TYPOGRAPHY SCALE ─────────────────────────────────────── */
 
h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.15;
  color: #000000;
}
 
h2 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.25;
}
 
h3 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.3;
}
 
h4, h5, h6 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.35;
}
 
p {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
 
 
/* ── BUTTONS ──────────────────────────────────────────────── */
 
.btn {
  display: inline-block;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #644619;
  border: 2px solid #7a5520;
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
  text-align: center;
}
 
.btn:hover {
  background-color: #7a5520;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
}
 
.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
}
 
.btn-outline {
  background-color: transparent;
  color: #644619;
  border-color: #644619;
}
 
.btn-outline:hover {
  background-color: #644619;
  color: #ffffff;
}
 
 
/* ── SIDE NAVIGATION ──────────────────────────────────────── */
 
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 353px;
  height: 100vh;
  background-color: #314528;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 36px 28px 36px 28px;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 3px solid #3d5630;
}
 
.nav-home {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  text-decoration: none;
}
 
.nav-home-icon {
  width: 52px;
  height: 52px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
 
.nav-home-label {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #f2e8b1;
  letter-spacing: 0.04em;
  line-height: 1;
}
 
.nav-link {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #f2e8b1;
  text-decoration: none;
  padding: 14px 14px 14px 14px;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s, background-color 0.2s;
  letter-spacing: 0.02em;
  display: block;
}
 
.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}
 
 
/* ── MOBILE HAMBURGER TOGGLE ──────────────────────────────── */
 
.nav-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  background-color: #314528;
  border: 2px solid #3d5630;
  border-radius: 4px;
  padding: 8px 10px 8px 10px;
  cursor: pointer;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
 
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #f2e8b1;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
 
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
 
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 90;
}
 
.nav-overlay.visible {
  display: block;
}
 
 
/* ── SCROLLBARS ───────────────────────────────────────────── */
 
.site-nav::-webkit-scrollbar {
  width: 5px;
}
.site-nav::-webkit-scrollbar-thumb {
  background-color: #3d5630;
  border-radius: 3px;
}
 
.page-main::-webkit-scrollbar {
  width: 7px;
}
.page-main::-webkit-scrollbar-track {
  background-color: #e8d98a;
}
.page-main::-webkit-scrollbar-thumb {
  background-color: #644619;
  border-radius: 4px;
}
 
 
/* ── RESPONSIVE: TABLET (≤ 900px) ────────────────────────── */
 
@media (max-width: 900px) {
 
  .site-nav {
    width: 300px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.4);
  }
 
  .site-nav.open {
    transform: translateX(0);
  }
 
  .nav-toggle {
    display: -webkit-flex;
    display: flex;
  }
}
 
 
/* ── RESPONSIVE: MOBILE (≤ 480px) ────────────────────────── */
 
@media (max-width: 480px) {
 
  .site-nav {
    width: 85vw;
  }
 
  .nav-home-label {
    font-size: 1.2rem;
  }
 
  .nav-link {
    font-size: 1.15rem;
    padding: 12px 12px 12px 12px;
  }
}