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

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

:root {
  --navy:   #0d1e33;
  --blue:   #2563a8;
  --blue-lt:#3b7bc8;
  --steel:  #dbeafe;
  --white:  #f8fafc;
  --off:    #f0f5fb;
  --muted:  #64748b;
  --border: #dde8f5;
  --nav-h:  70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  font-size: 15.5px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s cubic-bezier(.16,1,.3,1), transform 0.72s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ── NAV ── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5%;
  background: rgba(248,250,252,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(13,30,51,0.07); }

.logo {
  font-family: 'Cormorant', serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-decoration: none;
}
.logo span { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all 0.3s; }

/* ── HEADING STYLE ── */
.display-heading {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.86rem;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--steel); }

/* ── PAGE HERO ── */
.page-hero {
  padding: calc(var(--nav-h) + 88px) 5.5% 88px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,168,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-lt);
  display: block;
  margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.page-hero p { font-size: 0.96rem; color: rgba(255,255,255,0.5); max-width: 480px; }

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

.label {
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.section-title span { color: var(--blue); }
.section-sub { font-size: 0.92rem; color: var(--muted); max-width: 460px; line-height: 1.85; }

/* ── CURSOR FOLLOWER ── */
.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s, opacity 0.2s;
  transform: translate(-50%,-50%);
  opacity: 0;
}
.cursor-ring {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,99,168,0.4);
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.25s, height 0.25s, border-color 0.25s, opacity 0.3s;
  transform: translate(-50%,-50%);
  opacity: 0;
}
body:hover .cursor-dot, body:hover .cursor-ring { opacity: 1; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  padding: 90px 5.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.cta-strip p { font-size: 0.88rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 64px 5.5% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; margin-bottom: 1.8rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-family: 'Cormorant', serif; font-weight: 400; font-size: 1.4rem; letter-spacing: -0.01em; color: #fff; text-decoration: none; display: block; margin-bottom: 0.8rem; }
.footer-logo span { color: var(--blue-lt); }
.footer-desc { font-size: 0.83rem; color: rgba(255,255,255,0.3); line-height: 1.9; max-width: 240px; }
.footer-col h4 { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.58rem; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.73rem; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 0.4rem; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 1.5rem 5.5%; border-bottom: 1px solid var(--border); gap: 1.1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  section { padding: 70px 5.5%; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
