:root {
  --navy: #0b2545;
  --navy-dark: #081b34;
  --navy-darker: #050f1e;
  --gold: #c9a227;
  --gold-light: #e4c765;
  --gold-dark: #a8861d;
  --text: #22303f;
  --text-light: #5b6b7b;
  --bg-alt: #f5f7fa;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 10px;
  --max-width: 1120px;
  --shadow-soft: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-lift: 0 20px 40px rgba(11, 37, 69, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

a { color: var(--navy); text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Under-construction banner */
.construction-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--navy-darker);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.construction-banner p { margin: 0; }

.construction-icon { margin-right: 6px; }

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

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

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.logo-prefix {
  display: inline-block;
  font-size: 0.7em;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  border-radius: 5px;
  padding: 1px 6px;
  margin-right: 4px;
  vertical-align: middle;
}

.logo-accent { color: var(--gold-dark); }
.footer-logo .logo-prefix { color: var(--gold-light); border-color: var(--gold-light); }
.footer-logo .logo-accent { color: var(--gold-light); }

.main-nav { display: flex; gap: 28px; }

.main-nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.main-nav a:hover { color: var(--gold-dark); }
.main-nav a:hover::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--gold-dark); }
.main-nav a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-nav {
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
}

.btn-nav:hover { background: var(--navy-dark); transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-darker);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 162, 39, 0.45);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Eyebrow + section divider */
.eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.8em;
}

.eyebrow-light {
  text-align: left;
  color: var(--gold-light);
}

.section-divider {
  display: block;
  width: 56px;
  height: 3px;
  margin: 0 auto 2em;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-darker) 100%);
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(480px circle at 85% 20%, rgba(201, 162, 39, 0.18), transparent 60%),
    radial-gradient(420px circle at 10% 90%, rgba(201, 162, 39, 0.12), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-text { flex: 1 1 420px; }

.hero h1 {
  color: var(--white);
  font-size: 2.75rem;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

.hero p {
  max-width: 560px;
  margin: 0 0 2em;
  color: #d7e0ec;
  font-size: 1.15rem;
}

/* Hero rotating slides (text only) */
.hero-slides {
  position: relative;
  min-height: 230px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

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

.hero-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 5px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(201, 162, 39, 0.08);
}

/* Page hero (subpages) */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-darker) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  overflow: hidden;
}

.page-hero h1 { color: var(--white); font-size: 2.2rem; margin: 0; }

/* Coming-soon panel */
.coming-soon {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 32px;
}

.coming-soon .icon-badge {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
}

.coming-soon .icon-badge svg { width: 30px; height: 30px; }

.coming-soon h2 { margin-bottom: 0.4em; }
.coming-soon p { color: var(--text-light); margin: 0 0 1.8em; }

/* Sections */
.section { padding: 88px 0; }

.section-alt { background: var(--bg-alt); }

.section h2 {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 0.4em;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto 2.5em;
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Icon badges */
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold-light);
}

.icon-badge svg { width: 24px; height: 24px; }

.icon-badge-outline {
  margin: 0 auto 18px;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold-dark);
}

/* Service overview (homepage teaser) */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  text-align: center;
}

.overview-card {
  padding: 8px;
}

.overview-card .icon-badge { margin: 0 auto 18px; }
.overview-card h3 { font-size: 1.15rem; }
.overview-card p { color: var(--text-light); margin: 0; }

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* About teaser */
.about-teaser { text-align: center; }
.about-teaser .section-lead { margin-bottom: 1.5em; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-darker));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.cta-banner-inner h2 { color: var(--white); margin-bottom: 0.3em; }
.cta-banner-inner p { color: #d7e0ec; margin: 0 0 1.8em; font-size: 1.1rem; }

/* Insights teaser */
.insights-teaser { text-align: center; }

/* Footer nav */
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 6px 0;
}

.footer-nav a { color: #b8c4d3; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--gold-light); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.service-card p { color: var(--text-light); margin: 0; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  text-align: center;
}

.why-item h3 { font-size: 1.1rem; }
.why-item p { color: var(--text-light); margin: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-item:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.contact-item h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  margin-bottom: 0.5em;
}

.contact-item p { margin: 0; color: var(--text); }

/* Footer */
.site-footer {
  background: var(--navy-darker);
  color: #b8c4d3;
  text-align: center;
  padding: 40px 0 28px;
  font-size: 0.9rem;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.footer-logo { color: var(--white); font-size: 1.2rem; }
.footer-logo span { color: var(--gold-light); }

.footer-note { color: var(--gold-light); margin: 4px 0; }

.footer-copyright { margin: 0; color: #8ea0b3; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 720px) {
  .nav-toggle { display: flex; order: 2; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .btn-nav { order: 3; }
  .main-nav {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open { max-height: 300px; padding-top: 12px; }
  .hero { padding: 70px 0; }
  .hero-inner { flex-direction: column-reverse; text-align: center; gap: 32px; }
  .hero h1 { font-size: 2rem; }
  .hero-slides { min-height: 260px; }
  .eyebrow-light { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-dots { justify-content: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .section { padding: 56px 0; }
}
