:root {
  --bg: #08110f;
  --bg-soft: #0f1c18;
  --panel: #14251f;
  --panel-light: #1b3028;
  --gold: #d2aa57;
  --gold-light: #f0d58f;
  --cream: #f6edd7;
  --text: #f7f3e9;
  --muted: #b9c1ba;
  --border: rgba(210, 170, 87, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(210, 170, 87, 0.10), transparent 34rem),
    var(--bg);
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 17, 15, 0.88);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 17, 15, 0.98) 0%, rgba(8, 17, 15, 0.90) 48%, rgba(8, 17, 15, 0.65) 100%),
    url("../images/nsk-fishing-cup.jpg") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 65%, var(--bg)),
    radial-gradient(circle at 75% 45%, rgba(210, 170, 87, 0.16), transparent 30%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 72px;
  padding-block: 110px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Oswald", sans-serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 720px;
  margin: 14px 0 24px;
  font-size: clamp(4rem, 9vw, 7.6rem);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #15120b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px rgba(210, 170, 87, 0.22);
}

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

.logo-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(8, 17, 15, 0.72);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.logo-card img {
  width: 100%;
  border-radius: 22px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2,
.cta-box h2,
.page-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  text-transform: uppercase;
}

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

.card,
.content-panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), transparent),
    var(--panel);
  box-shadow: var(--shadow);
}

.card {
  min-height: 270px;
  padding: 32px;
}

.card-number {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
}

.card h3 {
  margin: 30px 0 12px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.card p,
.content-panel p,
.page-hero p,
.footer p {
  color: var(--muted);
}

.cta-section {
  padding: 0 0 110px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at right, rgba(210,170,87,0.15), transparent 35%),
    var(--panel-light);
}

.page-hero {
  padding: 115px 0 70px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(8,17,15,0.78), rgba(8,17,15,0.96)),
    url("../images/nsk-fishing-cup.jpg") center / cover;
}

.page-hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

.content-panel {
  padding: 40px;
}

.content-panel h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
}

.footer {
  padding: 54px 0;
  border-top: 1px solid var(--border);
  background: #050b09;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 80px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 6rem);
  }

  .logo-card {
    max-width: 560px;
  }

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

  .cta-box,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
