:root {
  --bg: #fffaf2;
  --paper: #ffffff;
  --ink: #2d241c;
  --muted: #6f6256;
  --brand: #e06638;
  --brand-dark: #ad3f20;
  --soft: #ffe3cf;
  --mint: #dff1e7;
  --line: #ead8c8;
  --shadow: 0 18px 45px rgba(73, 45, 24, 0.12);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0;
}

.logo span {
  color: var(--brand);
}

.menu {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 15px;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

.menu a:hover,
.menu a.active {
  color: var(--brand-dark);
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(45, 36, 28, 0.15), rgba(45, 36, 28, 0.78)),
    var(--hero-image) center / cover no-repeat;
  color: #fff;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffe0c9;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  font-size: clamp(31px, 4vw, 52px);
}

h3 {
  font-size: 24px;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
}

.button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.section.tight {
  padding-top: 38px;
}

.intro {
  max-width: 820px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-body {
  padding: 24px;
}

.card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: #28523a;
  font-weight: 800;
  font-size: 13px;
}

.band {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.split img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.list {
  padding-left: 22px;
}

.list li {
  margin: 10px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.stat {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--brand-dark);
}

.footer {
  background: #2d241c;
  color: #fff7ef;
  padding: 44px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.footer a {
  color: #ffe0c9;
}

.page-hero {
  min-height: 430px;
}

.contact-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}

@media (max-width: 880px) {
  .nav,
  .footer-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
  }

  .menu {
    justify-content: flex-start;
  }

  .grid.cols-3,
  .grid.cols-2,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }
}
