* {
  box-sizing: border-box;
}

:root {
  --red: #e01922;
  --dark: #111214;
  --text: #171717;
  --muted: #626262;
  --line: #e7e7e7;
  --soft: #f5f5f5;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.page {
  width: min(1390px, calc(100% - 88px));
  margin: 0 auto;
}

.topbar {
  height: 128px;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar .page {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 390px;
  height: 104px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
}

nav a {
  color: #070707;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-decoration: none;
}

nav a.active {
  color: var(--red);
}

.hero {
  min-height: 820px;
  background:
    linear-gradient(90deg, rgba(3,4,6,.92), rgba(3,4,6,.70) 42%, rgba(3,4,6,.24)),
    url("assets/hero-boardroom.png") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 790px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
  color: #f4f4f4;
  text-transform: uppercase;
}

.sc-mark {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  color: var(--red);
  font-weight: 900;
  font-size: 52px;
  letter-spacing: -14px;
  padding-right: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.divider {
  width: 1px;
  height: 88px;
  background: rgba(255,255,255,.55);
}

.hero-name {
  font-size: 32px;
  letter-spacing: .04em;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(54px, 5.7vw, 83px);
  line-height: 1.02;
}

.hero p {
  color: rgba(255,255,255,.84);
  font-size: 21px;
  max-width: 650px;
  margin: 24px 0 36px;
}

.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .045em;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button span {
  font-size: 22px;
  margin-left: 18px;
  line-height: 1;
}

.button.red {
  background: var(--red);
  color: #fff;
}

.button.white {
  border-color: #b9b9b9;
  color: #1b1b1b;
  background: #fff;
  margin-top: 18px;
}

.button.outline-red {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.button.small {
  min-height: 48px;
  padding: 0 24px;
  font-size: 12px;
}

.about {
  padding: 78px 0 82px;
  background: #fff;
}

.two {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 74px;
  align-items: center;
}

.kicker {
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .06em;
  font-weight: 900;
  margin: 0 0 14px;
}

h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
}

.line {
  width: 55px;
  height: 3px;
  background: var(--red);
  margin: 27px 0 28px;
}

.copy p {
  color: var(--muted);
  max-width: 545px;
  font-size: 16px;
}

.office-image {
  height: 520px;
  background: url("assets/about-office.png") center/cover no-repeat;
  box-shadow: 0 20px 65px rgba(0,0,0,.08);
}

.services {
  background: linear-gradient(180deg, #fbfbfb, #f4f4f4);
  padding: 72px 0 80px;
}

.center {
  text-align: center;
}

.center-line {
  margin-left: auto;
  margin-right: auto;
}

.services h2 {
  font-size: clamp(32px, 3.6vw, 46px);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.cards article {
  min-height: 232px;
  background: #fff;
  text-align: center;
  padding: 34px 38px;
  border: 1px solid rgba(0,0,0,.035);
  box-shadow: 0 18px 35px rgba(0,0,0,.025);
}

.icon {
  color: var(--red);
  font-size: 45px;
  line-height: 1;
  margin-bottom: 22px;
}

.cards h3,
.values h3,
.contact-grid h3 {
  margin: 0 0 11px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .025em;
}

.cards p,
.values p,
.contact-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.button-row {
  margin-top: 32px;
}

.why {
  padding: 76px 0 80px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10,11,12,.95), rgba(20,20,21,.89)),
    url("assets/dark-band.png") center/cover no-repeat;
}

.why h2 {
  color: #fff;
  font-size: clamp(34px, 3.8vw, 52px);
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
}

.values article {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.22);
}

.values article:last-child {
  border-right: none;
}

.value-icon {
  color: var(--red);
  font-size: 45px;
  margin-bottom: 20px;
}

.values p {
  color: rgba(255,255,255,.75);
}

.footer-contact {
  background: #fff;
  padding: 58px 0 62px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr .65fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.footer-logo {
  width: 300px;
  display: block;
  margin-bottom: 22px;
}

.contact-grid a:not(.button) {
  display: block;
  color: #202020;
  text-decoration: none;
  font-size: 14px;
  margin: 7px 0;
}

.contact-grid .button {
  margin-top: 26px;
}

.legal {
  background: #171819;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  padding: 23px 0;
}

.legal-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1050px) {
  .page {
    width: min(100% - 36px, 1390px);
  }

  .topbar {
    height: auto;
    padding: 18px 0;
  }

  .topbar .page {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 740px;
  }

  .two,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cards,
  .values,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .values article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding: 28px 0;
  }

  .values article:last-child {
    border-bottom: 0;
  }

  .office-image {
    height: 360px;
  }
}

@media (max-width: 650px) {
  .logo img,
  .footer-logo {
    width: 260px;
    height: auto;
  }

  .hero-brand {
    gap: 16px;
  }

  .sc-mark {
    width: 76px;
    height: 76px;
    font-size: 34px;
    letter-spacing: -9px;
    padding-right: 9px;
  }

  .divider {
    height: 58px;
  }

  .hero-name {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .legal-inner {
    flex-direction: column;
  }
}

.industries {
  padding: 86px 0 92px;
  background: #fff;
}

.industries-grid {
  align-items: start;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 10px;
}

.industry-list span {
  border: 1px solid var(--line);
  background: #fff;
  color: #181818;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.035);
}

.insights {
  padding: 82px 0 90px;
  background: linear-gradient(180deg, #f8f8f8, #f1f1f1);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.insight-grid article {
  min-height: 250px;
  background: #fff;
  padding: 34px 34px;
  border: 1px solid rgba(0,0,0,.045);
  box-shadow: 0 18px 35px rgba(0,0,0,.03);
}

.insight-label {
  color: var(--red) !important;
  text-transform: uppercase;
  font-size: 12px !important;
  letter-spacing: .08em;
  font-weight: 900;
  margin: 0 0 20px !important;
}

.insight-grid h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.035em;
}

.insight-grid p {
  color: var(--muted);
  margin: 0;
}


/* Mobile optimization */
@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .page {
    width: calc(100% - 28px);
  }

  .topbar {
    height: auto;
    position: relative;
    padding: 14px 0 12px;
  }

  .topbar .page {
    display: block;
  }

  .logo img {
    width: 100%;
    max-width: 310px;
    height: auto;
    margin: 0 auto 12px;
    object-position: center;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    width: 100%;
  }

  nav a {
    display: block;
    text-align: center;
    padding: 9px 6px;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    font-size: 10px;
    line-height: 1.15;
    background: #fafafa;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 70px;
    background-position: center;
  }

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

  .hero-brand {
    gap: 12px;
    margin-bottom: 22px;
  }

  .sc-mark {
    width: 68px;
    height: 68px;
    font-size: 30px;
    letter-spacing: -8px;
    padding-right: 8px;
  }

  .divider {
    height: 54px;
  }

  .hero-name {
    font-size: 17px;
    line-height: 1.2;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.06;
  }

  .hero p {
    font-size: 17px;
    margin: 22px 0 28px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 12px;
  }

  .about,
  .services,
  .why,
  .industries,
  .insights,
  .footer-contact {
    padding: 58px 0;
  }

  .two,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .office-image {
    height: 300px;
  }

  .cards,
  .values,
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cards article,
  .insight-grid article {
    min-height: auto;
    padding: 28px 22px;
  }

  .values article {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding: 26px 10px;
  }

  .values article:last-child {
    border-bottom: none;
  }

  .industry-list {
    gap: 9px;
  }

  .industry-list span {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
  }

  .footer-logo {
    width: 100%;
    max-width: 290px;
    height: auto;
  }

  .legal-inner,
  .legal-inner.single {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-brand {
    align-items: center;
  }

  .hero-name {
    font-size: 15px;
  }

  h2 {
    font-size: 30px;
  }
}
