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

/* ─── CSS Variables ─── */
:root {
  --bg: #001225;
  --surface: #001c38;
  --card: #002550;
  --card-hover: #002e61;
  --border: #1a4a82;
  --gold: #F5A800;
  --gold-light: #FFD000;
  --red: #c0392b;
  --text: #f0f6ff;
  --text-muted: #7aafd4;
  --text-dim: #3a6a99;
  --white: #ffffff;
  --header-h: 72px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.7);
  --transition: 0.25s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.8; }

/* ─── Layout Utilities ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 { margin-bottom: 12px; }

.section-header p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.gold { color: var(--gold); }
.red { color: var(--red); }

/* ─── Divider ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px auto;
  max-width: 200px;
  justify-content: center;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.divider-icon { color: var(--gold); font-size: 1rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #001225;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,168,0,0.35);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #001225;
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192,57,43,0.35);
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(0, 18, 37, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(245,168,0,0.1);
}
.nav-link.active { color: var(--gold); }

.nav-cta {
  margin-left: 12px;
  padding: 9px 20px;
  background: var(--gold);
  color: #001225;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.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 Nav ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(0, 18, 37, 0.98);
  backdrop-filter: blur(16px);
  padding: 20px 24px 28px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--gold);
  background: rgba(245,168,0,0.08);
}
.mobile-nav-cta {
  margin-top: 12px;
  padding: 14px;
  background: var(--gold);
  color: #001225;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,168,0,0.07) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(245,168,0,0.015) 60px,
      rgba(245,168,0,0.015) 61px
    ),
    var(--bg);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 70% 50%, rgba(192,57,43,0.04) 0%, transparent 60%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245,168,0,0.12);
  border: 1px solid rgba(245,168,0,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: '★'; font-size: 0.7rem; }

.hero h1 {
  margin-bottom: 8px;
  color: var(--text);
}
.hero h1 span { color: var(--gold); }

.hero-year {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 40px;
  color: var(--text-muted);
  line-height: 1.9;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Features Cards ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  background: var(--card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(245,168,0,0.1);
  border: 1px solid rgba(245,168,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.feature-card h3 { margin-bottom: 12px; color: var(--text); }
.feature-card p { font-size: 0.92rem; }

/* ─── About Preview ─── */
.about-preview {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 3rem;
}
.about-img-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #001225;
  font-weight: 900;
  box-shadow: var(--shadow-lg);
}
.about-badge-year { font-size: 1.4rem; font-family: 'Playfair Display', serif; line-height: 1; }
.about-badge-since { font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { margin-bottom: 20px; }
.about-text .btn { margin-top: 8px; }

/* ─── Matches Preview (homepage) ─── */
.matches-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.match-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.match-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.match-league {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.match-league-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.match-team {
  text-align: center;
  flex: 1;
}
.match-team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.match-vs {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.match-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.match-time {
  background: rgba(245,168,0,0.1);
  border: 1px solid rgba(245,168,0,0.25);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}
.match-date { font-size: 0.8rem; color: var(--text-dim); }

/* ─── Hours Banner ─── */
.hours-banner {
  background: linear-gradient(135deg, #003d99 0%, #001c38 100%);
  padding: 28px 0;
}
.hours-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.hours-banner-icon { font-size: 2rem; }
.hours-banner-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
}
.hours-banner-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

/* ─── Social Strip ─── */
.social-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.social-strip p { color: var(--text-muted); }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--text);
  background: rgba(245,168,0,0.05);
}

/* ─── Page Hero (iç sayfalar) ─── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245,168,0,0.08) 0%, transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ─── Tabs ─── */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  background: transparent;
}
.tab-btn:hover { border-color: var(--gold); color: var(--text); }
.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #001225;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── Menu Grid ─── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.menu-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.menu-item-emoji { font-size: 1.4rem; flex-shrink: 0; }
.menu-item-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ─── Match Table ─── */
.match-table-wrap { overflow-x: auto; }
.match-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.match-table thead {
  background: var(--surface);
  border-bottom: 2px solid var(--gold);
}
.match-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.match-table tbody tr {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.match-table tbody tr:hover { background: var(--card-hover); }
.match-table td {
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.match-table .teams-cell {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.match-table .teams-cell .vs { color: var(--red); margin: 0 8px; }
.league-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.league-sl { background: rgba(192,57,43,0.15); color: #e74c3c; }
.league-ucl { background: rgba(41,128,185,0.15); color: #3498db; }
.league-uel { background: rgba(230,126,34,0.15); color: #e67e22; }
.league-tk { background: rgba(245,168,0,0.15); color: var(--gold); }
.time-badge {
  background: rgba(245,168,0,0.1);
  border: 1px solid rgba(245,168,0,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
}

/* ─── Match Loading & Empty States ─── */
.match-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 64px 0;
  color: var(--text-muted);
}
.match-loading p { margin: 0; font-size: 0.9rem; }

.match-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.match-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 64px 0;
  color: var(--text-muted);
  text-align: center;
}
.match-empty p { margin: 0; }

/* ─── Match Info Banner ─── */
.match-info-banner {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.match-info-banner-icon { font-size: 2.5rem; flex-shrink: 0; }
.match-info-banner h4 { color: var(--text); margin-bottom: 6px; }
.match-info-banner p { margin: 0; font-size: 0.9rem; }

/* ─── Timeline ─── */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(245,168,0,0.1));
}
.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-dot {
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  font-weight: 900;
  color: #001225;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(245,168,0,0.12);
}
.timeline-body { padding-top: 12px; }
.timeline-body h4 { color: var(--text); margin-bottom: 8px; font-size: 1.1rem; }
.timeline-body p { font-size: 0.9rem; }

/* ─── Team Cards ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-avatar {
  width: 80px;
  height: 80px;
  background: rgba(245,168,0,0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.team-card h4 { color: var(--text); margin-bottom: 4px; }
.team-card p { font-size: 0.82rem; color: var(--text-dim); margin: 0; }
.team-role {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  background: rgba(245,168,0,0.1);
  border: 1px solid rgba(245,168,0,0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Values Grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--gold); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { color: var(--text); margin-bottom: 10px; }

/* ─── Blockquote ─── */
blockquote {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 60px auto;
  max-width: 760px;
  position: relative;
}
blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 16px;
}
blockquote cite {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: normal;
}
blockquote cite a { color: var(--gold); text-decoration: underline; }

/* ─── Contact Page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,168,0,0.1);
  border: 1px solid rgba(245,168,0,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { color: var(--text); margin-bottom: 4px; font-size: 0.9rem; }
.contact-item p { font-size: 0.9rem; margin: 0; }
.contact-item a { color: var(--gold); }
.contact-item a:hover { text-decoration: underline; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(40%) invert(90%) hue-rotate(180deg);
}

/* Contact Form */
.contact-form { margin-top: 60px; }
.contact-form h3 { margin-bottom: 28px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

/* ─── Footer ─── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { font-size: 1.5rem; margin-bottom: 4px; }
.footer-brand .logo-sub { font-size: 0.7rem; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text); }

.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-hour-row span:last-child { color: var(--gold); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-preview-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .about-preview-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
  .timeline::before { left: 24px; }
  .timeline-dot { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .match-table th, .match-table td { padding: 12px 14px; font-size: 0.82rem; }
  .hours-banner-inner { flex-direction: column; }
}
