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

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

:root {
  --ink: #1a1a1f;
  --ink-mid: #3c3c47;
  --ink-soft: #6b6b7a;
  --ink-faint: #a8a8b8;
  --navy: #0d1b2a;
  --navy-mid: #1c3252;
  --navy-light: #2a4a72;
  --silver: #c8ccd8;
  --silver-light: #e8eaf0;
  --white: #ffffff;
  --cream: #f7f7f9;
  --accent: #1e3a5f;
  --rule: rgba(28,50,82,0.15);
  --gold: #b8985a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.7; font-size: 16px; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2.5rem; height: 82px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
nav.scrolled { border-color: var(--rule); box-shadow: 0 1px 24px rgba(13,27,42,0.09); }

.nav-logo img { height: 62px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { padding: 10px 24px; background: var(--navy); color: var(--white) !important; border-radius: 2px; font-size: 12px !important; letter-spacing: 0.1em !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--navy-mid) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all 0.3s; }

/* ── HERO SLIDER ── */
#hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.9s var(--ease);
}
.hero-slide.active { opacity: 1; }

.hero-slide-content {
  max-width: var(--max); margin: 0 auto; padding: 0 2.5rem;
  width: 100%; padding-top: 82px;
}

.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300; line-height: 1.07;
  color: var(--white); letter-spacing: -0.01em; margin-bottom: 1.75rem;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.75); }

.hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 520px; margin-bottom: 2.75rem; font-weight: 300; }

.hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  padding: 15px 36px; background: var(--white); color: var(--navy);
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all 0.25s var(--ease); display: inline-block;
}
.btn-primary:hover { background: #eef0f5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-ghost {
  padding: 15px 36px; background: transparent; color: rgba(255,255,255,0.8);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 2px;
  transition: all 0.25s var(--ease); display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); background: rgba(255,255,255,0.07); }

.hero-controls {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 1rem; z-index: 10;
}
.hero-prev, .hero-next {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.22); }

.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(13,27,42,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 0;
}
.hero-stat {
  flex: 1; padding: 18px 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-stat .stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  color: var(--white); line-height: 1;
}
.hero-stat .stat-label { font-size: 11px; font-weight: 400; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); text-transform: uppercase; text-align: center; }
.hero-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ── SECTIONS ── */
section { padding: 100px 2.5rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--accent); }

.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.1; color: var(--navy);
  margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.section-body { font-size: 17px; color: var(--ink-soft); line-height: 1.85; max-width: 580px; font-weight: 300; }

/* ── ABOUT ── */
#about { background: var(--cream); }

.about-grid {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: 5rem; align-items: start; margin-top: 3.5rem;
}

.about-text p { font-size: 17px; color: var(--ink-soft); line-height: 1.85; font-weight: 300; margin-bottom: 1.25rem; }
.about-callout {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 400;
  font-style: italic; color: var(--navy-mid); line-height: 1.45;
  border-left: 2px solid var(--gold); padding-left: 1.75rem; margin: 2.5rem 0;
}

.about-image-col { display: flex; flex-direction: column; gap: 1.5rem; }

.about-img-stack { position: relative; }
.about-img-stack .about-img-main {
  width: 100%; height: 280px; object-fit: cover; border-radius: 4px; display: block;
}
.about-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy); color: var(--white);
  padding: 1rem 1.25rem; border-radius: 4px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 8px 24px rgba(13,27,42,0.3);
}
.badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--gold); line-height: 1; }
.badge-text { font-size: 11px; color: rgba(255,255,255,0.65); max-width: 100px; line-height: 1.4; }

.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.pillar {
  padding: 1.5rem; background: var(--white);
  border: 1px solid var(--rule); border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pillar:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(30,58,95,0.08); }
.pillar-icon { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.pillar h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.pillar p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ── SERVICES ── */
#services { background: var(--white); }

.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.service-card {
  border: 1px solid var(--rule); border-radius: 6px; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  background: var(--white);
}
.service-card:hover { box-shadow: 0 12px 40px rgba(13,27,42,0.1); transform: translateY(-4px); }

.service-img-wrap { width: 100%; height: 200px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }

.service-body { padding: 2rem 1.75rem 1.75rem; }
.service-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--silver-light); line-height: 1; display: block; margin-bottom: 0.75rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; color: var(--navy); margin-bottom: 0.85rem; line-height: 1.2; }
.service-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; font-weight: 300; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.25rem; }
.service-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: rgba(30,58,95,0.07); padding: 4px 10px; border-radius: 2px; }

/* ── WHY US ── */
#why { position: relative; padding: 100px 2.5rem; }
.why-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.why-card { background: rgba(13,27,42,0.5); padding: 2.5rem 2rem; transition: background 0.25s; backdrop-filter: blur(4px); }
.why-card:hover { background: rgba(28,50,82,0.6); }
.why-icon { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; font-size: 18px; color: var(--gold); }
.why-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; font-weight: 300; }

/* ── TESTIMONIALS SLIDER ── */
#testimonials { background: var(--cream); }

.testi-slider-wrap { margin-top: 3.5rem; }
.testi-slider { position: relative; overflow: hidden; }

.testi-slide { display: none; }
.testi-slide.active { display: block; }

.testi-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 8px; padding: 3rem 3.5rem;
  max-width: 820px; margin: 0 auto;
  position: relative;
}


.testi-quote {
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic;
  color: var(--ink-mid); line-height: 1.75; margin-bottom: 2rem;
  position: relative;
}
.testi-quote::before {
  content: '\201C'; font-size: 5rem; font-family: var(--font-display);
  color: var(--silver-light); line-height: 0;
  position: absolute; top: -10px; left: -12px;
  pointer-events: none;
}

.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.testi-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--ink-faint); }

.testi-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2rem; }
.testi-prev, .testi-next {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--rule);
  color: var(--navy); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.testi-prev:hover, .testi-next:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--silver); border: none; cursor: pointer; transition: background 0.25s, transform 0.25s; }
.testi-dot.active { background: var(--navy); transform: scale(1.3); }

/* ── INSIGHT BAND ── */
#insight-band { background: var(--white); padding: 80px 2.5rem; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }

.insight-item {
  position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4/3;
  cursor: default;
}
.insight-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); display: block; }
.insight-item:hover img { transform: scale(1.06); }

.insight-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(13,27,42,0.82));
  transform: translateY(8px); opacity: 0;
  transition: all 0.3s var(--ease);
}
.insight-item:hover .insight-overlay { opacity: 1; transform: translateY(0); }
.insight-overlay h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--white); margin-bottom: 0.3rem; }
.insight-overlay p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ── CONTACT ── */
#contact { background: var(--cream); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-top: 3.5rem; }

.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-detail-icon { width: 40px; height: 40px; border: 1px solid var(--rule); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--accent); }
.contact-detail-text { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.contact-detail-text strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 4px; }


.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mid); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1px solid var(--silver-light); border-radius: 3px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  padding: 14px 36px; background: var(--navy); color: var(--white);
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: background 0.25s, transform 0.2s; align-self: flex-start;
}
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,0.5); padding: 3rem 2.5rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1) opacity(0.65); }
.footer-text { font-size: 13px; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; height: 72px; }
  .nav-logo img { height: 52px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); padding: 2rem 1.5rem; gap: 1.25rem; border-bottom: 1px solid var(--rule); box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 99; }
  .nav-links a { font-size: 15px; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 64px 1.5rem; }
  #hero { height: auto; min-height: 100vh; }
  .hero-slide-content { padding: 0 1.5rem; padding-top: 72px; }
  .hero-stats-bar { display: none; }
  .hero-controls { bottom: 24px; }

  .about-grid, .services-intro, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-overlay { opacity: 1; transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .testi-card { padding: 2rem 1.5rem; }
}
