:root {
  --navy: #102748;
  --navy-deep: #081833;
  --orange: #F0761E;
  --orange-dark: #D4600F;
  --teal: #16A9BE;
  --bg: #FAFAF7;
  --bg-alt: #F1EEE6;
  --ink: #16233A;
  --ink-soft: #4A5670;
  --line: #E3DFD3;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 20px 45px -25px rgba(8, 24, 51, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-text strong {
  font-family: 'Poppins', 'Inter', sans-serif;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.05rem; color: var(--navy); }
.brand-text em { font-style: normal; font-size: 0.78rem; color: var(--teal); font-weight: 600; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.main-nav a:hover { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px -12px rgba(240, 118, 30, 0.65); }
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-ghost { border-color: var(--teal); color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--white); }

.header-cta { white-space: nowrap; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 68%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(22, 169, 190, 0.35), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  padding-top: 76px;
  padding-bottom: 76px;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 14px;
  font-weight: 800;
  color: var(--white);
}

.hero-lede {
  font-size: 1.2rem;
  color: #DCE4F2;
  margin: 0 0 28px;
  max-width: 46ch;
}

.hero-quote {
  margin: 0 0 32px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
}
.hero-quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { display: flex; justify-content: center; position: relative; }

.hero-emblem {
  width: min(340px, 80vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--orange);
  box-shadow: var(--shadow), 0 0 0 14px rgba(255,255,255,0.06);
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ticker */
.ticker {
  background: var(--orange);
  color: var(--white);
}
.ticker-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 24px;
  text-align: center;
}
.ticker-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 4px;
}
.ticker strong { font-size: 1.15rem; font-family: 'Poppins', sans-serif; }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }

.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  color: var(--navy);
  margin: 0 0 22px;
  font-weight: 700;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.about-text p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.02rem;
}

.signature {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 1.05rem !important;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.card.in-view { opacity: 1; transform: translateY(0); }

.card-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.08rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.contact-text p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.contact-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.contact-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.contact-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Privacy */
.privacy-inner p { color: var(--ink-soft); line-height: 1.7; max-width: 78ch; }
.privacy-inner p strong { color: var(--navy); }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #B9C4DA;
  padding: 32px 0;
}
.footer-disclaimer { font-size: 0.85rem; line-height: 1.6; margin: 0 0 10px; max-width: 70ch; }
.footer-copy { font-size: 0.8rem; margin: 0; opacity: 0.8; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 48px; }
  .hero-media { order: -1; }
  .hero-emblem { width: min(240px, 60vw); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media img { aspect-ratio: 16/10; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-media { order: -1; max-width: 280px; margin: 0 auto; }
  .main-nav { display: none; }
  .ticker-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .header-cta { padding: 10px 16px; font-size: 0.84rem; }
  .hero-actions .btn { flex: 1; }
}
