/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  background: #fff;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/media/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-logo {
  width: 160px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.hero-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: #ff7d00;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ===== INTRO ===== */
.section-intro {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.section-intro p {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.85;
}

/* ===== VIDEO SECTION ===== */
.section-videos {
  background: #111;
  padding: 5rem 2rem;
}

.section-videos .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}

.video-item h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff7d00;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.video-item h2::before {
  content: '▶  ';
  font-size: 0.75em;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ===== DOWNLOADS ===== */
.section-downloads {
  background: #f7f7f7;
  padding: 5rem 2rem;
  text-align: center;
}

.section-downloads h2 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff7d00;
  margin-bottom: 0.5rem;
}

.section-downloads p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.download-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.download-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.download-link:hover {
  border-color: #ff7d00;
  color: #ff7d00;
  box-shadow: 0 2px 8px rgba(255,125,0,0.15);
}

.download-link svg {
  flex-shrink: 0;
  fill: currentColor;
}

/* ===== PHOTO PANEL ===== */
.section-photo {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-info h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff7d00;
  margin-bottom: 1rem;
}

.footer-info p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
}

.footer-info strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding-top: 0.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: #ff7d00;
  color: #fff;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}
