:root {
  --bg: #0f0e0d;
  --bg-2: #171512;
  --bg-card: #1e1c18;
  --fg: #f5f0e8;
  --fg-muted: #9a9080;
  --accent: #FF6B35;
  --accent-warm: #ff9f1a;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(15, 14, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-cta {
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #e55a28; }

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,14,13,0.92) 45%, rgba(15,14,13,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 140px 48px 80px;
  width: 100%;
}
.hero-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 620px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}
.hero-cta:hover { background: #e55a28; transform: translateY(-1px); }
.hero-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* SHARED SECTION UTILITIES */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 48px;
}

/* OFFERS */
.offers-section {
  padding: 100px 0;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
  transition: border-color 0.2s;
}
.offer-card:hover { border-color: rgba(255,107,53,0.35); }
.offer-icon { margin-bottom: 20px; }
.offer-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.offer-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CORPORATE */
.corporate-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}
.corporate-lead {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.corp-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}
.corporate-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.corp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.corp-icon { flex-shrink: 0; margin-top: 2px; }
.corp-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.corp-card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.corp-cta {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.corp-cta:hover { background: var(--accent-dim); }

/* COMMUNITY */
.community-section { padding: 100px 0; }
.community-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.pillar {}
.pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.community-quote {
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  background: var(--bg-card);
  border-radius: 0 4px 4px 0;
  max-width: 680px;
}
.community-quote blockquote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 10px;
}
.community-quote cite {
  font-size: 13px;
  color: var(--fg-muted);
}

/* LEAD FORM */
.lead-form-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.form-card {
  max-width: 560px;
  margin: 0 auto;
}
.form-header { margin-bottom: 40px; }
.form-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.form-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.field {}
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}
.field-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.field-input::placeholder { color: var(--fg-muted); }
.field-input:focus { border-color: var(--accent); }
.field-input.input-error { border-color: #e74c3c; }
.field-error {
  display: block;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 6px;
  min-height: 18px;
}
.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-bottom: 16px;
}
.form-submit:hover:not(:disabled) { background: #e55a28; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-privacy {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}
.form-error-msg {
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #e74c3c;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.form-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon { margin-bottom: 20px; }
.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.success-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-brand { display: flex; align-items: baseline; gap: 12px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-info { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-info p { font-size: 14px; color: var(--fg-muted); }
.footer-link {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }
.footer-copy {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}
.footer-copy .footer-link { color: #555; }
.footer-copy .footer-link:hover { color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .offers-grid,
  .community-pillars { grid-template-columns: 1fr 1fr; }
  .corporate-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .navbar { padding: 16px 24px; }
  .hero-content { padding: 120px 24px 60px; }
  .section-inner { padding: 0 24px; }
  .offers-grid,
  .community-pillars { grid-template-columns: 1fr; }
  .footer-inner { padding: 0 24px; }
  .footer-info { flex-direction: column; gap: 8px; }
}