/* === SPOTTEDSA THEME === */
:root {
  --bg: #0D0D0F;
  --surface: #161618;
  --surface-2: #1E1E21;
  --red: #E63020;
  --amber: #F5A623;
  --white: #F5F5F0;
  --muted: #8A8A8A;
  --border: #2A2A2E;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(180deg, rgba(13,13,15,0.95) 0%, transparent 100%);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}

.nav-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
}

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

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #c4291a !important; }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,15,0.92) 0%,
    rgba(13,13,15,0.6) 50%,
    rgba(13,13,15,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 60px 80px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-city { color: var(--red); }

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: #c4291a; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  margin-left: 12px;
}

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

/* === SECTION SHARED === */
.section {
  padding: 80px 60px;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* === SPOTTED GRID === */
.spotted-section { background: var(--bg); }

.spotted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.spotted-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
}

.spotted-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.spotted-card:hover img { transform: scale(1.05); }

.spotted-card-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

.spotted-card-location {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(230,48,32,0.9);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === FEATURES === */
.features-section { background: var(--surface); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.feature-item {
  background: var(--surface);
  padding: 48px 40px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* === CTA === */
.cta-section {
  background: var(--bg);
  text-align: center;
  padding: 100px 60px;
}

.cta-section .section-headline { margin-bottom: 16px; }

.cta-section .section-sub { margin: 0 auto 40px; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* === MOBILE === */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 40px 20px 60px; }
  .hero-headline { font-size: 64px; }
  .section { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 20px; }
  .cta-section { padding: 60px 20px; }
  .btn-secondary { display: block; margin: 12px 0 0 0; text-align: center; }
}