:root {
  --red: #b5121b;
  --red-deep: #7f0d13;
  --ink: #111214;
  --charcoal: #181b1f;
  --steel: #27323a;
  --muted: #686b70;
  --line: #e5ded4;
  --paper: #ffffff;
  --warm: #f4efe6;
  --mist: #f7f7f5;
  --gold: #c8962c;
  --green: #0f8f47;
  --shadow: 0 22px 55px rgba(10, 12, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 14, 16, 0.58);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(229, 222, 212, 0.85);
  background: rgba(255, 255, 255, 0.94);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #fff;
}

.site-header.is-scrolled .brand {
  color: var(--ink);
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-weight: 950;
  font-size: 0.9rem;
}

.brand strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 950;
}

.site-header.is-scrolled .brand strong {
  color: var(--red);
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 700;
}

.site-header.is-scrolled .brand small {
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  font-weight: 800;
}

.site-header.is-scrolled .nav-menu a {
  color: #303338;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  outline: none;
}

.site-header.is-scrolled .nav-menu a:hover,
.site-header.is-scrolled .nav-menu a:focus-visible {
  color: var(--red);
  background: #fbf2f2;
}

.nav-menu .nav-cta,
.site-header.is-scrolled .nav-menu .nav-cta {
  margin-left: 4px;
  color: #fff;
  background: var(--red);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible,
.site-header.is-scrolled .nav-menu .nav-cta:hover,
.site-header.is-scrolled .nav-menu .nav-cta:focus-visible {
  color: #fff;
  background: var(--red-deep);
}

.nav-toggle {
  display: none;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 9px;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: #fff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background: #07080a;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  --hero-image: url("images/hero-conference-audience-20260602.jpg");
  background-image:
    linear-gradient(90deg, rgba(5, 7, 9, 0.78), rgba(10, 11, 13, 0.44) 48%, rgba(10, 11, 13, 0.14)),
    linear-gradient(0deg, rgba(5, 7, 9, 0.42), rgba(5, 7, 9, 0)),
    var(--hero-image);
  background-size: cover, cover, cover;
  background-position: center, center, 68% center;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0), rgba(7, 8, 10, 0.88));
}

.hero-content {
  padding: 160px 0 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  width: min(960px, 100%);
  margin-bottom: 20px;
  font-size: 5.35rem;
  line-height: 0.94;
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 930;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.13rem;
  line-height: 1.22;
  font-weight: 900;
}

.hero-lead {
  width: min(700px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 900;
  text-align: center;
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 15px 32px rgba(181, 18, 27, 0.34);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-deep);
  outline: none;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.button.full {
  width: 100%;
}

.hero-trust {
  position: relative;
  z-index: 2;
  padding-bottom: 34px;
}

.hero-trust dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(9, 10, 12, 0.92);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-trust div {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.hero-trust dt {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 950;
}

.hero-trust dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.section,
.section-band {
  padding: 96px 0;
}

.section-band {
  background: var(--warm);
}

.intro {
  background: var(--paper);
}

.intro-grid,
.process-grid,
.why-grid,
.presence-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: #3c3f43;
  font-size: 1.08rem;
}

.intro-copy p,
.section-head p,
.service-copy p,
.process-copy p,
.why-grid > div > p,
.presence-grid > div > p,
.contact-panel > p,
.form-note {
  color: var(--muted);
}

.section-head {
  width: min(780px, 100%);
  margin-bottom: 36px;
}

.section-head.split {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 56px;
  align-items: end;
}

.section-head.split p:last-child {
  margin-bottom: 20px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #ded5c9;
  border-radius: 8px;
  background: #ded5c9;
}

.capability-grid article {
  min-height: 240px;
  padding: 24px;
  background: #fff;
}

.capability-grid span {
  display: inline-grid;
  place-items: center;
  width: 39px;
  height: 34px;
  margin-bottom: 42px;
  border-radius: 6px;
  color: var(--red);
  background: #fbf2f2;
  font-size: 0.82rem;
  font-weight: 950;
}

.capability-grid p,
.service-list p,
.experience-card p,
.timeline span,
.reason-grid p {
  color: var(--muted);
}

.service-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: start;
}

.service-copy {
  position: sticky;
  top: 106px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.service-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-list p {
  margin-bottom: 0;
}

.text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  border-bottom: 2px solid var(--red);
  color: var(--red);
  font-weight: 950;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.experience-card {
  position: relative;
  min-height: 315px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 8px;
  background: #0e1114;
  box-shadow: var(--shadow);
}

.experience-card.featured {
  grid-row: span 2;
  min-height: 646px;
}

.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.84));
}

.experience-card div {
  position: relative;
  z-index: 1;
  padding: 26px;
  color: #fff;
}

.experience-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.experience-card h3 {
  width: min(580px, 100%);
  margin-bottom: 0;
  font-size: 1.35rem;
}

.experience-card.featured h3 {
  font-size: 2rem;
  line-height: 1.08;
}

.process {
  background: #fff;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number copy";
  column-gap: 18px;
  row-gap: 4px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  grid-area: number;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  color: #fff;
  background: var(--charcoal);
  font-weight: 950;
}

.timeline strong {
  display: block;
  grid-area: title;
  min-width: 0;
  margin-bottom: 4px;
  font-size: 1.07rem;
}

.timeline span {
  display: block;
  grid-area: copy;
  min-width: 0;
  max-width: 58ch;
  line-height: 1.55;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reason-grid article {
  min-height: 184px;
  border: 1px solid #ded5c9;
  border-radius: 8px;
  padding: 23px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.05);
}

.reason-grid article:nth-child(2) {
  border-top: 4px solid var(--gold);
}

.reason-grid article:nth-child(3) {
  border-top: 4px solid var(--steel);
}

.reason-grid article:nth-child(4) {
  border-top: 4px solid var(--red);
}

.presence {
  background: #101214;
  color: #fff;
}

.presence-grid {
  align-items: center;
}

.presence-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.presence-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.presence-grid > div > p {
  color: rgba(255, 255, 255, 0.72);
}

blockquote {
  margin: 24px 0 0;
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 20px 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.06rem;
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.contact-panel {
  position: sticky;
  top: 106px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.contact-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
}

.contact-list strong {
  overflow-wrap: anywhere;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.social-row a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--steel);
  background: #fff;
  font-weight: 850;
}

.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 20, 20, 0.08);
}

.form-row {
  margin-bottom: 16px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: #303338;
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d2c8;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(181, 18, 27, 0.14);
}

.field-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  opacity: 0;
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.88rem;
}

.footer {
  padding: 32px 0;
  color: #fff;
  background: #101214;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

.footer a:hover {
  color: #fff;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(15, 143, 71, 0.32);
}

.floating-wa:hover,
.floating-wa:focus-visible {
  background: #0a7138;
  outline: none;
}

.page-message {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  background: var(--warm);
}

.message-card {
  width: min(640px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.message-card .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.message-card .button.secondary:hover,
.message-card .button.secondary:focus-visible {
  color: var(--red);
  background: #fbf2f2;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a,
  .site-header.is-scrolled .nav-menu a {
    justify-content: center;
    color: #303338;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    color: var(--red);
    background: #fbf2f2;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 132px 0 178px;
  }

  .hero-trust dl,
  .capability-grid,
  .section-head.split,
  .service-layout,
  .intro-grid,
  .process-grid,
  .why-grid,
  .presence-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-trust div:nth-child(3),
  .hero-trust div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section-head.split,
  .service-layout,
  .intro-grid,
  .process-grid,
  .why-grid,
  .presence-grid,
  .contact-grid {
    gap: 32px;
  }

  .capability-grid {
    gap: 1px;
  }

  .service-copy,
  .contact-panel {
    position: static;
  }

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

  .experience-card.featured {
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .shell {
    width: calc(100% - 22px);
    max-width: 1160px;
  }

  .nav {
    min-height: 66px;
  }

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

  .nav-menu {
    top: 66px;
    left: 11px;
    right: 11px;
  }

  .hero {
    min-height: 0;
    display: block;
  }

  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(5, 7, 9, 0.72), rgba(10, 11, 13, 0.4)),
      linear-gradient(0deg, rgba(5, 7, 9, 0.58), rgba(5, 7, 9, 0.04)),
      var(--hero-image);
    background-position: center, center, 58% center;
  }

  .hero-content {
    padding: 106px 0 26px;
    max-width: calc(100vw - 22px);
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: 2.08rem;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-trust {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-bottom: 22px;
  }

  .hero-trust dl {
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
  }

  .hero-trust div {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 13px 15px;
  }

  .hero-trust div:first-child {
    border-top: 0;
  }

  .section,
  .section-band {
    padding: 68px 0;
  }

  .capability-grid article {
    min-height: auto;
  }

  .capability-grid span {
    margin-bottom: 24px;
  }

  .service-list article,
  .reason-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .service-list article {
    gap: 4px;
  }

  .experience-card,
  .experience-card.featured {
    min-height: 360px;
  }

  .experience-card h3,
  .experience-card.featured h3 {
    font-size: 1.32rem;
  }

  .timeline li {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "number title"
      "copy copy";
  }

  .timeline strong,
  .timeline span {
    grid-column: auto;
  }

  .timeline span {
    max-width: none;
  }

  .contact-list a {
    grid-template-columns: 42px 1fr;
  }

  .quote-form {
    padding: 20px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer a {
    text-align: left;
  }
}
