/* ══════════════════════════════════════════════════════════════
   Van Consultant LLC — Website Stylesheet
   Aesthetic: Trusted Advisor / Defense Industry Premium
   Inspired by wealth-management fiduciary design principles
   ══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Color Palette */
  --navy-900: #080f1f;
  --navy-800: #0d1a35;
  --navy-700: #14244a;
  --navy-600: #1c3060;
  --navy-500: #254077;

  --gold-600: #a67c24;
  --gold-500: #c09530;
  --gold-400: #d4ab4a;
  --gold-300: #e4c472;
  --gold-100: #f5e9c8;

  --cream-100: #faf8f3;
  --cream-200: #f3f0e8;
  --white: #ffffff;

  --text-dark: #1a1e2e;
  --text-body: #3a3d50;
  --text-muted: #6b7280;

  --border-light: #e0dbd0;
  --border-gold: rgba(192, 149, 48, 0.25);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Lato', 'Helvetica Neue', 'Arial', sans-serif;

  /* Spacing */
  --section-v: 108px;
  --container-w: 1180px;
  --gap: 40px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.32s;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility Classes ──────────────────────────────────────── */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.section-eyebrow.centered { text-align: center; }
.section-eyebrow.light { color: var(--gold-300); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--navy-800);
  line-height: 1.13;
  margin-bottom: 28px;
}
.section-title.centered { text-align: center; }
.section-title.light { color: var(--white); }
.section-title em {
  font-style: italic;
  color: var(--gold-400);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
  text-align: center;
  line-height: 1.85;
  margin-bottom: 64px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold-500);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid var(--gold-500);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold-400);
  border-color: var(--gold-400);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--dur) var(--ease);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold-300);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid rgba(212, 171, 74, 0.45);
  transition: all var(--dur) var(--ease);
}
.btn-outline-gold:hover {
  background: var(--gold-400);
  color: var(--navy-800);
  border-color: var(--gold-400);
}

/* ── Fade-in Animation ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding-block: 28px;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

#navbar.scrolled {
  background: var(--navy-900);
  padding-block: 16px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
}
.brand-llc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-300);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.nav-links a:hover { color: var(--gold-300); }

.nav-cta {
  background: var(--gold-500) !important;
  color: var(--white) !important;
  padding: 10px 26px;
  letter-spacing: 2px;
}
.nav-cta:hover {
  background: var(--gold-400) !important;
  color: var(--navy-800) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Subtle grid pattern */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* Diagonal accent — creates a layered depth effect */
.hero-diagonal-accent {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 75% 45%, rgba(28, 48, 96, 0.7) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(192, 149, 48, 0.06) 0%, transparent 60%);
}
.hero-diagonal-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 45%, rgba(20, 36, 74, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding: clamp(120px, 14vh, 160px) clamp(20px, 4vw, 48px) clamp(80px, 10vh, 120px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold-300);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(56px, 9vw, 104px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 28px;
  max-width: 720px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-300);
}

.hero-subheading {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin-bottom: 52px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Scroll indicator */
.hero-scroll-cue {
  position: absolute;
  bottom: 44px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.7; }
}

/* ══════════════════════════════════════════════════════════════
   MISSION BAND
   ══════════════════════════════════════════════════════════════ */
#mission-band {
  background: var(--navy-700);
  padding-block: 80px;
  border-block: 1px solid var(--border-gold);
}

.mission-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.55;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.q-mark {
  font-family: var(--font-serif);
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.35em;
  color: var(--gold-400);
  margin-inline: 6px;
}

.mission-attr {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════════════ */
#about {
  padding-block: var(--section-v);
  background: var(--cream-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

/* Image column */
.about-image-col {
  position: sticky;
  top: 100px;
}

.about-photo-frame {
  position: relative;
  margin-bottom: 36px;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--navy-700) 0%, var(--navy-600) 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8, 15, 31, 0.35) 100%);
  pointer-events: none;
}

.photo-accent-block {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 110px;
  height: 110px;
  background: var(--gold-500);
  opacity: 0.18;
  z-index: 0;
}

/* Stats panel */
.about-stats-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-block: 18px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.stat-lbl {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.stat-divider {
  height: 1px;
  background: var(--border-light);
  margin-inline: 0;
}

/* About body */
.about-body-col { padding-top: 8px; }

.about-lead {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy-700);
  line-height: 1.65;
  margin-bottom: 28px;
}

.about-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-text strong {
  color: var(--navy-800);
  font-weight: 700;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}
.sig-accent {
  width: 44px;
  height: 2px;
  background: var(--gold-500);
  flex-shrink: 0;
}
.about-signature span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   VALUES SECTION
   ══════════════════════════════════════════════════════════════ */
#values {
  padding-block: var(--section-v);
  background: var(--white);
}

.values-header {
  margin-bottom: 56px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-light);
  background: var(--border-light);
  gap: 1px;
}

.value-card {
  background: var(--white);
  padding: 52px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease);
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.value-card:hover::after { transform: scaleX(1); }
.value-card:hover { background: var(--cream-100); }

.value-icon {
  width: 44px;
  height: 44px;
  color: var(--gold-500);
  margin-bottom: 24px;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 16px;
}

.value-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════════════════════ */
#services {
  padding-block: var(--section-v);
  background: var(--cream-100);
}

.services-header { margin-bottom: 12px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
  background: var(--border-light);
  gap: 1px;
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background var(--dur) var(--ease);
  position: relative;
}
.service-card:hover { background: var(--navy-800); }
.service-card:hover .svc-num { color: var(--gold-300); }
.service-card:hover .svc-title { color: var(--white); }
.service-card:hover .svc-desc { color: rgba(255, 255, 255, 0.65); }

.svc-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.055);
  line-height: 1;
  margin-bottom: 14px;
  transition: color var(--dur) var(--ease);
}

.svc-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color var(--dur) var(--ease);
}

.svc-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
  transition: color var(--dur) var(--ease);
}

/* ══════════════════════════════════════════════════════════════
   COMMUNITY SECTION
   ══════════════════════════════════════════════════════════════ */
#community {
  position: relative;
  padding-block: var(--section-v);
  background: var(--navy-800);
  overflow: hidden;
}

.community-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.013) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

#community .container { position: relative; z-index: 1; }

.community-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.community-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin-bottom: 22px;
}
.community-text strong {
  color: var(--gold-300);
  font-weight: 600;
}
.community-text:last-of-type { margin-bottom: 40px; }

.community-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comm-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 32px 28px;
  transition: all var(--dur) var(--ease);
}
.comm-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-gold);
}

.comm-card-icon {
  width: 36px;
  height: 36px;
  color: var(--gold-300);
  margin-bottom: 16px;
}

.comm-card h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.comm-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   WHY VAN CONSULTANT
   ══════════════════════════════════════════════════════════════ */
#why {
  padding-block: var(--section-v);
  background: var(--white);
}

#why .section-title { margin-bottom: 60px; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border-light);
  background: var(--border-light);
  gap: 1px;
}

.diff-item {
  display: flex;
  gap: 24px;
  padding: 44px 48px;
  background: var(--white);
  transition: background var(--dur) var(--ease);
}
.diff-item:hover { background: var(--cream-100); }

.diff-check {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold-500);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-top: 3px;
  transition: all var(--dur) var(--ease);
}
.diff-item:hover .diff-check {
  background: var(--gold-500);
  color: var(--white);
}

.diff-body h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 12px;
  line-height: 1.3;
}

.diff-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ══════════════════════════════════════════════════════════════
   SOLLEX CREDIT
   ══════════════════════════════════════════════════════════════ */
:root {
  --cyan: #00c8d4;
}

.sollex-credit {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  padding-inline: 0;
}

.sollex-credit a {
  font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  transition: color var(--dur) var(--ease);
}

.sollex-credit a:hover { color: var(--cyan); }

.sollex-sigma {
  color: #FFD700;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════════════════════ */
#contact {
  padding-block: var(--section-v);
  background: var(--cream-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 400px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-dark);
  font-size: 15.5px;
}
.contact-row:hover { color: var(--gold-500); }
.contact-row:hover .contact-icon-wrap { border-color: var(--gold-500); color: var(--gold-500); }

.contact-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.contact-icon-wrap svg { width: 18px; height: 18px; }

.contact-quote {
  border-left: 3px solid var(--gold-500);
  padding-left: 20px;
}
.contact-quote p {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--navy-700);
  line-height: 1.6;
}

/* Contact Form */
.contact-form-col {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: clamp(28px, 4vw, 52px);
}

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

.form-field {
  margin-bottom: 24px;
}
.form-field:last-child { margin-bottom: 0; }

.form-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 9px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-100);
  border: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-body);
  outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  resize: vertical;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.btn-submit {
  width: 100%;
  padding: 17px;
  background: var(--gold-500);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid var(--gold-500);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-submit:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-submit:disabled {
  background: var(--navy-700);
  border-color: var(--navy-700);
  cursor: default;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
#footer {
  background: var(--navy-900);
  padding-top: 84px;
  padding-bottom: 40px;
  border-top: 1px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 20px;
}


.footer-col-head {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 22px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--dur) var(--ease);
}
.footer-nav-col a:hover { color: var(--white); }

.footer-contact-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  margin-bottom: 8px;
}
.footer-contact-col a {
  color: rgba(255, 255, 255, 0.45);
}
.footer-contact-col a:hover { color: var(--gold-300); }

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 32px;
  text-align: center;
}
.footer-bottom-bar p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1080px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .about-grid {
    grid-template-columns: 300px 1fr;
    gap: 52px;
  }

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

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

  .community-grid {
    grid-template-columns: 1fr 320px;
    gap: 52px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .contact-intro { max-width: 100%; }
  .contact-form-col { max-width: 640px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-v: 64px; }

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px clamp(20px, 4vw, 48px);
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  #navbar { position: fixed; }

  /* Hero */
  .hero-content { padding-top: 110px; padding-bottom: 80px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-col { position: static; }
  .about-photo-placeholder { aspect-ratio: 3 / 4; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

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

  /* Community */
  .community-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* Why */
  .diff-grid { grid-template-columns: 1fr; }

  /* Sollex */
  .sollex-inner { flex-direction: column; text-align: center; gap: 16px; }

  /* Contact form */
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-col { padding: 28px 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand-col { grid-column: auto; }
}
