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

:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #eef1f5;
  --ink: #122033;
  --ink-soft: #546173;
  --line: rgba(18, 32, 51, 0.12);
  --navy: #0f223a;
  --navy-2: #132b47;
  --gold: #c5a46d;
  --gold-soft: rgba(197, 164, 109, 0.14);
  --shadow: 0 20px 60px rgba(10, 23, 38, 0.10);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 246, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), #1a3a5f);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--ink);
}

.nav-button {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--navy);
  color: #fff !important;
  font-weight: 600;
}

.nav-button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink) !important;
}

.menu-toggle,
.hamburger {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(197, 164, 109, 0.18), transparent 28%),
    linear-gradient(135deg, #0f223a 0%, #142b45 48%, #183553 100%);
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 90px
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 34px;
  align-items: end;
  padding: 88px 0 92px;
}

.eyebrow,
.section-kicker,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow,
.mini-label {
  color: rgba(255,255,255,0.76);
}

.section-kicker {
  color: #7e6641;
  margin-bottom: 10px;
}

.hero h1,
h2,
.footer h3,
.footer h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.hero-text {
  max-width: 62ch;
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
  margin: 0 0 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #d8bb8c);
  color: #132338;
}

.button.secondary {
  border-color: rgba(255,255,255,0.24);
  color: #fff;
  background: transparent;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-meta div {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-meta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.hero-meta span {
  display: block;
  color: rgba(255,255,255,0.74);
  font-size: 0.92rem;
}

.hero-card {
  align-self: stretch;
}

.hero-card-inner {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.signal-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.signal-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
}

.section {
  padding: 92px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-head {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-head.narrow {
  max-width: 640px;
}

.section-intro {
  color: var(--ink-soft);
  margin-top: 14px;
}

.intro p,
.feature-copy p,
.leadership p,
.service-card p,
.process-card p,
.insight-card p,
.cta-box p,
.footer p,
.footer li,
.stat-card p {
  color: var(--ink-soft);
}

.dark-band {
  padding: 0 0 40px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stat-card,
.service-card,
.process-card,
.insight-card,
.cta-box,
.image-placeholder,
.portrait-placeholder {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 26px;
  background: linear-gradient(180deg, #132b47 0%, #10233b 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}

.stat-card p {
  color: rgba(255,255,255,0.78);
  margin: 8px 0 0;
}

.stat-number {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.insight-card {
  padding: 28px;
}

.service-card h3,
.process-card h3,
.insight-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.slate {
  background: linear-gradient(180deg, rgba(18,32,51,0.03), rgba(18,32,51,0.00));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  padding: 28px;
}

.process-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: #7e6641;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.image-feature-grid,
.leadership-grid,
.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.image-placeholder {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #dfe6ef 0%, #eef2f7 44%, #f8fafc 100%);
  display: grid;
  place-items: center;
}

.image-placeholder span,
.portrait-placeholder span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.skyline {
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(15,34,58,0.10), rgba(15,34,58,0.18));
}

.dome {
  width: 130px;
  height: 130px;
  border-radius: 50% 50% 0 0;
  background: rgba(15, 34, 58, 0.14);
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
}

.columns {
  width: 280px;
  height: 140px;
  border-radius: 10px 10px 0 0;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(
      to right,
      rgba(15,34,58,0.16),
      rgba(15,34,58,0.16) 18px,
      transparent 18px,
      transparent 42px
    );
}

.feature-list {
  margin: 15px 0 0;
  padding-left: 12px;
  color: var(--ink-soft);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.experience-grid div {
  padding: 14px 16px;
  border-radius: 12px;
  background: #f5f7fa;
  font-size: 0.95rem;
  color: #2c3e50;
}

.leadership {
  background: linear-gradient(180deg, rgba(197,164,109,0.10), transparent);
}

.leadership-grid h2 {
  margin-bottom: 14px;
}




.portrait-placeholder {
  min-height: 346px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f9fbfc, #edf2f6);
  position: relative;
}

.portrait-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(15,34,58,0.12);
  box-shadow: inset 0 0 0 14px rgba(197,164,109,0.12);
}

.cta-band {
  padding-top: 18px;
}

.cta-box {
  padding: 34px;
  background: linear-gradient(135deg, #132b47, #183553);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-box p,
.cta-box .section-kicker {
  color: rgba(255,255,255,0.78);
}

.footer {
  background: #0f1724;
  color: rgba(255,255,255,0.85);
  padding: 58px 0 24px;
  margin-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255,255,255,0.72);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 36, 0.95);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}

.cookie-banner p {
  margin: 0;
  max-width: 70ch;
  color: rgba(255,255,255,0.84);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-link {
  color: rgba(255,255,255,0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-button {
  background: linear-gradient(135deg, var(--gold), #d8bb8c);
  color: #132338;
}

.panel-hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(197, 164, 109, 0.18), transparent 26%),
    linear-gradient(135deg, #132b47 0%, #0f223a 100%);
  color: #fff;
  padding: 82px 0 72px;
}

.panel-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.panel-box {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.panel-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.8);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}

.note-box {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  background: rgba(197,164,109,0.10);
  color: var(--ink);
  border-radius: 14px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .image-feature-grid,
  .leadership-grid,
  .panel-shell,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .info-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    display: block;
  }

  .nav {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .menu-toggle:checked ~ .nav {
    display: flex;
  }

  .service-grid,
  .insight-grid,
  .process-grid,
  .info-grid,
  .stat-grid,
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero-grid {
    padding: 72px 0 76px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}

