@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy: #1F3864;
  --navy-dark: #152847;
  --navy-light: #2E4F8A;
  --gold: #C9A84C;
  --gold-light: #E2C170;
  --gold-pale: #F5EDD6;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --gray-light: #F2F2F0;
  --gray-mid: #888880;
  --gray-dark: #333330;
  --text: #2C2C28;
}

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

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

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  box-shadow: 0 2px 20px rgba(31,56,100,0.08);
  transition: all 0.3s ease;
}

nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 30px rgba(31,56,100,0.12);
}

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

.nav-logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}

.nav-logo-mark span { color: var(--gold); }

.nav-logo-text {
  border-left: 1px solid var(--gold);
  padding-left: 12px;
}

.nav-logo-text strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
}

.nav-logo-text span {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}

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

.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy);
  position: relative; padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 0;
  border: 1px solid var(--navy);
  font-size: 11px !important; letter-spacing: 2px !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta::after { display: none !important; }

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

.hamburger span {
  width: 24px; height: 2px; background: var(--navy);
  transition: all 0.3s;
}

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

.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.06) 50%, rgba(201,168,76,0.12) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow span {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 1; max-width: 40px;
  height: 1px; background: var(--gold); opacity: 0.5;
}

.hero-eyebrow::before { display: none; }

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white); font-weight: 300;
  margin-bottom: 8px; line-height: 1.1;
}

.hero h1 em {
  font-style: italic; color: var(--gold-light);
  display: block;
}

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  margin: 24px 0 40px; max-width: 480px;
  font-weight: 300; line-height: 1.8;
}

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

.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 14px 36px; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; border: 2px solid var(--gold);
  cursor: pointer; transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent; color: var(--gold);
}

.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 36px; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.3s;
  display: inline-block;
}

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

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,168,76,0.2);
  margin-top: 56px;
}

.stat {
  background: rgba(255,255,255,0.03);
  padding: 28px 24px; text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  display: block;
}

.stat-label {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 8px; display: block;
}

.hero-right {
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 40px;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute; top: -1px; left: 40px; right: 40px;
  height: 2px; background: var(--gold);
}

.hero-card h3 {
  color: var(--white); font-size: 1.5rem;
  margin-bottom: 24px; font-weight: 400;
}

.hero-checklist {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}

.hero-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
  font-weight: 300;
}

.hero-checklist li::before {
  content: '✦';
  color: var(--gold); font-size: 10px;
  margin-top: 4px; flex-shrink: 0;
}

.hero-badge {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; gap: 12px;
}

.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--gold); display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

.hero-badge p {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.hero-badge strong {
  display: block; color: var(--gold-light);
  font-size: 0.85rem; margin-bottom: 2px;
}

/* ── SECTIONS ── */
section { padding: 100px 5%; }

.section-eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}

.section-eyebrow::after {
  content: ''; flex: 1; max-width: 40px;
  height: 1px; background: var(--gold); opacity: 0.5;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem; color: var(--gray-mid);
  max-width: 560px; font-weight: 300;
  line-height: 1.8;
}

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

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-dark); padding: 28px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}

.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
}

.trust-item span { color: var(--gold); font-size: 16px; }

/* ── SERVICES PREVIEW ── */
.services-preview { background: var(--off-white); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 60px;
  background: rgba(201,168,76,0.15);
}

.service-card {
  background: var(--white); padding: 48px 36px;
  transition: all 0.3s; position: relative; overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 0; background: var(--navy);
  transition: height 0.4s ease;
}

.service-card:hover::after { height: 3px; }

.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--navy);
}

.service-card h3 {
  font-size: 1.3rem; margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.875rem; color: var(--gray-mid);
  line-height: 1.8; font-weight: 300;
}

.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  transition: gap 0.3s;
}

.service-card:hover .service-link { gap: 12px; }

/* ── WHY US ── */
.why-us {
  background: var(--navy);
  position: relative; overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
  pointer-events: none;
}

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-top: 0;
}

.why-left .section-eyebrow { color: var(--gold); }
.why-left .section-title { color: var(--white); }
.why-left .section-subtitle { color: rgba(255,255,255,0.6); }

.why-list {
  list-style: none; margin-top: 40px;
  display: flex; flex-direction: column; gap: 24px;
}

.why-item {
  display: flex; gap: 20px; align-items: flex-start;
}

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
  opacity: 0.4; line-height: 1; flex-shrink: 0;
  width: 36px;
}

.why-content h4 {
  color: var(--white); font-size: 1rem;
  margin-bottom: 4px; font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.why-content p {
  color: rgba(255,255,255,0.55); font-size: 0.875rem;
  font-weight: 300; line-height: 1.7;
}

.why-right {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(201,168,76,0.15);
}

.why-stat {
  background: rgba(255,255,255,0.03);
  padding: 36px 28px; text-align: center;
}

.why-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--gold); display: block; line-height: 1;
}

.why-stat-label {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-top: 8px; display: block; line-height: 1.5;
}

/* ── TECH STACK ── */
.tech-stack { background: var(--gray-light); }

.tech-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 60px;
  background: rgba(31,56,100,0.1);
}

.tech-card {
  background: var(--white); padding: 40px 28px;
  text-align: center; transition: all 0.3s;
}

.tech-card:hover { background: var(--navy); }

.tech-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
  transition: color 0.3s;
}

.tech-card:hover .tech-logo { color: var(--gold); }

.tech-card h4 {
  font-size: 0.9rem; margin-bottom: 8px;
  font-family: 'Jost', sans-serif; font-weight: 600;
  transition: color 0.3s;
}

.tech-card:hover h4 { color: var(--white); }

.tech-card p {
  font-size: 0.8rem; color: var(--gray-mid);
  font-weight: 300; line-height: 1.6; transition: color 0.3s;
}

.tech-card:hover p { color: rgba(255,255,255,0.5); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gold); padding: 60px 5%;
  text-align: center;
}

.cta-strip h2 {
  color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(31,56,100,0.7); margin-bottom: 32px;
  font-size: 1rem; font-weight: 300;
}

.btn-dark {
  background: var(--navy); color: var(--white);
  padding: 14px 40px; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; border: 2px solid var(--navy);
  cursor: pointer; transition: all 0.3s;
  display: inline-block;
}

.btn-dark:hover {
  background: transparent; color: var(--navy);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark); padding: 60px 5% 32px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; max-width: 1200px; margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-brand p {
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
  font-weight: 300; line-height: 1.8; margin-top: 16px;
  max-width: 320px;
}

.footer-heading {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}

.footer-links {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
  font-weight: 300; transition: color 0.3s;
}

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

.footer-contact p {
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
  font-weight: 300; line-height: 2;
}

.footer-contact a {
  color: var(--gold-light); transition: color 0.3s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3); font-size: 0.75rem;
  font-weight: 300;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 160px 5% 80px;
  text-align: center; position: relative; overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 4vw, 4rem); }
.page-hero p { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 1.1rem; font-weight: 300; }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 60px;
  background: rgba(201,168,76,0.15);
}

.pricing-card {
  background: var(--white); padding: 48px 36px;
  position: relative;
}

.pricing-card.featured {
  background: var(--navy);
}

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; padding: 6px 20px;
}

.pricing-phase {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 1.5rem; margin-bottom: 8px;
}

.pricing-card.featured h3 { color: var(--white); }

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--navy);
  line-height: 1; margin: 20px 0 8px;
}

.pricing-card.featured .pricing-amount { color: var(--gold); }

.pricing-period {
  font-size: 0.8rem; color: var(--gray-mid);
  font-weight: 300; margin-bottom: 24px;
}

.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }

.pricing-divider {
  height: 1px; background: rgba(201,168,76,0.2);
  margin: 24px 0;
}

.pricing-features {
  list-style: none; display: flex;
  flex-direction: column; gap: 12px;
}

.pricing-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.875rem; font-weight: 300;
  color: var(--gray-dark);
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); }

.pricing-features li::before {
  content: '✦'; color: var(--gold);
  font-size: 9px; margin-top: 5px; flex-shrink: 0;
}

.pricing-card .btn-primary { margin-top: 32px; width: 100%; text-align: center; }
.pricing-card.featured .btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  aspect-ratio: 4/5;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.about-img-placeholder::after {
  content: '';
  position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold); opacity: 0.3;
  pointer-events: none;
}

.about-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem; font-weight: 700;
  color: rgba(201,168,76,0.2); line-height: 1;
}

.about-content .section-eyebrow { margin-bottom: 8px; }

.about-bio {
  margin-top: 24px; display: flex; flex-direction: column; gap: 16px;
}

.about-bio p {
  font-size: 0.95rem; color: var(--gray-mid);
  font-weight: 300; line-height: 1.9;
}

.credentials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 40px;
}

.credential {
  padding: 20px; border: 1px solid rgba(201,168,76,0.2);
  background: var(--off-white);
}

.credential strong {
  display: block; font-size: 0.8rem;
  color: var(--navy); font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 4px;
  font-family: 'Jost', sans-serif;
}

.credential span {
  font-size: 0.75rem; color: var(--gray-mid);
  font-weight: 300;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 32px;
}

.contact-icon {
  width: 44px; height: 44px; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.75rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  font-family: 'Jost', sans-serif; font-weight: 500;
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
  font-size: 0.9rem; color: var(--gray-mid);
  font-weight: 300;
}

.contact-form {
  background: var(--off-white); padding: 48px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy);
  font-weight: 600; margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(31,56,100,0.15);
  background: var(--white); font-family: 'Jost', sans-serif;
  font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.3s;
  border-radius: 0; appearance: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}

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

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

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0; animation: fadeUp 0.7s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: repeat(4, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .credentials { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 28px; }
  .hero-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}
