:root {
  --navy: #0d1f3c;
  --navy-mid: #1a3560;
  --blue: #2a4a8a;
  --blue-light: #3a5fa0;
  --gold: #b8964a;
  --gold-light: #d4b06a;
  --cream: #f7f4ef;
  --cream-dark: #ede9e2;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8a8aaa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--white); color: var(--text-dark); 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 4rem; height: 80px;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,150,74,0.3);
}
.nav-logo img { height: 42px; object-fit: contain; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 0.5rem 1.4rem !important; border-radius: 2px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(42,74,138,0.4) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,150,74,0.12) 0%, transparent 60%); }
.hero-lines { position: absolute; inset: 0; overflow: hidden; }
.hero-lines::before { content: ''; position: absolute; top: -50%; left: 60%; width: 1px; height: 200%; background: linear-gradient(to bottom, transparent, rgba(184,150,74,0.25), transparent); transform: rotate(15deg); }
.hero-lines::after { content: ''; position: absolute; top: -50%; left: 75%; width: 1px; height: 200%; background: linear-gradient(to bottom, transparent, rgba(184,150,74,0.1), transparent); transform: rotate(15deg); }
.hero-content { position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: 500; animation: fadeUp 0.6s 0.1s both; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; animation: fadeUp 0.6s 0.2s both; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.75; font-weight: 300; max-width: 480px; margin-bottom: 2.5rem; animation: fadeUp 0.6s 0.3s both; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; animation: fadeUp 0.6s 0.4s both; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy); padding: 0.9rem 2.2rem; text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; transition: all 0.25s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,150,74,0.3); }
.btn-secondary { display: inline-block; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; transition: all 0.2s; }
.btn-secondary:hover { color: var(--gold-light); border-color: var(--gold-light); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin-top: 3rem; border: 1px solid rgba(184,150,74,0.2); animation: fadeUp 0.6s 0.5s both; }
.hero-stat { background: rgba(13,31,60,0.8); padding: 1.5rem; text-align: center; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 500; color: var(--gold-light); display: block; line-height: 1; margin-bottom: 0.4rem; }
.hero-stat-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-visual { display: flex; flex-direction: column; gap: 1.5rem; animation: fadeUp 0.6s 0.3s both; }
.hero-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,74,0.2); border-radius: 4px; padding: 2rem; position: relative; overflow: hidden; }
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.hero-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
.hero-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── SECTIONS ── */
section { padding: 7rem 4rem; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.section-label::before { content: ''; width: 2rem; height: 1px; background: var(--gold); display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem; color: var(--navy); }
.section-title em { font-style: italic; color: var(--blue); }
.section-body { font-size: 1rem; line-height: 1.8; color: var(--text-mid); max-width: 600px; font-weight: 300; }
.divider { width: 3rem; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.about-feature { padding: 1.5rem; background: var(--white); border-radius: 4px; border-left: 3px solid var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.about-feature h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.about-feature p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.about-visual { position: relative; }
.about-img-frame { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.about-img-frame img { width: 55%; opacity: 0.5; }
.about-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--navy); color: var(--white); padding: 1.5rem; border-radius: 4px; border: 1px solid rgba(184,150,74,0.3); text-align: center; }
.about-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--gold-light); display: block; line-height: 1; }
.about-badge-text { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ── SERVICES ── */
#services { background: var(--navy); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 2.5rem; transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: rgba(184,150,74,0.2); line-height: 1; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--white); margin-bottom: 0.8rem; }
.service-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── TEAM ── */
#team { background: var(--white); }
.team-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { position: relative; cursor: default; }
.team-photo { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; background: var(--cream-dark); position: relative; margin-bottom: 1rem; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: block; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,31,60,0.9) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1.2rem; }
.team-card:hover .team-overlay { opacity: 1; }
.team-email { font-size: 0.7rem; color: var(--gold-light); text-decoration: none; letter-spacing: 0.04em; font-weight: 500; word-break: break-all; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 0.15rem; line-height: 1.2; }
.team-title { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--cream); }
.testimonials-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); border-radius: 4px; padding: 2rem; box-shadow: 0 2px 20px rgba(0,0,0,0.06); position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.testimonial-card::before { content: '\201C'; position: absolute; top: -0.5rem; left: 1.2rem; font-family: 'Cormorant Garamond', serif; font-size: 6rem; color: var(--gold); opacity: 0.15; line-height: 1; }
.testimonial-card.featured { border-top: 3px solid var(--gold); }
.testimonial-card.featured::before { opacity: 0.25; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; }
.testimonial-location { font-size: 0.72rem; color: var(--text-light); margin-top: 0.15rem; }

/* ── LOCATIONS ── */
#locations { background: var(--navy); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem; }
.location-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(184,150,74,0.25); border-radius: 4px; padding: 3rem; position: relative; overflow: hidden; }
.location-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent); }
.location-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--white); margin-bottom: 1.5rem; }
.location-detail { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; align-items: flex-start; }
.location-icon { color: var(--gold); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.location-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.location-text a { color: var(--gold-light); text-decoration: none; }
.location-text a:hover { color: var(--white); }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-centered { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-centered .section-label { justify-content: center; }
.contact-centered .section-label::before { display: none; }
.contact-centered .section-body { margin: 0 auto 3rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1300px; margin: 3rem auto 0; }
.contact-card { background: var(--white); border-radius: 4px; padding: 2.5rem; box-shadow: 0 2px 20px rgba(0,0,0,0.06); text-align: center; border-top: 3px solid var(--gold); }
.contact-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 1rem; }
.contact-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.contact-card a { color: var(--blue); text-decoration: none; display: block; margin-top: 0.3rem; font-weight: 500; }
.contact-card a:hover { color: var(--navy); }

/* ── FOOTER ── */
footer { background: #060e1a; padding: 3rem 4rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(184,150,74,0.2); }
.footer-logo img { height: 36px; opacity: 0.85; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  .nav-links { gap: 1.5rem; }
  section { padding: 5rem 2rem; }
  .hero-content { gap: 2rem; padding: 0 2rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-cards { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content,
  .about-grid,
  .testimonials-header,
  .team-intro,
  .locations-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .contact-cards { grid-template-columns: 1fr; }
}
