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

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

:root {
  --navy-deep: #0D2B4E;
  --navy-mid: #1E4A7A;
  --navy-light: #3B6D8F;
  --gold: #C8A96E;
  --gold-light: #E8D5A8;
  --grey-bg: #F2F3F6;
  --grey-line: #DDE1E9;
  --grey-text: #6E7389;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 300; color: var(--navy-deep); background: #fff; -webkit-font-smoothing: antialiased; }

.container { max-width: 1400px; margin: 0 auto; }
section { padding: 80px 48px; }
@media (max-width: 768px) { section { padding: 56px 24px; } }

/* Navbar */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 72px; background: var(--navy-deep); border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 768px) { nav { padding: 0 24px; } }
.nav-logo { text-decoration: none; color: #fff; line-height: 1; display: flex; align-items: center; }
.nav-logo .brand { font-size: 14px; font-weight: 600; letter-spacing: 0.18em; }
.nav-logo .sub { font-size: 9px; font-weight: 400; letter-spacing: 0.3em; color: rgba(255,255,255,0.5); margin-top: 2px; }
.nav-logo img { height: 34px; width: auto; display: block; }
@media (max-width: 480px) { .nav-logo img { height: 28px; } }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
@media (max-width: 900px) { .nav-links { display: none; } }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { text-decoration: none; color: var(--navy-deep); background: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 11px 24px; border-radius: 2px; transition: background 0.2s, transform 0.15s; }
.nav-cta:hover { background: #b8935a; transform: translateY(-1px); }

/* Typography */
.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow.center { justify-content: center; }
h1.display { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 8vw, 96px); font-weight: 600; color: #fff; line-height: 1; letter-spacing: -0.01em; margin-bottom: 24px; }
h1.display em { font-style: normal; color: var(--gold-light); }
h2.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 4vw, 52px); font-weight: 300; line-height: 1.15; color: var(--navy-deep); margin-bottom: 24px; }
h2.section-title.white { color: #fff; }
h1.page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 56px); font-weight: 300; color: #fff; line-height: 1.1; }

/* Buttons */
.btn { display: inline-block; text-align: center; text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 16px 36px; border-radius: 2px; transition: all 0.2s; }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #b8935a; transform: translateY(-1px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.btn-navy { background: var(--navy-deep); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }

/* Short Hero */
.short-hero { position: relative; overflow: hidden; padding: 192px 48px 128px; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); }
.short-hero .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.short-hero .overlay { position: absolute; inset: 0; background: rgba(13,43,78,0.70); }
.short-hero .hero-content { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; }
@media (max-width: 768px) { .short-hero { padding: 140px 24px 80px; } }

/* CTA Section */
.cta-section { position: relative; text-align: center; padding: 160px 48px; overflow: hidden; }
.cta-section .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-section .overlay { position: absolute; inset: 0; background: rgba(13,43,78,0.75); }
.cta-section .content { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 32px; }
@media (max-width: 768px) { .cta-section { padding: 80px 24px; } }

/* Footer */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.45); padding: 40px 48px; font-size: 12px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.08); }
footer a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 24px; }
@media (max-width: 768px) { footer { padding: 32px 24px; flex-direction: column; text-align: center; } }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

/* Home Hero */
.home-hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-deep); padding-top: 72px; }
.hero-bg-decor { position: absolute; inset: 0; }
.hero-bg-decor::before { content: ''; position: absolute; top: -15%; right: -8%; width: 60%; height: 130%; background: rgba(45,95,138,0.28); transform: skewX(-12deg); }
.hero-bg-decor::after { content: ''; position: absolute; top: 5%; right: 8%; width: 35%; height: 90%; background: rgba(200,169,110,0.07); transform: skewX(-12deg); }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,43,78,0.35) 0%, rgba(13,43,78,0.65) 60%, rgba(13,43,78,0.88) 100%), linear-gradient(135deg, #0D2B4E 0%, #1A3D6B 40%, #2D5F8A 100%); }
.hero-inner { position: relative; z-index: 1; padding: 0 48px 80px; max-width: 860px; }
@media (max-width: 768px) { .hero-inner { padding: 0 24px 60px; } }
.hero-lead { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.7); max-width: 520px; line-height: 1.7; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 0; right: 0; z-index: 1; display: flex; background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,0.1); border-left: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 768px) { .hero-stats { display: none; } }
.hero-stat { padding: 22px 36px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--gold); display: block; line-height: 1; }
.hero-stat .lbl { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; margin-top: 6px; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 80px; border-top: 1px solid var(--grey-line); }
@media (max-width: 768px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 40px; }
.pillar:not(:last-child) { border-right: 1px solid var(--grey-line); }
@media (max-width: 768px) { .pillar:not(:last-child) { border-right: none; border-bottom: 1px solid var(--grey-line); } .pillar { padding: 32px 0; } }
.pillar .label { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.pillar h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy-deep); margin-bottom: 10px; }
.pillar p { font-size: 14px; font-weight: 300; color: var(--grey-text); line-height: 1.7; }

/* Service Cards */
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); margin-top: 64px; }
@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--navy-deep); padding: 36px; position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s; }
.svc-card:hover::before { height: 100%; }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: rgba(255,255,255,0.05); line-height: 1; margin-bottom: 24px; }
.svc-title { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.svc-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.svc-list { list-style: none; }
.svc-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.svc-list li::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.6; flex-shrink: 0; }

/* Project Cards */
.proj-card { background: #fff; border-radius: 2px; overflow: hidden; box-shadow: 0 2px 16px rgba(13,43,78,0.07); text-decoration: none; display: block; transition: box-shadow 0.25s, transform 0.25s; }
.proj-card:hover { box-shadow: 0 8px 40px rgba(13,43,78,0.14); transform: translateY(-4px); }
.proj-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.proj-card:hover .proj-img img { transform: scale(1.05); }
.proj-img .gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,43,78,0.4), transparent); }
.proj-no-img { width: 100%; height: 100%; }
.proj-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--navy-deep); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; border-radius: 1px; z-index: 1; }
.proj-spec { position: absolute; bottom: 16px; left: 16px; font-size: 11px; color: rgba(255,255,255,0.9); font-weight: 300; background: rgba(0,0,0,0.4); padding: 4px 10px; border-radius: 1px; backdrop-filter: blur(4px); z-index: 1; }
.proj-body { padding: 28px; }
.proj-sector { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.proj-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--navy-deep); margin-bottom: 10px; line-height: 1.2; }
.proj-body p { font-size: 14px; font-weight: 300; color: var(--grey-text); line-height: 1.7; }
.proj-client { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--grey-line); font-size: 12px; font-weight: 500; color: var(--navy-mid); }

/* Arrow link */
.arrow-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-mid); transition: color 0.2s; }
.arrow-link:hover { color: var(--gold); }
.arrow-link.gold { color: var(--gold); }
.arrow-link.gold:hover { color: #fff; }
.arrow-link::after { content: '→'; }

/* Capability cards */
.cap-card { background: var(--grey-bg); padding: 32px; border-top: 3px solid var(--gold); }
.cap-card h3 { font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-deep); margin-bottom: 24px; }
.cap-list { list-style: none; }
.cap-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 300; color: var(--grey-text); line-height: 1.5; margin-bottom: 12px; }
.cap-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--navy-light); flex-shrink: 0; margin-top: 6px; }

/* Process phases */
.phase-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
@media (max-width: 1024px) { .phase-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .phase-grid { grid-template-columns: 1fr; } }
.phase-line { display: none; }
@media (min-width: 1025px) { .phase-line { display: block; position: absolute; top: 28px; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.1); z-index: 0; } }
.phase { position: relative; z-index: 1; }
.phase-num { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; margin-bottom: 24px; box-shadow: 0 0 0 8px var(--navy-deep); }
.phase h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: #fff; margin-bottom: 16px; }
.phase ul { list-style: none; }
.phase ul li { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; margin-bottom: 8px; }
.phase ul li:last-child { border-bottom: none; }

/* Sectors */
.sector-tags { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }
.sector-tag { padding: 12px 24px; border: 1px solid var(--grey-line); background: #fff; color: var(--navy-deep); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }

/* Differentiators */
.diff-card { background: #fff; padding: 40px; border-left: 4px solid var(--navy-deep); box-shadow: 0 1px 8px rgba(13,43,78,0.06); }
.diff-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--navy-deep); margin-bottom: 16px; }
.diff-card p { font-size: 15px; font-weight: 300; color: var(--grey-text); line-height: 1.8; }

/* Testimonials */
.testimonial .quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 60px; color: var(--gold); opacity: 0.5; line-height: 0.5; margin-bottom: 24px; }
.testimonial blockquote { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; line-height: 1.6; color: #fff; margin-bottom: 32px; }
.testimonial .attribution .name { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 4px; }
.testimonial .attribution .role { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.6); }

/* Stats bar */
.stats-bar { background: var(--gold); padding: 48px; border-top: 1px solid #b8935a; border-bottom: 1px solid #b8935a; }
.stats-row { display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center; gap: 32px; max-width: 1400px; margin: 0 auto; }
.stat-item { text-align: center; padding: 0 24px; color: var(--navy-deep); }
.stat-item .num { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-item .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-img-wrap { position: relative; overflow: hidden; border-radius: 1px; box-shadow: 0 12px 48px rgba(13,43,78,0.18); }
.about-img-wrap img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,43,78,0.5), transparent); }
.about-img-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.about-img-caption .cap-label { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.about-img-caption .cap-text { font-size: 14px; font-weight: 300; color: #fff; line-height: 1.4; }
.about-body p { font-size: 16px; font-weight: 300; color: var(--grey-text); line-height: 1.85; margin-bottom: 20px; }
.about-body p strong { color: var(--navy-deep); font-weight: 500; }

/* Footprint */
.footprint-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .footprint-grid { grid-template-columns: 1fr; } }
.fp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; margin-bottom: 56px; }
.fp-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.fp-stat .lbl { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.fp-legend { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
.fp-legend-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.fp-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.fp-legend-item h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.fp-legend-item p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* Philosophy */
.phil-card { background: #fff; padding: 40px; box-shadow: 0 1px 4px rgba(13,43,78,0.05); }
.phil-card .bar { width: 48px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.phil-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--navy-deep); margin-bottom: 24px; }
.phil-list { list-style: none; }
.phil-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 300; color: var(--grey-text); margin-bottom: 16px; }
.phil-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Contact */
.enquiry-form { background: var(--grey-bg); padding: 32px; border-radius: 2px; }
.enquiry-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy-deep); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-deep); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: #fff; border: 1px solid var(--grey-line); padding: 12px; font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 300; color: var(--navy-deep); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; }
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 600px) { .office-grid { grid-template-columns: 1fr; } }
.office-item { padding-bottom: 24px; border-bottom: 1px solid var(--grey-line); }
.office-item .country { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.office-item .addr { font-size: 13px; font-weight: 300; color: var(--grey-text); line-height: 1.6; margin-bottom: 8px; }
.office-item .email { font-size: 13px; font-weight: 500; color: var(--navy-deep); }

/* Gradient placeholders */
.g1 { background: linear-gradient(135deg, #0D2B4E, #1A3D6B); }
.g2 { background: linear-gradient(135deg, #1E4A7A, #3D7A9E); }
.g3 { background: linear-gradient(135deg, #1A3D6B, #2D5F8A); }
.g4 { background: linear-gradient(135deg, #0D2B4E, #1E4A7A); }
