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

:root {
  --navy: #0D1F3C;
  --deep-blue: #1A3A6B;
  --mid-blue: #2557A7;
  --sky: #4A90D9;
  --ice: #C8DCEF;
  --pale-ice: #EBF3FA;
  --steel: #6B7B8D;
  --silver: #A8B8C8;
  --platinum: #D8E3EC;
  --white: #FFFFFF;
  --warm-white: #F8FAFC;
  --gold: #C9943A;
  --gold-light: #E8C97A;
  --charcoal: #2C3E50;
  --ink: #1A2433;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-logo-text { display: flex; flex-direction: column; }
.nav-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; letter-spacing: 3px; color: white; line-height: 1; }
.nav-sub { font-size: 8px; font-weight: 300; letter-spacing: 2.5px; color: var(--silver); text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--silver);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.nav-links .nav-cta {
  background: var(--mid-blue);
  color: white;
  padding: 8px 20px;
  border-radius: 2px;
  letter-spacing: 1.5px;
}

.nav-links .nav-cta:hover { background: var(--sky); color: white; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0;
}

.hero-art svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  color: white;
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.hero-headline em {
  font-style: italic;
  color: var(--sky);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--platinum);
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 520px;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 36px;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 44px;
}

.hero-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

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

.btn-primary {
  display: inline-block;
  background: var(--mid-blue);
  color: white;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--sky); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--silver);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: white; color: white; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span { font-size: 9px; letter-spacing: 3px; color: var(--steel); text-transform: uppercase; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--steel), transparent); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{ opacity:0.3; transform:scaleY(0.6) translateY(-8px); } 50%{ opacity:1; transform:scaleY(1) translateY(0); } }

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--ink);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stats-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 44px;
  flex-shrink: 0;
}

.stats-grid {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 4px 20px;
}
.stat:first-child { border-left: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-lbl {
  font-size: 9px;
  color: var(--silver);
  line-height: 1.5;
  font-weight: 300;
}

/* ── STORY SECTION ─────────────────────────────────────────── */
.story-section {
  background: var(--warm-white);
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--mid-blue);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--mid-blue);
  display: block;
  flex-shrink: 0;
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold); }

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 28px;
}
.section-headline em { font-style: italic; color: var(--mid-blue); }
.section-headline.light { color: white; }
.section-headline.light em { color: var(--sky); }

.story-illustration {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 8px 40px rgba(13,31,60,0.15);
}
.story-illustration svg { display: block; width: 100%; }

.story-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 16px;
}
.story-text strong { font-weight: 600; color: var(--navy); }
.story-text em { font-style: italic; color: var(--mid-blue); }

.mission-box {
  background: var(--navy);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}
.mission-box::before {
  content: '"';
  position: absolute;
  top: -16px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 150px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.mission-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mission-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: white;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: white;
  border: 1px solid var(--platinum);
  border-top: 3px solid var(--mid-blue);
  border-radius: 4px;
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-card:hover { box-shadow: 0 6px 24px rgba(37,87,167,0.1); transform: translateY(-2px); }

.value-icon { margin-bottom: 10px; }
.value-title { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-text { font-size: 11px; color: var(--steel); line-height: 1.7; }

/* ── OFFER SECTION ─────────────────────────────────────────── */
.offer-section {
  background: var(--deep-blue);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.offer-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.offer-bg-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.offer-header {
  margin-bottom: 52px;
}
.offer-intro-text {
  font-size: 14px;
  color: var(--platinum);
  line-height: 1.85;
  font-weight: 300;
  max-width: 640px;
  margin-top: -12px;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.offer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 28px 22px;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.offer-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }

.offer-card-icon { width: 44px; height: 44px; margin-bottom: 16px; }
.offer-card-icon svg { width: 100%; height: 100%; }

.offer-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.3;
}
.offer-card-text {
  font-size: 11px;
  color: var(--platinum);
  line-height: 1.75;
  font-weight: 300;
}

/* ── APPROACH SECTION ──────────────────────────────────────── */
.approach-section {
  background: white;
  padding: 100px 0;
  border-top: 1px solid var(--platinum);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.approach-step { display: flex; flex-direction: column; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--pale-ice);
  line-height: 1;
  margin-bottom: 6px;
}

.step-bar {
  width: 32px;
  height: 3px;
  background: var(--mid-blue);
  margin-bottom: 14px;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-text {
  font-size: 12px;
  color: var(--steel);
  line-height: 1.8;
  font-weight: 300;
}

/* ── PARTNER SECTION ───────────────────────────────────────── */
.partner-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.partner-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.partner-bg-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.partner-header {
  margin-bottom: 52px;
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.partner-intro {
  font-size: 14px;
  color: var(--platinum);
  line-height: 1.9;
  font-weight: 300;
  margin-top: -8px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 44px;
}

.reason-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.2s;
}
.reason-card:hover { background: rgba(255,255,255,0.1); }

.reason-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.reason-title {
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  line-height: 1.3;
}

.reason-text {
  font-size: 11px;
  color: var(--silver);
  line-height: 1.7;
}

.commitment-box {
  flex-direction: column;
  background: var(--deep-blue) !important;
  border-color: rgba(201,148,58,0.3) !important;
  justify-content: space-between;
}

.commit-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--platinum);
  line-height: 1.65;
  margin-bottom: 20px;
}

.commit-sig {
  display: flex;
  align-items: center;
  gap: 12px;
}

.commit-logo { width: 36px; height: 36px; object-fit: contain; }
.commit-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: white; letter-spacing: 2px; }
.commit-sub { font-size: 9px; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

.commitments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 28px;
}

.commitment-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--platinum);
  line-height: 1.65;
}

.commit-check {
  width: 22px;
  height: 22px;
  background: var(--mid-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.commitment-item strong { color: white; font-weight: 600; }

/* ── CONTACT SECTION ───────────────────────────────────────── */
.contact-section {
  background: var(--warm-white);
  padding: 100px 0;
  border-top: 3px solid var(--mid-blue);
}

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

.contact-intro {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.85;
  margin-bottom: 36px;
  font-weight: 300;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--pale-ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}
.contact-value:hover { color: var(--mid-blue); }

/* Form */
.contact-form {
  background: white;
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 4px 40px rgba(13,31,60,0.08);
  border: 1px solid var(--platinum);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--platinum);
  border-radius: 3px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--navy);
  background: var(--warm-white);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mid-blue);
  background: white;
}

.form-submit {
  width: 100%;
  background: var(--mid-blue);
  color: white;
  border: none;
  border-radius: 3px;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--sky); transform: translateY(-1px); }

.form-note {
  font-size: 10px;
  color: var(--silver);
  text-align: center;
  margin-top: 10px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.footer-logo-img { width: 44px; height: 44px; object-fit: contain; }

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  color: white;
}

.footer-tagline-text {
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 1px;
  margin-top: 3px;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-links a {
  font-size: 11px;
  color: var(--silver);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-reg {
  font-size: 10px;
  color: #6677AA;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom span {
  font-size: 10px;
  color: #445566;
  letter-spacing: 1px;
}

.footer-mottos {
  font-size: 10px;
  color: #445566;
  letter-spacing: 1px;
  font-style: italic;
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .offer-cards { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,31,60,0.98); padding: 20px; gap: 16px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .offer-cards { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .commitments { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 20px; }
  .stats-label { margin-right: 0; }
  .stats-grid { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 48px; }
  .approach-steps { grid-template-columns: 1fr; }
}
