:root {
  --red: #C8102E;
  --red-dark: #A50D26;
  --gray: #595959;
  --gray-light: #8C8C8C;
  --ink: #1A1A1A;
  --paper: #FFFFFF;
  --canvas: #F7F5F3;
  --line: #E5E2DE;
  --max: 1200px;
  --space: clamp(1rem, 2vw, 1.5rem);
  --font-sans: 'Helvetica Neue', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red-dark); }

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

/* ===== Logo ===== */
.logo {
  display: inline-block;
  width: 130px;
  height: auto;
  line-height: 0;
}
.logo svg,
.logo img { width: 100%; height: auto; display: block; }
.nav__logo { width: 110px; }
.footer__logo { width: 140px; }
@media (max-width: 480px) {
  .nav__logo { width: 92px; }
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--space);
  max-width: var(--max);
  margin: 0 auto;
}
.nav__logo { width: 96px; }
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  color: var(--gray);
  font-size: 14px;
  letter-spacing: .02em;
  font-weight: 500;
}
.nav__links a:hover { color: var(--red); }
.nav__cta {
  background: var(--red);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--red-dark); color: #fff !important; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Hamburger toggle (hidden on desktop) */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 110;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 720px) {
  .nav__toggle { display: block; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 96px 28px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,.12);
    overflow-y: auto;
  }
  .nav.is-open .nav__menu { transform: translateX(0); }

  .nav__links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 24px;
  }
  .nav__links li {
    border-bottom: 1px solid var(--line);
  }
  .nav__links a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    color: var(--ink);
    font-weight: 500;
  }
  .nav__cta {
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Backdrop */
  .nav.is-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 90;
    animation: fadeIn .2s ease;
  }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== Hero ===== */
.hero {
  padding: clamp(48px, 9vw, 110px) 0 clamp(48px, 8vw, 100px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
}
.hero__name {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero__name strong { font-weight: 600; }
.hero__tagline {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.45;
}
.hero__strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.strength {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gray);
  background: var(--canvas);
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  margin: 0 12px 12px 0;
}
.hero__cta:hover { background: var(--red-dark); color: #fff !important; }
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink) !important;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 500;
  margin-bottom: 12px;
}
.hero__cta-secondary:hover { background: var(--ink); color: #fff !important; }
@media (max-width: 480px) {
  .hero__cta, .hero__cta-secondary { display: flex; justify-content: center; margin-right: 0; }
}

.hero__photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--canvas);
  overflow: hidden;
  border-radius: 4px;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: auto -20px -20px auto;
  width: 110px;
  height: 110px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.15;
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { max-width: 380px; margin: 0 auto; order: -1; }
}
@media (max-width: 480px) {
  .hero__photo { max-width: 280px; }
}

/* ===== Section base ===== */
section { scroll-margin-top: 80px; }

.section {
  padding: clamp(56px, 9vw, 110px) 0;
}
.section--alt { background: var(--canvas); }
.section--dark { background: var(--ink); color: #fff; }
.section--red { background: var(--red); color: #fff; }

.section__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: clamp(32px, 5vw, 56px);
  align-items: end;
}
.section__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section--dark .section__eyebrow,
.section--red .section__eyebrow { color: #fff; opacity: .8; }
.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.section__title strong { font-weight: 600; }
.section__lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gray);
  line-height: 1.65;
}
.section--dark .section__lede,
.section--red .section__lede { color: rgba(255,255,255,.85); }

@media (max-width: 720px) {
  .section__head { grid-template-columns: 1fr; }
}

/* ===== About / Story ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
}
.story p {
  margin-bottom: 18px;
  color: var(--gray);
}
.story p:last-child { margin-bottom: 0; }

.story__quote {
  border-left: 3px solid var(--red);
  padding: 8px 0 8px 24px;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin: 28px 0;
}
.story__quote cite {
  display: block;
  font-style: normal;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray);
  margin-top: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .story { grid-template-columns: 1fr; }
}

/* ===== Practice areas (grid of pills) ===== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.practice {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.practice:hover {
  transform: translateY(-2px);
  border-color: var(--red);
}
.practice::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 12px;
  vertical-align: middle;
}

/* ===== Services ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.08);
}
.service__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 12px;
}
.service__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.service__body {
  color: var(--gray);
  font-size: .98rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service__link {
  font-weight: 600;
  font-size: .92rem;
  color: var(--red);
  align-self: flex-start;
}
.service__link:hover { color: var(--red-dark); }

/* ===== Contact grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  margin-top: clamp(32px, 6vw, 56px);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--red);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}
.contact-card__value {
  font-size: .98rem;
  color: #fff !important;
  font-weight: 500;
  display: block;
}
.contact-card__value:hover { text-decoration: underline; }
.contact-card__value span {
  font-size: .8rem;
  font-weight: 400;
  opacity: .7;
  margin-left: 4px;
}

/* ===== Modules ===== */
.modules {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.module {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.module:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.module__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--red);
  margin-bottom: 8px;
}
.module__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.module__list {
  list-style: none;
  padding: 0;
}
.module__list li {
  font-size: .92rem;
  color: var(--gray);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}
.module__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--red);
}

/* ===== Clients ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}
.client {
  background: var(--ink);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
}
.client__role {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.client__industry {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* ===== Career timeline ===== */
.career-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}
.career__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.career__list {
  list-style: none;
  padding: 0;
}
.career__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.career__list li:last-child { border-bottom: none; }
.career__role { font-weight: 600; color: var(--ink); display: block; }
.career__org { color: var(--gray); font-size: .9rem; }
.career__years {
  font-size: .8rem;
  color: var(--gray-light);
  letter-spacing: .04em;
  display: block;
  margin-top: 2px;
}

/* ===== Certs / chips ===== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-size: .85rem;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gray);
}

/* ===== Contact CTA ===== */
.cta-band {
  text-align: center;
  padding: clamp(64px, 10vw, 120px) 0;
}
.cta-band__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band__title strong { font-weight: 600; }
.cta-band__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--red) !important;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-white:hover { background: var(--ink); color: #fff !important; }
.btn-outline-white {
  border: 1px solid rgba(255,255,255,.5);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-white:hover { background: #fff; color: var(--red) !important; }

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__brand p {
  margin-top: 18px;
  font-size: .9rem;
  max-width: 320px;
  line-height: 1.55;
}
.footer__col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  padding: 6px 0;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding-top: 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== Utility ===== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 24px 0;
}
