:root {
  --bg: #13161c;
  --surface: #1d212a;
  --card: #252a35;
  --text: #fff5e8;
  --muted: #ffcfa2;
  --accent: #ffb22c;
  --accent-dark: #ff9100;
  --accent-second: #ff5a00;
  --accent-green: #69ea63;
  --stroke: #5d6678;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 20% 0%, #4f3617 0%, #13161c 40%),
    linear-gradient(180deg, #24201d 0%, #13161c 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.header {
  position: sticky;
  top: 0;
  background: rgba(31, 27, 22, 0.86);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #b87935;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  color: #ffd7ab;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 11px 20px rgba(255, 90, 0, 0.52));
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.menu {
  display: flex;
  gap: 18px;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.menu a:hover {
  color: #ffbe6a;
}

.hero {
  padding: 72px 0 46px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(255, 122, 0, 0.12) 0%, rgba(255, 122, 0, 0) 55%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

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

h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 10px;
}

.badge {
  display: inline-block;
  margin: 0 0 14px;
  background: rgba(255, 178, 44, 0.18);
  color: #ffe4be;
  border: 1px solid rgba(255, 178, 44, 0.56);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn {
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-main {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-second) 100%);
  color: #321a01;
  box-shadow: 0 10px 26px rgba(255, 106, 0, 0.4);
}

.btn-main:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #ff4d00 100%);
}

.btn-ghost {
  border-color: var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: #ffb867;
  background: rgba(255, 178, 44, 0.09);
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-card {
  background: radial-gradient(circle at top, #47321e 0%, #2a2f3b 70%);
  border: 1px solid #a16635;
  border-radius: 16px;
  padding: 22px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
}

.hero-main-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #5f687a;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.stat-num {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-green);
}

.stat-text {
  margin: 0 0 8px;
  color: var(--muted);
}

.section {
  padding: 56px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 31, 0.6), transparent);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: linear-gradient(155deg, #272b34 0%, #221f1c 100%);
  border: 1px solid #6f5f4e;
  border-radius: 14px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 175, 79, 0.2);
}

.section-dark {
  background: linear-gradient(180deg, #2f261f 0%, #201e1e 100%);
  border-top: 1px solid #8a653e;
  border-bottom: 1px solid #8a653e;
}

.section-subtitle {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #7a644f;
  background: #2b2724;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 12px 14px;
  color: #fff4d7;
  font-weight: 600;
  font-size: 14px;
}

.card-dark {
  background: linear-gradient(155deg, #332921 0%, #272727 100%);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.note {
  background: linear-gradient(130deg, rgba(255, 178, 44, 0.16) 0%, rgba(105, 234, 99, 0.13) 100%);
  border: 1px solid rgba(255, 165, 72, 0.54);
  border-radius: 14px;
  padding: 18px;
}

.cta {
  padding-top: 36px;
}

.cta-box {
  background: linear-gradient(120deg, #4d3520 0%, #2f2f34 100%);
  border: 1px solid #c07732;
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
}

.small {
  color: var(--muted);
  font-size: 14px;
}

.small a {
  color: #ffb65d;
  text-decoration: none;
}

.footer {
  border-top: 1px solid #8a653e;
  padding: 20px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 960px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .menu {
    display: none;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-main-image {
    height: 280px;
  }
}
