:root {
  --bg: #1a1a17;
  --bg-alt: #222219;
  --fg: #e8e4db;
  --fg-muted: #a39e8f;
  --accent: #c67a3c;
  --accent-light: #d4944f;
  --border: #3a3830;
  --heading: 'Bebas Neue', sans-serif;
  --body: 'Source Sans 3', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(198, 122, 60, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(198, 122, 60, 0.06) 0%, transparent 50%),
    linear-gradient(175deg, #1a1a17 0%, #12120f 50%, #1a1a17 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(198, 122, 60, 0.015) 2px,
      rgba(198, 122, 60, 0.015) 4px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.brand-mark {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
}

.hero h1 {
  font-family: var(--heading);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-bottom: 0.4em;
}

.hero-sub {
  font-size: 0.55em;
  letter-spacing: 0.25em;
  color: var(--accent);
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 2rem;
  letter-spacing: 0.02em;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.2rem;
}

.hero-location {
  font-family: var(--heading);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* === SECTION LABEL === */
.section-label {
  font-family: var(--heading);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.section-label.light {
  color: var(--accent-light);
}

/* === CATEGORIES === */
.categories {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.category-card {
  padding: 3rem 2.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.category-card:hover {
  border-color: var(--accent);
}

.category-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.category-card h3 {
  font-family: var(--heading);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

.category-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === WHY === */
.why {
  background: var(--accent);
  color: #1a1a17;
  padding: 6rem 2rem;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why .section-label.light {
  color: #1a1a17;
  opacity: 0.6;
}

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

.why-block h3 {
  font-family: var(--heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  color: #1a1a17;
}

.why-block p {
  color: rgba(26, 26, 23, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(198, 122, 60, 0.08) 0%, transparent 70%),
    var(--bg);
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing-mark {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.closing h2 {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* === FOOTER === */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--heading);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .category-card {
    padding: 2rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 1rem;
  }

  .why {
    padding: 4rem 1.5rem;
  }

  .categories {
    padding: 4rem 1rem;
  }
}