:root {
  --bg: #0f0c0a;
  --surface: #1a1411;
  --surface-light: #241c18;
  --text: #f7efe7;
  --muted: #c7b7a8;
  --accent: #d8a24a;
  --accent-light: #f1c36d;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(216, 162, 74, 0.18), transparent 30%),
    linear-gradient(135deg, #0f0c0a 0%, #1b120e 55%, #080706 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 28px;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  min-height: 76vh;
}

.hero-image-wrap {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.hero-image {
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-light);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.2rem;
}

.primary-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #1b120e;
  border-color: var(--accent);
}

.button:hover,
.card:hover,
.social-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 195, 109, 0.7);
}

.section {
  margin-top: 32px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(26, 20, 17, 0.78);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.latest {
  margin-top: 0;
}

.section p {
  color: var(--muted);
  max-width: 760px;
}

.text-link {
  color: var(--accent-light);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-bottom: 1px solid rgba(241, 195, 109, 0.35);
}

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

.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-light);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

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

.social-grid a {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer {
  padding: 28px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 820px) {
  .page {
    width: min(100% - 24px, 720px);
    padding-top: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 24px 0;
  }

  .hero-image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .section {
    padding: 24px;
  }

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

  .primary-actions,
  .link-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

