:root {
  --black: #070806;
  --charcoal: #11140f;
  --graphite: #191d17;
  --panel: #20261d;
  --line: rgba(218, 186, 103, .22);
  --gold: #d6b66a;
  --gold-deep: #9f7931;
  --ivory: #f5efdf;
  --muted: #b6b09e;
  --green: #344631;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
}

body::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(7, 8, 6, .82), rgba(7, 8, 6, .38));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--ivory);
  font-size: 25px;
  font-weight: 700;
}

.brand::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  background: var(--gold);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 38px);
  color: #ded5bf;
  font: 700 12px/1.2 Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color .2s ease;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 6, .92) 0%, rgba(7, 8, 6, .62) 44%, rgba(7, 8, 6, .14) 100%),
    linear-gradient(0deg, rgba(7, 8, 6, .92) 0%, rgba(7, 8, 6, .12) 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 150px clamp(22px, 6vw, 84px) 92px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font: 800 12px/1.4 Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(50px, 8vw, 104px);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  max-width: 960px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .94;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.lead {
  max-width: 650px;
  color: #ddd3bc;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid var(--gold);
  font: 800 12px/1 Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0b0c09;
}

.button.secondary {
  color: var(--ivory);
}

.button.secondary.dark {
  color: var(--ivory);
}

.section-band {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 84px);
  border-top: 1px solid rgba(218, 186, 103, .12);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.intro {
  background:
    radial-gradient(circle at 78% 16%, rgba(214, 182, 106, .12), transparent 28%),
    var(--charcoal);
}

.profile {
  display: grid;
  grid-template-columns: minmax(300px, 470px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

.profile p,
.contact p {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.58;
}

blockquote {
  max-width: 720px;
  margin: 34px 0 0;
  padding: 24px 0 0;
  color: var(--ivory);
  border-top: 1px solid var(--line);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 0;
}

.stats div {
  padding: 18px 0 0;
  border-top: 1px solid var(--gold);
}

.stats dt {
  color: var(--gold);
  font-size: 38px;
  font-weight: 700;
}

.stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font: 800 12px/1.35 Arial, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#hunts {
  background: #0d0f0b;
}

.hunt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.hunt-card,
.service-item {
  min-height: 270px;
  padding: clamp(26px, 3vw, 38px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
}

.hunt-card span {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font: 900 12px/1 Arial, sans-serif;
  letter-spacing: .12em;
}

.hunt-card p,
.service-item p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.services {
  background:
    linear-gradient(180deg, rgba(7, 8, 6, .2), rgba(7, 8, 6, .92)),
    var(--graphite);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  background: #161b14;
}

.service-item strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ivory);
  font-size: 23px;
  line-height: 1.1;
}

.service-item.highlight {
  background: linear-gradient(145deg, #d6b66a, #8f692b);
  color: #0e0f0b;
}

.service-item.highlight strong,
.service-item.highlight p {
  color: #0e0f0b;
}

.partners {
  background:
    radial-gradient(circle at 16% 18%, rgba(214, 182, 106, .14), transparent 30%),
    #0b0d0a;
}

.partner-card {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 520px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
}

.partner-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(218, 186, 103, .28);
  filter: saturate(.9) contrast(1.04);
}

.partner-card p {
  margin: 0;
  color: var(--gold);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.media {
  background: #11140f;
}

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

figure {
  margin: 0;
  overflow: hidden;
  background: #0b0c09;
  border: 1px solid var(--line);
}

figure img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: saturate(.88) contrast(1.03);
}

.wide {
  grid-column: span 2;
}

.contact {
  padding: clamp(84px, 11vw, 144px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(7, 8, 6, .94), rgba(7, 8, 6, .62)),
    url("photo_2026-06-13_12-39-47.jpg") center / cover;
  border-top: 1px solid var(--line);
  color: var(--ivory);
}

.contact h2 {
  max-width: 820px;
}

.contact p {
  color: #d5cbb4;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(7, 8, 6, .94) 0%, rgba(7, 8, 6, .62) 55%, rgba(7, 8, 6, .2) 100%);
  }

  .hero-media img {
    object-position: 38% center;
  }

  .hero-content {
    padding: 46vh 22px 62px;
  }

  .profile,
  .partner-card,
  .hunt-grid,
  .service-list,
  .media-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: span 1;
  }

  figure img {
    height: 300px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 16px 18px;
  }

  h1 {
    font-size: 46px;
    line-height: .94;
  }

  h2 {
    line-height: 1.02;
  }

  .lead,
  .profile p,
  .contact p {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hunt-card,
  .service-item {
    min-height: auto;
    padding: 24px;
  }
}
