:root {
  --red:       #C8102E;
  --red-dark:  #9B0C22;
  --cream:     #FFF8F0;
  --brown:     #2C1810;
  --brown-mid: #5C3D2E;
  --gold:      #C8942A;
  --gold-light:#E8B84B;
  --gray:      #888;
  --white:     #fff;
  --shadow:    0 6px 32px rgba(44,24,16,.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--brown); line-height: 1.7; }
a { text-decoration: none; color: inherit; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--brown); color: #fff;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; padding: 7px 0;
}
.top-bar .inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.top-bar a { color: var(--gold-light); transition: opacity 200ms; cursor: pointer; }
.top-bar a:hover { opacity: .8; }
.top-bar .div { opacity: .3; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(44,24,16,.10);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 72px; gap: 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  margin-right: 40px; flex-shrink: 0; text-decoration: none;
}
.logo-mark {
  width: 48px; height: 48px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900;
}
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 900; color: var(--red);
}
.logo-text span { font-size: .65rem; letter-spacing: .14em; color: var(--brown-mid); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a {
  position: relative; padding: 8px 14px; font-size: .88rem; font-weight: 700;
  color: var(--brown); border-radius: 8px; white-space: nowrap; cursor: pointer;
  transition: color 200ms, background 200ms; text-decoration: none;
}
.nav-links a:hover { color: var(--red); background: rgba(200,16,46,.06); }
.nav-links a.active { color: var(--red); background: rgba(200,16,46,.06); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--red); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-solid {
  padding: 8px 20px; background: var(--red); color: #fff; border-radius: 30px;
  font-size: .82rem; font-weight: 700; border: 2px solid var(--red);
  transition: all 200ms; cursor: pointer; text-decoration: none;
}
.btn-solid:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a0a06 0%, #3a1a0e 50%, #2C1810 100%);
  color: #fff; text-align: center; padding: 100px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(200,148,42,.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: rgba(200,148,42,.2); border: 1px solid rgba(200,148,42,.4);
  color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 30px; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 20px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

/* ── STATS STRIP ── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--red); color: #fff; text-align: center;
}
.stat { padding: 32px 16px; border-right: 1px solid rgba(255,255,255,.15); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--gold-light); }
.stat-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: 4px; }

/* ── SECTION ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); background: rgba(200,16,46,.08);
  padding: 4px 14px; border-radius: 30px; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
  color: var(--brown); margin-bottom: 16px;
}
.section-title em { color: var(--red); font-style: italic; }
.section-desc { font-size: .97rem; color: var(--brown-mid); max-width: 640px; line-height: 1.75; }

/* ── STORY (two-column) ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-visual {
  background: linear-gradient(135deg, #1a0a06, #3a1a0e);
  border-radius: 28px; height: 420px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: #fff; box-shadow: var(--shadow);
}
.story-visual .big-emoji { font-size: 6rem; }
.story-visual p { font-size: .82rem; opacity: .7; letter-spacing: .1em; text-transform: uppercase; }

/* ── MISSION CARDS ── */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.mission-card {
  background: var(--white); border-radius: 20px; padding: 32px 24px;
  box-shadow: var(--shadow); transition: transform .25s;
}
.mission-card:hover { transform: translateY(-4px); }
.mission-icon { font-size: 2.4rem; margin-bottom: 16px; }
.mission-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 900; color: var(--brown); margin-bottom: 10px; }
.mission-card p { font-size: .87rem; color: var(--brown-mid); line-height: 1.7; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; margin-top: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: #e8d5c8;
}
.tl-item { position: relative; margin-bottom: 40px; }
.tl-dot {
  position: absolute; left: -28px; top: 4px;
  width: 18px; height: 18px; background: var(--red); border-radius: 50%;
  border: 3px solid var(--cream);
}
.tl-year { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--red); margin-bottom: 4px; }
.tl-title { font-size: .97rem; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.tl-desc { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.value-card {
  background: var(--white); border-radius: 18px; padding: 28px;
  box-shadow: 0 2px 16px rgba(44,24,16,.07); display: flex; gap: 18px; align-items: flex-start;
}
.value-icon {
  width: 52px; height: 52px; background: rgba(200,16,46,.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.value-card h4 { font-size: .97rem; font-weight: 700; color: var(--brown); margin-bottom: 6px; }
.value-card p { font-size: .83rem; color: var(--gray); line-height: 1.65; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.team-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); text-align: center; }
.team-avatar { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.team-avatar.a1 { background: linear-gradient(135deg, #fff0e0, #ffd8b0); }
.team-avatar.a2 { background: linear-gradient(135deg, #e8f4ff, #c8e8ff); }
.team-avatar.a3 { background: linear-gradient(135deg, #e8fdf0, #b8f0cc); }
.team-body { padding: 20px 16px 24px; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.team-role { font-size: .78rem; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.team-desc { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; text-align: center; padding: 80px 24px;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; }
.cta-section p { font-size: .97rem; opacity: .85; margin-bottom: 32px; }
.cta-btn {
  display: inline-block; padding: 14px 36px; background: #fff; color: var(--red);
  border-radius: 50px; font-size: .95rem; font-weight: 700; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

/* ── FOOTER ── */
footer {
  background: var(--brown); color: rgba(255,255,255,.7); text-align: center;
  padding: 28px 24px; font-size: .82rem;
}
footer strong { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-visual { height: 260px; }
  .mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
