:root {
  --bg: #0d0d0d;
  --surface: #161616;
  --border: #2a2a2a;
  --gold: #c9a84c;
  --gold-dim: #8a6e2f;
  --text: #e8e4dc;
  --text-muted: #888880;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 168, 76, 0.04) 0, rgba(13, 13, 13, 0) 40%),
    radial-gradient(circle at 80% 80%, rgba(201, 168, 76, 0.02) 0, rgba(13, 13, 13, 0) 35%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

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

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

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

.section {
  padding: 110px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
}

.section-surface {
  background: var(--surface);
}

.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-title {
  margin: 0 0 36px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-size: clamp(32px, 3.6vw, 48px);
}

.gold-line {
  width: 60px;
  height: 1px;
  margin: 32px 0;
  background: rgba(201, 168, 76, 0.8);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a,
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}

.nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav a:hover,
.nav a.active,
.footer-nav a:hover {
  color: var(--gold);
}

.nav a:hover::after,
.nav a.active::after,
.footer-nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 10px 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.burger span + span {
  margin-top: 7px;
}

.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  display: flex;
  align-items: center;
  background: var(--bg);
  padding-top: 90px;
}

.hero-content {
  padding-left: 8%;
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7vw, 72px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  margin: 0 0 30px;
  color: var(--text-muted);
  font-size: 15px;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-divider {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(201, 168, 76, 0.4);
  z-index: 2;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 15%;
  background: linear-gradient(to right, var(--bg), transparent);
  z-index: 1;
}

.hero-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.split {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 44px;
  align-items: start;
}

.split-media img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
}

.split-content p {
  margin: 0 0 16px;
  font-size: 15px;
}

.fact-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fact-box {
  border: 1px solid var(--border);
  padding: 20px 14px;
  background: rgba(13, 13, 13, 0.5);
}

.fact-box h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--gold);
  font-weight: 600;
}

.fact-box p {
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.project-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  background: var(--bg);
  padding: 28px;
}

.project-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.03em;
  font-weight: 500;
  font-size: 30px;
}

.project-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-card p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 14px;
}

.mnirs-layout {
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(201, 168, 76, 0.5);
  transform: translateX(-50%);
}

.timeline-item {
  width: calc(50% - 28px);
  margin-bottom: 20px;
  border: 1px solid var(--border);
  padding: 16px;
  background: rgba(22, 22, 22, 0.7);
}

.timeline-item.left {
  margin-right: auto;
}

.timeline-item.right {
  margin-left: auto;
}

.timeline-item strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1;
}

.timeline-item p {
  margin: 6px 0 0;
  font-size: 14px;
}

.mnirs-info p {
  margin: 0 0 18px;
}

.section-hunting .split {
  grid-template-columns: 1fr 40%;
}

.section-hunting .split-media img {
  height: 100%;
  min-height: 620px;
}

.charity-top {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 26px;
}

.charity-top img {
  width: 280px;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.center {
  text-align: center;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.quote {
  margin: 0 auto;
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.5vw, 30px);
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
}

.site-footer {
  background: #080808;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  padding: 70px 0 30px;
}

.site-footer h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 34px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.site-footer .gold-line {
  margin: 20px auto;
}

.site-footer p {
  margin: 4px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-nav {
  margin: 24px 0 16px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer small {
  color: var(--text-muted);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.25s;
}

.reveal-delay-3 {
  transition-delay: 0.4s;
}

.reveal-delay-4 {
  transition-delay: 0.55s;
}

.reveal-delay-5 {
  transition-delay: 0.7s;
}

@media (max-width: 1100px) {
  .cards-grid,
  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mnirs-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: rgba(13, 13, 13, 0.97);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 4%;
    display: grid;
    gap: 14px;
    transform: translateY(-130%);
    transition: transform 0.3s;
  }

  .nav.open {
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: 62vh;
  }

  .hero-content {
    padding: 110px 0 50px;
  }

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

  .hero-photo-overlay {
    width: 28%;
  }

  .split,
  .section-hunting .split,
  .cards-grid.two-col {
    grid-template-columns: 1fr;
  }

  .split-media img,
  .section-hunting .split-media img {
    min-height: auto;
    height: 420px;
  }

  .fact-row {
    grid-template-columns: 1fr;
  }

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

  .charity-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .charity-top img {
    width: 100%;
    max-width: 320px;
    height: 390px;
  }

  .timeline-line {
    left: 0;
    transform: none;
  }

  .timeline-item {
    width: calc(100% - 18px);
    margin-left: 18px;
  }
}

@media (max-width: 375px) {
  .header-inner {
    min-height: 70px;
  }

  .nav {
    inset: 70px 0 auto 0;
  }

  .hero-title {
    font-size: 52px;
  }

  .section-title {
    font-size: 34px;
  }
}
