:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #6b7280;
  --accent: #ff4d2e;
  --accent-dark: #e34327;
  --accent-soft: #ffe6e0;
  --gold: #f4b86a;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --stroke: #e5e7eb;
  --shadow: 0 18px 40px -30px rgba(15, 23, 42, 0.25);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  min-height: 100vh;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text span {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--ink);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.hero {
  padding: 90px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero h1,
.section h2 {
  font-family: "Cinzel", serif;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.8rem, 4.6vw, 4.4rem);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 24px;
}

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

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 26px -20px rgba(255, 77, 46, 0.7);
}

.btn.ghost {
  background: #fff;
  border: 1px solid var(--stroke);
  color: var(--ink);
}

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

.hero-links {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-links a {
  font-weight: 600;
  color: var(--ink);
}

.hero-banner {
  margin-top: 32px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
}

.text-link {
  font-weight: 600;
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.pillars {
  display: grid;
  gap: 16px;
}

.pillar {
  padding: 20px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.spotlight {
  background: #fff6f2;
}

.setup-notice {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px dashed var(--stroke);
  font-size: 0.9rem;
  color: #4b5563;
}

.video-grid {
  margin-top: 24px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.video-card {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -30px rgba(15, 23, 42, 0.35);
}

.video-thumb {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #111827;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
}

.video-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.video-body h3 {
  font-size: 1rem;
  line-height: 1.3;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.video-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent-dark);
}

.video-card.loading {
  position: relative;
  overflow: hidden;
}

.video-card.loading .video-thumb,
.video-card.loading .video-body {
  background: #f3f4f6;
}

.video-card.loading .video-thumb {
  height: 150px;
}

.video-card.loading .video-body::after {
  content: "";
  display: block;
  height: 12px;
  width: 70%;
  margin-top: 12px;
  border-radius: 999px;
  background: #e5e7eb;
}

.social {
  background: var(--surface-2);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.social-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.social-links .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.social-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.quick-links {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.quick-links a {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  padding-bottom: 6px;
}

.contact {
  background: #ffffff;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.contact-details {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.contact-details span {
  display: block;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--surface-2);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.platforms {
  padding-top: 90px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.platform-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.platform-icons a {
  background: var(--surface);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform 0.2s ease;
}

.platform-icons a:hover {
  transform: translateY(-2px);
}

.platform-icons a svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.platform-icons a.youtube {
  background: #fff1f2;
  border-color: #ffe4e6;
  color: #ff0033;
}

.platform-icons a.tiktok {
  background: #f2f9ff;
  border-color: #e0f2ff;
  color: #14b8a6;
}

.platform-icons a.spotify {
  background: #f0fdf4;
  border-color: #dcfce7;
  color: #1db954;
}

.platform-icons a.apple {
  background: #f5f3ff;
  border-color: #ede9fe;
  color: #6d28d9;
}

.platform-icons a.x {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #111827;
}

.site-footer {
  padding: 40px 0 50px;
  background: #ffffff;
  color: var(--muted);
  border-top: 1px solid var(--stroke);
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero {
    padding-top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
