*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0a1628;
  --navy2: #0f2040;
  --navy3: #162d58;
  --gold: #c8973a;
  --gold-light: #e8be70;
  --cream: #f5f0e8;
  --cream2: #ede6d8;
  --text: #1a2840;
  --muted: #6b7f99;
  --white: #ffffff;
}
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: rgba(10,22,40,0.97);
  border-bottom: 1px solid rgba(200,151,58,0.2);
}
.logo {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 18px; letter-spacing: 0.5px;
  text-decoration: none;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; }
.nav-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; font-weight: 400; letter-spacing: 0.5px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 10px 24px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* BUTTONS */
.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 15px 36px; font-size: 14px; font-weight: 500;
  border: none; cursor: pointer; transition: background .2s;
  text-decoration: none; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7); padding: 15px 36px;
  font-size: 14px; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block; font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* SECTION COMMON */
.section-eyebrow { color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; }
.section-title-serif {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 700;
  color: var(--navy); line-height: 1.15; letter-spacing: -0.5px;
}
.section-title-serif em { color: var(--gold); font-style: italic; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; }

/* HERO */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 60px 80px;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(200,151,58,0.3);
  padding: 6px 16px; margin-bottom: 40px;
  color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  width: fit-content;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.1;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
h1 em { color: var(--gold-light); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,0.55);
  font-size: 15px; line-height: 1.8;
  max-width: 460px; margin-bottom: 48px; font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right {
  background: var(--navy2);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 60px 80px;
  border-left: 1px solid rgba(200,151,58,0.12);
  position: relative;
}
.hero-right::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 59px,
    rgba(200,151,58,0.04) 60px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 59px,
    rgba(200,151,58,0.04) 60px
  );
}
.credentials { position: relative; z-index: 2; }
.cred-title { color: var(--gold); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 32px; }
.cred-item {
  padding: 24px 0; border-bottom: 1px solid rgba(200,151,58,0.1);
  display: flex; gap: 20px; align-items: flex-start;
}
.cred-num { color: rgba(200,151,58,0.4); font-size: 11px; font-family: 'Playfair Display', serif; padding-top: 2px; min-width: 24px; }
.cred-text { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.6; font-weight: 300; }
.cred-text strong { color: var(--white); font-weight: 500; }

/* DIVIDER */
.divider { height: 4px; background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--navy) 100%); }

/* PROBLEMS */
.problems-section { background: var(--white); padding: 100px 60px; }
.problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.problem-card {
  background: var(--cream); padding: 32px 36px;
  border-left: 3px solid var(--gold);
  transition: transform .2s;
}
.problem-card:hover { transform: translateY(-3px); }
.problem-quote {
  font-family: 'Playfair Display', serif; font-size: 48px;
  color: var(--gold); line-height: 0.6; margin-bottom: 8px; opacity: 0.5;
}
.problem-text { color: var(--text); font-size: 15px; line-height: 1.7; font-weight: 400; font-style: italic; }

/* HAMBURGER */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all .3s;
}

/* SERVICES */
.services-section { background: var(--cream); padding: 100px 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc-card {
  background: var(--white); padding: 40px 36px;
  border-top: 3px solid transparent;
  transition: border-color .3s, transform .2s;
  cursor: default;
}
.svc-card:hover { border-top-color: var(--gold); transform: translateY(-4px); }
.svc-icon { font-size: 28px; margin-bottom: 20px; }
.svc-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.svc-desc { color: var(--muted); font-size: 14px; line-height: 1.8; font-weight: 300; }

/* ABOUT */
.about-section { padding: 100px 60px; background: var(--white); display: grid; grid-template-columns: 5fr 4fr; gap: 100px; align-items: center; }
.about-quote {
  font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic; color: var(--navy); line-height: 1.5;
  border-left: 3px solid var(--gold); padding-left: 32px; margin-bottom: 40px;
}
.about-body { color: var(--muted); font-size: 15px; line-height: 1.9; margin-bottom: 16px; font-weight: 300; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-item { background: var(--cream); padding: 24px; }
.trust-num { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--gold); font-weight: 700; line-height: 1; }
.trust-label { color: var(--muted); font-size: 12px; margin-top: 6px; font-weight: 300; }

/* CTA */
.cta-section {
  background: var(--navy);
  padding: 100px 60px;
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  align-items: center;
}
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 52px); color: var(--white); font-weight: 700; line-height: 1.2; }
.cta-title em { color: var(--gold-light); font-style: italic; }
.cta-sub { color: rgba(255,255,255,0.4); font-size: 14px; margin-top: 12px; font-weight: 300; }

/* PAGE HERO (subpages) */
.page-hero {
  background: var(--navy);
  padding: 140px 60px 80px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero-desc {
  color: rgba(255,255,255,0.5);
  font-size: 16px; font-weight: 300; max-width: 560px; margin: 0 auto;
}

/* FOOTER */
footer { background: var(--navy2); padding: 32px 60px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(200,151,58,0.1); }
.footer-logo { font-family: 'Playfair Display', serif; color: var(--white); font-size: 16px; text-decoration: none; }
.footer-logo span { color: var(--gold); }
footer p { color: rgba(255,255,255,0.25); font-size: 12px; font-weight: 300; }
footer { flex-wrap: wrap; gap: 4px; }
footer p:last-child { width: 100%; text-align: right; }

/* SUBPAGE CONTENT */
.page-content { padding: 80px 60px; }
.page-content-cream { background: var(--cream); padding: 80px 60px; }

/* EXPERIENCE TIMELINE */
.timeline { max-width: 800px; margin: 0 auto; }
.timeline-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(200,151,58,0.15);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--gold); font-weight: 700;
}
.timeline-role { font-weight: 500; color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.timeline-company { color: var(--gold); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; }
.timeline-desc { color: var(--muted); font-size: 14px; line-height: 1.8; font-weight: 300; }

/* PORTFOLIO GRID */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; }
.portfolio-card {
  background: var(--white); border: 1px solid var(--cream2);
  padding: 40px; transition: transform .2s, box-shadow .2s;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,0.08); }
.portfolio-tag {
  display: inline-block; background: var(--cream);
  color: var(--gold); font-size: 11px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 16px;
}
.portfolio-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.portfolio-desc { color: var(--muted); font-size: 14px; line-height: 1.8; font-weight: 300; margin-bottom: 16px; }
.portfolio-tech { color: var(--gold); font-size: 12px; font-weight: 500; letter-spacing: 0.5px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1000px; margin: 0 auto; align-items: start; }
.contact-info h2 {
  font-family: 'Playfair Display', serif; font-size: 28px;
  color: var(--navy); font-weight: 700; margin-bottom: 24px;
}
.contact-info p { color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 300; margin-bottom: 32px; }
.contact-detail {
  padding: 20px 0;
  border-bottom: 1px solid var(--cream2);
}
.contact-detail-label { color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; margin-bottom: 6px; }
.contact-detail-value { color: var(--navy); font-size: 16px; font-weight: 400; }
.contact-detail-value a { color: var(--navy); text-decoration: none; transition: color .2s; }
.contact-detail-value a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form label { color: var(--navy); font-size: 13px; font-weight: 500; letter-spacing: 0.5px; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--cream2); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  transition: border-color .2s; outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

/* SERVICES DETAIL */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 60px 0; border-bottom: 1px solid var(--cream2);
  align-items: start;
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail-name {
  font-family: 'Playfair Display', serif; font-size: 24px;
  font-weight: 700; color: var(--navy); margin-bottom: 16px;
}
.svc-detail-body { color: var(--muted); font-size: 15px; line-height: 1.9; font-weight: 300; }
.svc-detail-list { list-style: none; padding: 0; }
.svc-detail-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--cream);
  color: var(--text); font-size: 14px; font-weight: 400;
  padding-left: 20px; position: relative;
}
.svc-detail-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .problems-section { padding: 60px 24px; }
  .about-section { grid-template-columns: 1fr; gap: 48px; }
  .cta-section { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav.nav-open { flex-wrap: wrap; height: auto; padding-bottom: 16px; }
  nav.nav-open .nav-links {
    display: flex; flex-direction: column; gap: 16px;
    width: 100%; order: 10; padding-top: 16px;
    border-top: 1px solid rgba(200,151,58,0.15);
  }
  nav.nav-open .nav-cta {
    display: inline-block; order: 11;
    margin-top: 8px; text-align: center; width: 100%;
  }
  .hero-left { padding: 120px 24px 60px; }
  .page-hero { padding: 120px 24px 60px; }
  .page-content, .page-content-cream { padding: 60px 24px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-detail { grid-template-columns: 1fr; gap: 32px; }
}
