:root {
  --black: #0a0a0a;
  --deep-black: #050505;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-dark: #a8854e;
  --ivory: #f5f0e8;
  --ivory-dim: #e8e0d0;
  --emerald: #1a5c3a;
  --emerald-deep: #0e3d25;
  --text-primary: #f5f0e8;
  --text-secondary: rgba(245, 240, 232, 0.65);
  --text-muted: rgba(245, 240, 232, 0.4);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--deep-black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.gold { color: var(--gold); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(26, 92, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--deep-black) 0%, var(--black) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 100px,
      rgba(201, 169, 110, 0.03) 100px,
      rgba(201, 169, 110, 0.03) 101px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(201, 169, 110, 0.03) 100px,
      rgba(201, 169, 110, 0.03) 101px
    );
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--ivory);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

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

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

/* ========== MISSION ========== */
.mission {
  padding: 8rem 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.mission-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

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

.mission-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

/* ========== SERVICES ========== */
.services {
  padding: 8rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(14, 61, 37, 0.2) 0%, transparent 60%),
    var(--deep-black);
}

.services-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 4rem;
  color: var(--ivory);
}

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

.service-card {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

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

.service-card.featured {
  border-color: rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.05);
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .card-accent,
.service-card.featured .card-accent { opacity: 1; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}

.card-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.05);
}

.service-card li:last-child { border-bottom: none; }

.service-card li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  margin-right: 0.75rem;
  transform: rotate(45deg);
  position: relative;
  top: -1px;
}

/* ========== PILLARS ========== */
.pillars {
  padding: 8rem 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.pillars h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 4rem;
  color: var(--ivory);
}

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

.pillar {
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.15);
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========== CLOSING ========== */
.closing {
  padding: 10rem 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(26, 92, 58, 0.12) 0%, transparent 60%),
    var(--deep-black);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--ivory);
}

.closing p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--deep-black);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

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

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.05);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

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

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

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero { padding: 4rem 1.5rem; }
  .mission, .services, .pillars { padding: 5rem 0; }
  .closing { padding: 6rem 0; }
  .container { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .services-headline { font-size: 1.6rem; }
}
/* ========== NAVIGATION ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding: 0 2rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-black);
  background: var(--gold);
  padding: 0.55rem 1.25rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: 0.3s;
}

/* Push body content below fixed nav */
body { padding-top: 68px; }
.hero { padding-top: 6rem; }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--deep-black);
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ivory);
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245, 240, 232, 0.2);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ========== SERVICE CARD ACTIONS ========== */
.card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: center;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.card-link:hover { opacity: 0.7; }

.card-cta {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  padding: 0.5rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 110, 0.3);
  transition: background 0.2s, border-color 0.2s;
}

.card-cta:hover {
  background: rgba(201, 169, 110, 0.25);
  border-color: var(--gold);
}

.card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-black);
  background: var(--gold);
  padding: 0.25rem 0.65rem;
  margin-bottom: 1rem;
}

/* ========== LEAD CAPTURE FORM ========== */
.lead-capture {
  padding: 8rem 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(14, 61, 37, 0.15) 0%, transparent 60%),
    var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.lead-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.lead-form-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ivory);
}

.lead-form-copy p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.lead-trust-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-diamond {
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Form styles */
.lead-form, .contact-form {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.12);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.1);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 169, 110, 0.5);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--black);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--deep-black);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover:not(:disabled) { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

.form-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #f8d7da;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 6rem 0 5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(14, 61, 37, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--deep-black) 0%, var(--black) 100%);
}

.back-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.back-link:hover { color: var(--gold); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ivory);
  margin: 1rem 0 1.5rem;
}

.plan-tagline, .contact-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

/* ========== PLAN DETAIL PAGE ========== */
.plan-detail {
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.plan-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.plan-description h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.plan-description p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plan-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-diamond {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  margin-top: 4px;
  flex-shrink: 0;
}

.plan-feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

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

.plan-cta {
  padding: 8rem 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(26, 92, 58, 0.12) 0%, transparent 60%),
    var(--deep-black);
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.plan-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.plan-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.plan-cta p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.plan-cta .btn-primary,
.plan-cta .btn-ghost {
  margin: 0 0.5rem;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  padding: 6rem 0 8rem;
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 3rem;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.expect-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.expect-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.expect-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

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

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 2rem;
}

/* ========== THANK YOU PAGE ========== */
.thank-you-page {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(26, 92, 58, 0.12) 0%, transparent 60%),
    var(--deep-black);
  text-align: center;
}

.thank-you-inner {
  max-width: 680px;
  margin: 0 auto;
}

.ty-icon {
  margin-bottom: 2rem;
}

.thank-you-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
  margin: 1rem 0 1.5rem;
}

.thank-you-page p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 1rem;
}

.ty-sub {
  font-size: 0.95rem \!important;
  color: var(--text-muted) \!important;
  margin-bottom: 2.5rem \!important;
}

.ty-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.ty-quote {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding-top: 2rem;
  margin-top: 2rem;
}

.ty-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem \!important;
  color: var(--text-muted) \!important;
}

.ty-quote span {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.5rem;
}

/* ========== FOOTER ENHANCEMENTS ========== */
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 900px) {
  .lead-form-wrapper,
  .plan-detail-inner,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    gap: 1rem;
  }

  .site-nav.open .nav-cta {
    display: block;
    margin: 1rem 2rem;
    text-align: center;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { flex-direction: column; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
}
