@charset "UTF-8";
/* CSS Document */

:root {
  --bg: #0d0f14;
  --bg-soft: #161a22;
  --card: #1b202a;
  --text: #f3f4f6;
  --muted: #b8c0cc;
  --accent: #d7a84b;
  --accent-hover: #e5bb69;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: linear-gradient(180deg, #0b0d12 0%, #10141b 100%);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

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

.wrapper {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

/* Skip link */

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  border-radius: 0;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  background: #c6922f;
  color: #fff;
  font-weight: 700;
  transition: all 0.2s ease;
}

.button:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.button-large {
  padding-inline: 1.5rem;
}

/* Intro */

.intro {
  padding: 3rem 2.5rem;
  background: rgba(89, 30, 24, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.intro h1,
.cta h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.intro p,
.cta p {
  max-width: 920px;
  color: var(--muted);
}

/* Videos */

.videos-section {
  padding: 1rem 0 2rem;
}

.videos-section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

.videos-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 2px;
  background: var(--accent);
}

/* Video cards */

.video-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-card:last-child {
  margin-bottom: 0; /* FIXES BIG GAP */
}

.video-card-content h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.55rem;
}

.video-card-content p {
  margin-bottom: 1rem;
  color: var(--muted);
}

/* CTA */

.cta {
  padding: 2rem 0 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.cta-contact {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  opacity: 0.75;
}

.cta-contact a {
  color: var(--accent);
}

.cta .button-large {
  margin-top: 0.5rem;
}

/* Support section */

.support-section {
  margin-top: 2rem;
  padding: 2rem 0 2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015) 0%,
    rgba(255, 255, 255, 0.035) 100%
  );
  border-top: 1px solid var(--border);
}

.support-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.2rem 1.75rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.support-label {
  margin: 0 0 0.75rem;   /* remove top margin completely */
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.support-note {
  max-width: 520px;
  margin: 0 auto 1.25rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  padding: 1.5rem 0 2rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* Responsive */

@media (max-width: 900px) {
  .video-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-image {
    height: 62vh;
  }
}

@media (max-width: 640px) {
  .intro {
    padding: 2rem 1.25rem;
  }

  .videos-section,
  .cta {
    padding: 2rem 0;
  }

  .video-card {
    gap: 1.2rem;
    padding: 1rem;
  }

  .support-box {
    padding: 1.4rem 1rem;
  }
}