:root {
  --bg-dark: #0a0a0f;
  --bg-section: #111118;
  --bg-card: #1a1a24;
  --gold: #c9a94e;
  --gold-light: #e4cc7a;
  --gold-dim: #8b7332;
  --text-primary: #f5f0e8;
  --text-secondary: #a09888;
  --text-muted: #6b6050;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 30%, #1a1520 0%, #0a0a0f 70%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,169,78,0.03) 50%, transparent 100%);
  pointer-events: none;
}

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

.crown-mark {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 2rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === POSITIONING === */
.positioning {
  padding: 8rem 0;
  background: var(--bg-section);
  border-top: 1px solid rgba(201,169,78,0.1);
  border-bottom: 1px solid rgba(201,169,78,0.1);
}

.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.position-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.position-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.position-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,169,78,0.03);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

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

/* === SERVICES === */
.services {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 4rem;
}

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

.service-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,78,0.08);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(201,169,78,0.3);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === TERRITORY === */
.territory {
  padding: 6rem 0;
  background: var(--bg-section);
  border-top: 1px solid rgba(201,169,78,0.1);
  border-bottom: 1px solid rgba(201,169,78,0.1);
  text-align: center;
}

.territory-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.territory-item {
  padding: 1rem;
  background: rgba(201,169,78,0.04);
  border: 1px solid rgba(201,169,78,0.12);
  border-radius: 3px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 400;
}

.territory-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* === CLOSING === */
.closing {
  padding: 8rem 0;
  background: var(--bg-dark);
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.closing-bold {
  color: var(--gold) !important;
  font-weight: 500;
  font-size: 1.2rem !important;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 0;
  background: var(--bg-section);
  border-top: 1px solid rgba(201,169,78,0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-mark {
  color: var(--gold);
  font-size: 1.2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: right;
}

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .territory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-info p {
    text-align: center;
  }

  .hero {
    min-height: 90vh;
  }
}