:root {
  --bg: #071012;
  --panel: #0d1b1e;
  --panel-soft: #122326;
  --ink: #f5f8f6;
  --muted: #a7b6b5;
  --cyan: #41d9e6;
  --mint: #87f0c2;
  --coral: #ff6f61;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(7, 16, 18, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #061012;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  border-radius: 8px;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 72px) 80px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.96) 0%, rgba(7, 16, 18, 0.76) 42%, rgba(7, 16, 18, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 16, 18, 0) 28%);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 12vw, 132px);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  max-width: 820px;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  color: #d4dfdd;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #061012;
  background: var(--mint);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

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

.stats article {
  min-height: 134px;
  padding: 30px clamp(20px, 4vw, 54px);
  background: var(--bg);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 28px;
}

.stats span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

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

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.about {
  background: #081315;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1280px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.gallery-section {
  background: var(--panel);
}

.text-link {
  color: var(--cyan);
  font-weight: 800;
  white-space: nowrap;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  color: #061012;
  border-color: var(--mint);
  background: var(--mint);
}

.gallery-carousel {
  position: relative;
}

.video-grid {
  display: grid;
  grid-auto-columns: minmax(280px, 390px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 56px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.08);
}

.video-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 62px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: #ff0033;
  border-radius: 8px;
  transform: translate(-50%, -50%);
  font-size: 22px;
  line-height: 1;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 18, 0.86);
  font: inherit;
  font-size: 30px;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button:hover {
  color: #061012;
  border-color: var(--mint);
  background: var(--mint);
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

.video-body {
  padding: 16px;
}

.video-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.video-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.social-section {
  background: #091719;
}

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

.social-card {
  position: relative;
  display: grid;
  min-height: 142px;
  align-content: space-between;
  gap: 18px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  isolation: isolate;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.92;
  transition: transform 180ms ease, opacity 180ms ease;
}

.social-card:hover::before {
  transform: scale(1.04);
  opacity: 1;
}

.social-card.youtube::before {
  background: linear-gradient(135deg, #ff0033, #c4001a);
}

.social-card.instagram::before {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 56%, #962fbf 78%, #4f5bd5 100%);
}

.social-card.tiktok::before {
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.9), rgba(254, 44, 85, 0.82)),
    #050505;
}

.social-card.facebook::before {
  background: linear-gradient(135deg, #1877f2, #0b4ea2);
}

.social-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card strong {
  margin-bottom: 5px;
  font-size: 20px;
}

.social-card small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(65, 217, 230, 0.10), rgba(255, 111, 97, 0.08)),
    var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 24px;
}

.contact-form,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(2, 8, 9, 0.82);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(65, 217, 230, 0.55);
  border-color: var(--cyan);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.contact-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-info a {
  color: var(--cyan);
  font-weight: 700;
}

.contact-info strong {
  display: block;
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(180px, 0.5fr));
  gap: 34px;
  padding: 54px clamp(20px, 5vw, 72px) 26px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(65, 217, 230, 0.08), rgba(255, 111, 97, 0.06)),
    #050b0d;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #d6e2df;
  font-size: 20px;
  line-height: 1.45;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  line-height: 1.5;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--cyan);
  font-weight: 700;
}

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

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 82vh;
    padding-top: 160px;
  }

  .stats,
  .about-grid,
  .social-links,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-auto-columns: minmax(260px, 86vw);
    padding-inline: 0;
  }

  .carousel-button {
    display: none;
  }

  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 92vh;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
