/* ============================================================
   UEG SUPER KINGS — Stylesheet (v2.0)
   Clean rewrite. Black + Orange + Gold. KKR-inspired discipline.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:wght@400;500;600;700;900&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg:        #060606;
  --bg-2:      #0e0e0e;
  --surface:   #161616;
  --surface-2: #1d1d1d;
  --line:      #262626;
  --line-2:    #333333;

  --text:      #f4f4f4;
  --text-2:    #c4c4c4;
  --muted:     #888888;

  --orange:    #ff6a13;
  --orange-2:  #ff8a3d;
  --gold:      #ffc107;
  --gold-2:    #ffd454;

  --grad:      linear-gradient(135deg, #ff6a13 0%, #ffc107 100%);

  --success:   #1ec47b;
  --danger:    #ff3b3b;

  --f-display: 'Anton', 'Bebas Neue', sans-serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --container: 1200px;
  --r:         8px;
  --r-lg:      12px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .15s; }
a:hover { color: var(--orange-2); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 1rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .15s;
  background: var(--surface-2);
  color: var(--text);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-2); border-color: var(--orange-2); color: #000; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 8px 16px; font-size: 11px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.brand-logo {
  height: 56px; width: auto; max-width: 80px;
  object-fit: contain;
}
.brand-fallback {
  width: 56px; height: 56px;
  background: var(--orange);
  display: grid; place-items: center;
  border-radius: 4px;
  transform: skewX(-6deg);
}
.brand-fallback span {
  font-family: var(--f-display);
  font-size: 22px;
  color: #000;
  letter-spacing: 1px;
  transform: skewX(6deg);
}
.brand-text { display: none; }

.nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: flex-end;
}
.nav a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  transition: color .15s;
}
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--orange); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--orange);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  position: relative;
}
.nav-toggle span::before { content:''; position: absolute; top: -7px; }
.nav-toggle span::after  { content:''; position: absolute; top: 7px; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 24px;
    border-radius: 0;
  }
  .nav a.active::after { display: none; }
  .nav a.active { background: rgba(255,106,19,.1); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 540px;
  padding: 100px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(255,106,19,.18), transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 80%, rgba(255,193,7,.12), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black, transparent 80%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .25; mix-blend-mode: screen;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  border: 1px solid var(--orange);
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(48px, 9vw, 110px);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: 0;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  margin: 0 0 32px;
  max-width: 560px;
  line-height: 1.5;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ---------- Motto band ---------- */
.motto-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.motto-band::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad);
}
.motto-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  justify-content: center;
  align-items: baseline;
  text-align: center;
}
.motto-line {
  font-family: var(--f-display);
  font-size: clamp(28px, 5.5vw, 56px);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
}
.motto-line.motto-3 { color: var(--orange); }

/* ---------- Section heads ---------- */
section { padding: 60px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0;
  letter-spacing: 0;
}
.section-head h2 .accent { color: var(--orange); }
.section-head .meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-head a.meta { color: var(--orange); }

/* ---------- Page hero ---------- */
.page-hero {
  padding: 80px 0 30px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  margin: 0 0 12px;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Get involved CTAs (homepage) ---------- */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.cta-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}
.cta-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.cta-card:hover::before { transform: scaleX(1); }
.cta-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.cta-card h3 {
  font-size: 26px;
  line-height: 1.05;
  margin: 0 0 14px;
}
.cta-card p {
  color: var(--text-2);
  margin: 0 0 24px;
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}

/* ---------- Match cards ---------- */
.match-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.match-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}
.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.match-card .row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.match-card .badge {
  background: var(--orange);
  color: #000; font-weight: 700;
  padding: 3px 10px; border-radius: 99px;
  font-size: 11px;
}
.match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}
.match-teams .team {
  font-family: var(--f-display);
  font-size: 22px; line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.match-teams .team.right { text-align: right; }
.match-teams .vs {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 2px;
}
.match-teams .score {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 600;
  font-family: var(--f-body);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: none;
}
.meta-row {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.result-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px;
}
.result-won { background: rgba(30,196,123,.15); color: var(--success); }
.result-lost { background: rgba(255,59,59,.15); color: var(--danger); }
.result-draw { background: rgba(255,193,7,.15); color: var(--gold); }

/* ---------- Player cards ---------- */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.player-card {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s;
}
.player-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.player-card .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  background-color: var(--surface-2);
}
.player-card .photo.empty {
  background:
    radial-gradient(circle at 50% 30%, rgba(255,106,19,.2), transparent 70%),
    var(--surface);
}
.player-card .photo.empty::after {
  content: '👤';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 80px; opacity: 0.15;
}
.player-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.95) 100%);
}
.player-card .num {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--orange);
  z-index: 2;
  text-shadow: 2px 2px 0 #000;
}
.player-card .captain-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange);
  color: #000;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  z-index: 2;
}
.player-card .overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  z-index: 2;
}
.player-card .overlay .name {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.player-card .overlay .role {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--grad);
  color: #000;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.stats-band > .container { position: relative; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
}
.stat .lbl {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}

/* ---------- News ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.news-card:hover { transform: translateY(-3px); border-color: var(--orange); }
.news-card .thumb {
  aspect-ratio: 16/9;
  background-color: var(--surface-2);
  background-size: cover; background-position: center;
  position: relative;
}
.news-card .thumb .cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: #000;
  font-size: 10px; font-weight: 700;
  padding: 4px 9px; border-radius: 99px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.news-card .body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.news-card h3 {
  font-family: var(--f-display);
  font-size: 22px; line-height: 1.1;
  margin: 0 0 8px;
}
.news-card .excerpt {
  color: var(--text-2);
  font-size: 14px;
  margin: 0 0 12px;
  flex: 1;
}
.news-card .meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------- Tables ---------- */
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.table th {
  background: var(--surface-2);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.table tr:last-child td { border-bottom: 0; }
.table tr.us { background: rgba(255,106,19,.08); }
.table tr.us td { border-color: rgba(255,106,19,.2); font-weight: 700; }

/* ---------- Filter pills ---------- */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-pill {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .15s;
}
.filter-pill:hover { border-color: var(--orange); color: var(--orange); }
.filter-pill.active { background: var(--orange); color: #000; border-color: var(--orange); }

/* ---------- Empty states ---------- */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state .icon {
  font-size: 48px;
  margin-bottom: 14px;
  opacity: .5;
}
.empty-state .title {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.empty-state p { margin: 0 auto 18px; max-width: 480px; }

/* ---------- Sponsors public block (in-page) ---------- */
.sponsors-block { padding: 70px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.sponsor-tier { margin-bottom: 40px; }
.sponsor-tier:last-child { margin-bottom: 0; }
.sponsor-tier-label {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  margin-bottom: 18px;
  position: relative;
  padding: 0 80px;
}
.sponsor-tier-label::before,
.sponsor-tier-label::after {
  content: '';
  position: absolute; top: 50%;
  width: 60px; height: 1px;
  background: var(--line-2);
}
.sponsor-tier-label::before { left: 0; }
.sponsor-tier-label::after  { right: 0; }
@media (max-width: 600px) {
  .sponsor-tier-label { padding: 0; }
  .sponsor-tier-label::before, .sponsor-tier-label::after { display: none; }
}
.sponsor-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
  justify-items: stretch;
}
.sponsor-cols-1 { grid-template-columns: 1fr;             max-width: 400px; margin: 0 auto; }
.sponsor-cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
.sponsor-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sponsor-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .sponsor-cols-3, .sponsor-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

.sponsor-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  height: 110px;
  padding: 18px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
  text-align: center;
}
.sponsor-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.sponsor-card img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: brightness(.95);
}
.sponsor-card:hover img { filter: brightness(1.1); }
.sponsor-card .sponsor-name {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.sponsor-tier.tier-title .sponsor-card { height: 180px; padding: 28px; }
.sponsor-tier.tier-title .sponsor-card .sponsor-name { font-size: 28px; letter-spacing: 2px; }
.sponsor-tier.tier-principal .sponsor-card { height: 140px; }
.sponsor-tier.tier-principal .sponsor-card .sponsor-name { font-size: 22px; }

/* ---------- Sponsor strip (footer) ---------- */
.sponsor-strip {
  background: #ffffff;
  color: #1a1a1a;
  padding: 32px 0 24px;
  border-top: 4px solid var(--orange);
}
.strip-tier { margin-bottom: 18px; }
.strip-tier:last-child { margin-bottom: 0; }
.strip-label {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}
.strip-row {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.strip-card {
  display: flex; align-items: center; justify-content: center;
  height: 60px; min-width: 100px;
  text-decoration: none;
}
.strip-card img { max-height: 50px; max-width: 140px; object-fit: contain; }
.strip-card span {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
}
.strip-tier:first-child .strip-card { height: 80px; }
.strip-tier:first-child .strip-card img { max-height: 70px; }
.strip-tier:first-child .strip-card span { font-size: 22px; }

/* ---------- Play-Cricket block ---------- */
.pc-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  margin-bottom: 30px;
}
.pc-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.pc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--grad);
  color: #000;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
}
.pc-badge::before {
  content: ''; width: 7px; height: 7px;
  background: #000; border-radius: 50%;
  animation: pc-blink 1.6s ease-in-out infinite;
}
@keyframes pc-blink { 50% { opacity: .25; } }
.pc-head h3 {
  font-family: var(--f-display);
  font-size: 20px; letter-spacing: 1px;
  margin: 0;
}
.pc-body { padding: 0; min-height: 300px; }
.pc-body iframe {
  width: 100%; height: 600px; border: 0; background: #fff;
}
.pc-cta-card {
  padding: 50px 30px;
  text-align: center;
}
.pc-cta-card h4 {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
}
.pc-cta-card p { color: var(--muted); margin: 0 0 24px; max-width: 460px; margin-left: auto; margin-right: auto; }
.pc-foot {
  padding: 12px 22px;
  border-top: 1px solid var(--line);
  text-align: right;
  background: var(--surface-2);
  font-size: 12px; color: var(--muted);
}
.pc-foot a { color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 60px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--f-display);
  font-size: 16px; letter-spacing: 2px;
  color: var(--orange);
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a { color: var(--text-2); }
.site-footer ul li a:hover { color: var(--orange); }
.footer-about { color: var(--text-2); margin: 0 0 16px; }

.socials { display: flex; gap: 8px; }
.socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.socials a:hover { background: var(--orange); color: #000; border-color: var(--orange); }

.copy {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p, .contact-info ul { color: var(--text-2); }
.contact-info ul { list-style: none; padding: 0; }
.contact-info li { margin-bottom: 10px; }

.form { display: grid; gap: 16px; }
.form input, .form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 14px;
}
.form input:focus, .form textarea:focus {
  outline: 0; border-color: var(--orange);
}
.form label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.alert {
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 14px;
}
.alert.success { background: rgba(30,196,123,.12); color: var(--success); border: 1px solid rgba(30,196,123,.3); }
.alert.error   { background: rgba(255,59,59,.12);  color: var(--danger);  border: 1px solid rgba(255,59,59,.3); }

/* ---------- Split (about page) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split-img {
  aspect-ratio: 4/5;
  background: var(--grad);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.split-img::after {
  content: 'UEG';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: 130px;
  color: rgba(0,0,0,.3);
  letter-spacing: 4px;
}
.split h3 {
  font-size: 36px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.split p { color: var(--text-2); margin-bottom: 14px; }
.split .btn { margin-top: 12px; margin-right: 8px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--surface-2);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  background-size: cover; background-position: center;
  transition: transform .15s;
}
.gallery-item:hover { transform: scale(1.02); }
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh; object-fit: contain;
}
.lightbox .close {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange); color: #000;
  border: 0; width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 22px; cursor: pointer;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.muted { color: var(--muted); }
.accent { color: var(--orange); }
