
:root {
  --blue: #0636d8;
  --blue-dark: #04154a;
  --blue-deep: #020c2d;
  --red: #ed111b;
  --white: #ffffff;
  --ink: #10131a;
  --muted: #64748b;
  --soft: #f4f7fb;
  --line: #e5eaf1;
  --shadow: 0 24px 60px rgba(3, 19, 74, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px)/2));
  background: rgba(2, 12, 45, .92);
  backdrop-filter: blur(18px);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; }
.nav a { opacity: .84; }
.nav a:hover { opacity: 1; }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--red);
  opacity: 1 !important;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 28px;
}

.hero {
  min-height: 860px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background:
    radial-gradient(circle at 75% 20%, rgba(30,92,255,.42), transparent 32%),
    linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 55%, #071c67 100%);
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -250px -20%;
  height: 420px;
  transform: rotate(-6deg);
  background: linear-gradient(90deg, var(--blue), #fff 45%, var(--red));
  opacity: .1;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .25;
}
.hero-glow-1 {
  width: 420px; height: 420px; right: -100px; top: 110px; background: var(--red);
}
.hero-glow-2 {
  width: 520px; height: 520px; left: -240px; bottom: -220px; background: var(--blue);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy { padding: 80px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  color: #9bb7ff;
  margin-bottom: 18px;
}
.eyebrow.dark { color: var(--blue); }
.hero h1 {
  font-size: clamp(56px, 7vw, 96px);
  line-height: .92;
  margin: 0;
  max-width: 650px;
  letter-spacing: -.06em;
}
.hero h1 span {
  display: block;
  color: var(--red);
  text-shadow: 0 10px 30px rgba(237,17,27,.22);
}
.hero-lead {
  max-width: 650px;
  font-size: 21px;
  color: #dbe4ff;
  margin: 26px 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 900;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: white; }
.btn-outline { border: 1px solid rgba(255,255,255,.34); color: white; background: rgba(255,255,255,.05); }
.btn-light { background: white; color: var(--blue-deep); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #dce5ff;
}
.hero-visual { min-height: 640px; position: relative; display: grid; place-items: end center; }
.hero-photo {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  max-height: 720px;
  object-fit: cover;
  object-position: top center;
  border-radius: 240px 240px 36px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.hero-ring {
  position: absolute;
  width: 470px; height: 470px;
  border: 24px solid var(--blue);
  border-right-color: var(--red);
  border-bottom-color: #fff;
  border-radius: 50%;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .72;
}
.barber-pole {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 34px;
  width: 48px;
  height: 180px;
  border-radius: 30px;
  overflow: hidden;
  border: 5px solid #e9eef7;
  background: white;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  transform: rotate(-4deg);
}
.barber-pole span {
  display: block;
  height: 36px;
  background: linear-gradient(135deg, var(--red) 0 33%, white 33% 66%, var(--blue) 66%);
}

.section { padding: 110px 0; }
.white { background: white; }
.deep { background: var(--blue-deep); color: white; }
.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 84px;
  align-items: center;
}
.section h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 0 0 24px;
}
.section-copy p,
.section-heading p {
  color: #536175;
  font-size: 18px;
  max-width: 760px;
}
.deep .section-heading p { color: #b8c7eb; }
.bio-extra {
  display: block;
  margin-top: 18px;
  overflow: visible;
}
.bio-extra p:last-child { margin-bottom: 0; }
.portrait-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}
.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}
.portrait-label {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}
.portrait-label span { color: var(--muted); font-size: 14px; }

.centered { text-align: center; margin-inline: auto; }
.centered p { margin-inline: auto; }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 54px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
}
.timeline-item {
  color: white;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  padding: 20px 12px;
  text-align: left;
  cursor: pointer;
  transition: .2s;
}
.timeline-item:last-child { border-right: 0; }
.timeline-item:hover,
.timeline-item.active { background: var(--blue); }
.timeline-item .year {
  display: block;
  font-size: 12px;
  color: #97adf5;
  margin-bottom: 5px;
}
.timeline-panel {
  margin-top: 22px;
  border-radius: 22px;
  padding: 34px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  align-items: start;
  background: linear-gradient(135deg, #0d2a86, #071d61);
  border: 1px solid rgba(255,255,255,.12);
}
.panel-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.timeline-panel h3 { margin: 0 0 8px; font-size: 28px; }
.timeline-panel p { margin: 0; color: #d2ddfb; }

.section-heading { margin-bottom: 48px; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.project-card {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 18px;
  padding: 24px;
  min-height: 180px;
  transition: .2s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: white;
}
.project-card span {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}
.project-card h3 { font-size: 21px; margin: 16px 0 6px; }
.project-card p { color: var(--muted); margin: 0; }

.red-band {
  background:
    linear-gradient(135deg, rgba(237,17,27,.95), rgba(196,11,21,.98)),
    var(--red);
  color: white;
  overflow: hidden;
}
.community-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.community-photo {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(50,0,0,.22);
}
.community-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}
.community-copy .eyebrow { color: #ffd5d7; }
.feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.22);
}
.feature span { font-weight: 900; font-size: 13px; color: #ffd5d7; }
.feature h3 { margin: 0 0 6px; font-size: 24px; }
.feature p { margin: 0; color: #ffe8e9; }

.topic-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topic {
  border: 1px solid var(--line);
  background: white;
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  color: #475569;
}
.topic.active, .topic:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.topic-panel {
  max-width: 860px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.topic-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), #3767ff);
  color: white;
  font-size: 30px;
}
.topic-panel h3 { margin: 0 0 6px; font-size: 28px; }
.topic-panel p { margin: 0; color: var(--muted); }

.cta-section {
  padding: 0 0 100px;
  background: white;
}
.cta-card {
  border-radius: 28px;
  padding: 52px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.14), transparent 32%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
}
.cta-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.cta-card p { color: #d9e3ff; margin-bottom: 0; }

.footer {
  padding: 34px 0;
  background: #060a15;
  color: white;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer p { margin: 4px 0 0; color: #9ca7bd; font-size: 14px; }
.footer-note { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: rgba(2,12,45,.98);
    transform: translateY(-130%);
    transition: .25s ease;
  }
  .nav.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-grid, .two-col, .community-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 0 30px; }
  .hero-visual { min-height: 560px; }
  .hero-photo { width: min(440px, 90%); }
  .barber-pole { left: 7%; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar { padding-inline: 16px; }
  .hero h1 { font-size: clamp(52px, 18vw, 76px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual { min-height: 470px; }
  .hero-photo { border-radius: 180px 180px 24px 24px; }
  .hero-ring { width: 360px; height: 360px; top: 70px; }
  .barber-pole { width: 38px; height: 145px; }
  .section { padding: 78px 0; }
  .section h2 { font-size: 40px; }
  .projects-grid { grid-template-columns: 1fr; }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .timeline-panel { grid-template-columns: 1fr; }
  .community-grid { gap: 34px; }
  .topic-panel { grid-template-columns: 1fr; }
  .cta-card { padding: 34px 24px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; }
}
