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

:root {
  --bg: #FAFAF8;
  --bg-section: #F2EFE9;
  --surface: #FFFFFF;
  --surface-warm: #FFF8F2;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.16);
  --divider: rgba(0,0,0,0.06);
  --text-primary: #0F0F0F;
  --text-body: #2C2C2C;
  --text-secondary: #737373;
  --text-muted: #A8A8A8;
  --accent: #FF5C3A;
  --accent-hover: #E84D2E;
  --accent-light: rgba(255,92,58,0.10);
  --accent-secondary: #F59E0B;
  --text-on-accent: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --container-max: 72rem;
  --content-max: 44rem;
  --reading-max: 36rem;
  --section-pad: 6rem 1.5rem;
  --hero-pad: 7rem 1.5rem 5rem;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset and base
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

main {
  padding-top: 4rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td, th {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--divider);
  text-align: left;
  font-size: 0.9375rem;
}

th {
  font-weight: 600;
  color: var(--text-primary);
}

/* Typography
   ------------------------------------------------------------------ */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1, .h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  margin: 0 0 0.5rem;
}

.lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  max-width: var(--reading-max);
}

p {
  margin: 0 0 1.25rem;
  color: var(--text-body);
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

.content ul,
.content ol {
  color: var(--text-body);
}

/* Layout
   ------------------------------------------------------------------ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-col {
  max-width: var(--content-max);
  margin: 0 auto;
}

.reading-col {
  max-width: var(--reading-max);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad);
}

.section--hero {
  padding: var(--hero-pad);
}

.section--alt {
  background: var(--bg-section);
}

.section--dark {
  background: var(--text-primary);
  color: var(--text-on-accent);
}

.section--dark h1,
.section--dark .h1,
.section--dark h2,
.section--dark .h2,
.section--dark h3,
.section--dark .h3 {
  color: #fff;
}

.section--dark p {
  color: rgba(255,255,255,0.75);
}

.section--divider {
  border-top: 1px solid var(--divider);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.accent-rule {
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

/* Buttons
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  -webkit-appearance: none;
  transition: background-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

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

.btn--primary {
  background: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 4px 16px rgba(255,92,58,0.30);
}

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(255,92,58,0.36);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-strong);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--dark {
  background: var(--text-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--dark:hover {
  background: #1F1F1F;
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* Cards
   ------------------------------------------------------------------ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: 1.25rem 1.5rem;
}

/* Event card
   ------------------------------------------------------------------ */
.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.event-card__image {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  display: block;
}

.event-card__body {
  padding: 1rem 1.25rem;
}

.event-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0.375rem 0 0.25rem;
  line-height: 1.3;
}

.event-card__meta {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Tags / badges
   ------------------------------------------------------------------ */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.625rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag--accent {
  background: var(--accent-light);
  color: var(--accent);
}

.tag--amber {
  background: rgba(245,158,11,0.12);
  color: #B45309;
}

.tag--neutral {
  background: rgba(0,0,0,0.06);
  color: var(--text-secondary);
}

.tag--live {
  background: rgba(245,158,11,0.12);
  color: #B45309;
}

.tag--soon {
  background: rgba(0,0,0,0.05);
  color: var(--text-muted);
}

/* City card
   ------------------------------------------------------------------ */
.city-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
  cursor: pointer;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.city-card__image {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
}

.city-card__body {
  padding: 1.25rem;
}

.city-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.city-card__status {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* How-it-works steps
   ------------------------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.step__title {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ
   ------------------------------------------------------------------ */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--divider);
  padding: 1.25rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--divider);
}

.faq-item__question {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-item__question::after {
  content: "+";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item__answer {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 0.75rem;
  padding-right: 2rem;
  font-weight: 400;
}

/* Navigation
   ------------------------------------------------------------------ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background-color 300ms var(--ease);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 4rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.site-nav__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.site-nav__links {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.875rem;
  transition: color 200ms ease;
  text-decoration: none;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--text-primary);
}

.site-nav__cta {
  margin-left: 0.5rem;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.site-nav__toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  margin: 0 auto;
}

.site-nav__mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 1rem 1.5rem 1.5rem;
}

.site-nav__mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav__mobile-links a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 0.625rem 0;
}

.site-nav__mobile-links a:hover {
  color: var(--text-primary);
}

.site-nav__mobile-links .btn {
  margin-top: 0.75rem;
}

/* Footer
   ------------------------------------------------------------------ */
.site-footer {
  background: var(--text-primary);
  padding: 3.5rem 1.5rem 2.5rem;
  color: rgba(255,255,255,0.65);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto 2.5rem;
}

.site-footer__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.site-footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.50);
  margin-top: 0.5rem;
}

.site-footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 1rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  transition: color 200ms ease;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.site-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* Grid utilities
   ------------------------------------------------------------------ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Spacing utilities
   ------------------------------------------------------------------ */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

/* Misc utilities
   ------------------------------------------------------------------ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Responsive
   ------------------------------------------------------------------ */
@media (max-width: 860px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav__links,
  .site-nav__cta {
    display: none;
  }
  .site-nav__toggle {
    display: flex;
  }
  .site-nav--open .site-nav__mobile {
    display: block;
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Hero split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-split__text { padding-right: 1rem; }
.hero-split__image img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-split__text { padding-right: 0; text-align: center; }
  .hero-split__text .cta-group { justify-content: center; }
  .hero-split__image img { height: 20rem; }
}
