:root {
  --bg: #0d1b2a;
  --bg-2: #0f2035;
  --fg: #f0e9d8;
  --fg-muted: #9a8e7a;
  --accent: #c9a96e;
  --accent-dim: #a8884f;
  --border: rgba(201, 169, 110, 0.18);
  --card-bg: rgba(255,255,255,0.03);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,169,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.65;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  background: rgba(201,169,110,0.05);
}

.badge-icon {
  color: var(--accent);
  font-size: 10px;
}

.badge-text {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* BUSINESSES */
.businesses {
  padding: 120px 0;
  position: relative;
}

.biz-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.biz-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s ease;
}

.biz-card:hover {
  background: rgba(201,169,110,0.04);
}

.biz-number {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 20px;
}

.biz-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.2;
}

.biz-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.biz-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dim);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 5px 10px;
}

/* APPROACH */
.approach {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}

.approach::before, .approach::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.approach::before { top: 0; }
.approach::after { bottom: 0; }

.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.approach-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-top: 16px;
}

.principle {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.principle:last-child { border-bottom: none; }

.principle-icon {
  font-size: 16px;
  color: var(--accent);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,110,0.3);
  flex-shrink: 0;
  margin-top: 2px;
}

.principle h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.principle p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 140px 0;
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 24px;
}

.closing-attr {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}

.closing-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.closing-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

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

.footer-built {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner,
  .approach-inner { grid-template-columns: 1fr; gap: 48px; }
  .biz-grid { grid-template-columns: 1fr; }
  .hero-right { gap: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-built { text-align: left; }
}

@media (max-width: 600px) {
  .hero-inner, .biz-inner, .approach-inner, .closing-inner, .footer-inner { padding: 0 24px; }
  .hero { padding: 60px 0 40px; }
  .businesses, .approach, .closing { padding: 80px 0; }
  .stats-row { grid-template-columns: 1fr; }
}
