﻿@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Spectral:wght@400;500;600&display=swap");

:root {
  --bg: #0f1114;
  --bg-alt: #151922;
  --card: #1b2230;
  --card-light: #f1f1ee;
  --text: #e9edf2;
  --muted: #9aa6b2;
  --accent: #f58220;
  --accent-2: #f3c969;
  --shadow: 0 18px 40px rgba(8, 10, 14, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 15% 10%, #242a38 0%, #0f1114 45%, #0b0d10 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-shapes::before,
.bg-shapes::after {
  content: "";
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(245, 130, 32, 0.35), rgba(245, 130, 32, 0));
  filter: blur(10px);
  z-index: -1;
}

.bg-shapes::before {
  top: -120px;
  right: -120px;
}

.bg-shapes::after {
  bottom: -140px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(243, 201, 105, 0.3), rgba(243, 201, 105, 0));
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(10, 12, 16, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  background: linear-gradient(130deg, var(--accent), var(--accent-2));
  color: #111;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 14px;
}

.brand-name {
  font-weight: 600;
  display: block;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  padding: 90px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #111;
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.btn.secondary {
  background: #121620;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn.dark {
  background: #111;
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
}

.hero-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.checklist {
  list-style: none;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
}

.checklist li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
}

.section {
  padding: 70px 0;
}

.brand-band {
  padding-top: 10px;
  padding-bottom: 24px;
}

.brand-band-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px;
}

.brand-band-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 12px;
  display: block;
  filter: saturate(0.95) contrast(0.95);
}

.brand-band-copy {
  padding: 8px 10px;
}

.brand-band-copy p {
  color: var(--muted);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 180px;
}

.highlight {
  background: linear-gradient(120deg, rgba(245, 130, 32, 0.15), rgba(15, 17, 20, 0.5));
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.bullets li::before {
  content: "•";
  color: var(--accent-2);
  margin-right: 8px;
}

.highlight-card {
  background: var(--card-light);
  color: #0f1114;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-card .big {
  font-size: 3rem;
  font-weight: 700;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.projects {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.project {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.project:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 130, 32, 0.45);
}

.project-media {
  margin: -10px -10px 18px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(130deg, rgba(245, 130, 32, 0.2), rgba(16, 20, 28, 0.8));
  position: relative;
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 16, 0.2), rgba(11, 13, 16, 0));
  pointer-events: none;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.project:hover .project-media img {
  transform: scale(1.04);
}

.project-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.project-links {
  margin-top: 12px;
}

.project-links a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.project-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.18);
  color: var(--accent-2);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.about-card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact {
  background: #121620;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 18px;
}

.footer {
  background: #0b0d10;
  padding: 50px 0 20px;
  color: var(--muted);
}

.footer h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    gap: 16px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-row {
    width: 100%;
  }

  .brand-band-card {
    grid-template-columns: 1fr;
  }

  .brand-band-image {
    height: 170px;
  }
}
