:root {
  --primary: #8b4513;
  --bg: #fffaf5;
  --soft: #fff1e6;
  --text: #2b2b2b;
  --muted: #555;
}

* {
  box-sizing: border-box;
}

/* TOP BAR */
.topbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* HERO */
.hero {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(120deg, #fff1e6, #fffaf5);
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 35px;
  color: #444;
}

/* BUTTON */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 69, 19, 0.25);
}

/* SECTIONS */
.section {
  max-width: 900px;
  margin: auto;
  padding: 70px 20px;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.section p {
  color: var(--muted);
}

.section.soft {
  background: var(--soft);
  border-radius: 12px;
}

/* CARD */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* LIST */
.points {
  padding-left: 20px;
}

.points li {
  margin-bottom: 10px;
}

/* CENTER */
.center {
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 35px 20px;
  font-size: 0.9rem;
  background: #f5f5f5;
}

footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.9rem;
  }
}