:root {
  --bg: #f6f2ed;
  --bg-alt: #fffaf4;
  --ink: #1e1c1a;
  --muted: #5b534d;
  --primary: #b4462d;
  --primary-dark: #8f3522;
  --accent: #f2c26b;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(30, 28, 26, 0.12);
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 242, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 28, 26, 0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand-text {
  display: none;
}

.brand-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(30, 28, 26, 0.18);
  background: #fff;
  padding: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--primary);
}

.is-active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: radial-gradient(circle at 10% 20%, #ffe7c7 0%, transparent 40%),
              radial-gradient(circle at 80% 10%, #f8dada 0%, transparent 45%),
              var(--bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 2.5rem;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 28, 26, 0.15);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: var(--accent);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid rgba(30, 28, 26, 0.2);
  color: var(--ink);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.4rem;
  color: var(--muted);
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  color: var(--ink);
}

.hero-card {
  background: var(--card);
  padding: 2.4rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.hero-card ul {
  list-style: none;
  margin: 1.2rem 0 1.6rem;
  color: var(--muted);
}

.hero-card li {
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.badge {
  position: absolute;
  top: -14px;
  right: 30px;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero-ornament {
  position: absolute;
  bottom: -180px;
  right: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 179, 78, 0.35), transparent 60%);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.8rem;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--card);
  padding: 1.8rem;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(30, 28, 26, 0.08);
  position: relative;
  overflow: hidden;
}

.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

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

.tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(180, 70, 45, 0.12);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.checklist {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
  font-weight: 600;
}

.checklist div {
  padding: 0.7rem 1rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 28, 26, 0.08);
}

.stat-stack {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.4rem;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(30, 28, 26, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: #fff;
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(30, 28, 26, 0.08);
  text-align: center;
}

.avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #f2c26b, #e6a36a);
  color: #3b2d1d;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.cta {
  background: linear-gradient(135deg, #8f3522, #b4462d);
  color: #fff;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.site-footer {
  background: #1a1714;
  color: #f5eee6;
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  padding-bottom: 2rem;
}

.footer-bar {
  text-align: center;
  padding: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 3.5rem 0 5rem;
  }
}
