:root {
  --gray-red: #d8062a;
  --editorial-page: #eaecef;
  --editorial-paper: #ffffff;
  --editorial-ink: #111111;
  --editorial-muted: #4e5d6b;
  --editorial-line: rgba(10, 35, 66, 0.14);
}

html {
  scroll-behavior: smooth;
}

body.editorial-home {
  background: var(--editorial-page);
  color: var(--editorial-ink);
  font-family: "Inter", Arial, sans-serif;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--gray-navy);
  color: var(--gray-white);
  font-weight: 800;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.floating-wolf-mark {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  width: 76px;
  height: 66px;
  background-image: url("../assets/brand/gray-logo-new-blue.png");
  background-repeat: no-repeat;
  background-size: 288px auto;
  background-position: left center;
  filter: drop-shadow(0 12px 22px rgba(10, 35, 66, 0.14));
  opacity: 0.86;
  pointer-events: none;
}

.editorial-home h1,
.editorial-home h2,
.editorial-home h3 {
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

.editorial-home p {
  color: var(--editorial-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.editorial-header {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.editorial-header .header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-height: 66px;
  width: min(100% - 48px, 1280px);
  padding: 0;
}

.editorial-logo {
  width: clamp(270px, 24vw, 380px);
  padding: 6px 0;
}

.editorial-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(10, 35, 66, 0.1);
  backdrop-filter: blur(18px);
}

.editorial-nav a {
  border-radius: 999px;
  color: var(--gray-navy);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 10px;
}

.editorial-nav a:hover,
.editorial-nav a:focus-visible {
  background: rgba(10, 35, 66, 0.07);
}

.editorial-nav .nav-cta {
  background: var(--gray-navy);
  color: var(--gray-white);
  box-shadow: none;
  padding-inline: 14px;
}

.editorial-nav .nav-cta:hover,
.editorial-nav .nav-cta:focus-visible {
  background: #071a32;
}

.editorial-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--editorial-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(10, 35, 66, 0.1);
  cursor: pointer;
}

.editorial-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--gray-navy);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.editorial-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.editorial-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.editorial-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.eyebrow {
  color: var(--gray-red);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.button {
  border-radius: 999px;
  background: var(--gray-red);
  color: var(--gray-white);
  min-height: 42px;
  padding: 0 18px;
}

.button:hover,
.button:focus-visible {
  background: #b90524;
}

.button-secondary,
.button-on-light {
  border: 1px solid var(--editorial-line);
  background: transparent;
  color: var(--gray-navy);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-on-light:hover,
.button-on-light:focus-visible {
  background: rgba(10, 35, 66, 0.08);
  color: var(--gray-navy);
}

.editorial-hero {
  padding: 34px 0 54px;
}

.editorial-hero-grid,
.editorial-split-grid,
.editorial-dark-grid,
.editorial-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
}

.editorial-hero-copy {
  max-width: 600px;
}

.hero-brand-logo {
  display: inline-flex;
  width: clamp(300px, 29vw, 450px);
  margin: 0 0 30px;
}

.hero-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-hero h1 {
  color: var(--gray-navy);
  font-size: clamp(1.9rem, 3.3vw, 3.65rem);
  line-height: 1.08;
  margin: 0 0 18px;
}

.editorial-hero p:not(.eyebrow) {
  font-size: clamp(0.94rem, 1vw, 1.02rem);
  max-width: 480px;
}

.editorial-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.editorial-hero-media,
.editorial-split figure,
.insight-grid article img {
  overflow: hidden;
  margin: 0;
  background: #d8dde3;
}

.editorial-hero-media {
  position: relative;
  aspect-ratio: 1.35 / 0.86;
  max-height: 430px;
  margin-top: clamp(96px, 8.5vw, 132px);
  border-radius: 0 0 0 58px;
}

.editorial-hero-media img,
.editorial-split img,
.insight-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-band,
.insight-section,
.segment-strip {
  padding: 74px 0;
}

.editorial-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.editorial-heading h2,
.editorial-split h2,
.editorial-dark h2,
.editorial-contact h2,
.segment-strip h2 {
  color: var(--gray-navy);
  font-size: clamp(1.65rem, 2.45vw, 3.05rem);
  line-height: 1.14;
  margin: 0;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--editorial-line);
  background: var(--editorial-line);
}

.market-card {
  min-height: 260px;
  padding: clamp(22px, 2.4vw, 34px);
  background: var(--editorial-paper);
}

.market-card span {
  color: var(--gray-red);
  display: block;
  font-weight: 900;
  margin-bottom: 38px;
}

.market-card h3 {
  color: var(--gray-navy);
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  line-height: 1.25;
  margin: 0 0 12px;
}

.editorial-split {
  padding: 78px 0;
  background: var(--editorial-paper);
}

.editorial-split-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.editorial-split-reverse .editorial-split-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.editorial-split figure {
  position: relative;
  aspect-ratio: 1.55 / 1;
  border-radius: 0;
}

.editorial-split p:not(.eyebrow) {
  font-size: 0.98rem;
}

.editorial-dark {
  background: var(--gray-navy);
  color: var(--gray-white);
  padding: 78px 0;
}

.editorial-dark h2,
.editorial-dark p,
.editorial-dark .eyebrow {
  color: var(--gray-white);
}

.editorial-dark .eyebrow {
  color: #ff6d83;
}

.approach-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.approach-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  background: var(--gray-navy);
}

.approach-list span {
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.approach-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.topic-links {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--editorial-line);
}

.topic-links a {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--editorial-line);
  color: var(--gray-navy);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}

.topic-links a::after {
  color: var(--gray-red);
  content: ">";
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.insight-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  background: var(--editorial-paper);
}

.insight-grid article img {
  aspect-ratio: 1.35 / 1;
}

.insight-grid article div {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 138px;
  padding: 24px 28px 28px;
  text-align: center;
}

.insight-grid h3 {
  color: var(--gray-navy);
  font-size: clamp(1.02rem, 1.25vw, 1.34rem);
  line-height: 1.25;
  margin: 0;
  max-width: 320px;
}

.insight-grid .eyebrow {
  margin-bottom: 12px;
}

.segment-strip {
  background: var(--editorial-paper);
}

.segment-strip h2 {
  max-width: 850px;
}

.segment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.segment-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 330px;
  border: 1px solid var(--editorial-line);
  background: var(--editorial-paper);
  box-shadow: 0 18px 44px rgba(10, 35, 66, 0.08);
}

.segment-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 0.86;
  object-fit: cover;
}

.segment-card div {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px 24px 28px;
  text-align: center;
}

.segment-card span {
  color: var(--gray-navy);
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.segment-card p {
  max-width: 300px;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.editorial-contact {
  padding: 74px 0;
}

.editorial-contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
}

.contact-box {
  border-left: 4px solid var(--gray-red);
  padding: 28px 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact card for individual */
.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  background: var(--editorial-paper);
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(10, 35, 66, 0.06);
  max-width: 360px;
  width: 100%;
}
.contact-avatar {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.contact-info {
  min-width: 0;
}
.contact-name {
  margin: 0 0 6px 0;
  color: var(--gray-navy);
  font-weight: 800;
  font-size: 1.05rem;
  padding-bottom: 8px;
}
.contact-name::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--gray-navy);
  border-radius: 3px;
  margin-top: 8px;
}
.contact-role {
  margin: 0 0 12px 0;
  color: var(--editorial-muted);
  font-size: 0.95rem;
  line-height: 1.3;
}
.contact-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--editorial-line);
  color: var(--gray-navy);
  text-decoration: none;
}
.icon-link svg { width: 18px; height: 18px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.contact-phone {
  color: var(--gray-navy);
  display: inline-flex;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.7vw, 1.72rem);
  font-weight: 800;
  text-decoration: none;
}

.editorial-footer {
  background: var(--gray-navy);
  color: var(--gray-white);
  padding: 32px 0 20px;
}

.editorial-footer .footer-links-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 0 14px 14px;
}

.editorial-footer .footer-brand {
  display: grid;
  gap: 4px;
  place-items: center;
}

.editorial-footer .footer-brand img {
  width: min(260px, 80vw);
  max-width: 260px;
}

.editorial-footer .footer-strapline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.editorial-footer .footer-strapline::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 260px;
  height: 3px;
  background: var(--gray-red);
  margin: 4px auto 0;
  border-radius: 999px;
}

.editorial-footer .footer-brand p,
.editorial-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.editorial-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.editorial-footer .footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.editorial-footer .footer-links a:hover,
.editorial-footer .footer-links a:focus-visible {
  color: var(--gray-white);
}

.editorial-footer .footer-bottom {
  width: 100%;
  margin-top: 12px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.editorial-footer .footer-bottom p {
  font-size: 0.82rem;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .editorial-header {
    top: 8px;
    width: 100%;
    border-radius: 0;
  }

  .editorial-header .header-container {
    min-height: 62px;
    width: min(100% - 24px, 1240px);
    padding-inline: 0;
  }

  .hero-brand-logo {
    width: clamp(260px, 55vw, 360px);
    margin-bottom: 24px;
  }

  .floating-wolf-mark {
    right: 14px;
    bottom: 14px;
    display: block;
    width: 54px;
    height: 48px;
    background-size: 210px auto;
    opacity: 0.72;
  }

  .editorial-menu-toggle {
    display: grid;
  }

  .editorial-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 12px;
    border-radius: 18px;
    background: var(--editorial-paper);
    box-shadow: 0 20px 50px rgba(10, 35, 66, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .editorial-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .editorial-nav a {
    justify-content: flex-start;
    padding: 13px 14px;
  }

  .editorial-hero-grid,
  .editorial-split-grid,
  .editorial-split-reverse .editorial-split-grid,
  .editorial-dark-grid,
  .editorial-contact-grid {
    grid-template-columns: 1fr;
  }

  .editorial-hero-media {
    border-radius: 0 0 0 48px;
    max-height: 360px;
    margin-top: 0;
  }

  .market-grid,
  .insight-grid,
  .segment-list {
    grid-template-columns: 1fr;
  }

  .segment-card {
    min-height: auto;
  }

  .market-card {
    min-height: auto;
  }

  .market-card span {
    margin-bottom: 28px;
  }

  .approach-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-box {
    border-left: 0;
    border-top: 4px solid var(--gray-red);
    padding: 24px 0 0;
  }

  .editorial-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .editorial-footer .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .editorial-hero {
    padding-top: 92px;
  }

  .hero-brand-logo {
    width: min(100%, 330px);
    margin-bottom: 22px;
  }

  .editorial-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .editorial-band,
  .insight-section,
  .segment-strip,
  .editorial-split,
  .editorial-dark,
  .editorial-contact {
    padding: 62px 0;
  }
}
