/* ═══════════════════════════════════════════════════
   HOK ENTERTAINMENT — GLOBAL STYLES
   ═══════════════════════════════════════════════════ */

:root {
  --bg:            #0a0a0a;
  --bg-card:       #141414;
  --accent:        #E8181C;
  --text-primary:  #ffffff;
  --text-secondary:#999999;
  --border:        #222222;
  --font-heading:  'Bebas Neue', sans-serif;
  --font-body:     'Inter', sans-serif;
  --container:     1200px;
  --nav-h:         76px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITY ─── */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}
.centered { text-align: center; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.04); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { filter: brightness(1.12); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-outline-red {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 14px 40px;
}
.btn-outline-red:hover { background: var(--accent); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--bg);
  border-color: #fff;
}
.btn-white:hover { filter: brightness(0.92); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ─── SECTION LABELS ─── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ─── SECTION HEADINGS ─── */
.section-heading {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

/* ─── LINK ARROW ─── */
.link-arrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--accent);
  margin-top: 28px;
  transition: text-decoration 0.2s;
}
.link-arrow:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: var(--bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}

.nav-logo img { height: 48px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { padding: 10px 24px; font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-menu ul a {
  font-family: var(--font-heading);
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--text-primary);
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--accent); }
.mobile-menu ul .btn {
  font-family: var(--font-body);
  font-size: 16px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(232,24,28,0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  max-width: 900px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0; /* GSAP controls */
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 90px;
  line-height: 1;
  color: var(--text-primary);
  opacity: 0; /* GSAP controls */
  transform: translateY(40px);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.6;
  opacity: 0; /* GSAP controls */
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  opacity: 0; /* GSAP controls */
}

/* ═══════════════════════════════════════════════════
   SECTION 2 — STATS
   ═══════════════════════════════════════════════════ */
.stats {
  background: var(--bg);
  border-top: 1px solid var(--accent);
  padding: 60px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}
.stat-item {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
}
.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   SECTION 3 — WHO WE ARE
   ═══════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left { display: flex; flex-direction: column; }
.about-left .section-heading { margin-bottom: 20px; }

.body-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════════
   SECTION 4 — ARTISTS PREVIEW
   ═══════════════════════════════════════════════════ */
.artists-preview {
  background: var(--bg);
  padding: 100px 0;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.artist-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.artist-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.artist-card:hover .artist-card-img-wrap img { transform: scale(1.04); }

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.artist-card:hover .card-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.artist-card-body {
  padding: 20px 24px 24px;
}
.tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.artist-name {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.1;
}
.artist-bio {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════
   SECTION 5 — PAST EVENTS
   ═══════════════════════════════════════════════════ */
.events-section {
  background: var(--bg);
  padding: 100px 0;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.event-card {
  position: relative;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.event-card:hover { transform: scale(1.02); }
.event-card:hover::after { transform: scaleX(1); }

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.event-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}
.event-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}
.event-location {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════
   SECTION 6 — SERVICES SNAPSHOT
   ═══════════════════════════════════════════════════ */
.services-snap {
  background: #111111;
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.service-tile:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.service-tile:hover .service-icon { transform: scale(1.1); }
.service-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.1;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.3s ease;
}
.service-tile:hover .service-desc { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════════
   SECTION 7 — PARTNERS STRIP
   ═══════════════════════════════════════════════════ */
.partners {
  background: var(--bg);
  padding: 60px 0;
}
.partners-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.partner-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 4px;
  color: #333333;
  transition: color 0.3s ease;
  cursor: default;
}
.partner-name:hover { color: #fff; }

/* ═══════════════════════════════════════════════════
   SECTION 8 — CTA BANNER
   ═══════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: var(--accent);
  padding: 80px 0;
  overflow: hidden;
}

/* SVG noise grain texture */
.cta-noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.cta-heading {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
  color: #fff;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}
.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════
   SECTION 9 — FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
}
.footer-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #555555;
  margin-top: 8px;
  line-height: 1.6;
  max-width: 240px;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact .social-link:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: #444444;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section-heading { font-size: 46px; }
  .hero-title { font-size: 72px; }
  .cta-heading { font-size: 52px; }
  .about-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-title { font-size: 52px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 240px; }

  /* Stats */
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-divider { width: 60px; height: 1px; }

  /* About */
  .about { padding: 70px 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-right { order: -1; }
  .about-img { aspect-ratio: 16/9; }

  /* Artists */
  .artists-preview { padding: 70px 0; }
  .artists-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  /* Events */
  .events-section { padding: 70px 0; }
  .events-grid { grid-template-columns: 1fr; max-width: 480px; margin: 40px auto 0; }
  .event-card { height: 340px; }

  /* Services */
  .services-snap { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-tile { padding: 28px 20px; }

  /* Partners */
  .partners-row { gap: 20px 28px; justify-content: center; }

  /* CTA */
  .cta-banner { padding: 60px 0; }
  .cta-heading { font-size: 40px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 240px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-desc { max-width: 100%; }

  /* Section headings */
  .section-heading { font-size: 38px; }
  .stat-number { font-size: 56px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 42px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-heading { font-size: 34px; }
}

/* ═══════════════════════════════════════════════════
   ARTISTS PAGE — APPENDED STYLES
   ═══════════════════════════════════════════════════ */

/* ─── PAGE HERO (inner pages — 60vh) ─── */
.page-hero {
  height: 60vh;
  min-height: 400px;
}
.page-hero-title {
  font-size: 80px;
}

/* ─── FEATURED ARTIST SECTION ─── */
.featured-artist {
  background: #0f0f0f;
  padding: 100px 0;
  overflow: hidden;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(232, 24, 28, 0.15);
}
.featured-label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.featured-title {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.featured-category {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.featured-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.featured-notable {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.featured-notable-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
}
.featured-cta {
  margin-top: 32px;
}

/* ─── ROSTER SECTION ─── */
.roster-section {
  background: var(--bg);
  padding: 100px 0;
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.roster-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.roster-card:hover {
  border-color: var(--accent);
}
.roster-card-img {
  overflow: hidden;
}
.roster-card-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.roster-card:hover .roster-card-img img {
  transform: scale(1.04);
}
.roster-card-body {
  padding: 24px;
}
.roster-card-name {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 10px;
}
.roster-card-bio {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-book-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  transition: text-decoration 0.2s;
}
.card-book-link:hover {
  text-decoration: underline;
}

/* ─── RESPONSIVE — artists page (1024px) ─── */
@media (max-width: 1024px) {
  .featured-grid { gap: 48px; }
  .featured-title { font-size: 52px; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── RESPONSIVE — artists page (768px) ─── */
@media (max-width: 768px) {
  .page-hero-title { font-size: 48px; }
  .featured-artist { padding: 70px 0; }
  .featured-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-artist img {
    width: 100%;
    height: 100vw;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
  }
  .featured-title { font-size: 44px; }
  .roster-section { padding: 70px 0; }
  .roster-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════
   EVENTS PAGE — APPENDED STYLES
   ═══════════════════════════════════════════════════ */

/* ─── PAGE HERO overlay — inner pages are slightly darker ─── */
.page-hero-overlay {
  background: rgba(0, 0, 0, 0.80);
}

/* ─── FEATURED EVENTS SECTION ─── */
.featured-events {
  background: #0f0f0f;
  padding: 100px 0;
}
.featured-events .section-heading {
  margin-bottom: 60px;
}
.featured-events-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Large horizontal bg-image card */
.featured-event-card {
  position: relative;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s ease;
}
.featured-event-card:hover {
  transform: scale(1.01);
}
.featured-event-card-bg {
  position: absolute;
  inset: 0;
}
.featured-event-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.featured-event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.92) 40%, rgba(0,0,0,0.30) 100%);
}
.featured-event-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  padding-right: 40%;
}
.featured-event-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.featured-event-title {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 12px;
}
.featured-event-location {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.featured-event-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 480px;
}
.featured-event-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  align-self: flex-start;
  transition: text-decoration 0.2s;
}
.featured-event-link:hover {
  text-decoration: underline;
}

/* ─── MORE EVENTS GRID ─── */
.more-events-section {
  background: var(--bg);
  padding: 100px 0;
}
.more-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.more-event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.more-event-card:hover {
  border-color: var(--accent);
}
.more-event-placeholder {
  height: 220px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.more-event-card:hover .more-event-placeholder {
  background: #1f1f1f;
}
.more-event-placeholder-text {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #333333;
  text-align: center;
  padding: 0 16px;
  line-height: 1.2;
}
.more-event-body {
  padding: 24px;
}
.more-event-name {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}
.more-event-location {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.more-event-year {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ─── EVENTS STATS STRIP ─── */
.events-stats {
  background: #111111;
  border-top: 1px solid var(--accent);
  padding: 80px 0;
}
/* 64px numbers (overrides 72px base, even at 768px via higher specificity) */
.events-stats .stat-number {
  font-size: 64px;
}

/* ─── RESPONSIVE — events page (1024px) ─── */
@media (max-width: 1024px) {
  .featured-event-content { padding-left: 40px; padding-right: 30%; }
  .featured-event-title   { font-size: 42px; }
  .more-events-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ─── RESPONSIVE — events page (768px) ─── */
@media (max-width: 768px) {
  .featured-events        { padding: 70px 0; }
  .featured-event-card    { height: 300px; }
  .featured-event-content { padding-left: 28px; padding-right: 5%; }
  .featured-event-title   { font-size: 30px; }
  .featured-event-desc    { font-size: 13px; }
  .more-events-section    { padding: 70px 0; }
  .more-events-grid       { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .events-stats .stat-number { font-size: 52px; }
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE — APPENDED STYLES
   ═══════════════════════════════════════════════════ */

/* ─── SERVICES DETAIL (4 ALTERNATING ROWS) ─── */
.services-detail {
  background: #0f0f0f;
  padding: 100px 0;
  overflow: hidden;
}
.services-detail .section-heading {
  margin-bottom: 80px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.service-row-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}
.service-row-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-row-title {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 20px;
}
.service-row-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.service-bullets li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.service-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-row-cta {
  margin-top: 0;
}

/* ─── WHY HOK (3 PILLARS) ─── */
.why-hok {
  background: var(--bg);
  padding: 100px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  transition: border-color 0.3s ease;
}
.pillar:hover {
  border-color: var(--accent);
}
.pillar-number {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── PROCESS STRIP ─── */
.process-strip {
  background: #111111;
  padding: 80px 0;
}
/* Override base 56px → spec 48px; higher specificity wins over responsive rules */
.process-strip .section-heading {
  font-size: 48px;
  margin-bottom: 60px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.process-connector {
  flex-shrink: 0;
  width: 60px;
  border-top: 2px dashed rgba(232, 24, 28, 0.4);
  margin-top: 36px;
  align-self: flex-start;
}
.process-step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.process-step-body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── RESPONSIVE — services page (1024px) ─── */
@media (max-width: 1024px) {
  .service-row             { gap: 48px; padding: 60px 0; }
  .service-row-title       { font-size: 40px; }
  .pillars-grid            { grid-template-columns: 1fr 1fr; }
  .process-connector       { width: 36px; }
}

/* ─── RESPONSIVE — services page (768px) ─── */
@media (max-width: 768px) {
  .services-detail                      { padding: 70px 0; }
  .services-detail .section-heading     { margin-bottom: 40px; }
  .service-row                          { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  /* Reversed rows: bring img (second in DOM) above content on mobile */
  .service-row-reverse .service-row-img { order: -1; }
  .service-row-title                    { font-size: 36px; }
  .why-hok                              { padding: 70px 0; }
  .pillars-grid                         { grid-template-columns: 1fr; }
  .pillar                               { padding: 28px; }
  .process-strip                        { padding: 60px 0; }
  .process-strip .section-heading       { font-size: 36px; }
  .process-steps                        { flex-direction: column; align-items: center; }
  .process-step                         { max-width: 300px; padding: 0 20px; }
  .process-connector {
    width: 1px;
    height: 32px;
    border-top: none;
    border-left: 2px dashed rgba(232, 24, 28, 0.4);
    margin-top: 0;
    align-self: center;
  }
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE — APPENDED STYLES
   ═══════════════════════════════════════════════════ */

/* ─── CONTACT MAIN (TWO COLUMN) ─── */
.contact-main {
  background: #0f0f0f;
  padding: 100px 0;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-info-heading {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: 40px;
}
.info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.info-meta-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.info-value {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-primary);
}
.info-value--links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 18px;
}
.info-value--links a {
  color: var(--text-primary);
  transition: color 0.3s;
}
.info-value--links a:hover {
  color: var(--accent);
}
.info-value--muted {
  font-size: 16px;
  color: var(--text-secondary);
}
.info-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* Social buttons */
.social-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.3s, color 0.3s;
}
.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.social-btn-icon {
  font-size: 16px;
}

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}
.form-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.form-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}
.form-field {
  display: block;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field::placeholder {
  color: #444444;
}
.form-field:focus {
  border-color: var(--accent);
}
.form-field--select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-field--select option {
  background: var(--bg);
  color: var(--text-primary);
}
.form-field--textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.submit-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin-top: 4px;
}
.submit-btn:hover:not(:disabled) {
  background: #c41419;
  transform: scale(1.01);
}
.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
.submit-btn.sent {
  background: #16a34a;
}

/* ─── FAQ ACCORDION ─── */
.faq-section {
  background: var(--bg);
  padding: 100px 0;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.faq-item.open {
  border-bottom-color: var(--accent);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 24px;
  user-select: none;
}
.faq-question-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}
.faq-icon {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.35s ease;
}
/* + rotated 45° becomes an × */
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ─── FINAL CTA STRIP ─── */
.final-cta {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.final-cta-title {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.final-cta-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s;
}
.final-cta-btn:hover {
  background: #c41419;
}

/* ─── RESPONSIVE — contact page (1024px) ─── */
@media (max-width: 1024px) {
  .contact-grid      { gap: 48px; }
  .contact-form-wrap { padding: 36px; }
}

/* ─── RESPONSIVE — contact page (768px) ─── */
@media (max-width: 768px) {
  .contact-main         { padding: 70px 0; }
  .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
  .contact-info-heading { font-size: 38px; }
  .contact-form-wrap    { padding: 28px 20px; }
  .faq-section          { padding: 70px 0; }
  .faq-question-text    { font-size: 16px; }
  .final-cta            { padding: 48px 0; }
  .final-cta-inner      { flex-direction: column; align-items: flex-start; gap: 24px; }
}
