:root {
  --navy-900: #102b73;
  --navy-800: #173b96;
  --navy-700: #2654bf;
  --orange-500: #ff7a21;
  --orange-400: #ff974d;
  --cream-100: #fff9f2;
  --white: #ffffff;
  --slate-700: #41516e;
  --slate-500: #6c7a94;
  --slate-100: #edf2fb;
  --shadow: 0 24px 60px rgba(12, 32, 87, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--navy-900);
  background:
    radial-gradient(circle at top left, rgba(255, 151, 77, 0.22), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #eef4ff 45%, #fffaf4 100%);
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 20px 72px;
  background:
    linear-gradient(135deg, rgba(255, 122, 33, 0.14), transparent 35%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 62%, #091838 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.28), transparent 65%);
  pointer-events: none;
}

.nav,
.hero-content,
.section,
.footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.brand,
.nav-links a,
h1,
h2,
h3 {
  font-family: "Gill Sans", "Avenir Next Condensed", "Trebuchet MS", sans-serif;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
}

.hero-title {
  display: grid;
  gap: 8px;
  max-width: 100%;
  line-height: 0.95;
}

.hero-title-kicker,
.hero-title-office {
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title-kicker {
  color: var(--orange-400);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

.hero-title-name {
  color: var(--white);
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
}

.hero-title-office {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.hero-tagline {
  width: min(100%, 390px);
  margin: 18px 0 0;
}

.hero-text {
  max-width: 55ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange-500);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero-card {
  position: relative;
  border-radius: 32px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card img {
  border-radius: 22px;
  min-height: 280px;
  object-fit: cover;
}

.section {
  padding: 72px 20px 0;
}

.section-heading {
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
}

.about-grid,
.achievement-grid {
  display: grid;
  gap: 24px;
}

.about-grid {
  grid-template-columns: 1.25fr 0.75fr;
}

.about-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 30% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel,
.achievement-card,
.carousel,
.footer {
  border-radius: var(--radius-lg);
}

.panel,
.achievement-card,
.slide,
.footer {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.panel {
  padding: 28px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.accent-panel {
  background:
    linear-gradient(180deg, rgba(255, 122, 33, 0.12), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.accent-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.accent-panel li + li {
  margin-top: 10px;
}

.endorsement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.endorsement-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 43, 115, 0.1);
}

.endorsement-list span {
  display: block;
  font-weight: 700;
}

.endorsement-list em {
  color: var(--slate-700);
}

.achievement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.achievement-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.achievement-feature-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 42%;
}

.achievement-feature-copy {
  padding: 28px 28px 28px 0;
}

.achievement-card {
  padding: 28px;
  min-height: 220px;
}

.achievement-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange-500);
  font-family: "Gill Sans", "Avenir Next Condensed", "Trebuchet MS", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.achievement-card p,
.achievement-feature p,
.slide-caption p,
.footer p {
  color: var(--slate-700);
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.carousel-track {
  position: relative;
}

.slide {
  display: none;
  overflow: hidden;
}

.slide.is-active {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.slide img,
.placeholder-art {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.placeholder-art {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 122, 33, 0.95), rgba(255, 151, 77, 0.75)),
    var(--orange-500);
  color: var(--white);
  font-family: "Gill Sans", "Avenir Next Condensed", "Trebuchet MS", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.slide-caption {
  padding: 28px;
  align-self: center;
}

.carousel-button,
.dot {
  border: 0;
  cursor: pointer;
}

.carousel-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(16, 43, 115, 0.2);
}

.dot.is-active {
  background: var(--orange-500);
}

.footer {
  margin: 72px auto 24px;
  padding: 24px 28px;
  text-align: center;
}

@media (max-width: 920px) {
  .hero-content,
  .about-grid,
  .achievement-grid,
  .achievement-feature,
  .slide.is-active {
    grid-template-columns: 1fr;
  }

  .achievement-feature-copy {
    padding: 0 28px 28px;
  }

  .carousel {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-inline: 16px;
    padding-bottom: 56px;
  }

  .section {
    padding-inline: 16px;
    padding-top: 56px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .nav-links {
    gap: 14px;
  }

  .panel,
  .achievement-card,
  .slide-caption,
  .footer {
    padding: 22px;
  }

  .endorsement-list {
    grid-template-columns: 1fr;
  }

  .slide img,
  .placeholder-art,
  .hero-card img {
    min-height: 240px;
  }
}
