/* --------------------------------------------------
   Base
-------------------------------------------------- */

:root {
  --bg: #fff7f0;
  --bg-alt: #ffe7d1;
  --primary: #e26b3f;
  --primary-dark: #c4542c;
  --accent: #f2b880;
  --text: #3b2b2b;
  --muted: #7a6660;
  --card-bg: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);
  --max-width: 1100px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --------------------------------------------------
   Header / Nav
-------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  background: rgba(255,247,240,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 100;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffe7d1, #e26b3f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

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

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

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(226,107,63,0.35);
}

.nav-toggle {
  display: none;
  font-size: 1.4rem;
  background: none;
  border: none;
}

/* --------------------------------------------------
   Hero (Centered)
-------------------------------------------------- */

.hero-centered {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255,247,240,0.75),
    rgba(255,231,209,0.75)
  );
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}

.hero-centered h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #2b1d1a;
}

.hero-centered .hero-subtitle {
  font-size: 1.1rem;
  color: #6a524b;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(226,107,63,0.08);
  color: var(--primary-dark);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn-primary {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(226,107,63,0.35);
}

.btn-ghost {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.7);
  cursor: pointer;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --------------------------------------------------
   Sections
-------------------------------------------------- */

.section {
  max-width: var(--max-width);
  margin: 3rem auto;
  padding: 0 1.25rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
}

/* --------------------------------------------------
   Cards / Grids
------------------------------------------------
