/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #002060;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-body { font-family: 'Inter', sans-serif; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(52, 68, 75, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 28px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #FFFFFF; }
.nav-cta {
  background: #FFFFFF;
  color: #34444B !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  opacity: 1 !important;
}
.nav-cta:hover {
  background: #DCDADA;
  color: #002060 !important;
}

/* ===== HERO (shorter, stats visible in viewport) ===== */
.hero {
  min-height: 80vh;
  background: #34444B;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 48px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,32,96,0.15) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 80%, rgba(220,218,218,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 900px; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: #FFFFFF;
  color: #34444B;
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover { background: #DCDADA; transform: translateY(-1px); }
.btn-secondary {
  color: rgba(255,255,255,0.7);
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover { color: #FFFFFF; border-color: rgba(255,255,255,0.5); }

/* ===== STATS RIBBON ===== */
.stats {
  background: #2B2B2B;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.stat-item p {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== CREDIBILITY BAR (press logos, right after stats) ===== */
.credibility {
  background: #FFFFFF;
  padding: 48px 48px;
  border-bottom: 1px solid rgba(0,32,96,0.06);
}
.credibility-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.credibility-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #34444B;
  opacity: 0.4;
  margin-bottom: 28px;
}
.credibility-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.credibility-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #34444B;
  opacity: 0.5;
  white-space: nowrap;
  padding: 10px 18px;
  border: 1px solid rgba(52,68,75,0.12);
  border-radius: 4px;
}

/* ===== SECTIONS (shared) ===== */
.section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #34444B;
  opacity: 0.5;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: #002060;
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-desc {
  font-size: 1.05rem;
  color: #34444B;
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
}

/* ===== IDENTITY SECTION ===== */
.identity {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.identity-text .section-desc { margin-bottom: 32px; }
.identity-visual {
  background: #34444B;
  border-radius: 4px;
  padding: 60px 48px;
  position: relative;
}
.identity-visual blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #FFFFFF;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
}
.identity-visual cite {
  display: block;
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ===== CAPITAL READINESS / FUNNEL ===== */
.funnel {
  background: #F8F8F8;
  padding: 100px 48px;
}
.funnel-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.funnel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.funnel-card {
  background: #FFFFFF;
  padding: 40px 28px;
  border-radius: 4px;
  border: 1px solid rgba(0,32,96,0.06);
  transition: all 0.3s;
  position: relative;
}
.funnel-card:hover {
  border-color: rgba(0,32,96,0.2);
}
.funnel-card.featured {
  background: #34444B;
  border-color: #34444B;
}
.funnel-card.featured * { color: #FFFFFF; }
.funnel-card.featured .funnel-card-desc { color: rgba(255,255,255,0.6); }
.funnel-card.featured .funnel-card-tag { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.2); }
.funnel-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #34444B;
  opacity: 0.4;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,32,96,0.08);
}
.funnel-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #002060;
  margin-bottom: 12px;
  line-height: 1.3;
}
.funnel-card-desc {
  font-size: 0.9rem;
  color: #34444B;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 24px;
}
.funnel-card-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #002060;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.portfolio-card {
  position: relative;
  background: #34444B;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.portfolio-card.full-width {
  grid-column: 1 / -1;
  aspect-ratio: 32/10;
}
.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(52,68,75,0.9) 0%, rgba(52,68,75,0.3) 50%, rgba(52,68,75,0.1) 100%);
}
.portfolio-card-content { position: relative; z-index: 1; }
.portfolio-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-weight: 500;
}
.portfolio-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.portfolio-card-stat {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.portfolio-card-status {
  display: inline-block;
  margin-left: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== PRESS / MEDIA SECTION (below portfolio) ===== */
.press {
  background: #F8F8F8;
  padding: 80px 48px;
}
.press-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.press-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid rgba(0,32,96,0.06);
  transition: all 0.2s;
}
.press-card:hover { border-color: rgba(0,32,96,0.2); }
.press-card-source {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #34444B;
  opacity: 0.4;
  margin-bottom: 12px;
}
.press-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #002060;
  line-height: 1.5;
  margin-bottom: 12px;
}
.press-card-date {
  font-size: 0.8rem;
  color: #34444B;
  opacity: 0.4;
}

/* ===== NEWSLETTER CTA ===== */
.newsletter-cta {
  background: #2B2B2B;
  padding: 80px 48px;
  text-align: center;
}
.newsletter-cta-inner { max-width: 600px; margin: 0 auto; }
.newsletter-logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin: 0 auto 32px;
  border-radius: 4px;
}
.newsletter-cta .section-eyebrow { color: rgba(255,255,255,0.35); }
.newsletter-cta .section-title { color: #FFFFFF; }
.newsletter-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 14px 28px;
  background: #FFFFFF;
  color: #2B2B2B;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #DCDADA; }

/* ===== FOOTER ===== */
.footer {
  background: #34444B;
  padding: 48px 48px 32px;
}
.footer-logo {
  height: 24px;
  width: auto;
  margin-bottom: 16px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-weight: 300;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col a:hover { color: #FFFFFF; }
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-address {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .identity { grid-template-columns: 1fr; gap: 40px; }
  .funnel-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .credibility-logos { gap: 32px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 48px; min-height: 70vh; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 28px 24px; }
  .credibility { padding: 32px 24px; }
  .credibility-logos { gap: 16px; }
  .credibility-logo { font-size: 0.85rem; padding: 8px 12px; }
  .section { padding: 60px 24px; }
  .identity { padding: 60px 24px; }
  .funnel { padding: 60px 24px; }
  .funnel-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.full-width { aspect-ratio: 16/10; }
  .press { padding: 60px 24px; }
  .press-grid { grid-template-columns: 1fr; }
  .newsletter-cta { padding: 60px 24px; }
  .newsletter-form { flex-direction: column; }
  .footer { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
