@font-face { font-family: 'system'; src: local('system'); }

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #FFFFFF;
  color: #1F2937;
  font-family: 'Inter', sans-serif;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: #C8A96A; color: #0F172A; }

h1, h2, h3 { font-family: 'Manrope', sans-serif; font-weight: 800; margin: 0; color: #0F172A; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #0F172A;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px;
  gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 19px;
  text-decoration: none; color: #FFFFFF; white-space: nowrap;
}
.logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; border-radius: 6px; }
.nav {
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
}
.nav a.navlink {
  font-size: 14px; font-weight: 500; text-decoration: none;
  color: rgba(255,255,255,0.78);
}
.nav a.navlink:hover, .nav a.navlink.active { color: #C8A96A; }
.nav a.navlink.active { font-weight: 600; }
.btn-header {
  font-size: 14px; font-weight: 700; text-decoration: none;
  color: #0F172A; background: #FFFFFF; padding: 11px 20px;
  border-radius: 9px; white-space: nowrap;
}
.btn-header:hover { background: #F8FAFC; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #FFFFFF; margin: 5px 0;
}

/* BUTTONS */
.btn-primary {
  display: inline-block; font-size: 15px; font-weight: 700; text-decoration: none;
  color: #FFFFFF; background: #0F172A; padding: 16px 30px; border-radius: 9px;
}
.btn-primary:hover { background: #1E293B; }
.btn-primary.on-dark { color: #0F172A; background: #FFFFFF; }
.btn-primary.on-dark:hover { background: #F8FAFC; }
.btn-secondary {
  display: inline-block; font-size: 15px; font-weight: 600; text-decoration: none;
  color: #0F172A; background: #FFFFFF; border: 1.5px solid #0F172A; padding: 16px 30px; border-radius: 9px;
}
.btn-secondary:hover { background: #F8FAFC; }

/* HERO */
.hero { padding: 120px 0 90px; }
.hero.center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.eyebrow { font-size: 14px; font-weight: 600; color: #1E3A8A; margin-bottom: 22px; }
.hero h1 { font-size: 60px; line-height: 1.15; margin-bottom: 26px; max-width: 860px; }
.hero.center h1 { margin-left: auto; margin-right: auto; }
.hero p.lead { font-size: 19px; line-height: 1.7; color: #64748B; max-width: 620px; margin: 0 0 44px; }
.hero.center p.lead { margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero.center .hero-actions { justify-content: center; }

section.page-hero { padding: 120px 0 80px; }
section.page-hero h1 { font-size: 48px; line-height: 1.2; margin-bottom: 26px; max-width: 780px; }
section.page-hero p.lead { font-size: 18px; line-height: 1.75; color: #64748B; max-width: 680px; margin: 0; }

/* BENTO / IMAGE GRID (home) */
.bento {
  padding: 0 0 100px;
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 20px;
}
.bento .cell {
  position: relative; overflow: hidden; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.25);
  transition: transform 280ms ease, box-shadow 280ms ease;
  background: linear-gradient(135deg, #1E293B 0%, #475569 45%, #94A3B8 75%, #334155 100%);
}
.bento .cell:hover { transform: translateY(-8px); box-shadow: 0 18px 36px rgba(15,23,42,0.35); }
.bento .cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento .cell.anim { display: flex; align-items: center; justify-content: center; }
.bars-cell { align-items: flex-end !important; gap: 10px; padding: 30px; }
.bar { width: 16px; border-radius: 3px; transform-origin: bottom; animation: ncBarGrow 2.6s ease-in-out infinite; }
.bar.gold { background: linear-gradient(180deg, #C8A96A, #8A6A2F); }
.bar.silver { background: linear-gradient(180deg, #E2E8F0, #94A3B8); }
.sheen {
  position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: ncSheen 5.5s ease-in-out infinite;
}
@keyframes ncBarGrow { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }
@keyframes ncDotPulse { 0%, 100% { opacity: 0.35; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes ncLineDraw { 0% { stroke-dashoffset: 260; } 60%, 100% { stroke-dashoffset: 0; } }
@keyframes ncSheen { 0% { transform: translateX(-140%) skewX(-12deg); } 100% { transform: translateX(240%) skewX(-12deg); } }
@keyframes ncDashMove { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -40; } }
@keyframes ncRingPulse { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes ncRadarSweep { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* TRUST STRIP */
.trust { padding: 0 0 120px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.trust .item { border-top: 2px solid #C8A96A; padding-top: 24px; }
.trust h3 { font-size: 18px; margin-bottom: 12px; }
.trust p { font-size: 15px; line-height: 1.65; color: #64748B; margin: 0; }

/* TWO COL SECTION */
.two-col { padding: 120px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col h2 { font-size: 32px; line-height: 1.3; }
.two-col p { font-size: 17px; line-height: 1.8; color: #64748B; margin: 0; }
.section-light { background: #F8FAFC; }
.section-dark { background: #0F172A; }

/* CARD GRIDS */
.card-grid { padding: 120px 0; }
.card-grid .head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 16px; }
.card-grid h2 { font-size: 32px; }
.card-grid .head a { font-size: 14px; font-weight: 600; color: #1E3A8A; text-decoration: none; }
.card-grid .head a:hover { color: #C8A96A; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.service-card {
  text-decoration: none; color: inherit; display: block;
  background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; padding: 32px;
}
.service-card:hover { border-color: #1E3A8A; box-shadow: 0 4px 20px rgba(15,23,42,0.06); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; line-height: 1.6; color: #64748B; margin: 0; }

/* CTA BANDS */
.cta-band { padding: 100px 0; text-align: center; }
.cta-band h2 { font-size: 30px; margin-bottom: 32px; }
.cta-box { padding: 90px 40px; text-align: center; background: #F8FAFC; border-radius: 8px; }
.cta-box.dark { background: #0F172A; }
.cta-box.dark h2 { color: #FFFFFF; }
.cta-box h2 { font-size: 34px; margin-bottom: 20px; }
.cta-box p { font-size: 16px; color: #64748B; margin: 0 0 36px; }
.cta-box.dark p { color: rgba(255,255,255,0.65); }

/* INSIGHT THUMBS */
.thumb { border-radius: 6px; overflow: hidden; margin-bottom: 20px; border-top: 3px solid #C8A96A; height: 170px; box-sizing: border-box; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.anim { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); display: flex; align-items: center; justify-content: center; }
.article-card { text-decoration: none; color: inherit; display: block; }
.article-card .cat { font-size: 13px; font-weight: 600; color: #1E3A8A; margin-bottom: 10px; }
.article-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.4; }
.article-card p { font-size: 14px; line-height: 1.6; color: #64748B; margin: 0; }

.featured { text-decoration: none; color: inherit; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; overflow: hidden; align-items: stretch; }
.featured .img-side { min-height: 320px; border-right: 3px solid #C8A96A; overflow: hidden; }
.featured .img-side img { width: 100%; height: 100%; object-fit: cover; }
.featured .text-side { padding: 44px 44px 44px 0; display: flex; flex-direction: column; justify-content: center; }
.featured h2 { font-size: 24px; margin-bottom: 14px; line-height: 1.35; }
.featured p { font-size: 15px; line-height: 1.7; color: #64748B; margin: 0; }

/* INDUSTRIES */
.industry-card { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; padding: 32px; }
.industry-card .bar { height: 3px; width: 40px; background: #C8A96A; margin-bottom: 22px; animation: none; }
.industry-card h3 { font-size: 18px; margin-bottom: 12px; }
.industry-card p { font-size: 14.5px; line-height: 1.65; color: #64748B; margin: 0; }

/* APPROACH / VALUES */
.approach-grid { padding: 0 0 120px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.approach-grid .step { border-top: 2px solid #C8A96A; padding-top: 20px; }
.approach-grid .num { font-family: 'Manrope', sans-serif; font-size: 26px; font-weight: 800; color: #1E3A8A; margin-bottom: 14px; }
.approach-grid h3 { font-size: 17px; margin-bottom: 10px; }
.approach-grid p { font-size: 14.5px; line-height: 1.65; color: #64748B; margin: 0; }
.values-grid { padding: 120px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 64px; }
.value-card { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; padding: 26px; }
.value-card h3 { font-size: 17px; margin-bottom: 10px; }
.value-card p { font-size: 15px; line-height: 1.65; color: #64748B; margin: 0; }

/* FOUNDER */
.founder-section { padding: 120px 0; }
.founder-section .founder-body { max-width: 760px; }
.founder-section h2 { font-size: 30px; margin-bottom: 6px; }
.founder-title { font-size: 15px; font-weight: 600; color: #C8A96A; margin-bottom: 28px; }
.founder-section p { font-size: 16px; line-height: 1.8; color: #64748B; margin: 0 0 20px; }

/* SERVICES DETAIL */
.service-pillar { padding: 56px 0; border-top: 1px solid #E2E8F0; display: grid; grid-template-columns: 0.9fr 1.6fr; gap: 56px; }
.service-pillar .num { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; color: #1E3A8A; margin-bottom: 14px; }
.service-pillar h2 { font-size: 26px; margin-bottom: 16px; line-height: 1.3; }
.service-pillar p { font-size: 15px; line-height: 1.7; color: #64748B; margin: 0; }
.pillar-tags { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; align-content: start; }
.pillar-tags div { padding: 16px 18px; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 6px; font-size: 15px; font-weight: 600; color: #0F172A; }

/* CONTACT */
.contact-grid { padding: 20px 0 140px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; }
.contact-form { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: #1F2937; }
.field input, .field select, .field textarea {
  background: #FFFFFF; border: 1.5px solid #E2E8F0; border-radius: 6px;
  padding: 12px 14px; color: #1F2937; font-size: 14px; font-family: 'Inter', sans-serif;
}
.field input.err, .field textarea.err { border-color: #B91C1C; }
.field .err-msg { font-size: 12.5px; color: #B91C1C; display: none; }
.field.has-err .err-msg { display: block; }
.submit-btn {
  margin-top: 6px; font-size: 15px; font-weight: 700; color: #FFFFFF; background: #0F172A;
  padding: 15px 30px; border-radius: 9px; border: none; cursor: pointer; align-self: flex-start;
}
.submit-btn:hover { background: #1E293B; }
.side-info { display: flex; flex-direction: column; gap: 32px; }
.side-info h3 { font-size: 17px; margin-bottom: 14px; }
.side-info a.email { display: block; font-size: 15px; text-decoration: none; color: #1E3A8A; margin-bottom: 8px; }
.side-info a.email:hover { color: #C8A96A; }
.side-info .muted { font-size: 15px; color: #64748B; }
.side-info .divider { border-top: 2px solid #C8A96A; padding-top: 22px; }
.side-info p { font-size: 14.5px; line-height: 1.7; color: #64748B; margin: 0; }
.success-box { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; padding: 56px; text-align: center; }
.success-box .check {
  width: 52px; height: 52px; border-radius: 50%; background: #0F172A; margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center; font-size: 24px; color: #FFFFFF; font-weight: 700;
}
.success-box h2 { font-size: 24px; margin-bottom: 14px; }
.success-box p { font-size: 15px; line-height: 1.7; color: #64748B; margin: 0; }
.hidden { display: none !important; }

/* FOOTER */
.site-footer { background: #0F172A; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 18px; margin-bottom: 16px; color: #FFFFFF; }
.footer-grid p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; margin: 0; }
.footer-col-title { font-size: 13px; font-weight: 700; color: #C8A96A; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; text-decoration: none; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #C8A96A; }
.footer-links span { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom .copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom a { font-size: 13px; font-weight: 600; color: #C8A96A; text-decoration: none; }

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  .hero { padding: 90px 0 60px; }
  .hero h1 { font-size: 42px; }
  section.page-hero { padding: 90px 0 56px; }
  section.page-hero h1 { font-size: 36px; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .trust { grid-template-columns: 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; padding: 72px 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; padding: 72px 0; gap: 20px; }
  .featured { grid-template-columns: 1fr; }
  .featured .img-side { min-height: 220px; border-right: none; border-bottom: 3px solid #C8A96A; }
  .featured .text-side { padding: 32px; }
  .service-pillar { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .contact-grid { grid-template-columns: 1fr; padding: 0 0 90px; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .card-grid { padding: 72px 0; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: 32px; }
  .hero p.lead { font-size: 16px; }
  section.page-hero h1 { font-size: 28px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 190px; }
  .grid-3 { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .pillar-tags { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #0F172A; flex-direction: column; align-items: flex-start; padding: 20px 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.08); gap: 18px; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .btn-header { order: 3; }
  .cta-box, .cta-box.dark { padding: 56px 28px; }
  .cta-box h2 { font-size: 26px; }
  .hero-actions, .hero-actions a { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
}
