@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #0f172a;
  --bg-light: #f8fafc;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-light: #fed7aa;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --card-bg: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.cta-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--text-dark);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.hero {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 45%),
              radial-gradient(circle at top right, rgba(15, 23, 42, 0.1), transparent 40%),
              var(--card-bg);
  padding: 90px 24px 60px;
  text-align: center;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text-dark);
  background: transparent;
}

.section {
  padding: 80px 24px;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  margin-bottom: 40px;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section__description {
  max-width: 640px;
  color: var(--text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.13);
}

.card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent-dark);
  background: rgba(249, 115, 22, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 600;
}

.card__meta {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.card__description {
  color: var(--text-muted);
  flex: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-dark);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.highlight {
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.highlight::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  top: -20px;
  right: -30px;
  z-index: 0;
}

.highlight h3 {
  margin-bottom: 10px;
}

.highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.highlight > * {
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
}

.gallery-item span {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gallery-item small {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.85));
  z-index: 0;
}

.gallery-item > * {
  position: relative;
  z-index: 1;
}

.cta-banner {
  background: var(--text-dark);
  color: #fff;
  padding: 60px 32px;
  border-radius: var(--radius);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer-brand h3 {
  margin-bottom: 10px;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: #fff;
}

.page-header {
  background: var(--card-bg);
  padding: 70px 24px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-chip.active,
.filter-chip:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.4);
  color: var(--accent-dark);
}

.timeline {
  position: relative;
  margin-top: 30px;
  padding-left: 24px;
  border-left: 2px solid rgba(15, 23, 42, 0.1);
}

.timeline-event {
  margin-bottom: 36px;
  position: relative;
  padding-left: 24px;
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.timeline-event h3 {
  margin-bottom: 6px;
}

.timeline-event time {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.timeline-event p {
  margin-top: 8px;
  color: var(--text-muted);
}

.event-meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.badge.accent {
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-card h3 {
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 70px;
  }

  .section {
    padding: 60px 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

