:root {
  --ink: #171717;
  --graphite: #252525;
  --muted: #646464;
  --line: #d9d9d9;
  --soft-line: #e9e9e9;
  --white: #ffffff;
  --off-white: #f5f5f3;
  --accent: #c3132d;
  --accent-dark: #980e21;
  --lime: #c8f13a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans, "Helvetica Neue"), Arial, Helvetica, sans-serif;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(20px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: white;
  font-size: 24px;
  font-weight: 900;
}

.brand-symbol::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 6px;
  height: 16px;
  background: var(--lime);
}

.brand-copy strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease;
}

.header-cta:hover {
  background: var(--accent);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: clamp(100px, 17vh, 180px) clamp(20px, 6vw, 96px) clamp(56px, 8vh, 86px);
  background: #222;
  color: white;
}

.hero-visual,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.16) 82%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 74%);
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(46px, 6.3vw, 88px);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 750;
}

.button-primary {
  background: var(--accent);
  color: white;
  transition: background 180ms ease, transform 180ms ease;
}

.button-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

.text-link {
  color: white;
}

.hero-proof {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(56px, 8vh, 86px);
  z-index: 2;
  width: 220px;
  padding-top: 16px;
  border-top: 3px solid var(--lime);
}

.hero-proof strong {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  right: 18px;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.scroll-cue span {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.credibility {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.credibility div {
  min-height: 130px;
  padding: 30px clamp(20px, 3.2vw, 50px);
  border-right: 1px solid var(--line);
}

.credibility div:last-child {
  border-right: 0;
}

.credibility strong,
.credibility span {
  display: block;
}

.credibility strong {
  margin-bottom: 10px;
  font-size: clamp(23px, 2.1vw, 32px);
}

.credibility span {
  color: var(--muted);
  font-size: 13px;
}

.section-pad {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 6vw, 96px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  color: var(--accent);
  line-height: 1;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.62);
}

.section-label.light span {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--lime);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  gap: clamp(50px, 9vw, 140px);
}

.display-heading {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-copy {
  padding-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.intro-copy .lead {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.52;
}

.arrow-link {
  margin-top: 20px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
}

.statement {
  position: relative;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 10vw, 160px);
  overflow: hidden;
  background: var(--accent);
  color: white;
}

.statement-mark {
  position: absolute;
  right: 6vw;
  top: -80px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
  font-size: 380px;
  line-height: 1;
}

.statement blockquote {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin-bottom: 30px;
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 560;
  line-height: 1.12;
}

.statement p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 60px;
  align-items: start;
  margin-bottom: 70px;
}

.services-heading p,
.approach-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.practice-list {
  border-top: 1px solid var(--ink);
}

.practice {
  display: grid;
  grid-template-columns: 70px minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.practice-index {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.practice-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.practice h3 {
  margin-bottom: 18px;
  font-size: clamp(29px, 3.2vw, 44px);
  font-weight: 570;
  line-height: 1.05;
}

.practice-summary {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.practice li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid var(--soft-line);
  color: #464646;
  font-size: 13px;
  line-height: 1.4;
}

.practice li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 5px;
  height: 5px;
  background: var(--accent);
}

.sectors {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(400px, 1.22fr);
  gap: clamp(50px, 9vw, 140px);
  padding: clamp(80px, 11vw, 145px) clamp(20px, 6vw, 96px);
  background: var(--graphite);
  color: white;
}

.sectors-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 560;
  line-height: 1.08;
}

.sectors-copy > p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.68;
}

.sector-list {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.sector-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.sector-row span {
  color: var(--lime);
  font-size: 11px;
}

.sector-row span:last-child {
  color: white;
  font-size: 18px;
}

.sector-row strong {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 520;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  gap: clamp(50px, 8vw, 120px);
}

.approach-heading > p {
  max-width: 520px;
  margin-top: 28px;
}

.process {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.process strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
}

.process p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 96px) 60px;
  background: #111;
  color: white;
}

.contact-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 50px;
  align-items: start;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.contact h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 560;
  line-height: 1.04;
}

.contact-email {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  font-size: clamp(17px, 2vw, 23px);
  align-self: end;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding-top: 52px;
}

.contact-details > div > span {
  display: block;
  margin-bottom: 15px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  display: block;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.footer {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  gap: 40px;
  align-items: center;
  padding: 28px clamp(20px, 6vw, 96px);
  border-top: 1px solid #333;
  background: #111;
  color: rgba(255, 255, 255, 0.5);
}

.footer .brand-copy strong,
.footer .brand-copy small {
  color: white;
}

.footer p {
  margin-bottom: 0;
  font-size: 11px;
}

.js .reveal {
  visibility: hidden;
}

@media (max-width: 1080px) {
  .hero-content {
    width: min(760px, 80%);
  }

  .hero-proof {
    display: none;
  }

  .intro-grid,
  .services-heading,
  .sectors,
  .approach-grid,
  .contact-top {
    grid-template-columns: 1fr;
  }

  .practice {
    grid-template-columns: 50px 1fr;
  }

  .practice ul {
    grid-column: 2;
  }

  .sectors {
    gap: 50px;
  }

  .contact-email {
    width: min(100%, 560px);
    align-self: auto;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-content {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 0 16px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .header-cta span {
    display: none;
  }

  .nav {
    gap: 22px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.44));
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 0.98;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }

  .credibility {
    grid-template-columns: repeat(2, 1fr);
  }

  .credibility div {
    min-height: 120px;
    border-bottom: 1px solid var(--line);
  }

  .credibility div:nth-child(2) {
    border-right: 0;
  }

  .section-label {
    margin-bottom: 34px;
  }

  .practice {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 42px 0;
  }

  .practice ul {
    grid-template-columns: 1fr;
  }

  .contact-details,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
