/* ==========================================================================
   Lanxtor Landing Page — aligned to mockup
   ========================================================================== */

:root {
  --navy: #0d1f35;
  --navy-dark: #0a1828;
  --navy-footer: #050d16;
  --navy-mid: #1a3050;
  --gold: #c4a24a;
  --gold-light: #d4b86a;
  --gold-dark: #a8862e;
  --white: #ffffff;
  --gray-50: #f4f5f7;
  --gray-100: #e8eaee;
  --gray-200: #cdd2da;
  --gray-500: #6b7585;
  --gray-600: #4f5969;
  --text-dark: #0d1f35;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --container-max: 1280px;
  --header-height: 88px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

section[id],
[id="contact"] {
  scroll-margin-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.text-gold {
  color: var(--gold);
}

.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
}

h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: var(--white);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.link-gold {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.link-gold:hover {
  color: var(--gold-dark);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  height: var(--header-height);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-height);
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  width: max-content;
  max-width: 100%;
  text-decoration: none;
  text-align: left;
}

.logo-img {
  display: block;
  height: 40px;
  max-height: 40px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  align-self: flex-start;
}

.logo-tagline {
  display: block;
  width: auto;
  align-self: flex-start;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(11.5px, 0.45vw + 10.5px, 13px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  line-height: 1.2;
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
}

/* ==========================================================================
   Hero — split: solid navy left, image right
   ========================================================================== */

.hero {
  position: relative;
  margin-top: var(--header-height);
  background: var(--navy-dark);
  min-height: 400px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  background: url('../assets/images/hero.png') center right / cover no-repeat;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--navy-dark) 0%,
    rgba(10, 24, 40, 0.92) 12%,
    rgba(10, 24, 40, 0.55) 32%,
    rgba(10, 24, 40, 0.15) 55%,
    transparent 75%
  );
}

.hero-network {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 36px;
  padding-bottom: 40px;
}

.hero-headline {
  margin-bottom: 0;
}

.hero-line {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 620px;
}

.hero-line-gold {
  color: var(--gold);
  font-size: clamp(1rem, 1.75vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  margin-top: 0.4em;
  max-width: 580px;
}

.hero-gold-rule {
  width: 72px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 18px;
}

.hero-lead {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-features-intro {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.65;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.hero-feature-icon svg {
  width: 100%;
  height: 100%;
}

.hero-feature h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.hero-feature p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* Tagline bar */
.tagline-bar {
  background: var(--navy-dark);
  border-top: 1px solid rgba(196, 162, 74, 0.25);
  padding: 16px 0;
}

.tagline-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tagline-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.tagline-inner p {
  flex: 0 1 720px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.55;
}

/* ==========================================================================
   Executive Challenges — white bg, 5 cards in a row
   ========================================================================== */

.section {
  padding: 64px 0;
}

.section-challenges,
.section-process {
  padding: 36px 0;
}

.section-challenges .section-label,
.section-process .section-label {
  margin-bottom: 8px;
}

.section-challenges h2,
.section-process h2 {
  margin-bottom: 10px;
}

.section-challenges {
  background: var(--white);
}

.challenges-grid {
  display: grid;
  grid-template-columns: minmax(240px, 32%) 1fr;
  gap: 24px 40px;
  align-items: center;
}

.challenges-intro p {
  margin-bottom: 16px;
  font-size: 13.5px;
}

.challenges-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.challenge-card {
  text-align: center;
  padding: 0 4px;
}

.challenge-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 8px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.challenge-icon svg {
  width: 24px;
  height: 24px;
}

.challenge-card h3 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.35;
}

.challenge-card p {
  font-size: 10.5px;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ==========================================================================
   Process & Engagement — light gray bg, two columns
   ========================================================================== */

.section-process {
  background: var(--gray-50);
}

.process-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

.think-block,
.engage-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 28px 32px;
}

.think-block {
  align-items: center;
}

.engage-block {
  align-items: start;
}

.think-text,
.engage-text {
  align-self: start;
}

.think-text p,
.engage-text p {
  margin-bottom: 0;
  font-size: 13.5px;
}

.engage-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.engage-link {
  align-self: flex-end;
  margin-top: 4px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.service-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-text {
  flex: 1;
  min-width: 0;
}

.service-text h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  line-height: 1.3;
}

.service-text p {
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--gray-500);
  margin: 0;
}

.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}

.process-step {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.process-step-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.process-step-icon svg {
  width: 22px;
  height: 22px;
}

.process-step-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.process-step h4 {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.process-step p {
  font-size: 9.5px;
  margin-bottom: 0;
  line-height: 1.35;
  color: var(--gray-500);
  padding: 0 2px;
}

.process-arrow {
  flex-shrink: 0;
  width: 28px;
  color: var(--gold);
  display: flex;
  align-items: center;
  padding-top: 14px;
}

.process-arrow svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Industries — full-width row
   ========================================================================== */

.section-industries {
  background: var(--white);
  padding: 56px 0;
  min-height: 260px;
}

.section-industries .container {
  display: flex;
  flex-direction: column;
  min-height: 180px;
}

.section-industries .section-label {
  font-size: 11px;
}

.industries-list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

/* ==========================================================================
   Bottom: Why Us, Contact
   ========================================================================== */

.section-bottom {
  padding: 0;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bottom-col {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.industry-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.industry-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

.why-col {
  background: var(--gray-50);
}

.why-col .section-label {
  font-size: 11px;
}

.why-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.why-list strong {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-col {
  background: linear-gradient(165deg, #142a47 0%, var(--navy) 100%);
  color: rgba(255, 255, 255, 0.85);
}

.contact-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-heading {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 320px;
}

.contact-cta {
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

a.contact-item:hover {
  color: var(--gold);
}

.contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.page-hero {
  margin-top: var(--header-height);
  background: linear-gradient(165deg, #142a47 0%, var(--navy) 100%);
  padding: 56px 0 48px;
  color: rgba(255, 255, 255, 0.85);
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  max-width: 560px;
}

.page-hero p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
}

.section-contact {
  background: var(--gray-50);
  padding: 56px 0 72px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  padding: 36px 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-group .required {
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 74, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 24px 16px;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.form-success h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-sidebar-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  padding: 28px 32px;
}

.contact-sidebar-block h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-sidebar-block p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--gray-500);
}

.contact-sidebar .contact-item {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-sidebar .contact-item:last-of-type {
  margin-bottom: 0;
}

.contact-sidebar a.contact-item:hover {
  color: var(--gold);
}

.contact-sidebar .contact-item svg {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0 36px;
  }

  .section-contact {
    padding: 40px 0 56px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-sidebar-block {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Site footer
   ========================================================================== */

.site-footer {
  background: var(--navy-footer);
  border-top: 2px solid rgba(196, 162, 74, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer-tagline {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-legal {
  text-align: right;
}

.footer-copy {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
  .challenges-cards {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
  }

  .industries-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
    justify-items: center;
  }

  .industry-item {
    flex: none;
    width: 100%;
    max-width: 180px;
  }
}

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

  .hero-image {
    width: 100%;
    opacity: 0.45;
  }

  .hero-image::before {
    background: linear-gradient(
      to bottom,
      rgba(10, 24, 40, 0.55) 0%,
      var(--navy-dark) 72%
    );
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .think-block,
  .engage-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 48px 0;
  }

  .section-challenges,
  .section-process {
    padding: 40px 0;
  }

  .section-industries {
    padding: 48px 0;
    min-height: 0;
  }

  .section-industries .container {
    min-height: 0;
  }

  h2 {
    font-size: clamp(1.2rem, 4.8vw, 1.65rem);
    line-height: 1.35;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .logo-img {
    height: 40px;
    max-height: 40px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 20px;
    justify-self: stretch;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  /* Hero — image banner on top, content below */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-image {
    position: relative;
    order: -1;
    width: 100%;
    height: clamp(180px, 42vw, 240px);
    opacity: 1;
    flex-shrink: 0;
    background-position: center center;
  }

  .hero-image::before {
    background: linear-gradient(
      to bottom,
      transparent 35%,
      rgba(10, 24, 40, 0.75) 78%,
      var(--navy-dark) 100%
    );
  }

  .hero-content {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero-line {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    line-height: 1.25;
    max-width: none;
  }

  .hero-line-gold {
    font-size: clamp(0.95rem, 3.6vw, 1.15rem);
    line-height: 1.4;
    margin-top: 0.5em;
  }

  .hero-lead {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
    max-width: none;
  }

  .hero-feature p {
    font-size: 10.5px;
  }

  .tagline-bar {
    padding: 24px 0;
  }

  .tagline-inner {
    gap: 0;
  }

  .tagline-line {
    display: none;
  }

  .tagline-inner p {
    font-size: 13px;
    line-height: 1.6;
    flex: 1 1 auto;
  }

  .challenges-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .challenge-card h3 {
    font-size: 11.5px;
  }

  .think-block,
  .engage-block {
    gap: 32px;
  }

  .think-text,
  .engage-text {
    margin-bottom: 4px;
  }

  .process-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    justify-items: center;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    flex: none;
    width: 100%;
    max-width: 160px;
  }

  .process-step p {
    font-size: 10px;
    padding: 0 4px;
  }

  .service-item {
    padding: 16px 0;
    gap: 12px;
  }

  .service-text h4 {
    font-size: 12.5px;
  }

  .service-text p {
    font-size: 11px;
  }

  .industries-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    margin-top: 28px;
  }

  .industry-item {
    max-width: none;
  }

  .industry-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 160px;
  }

  .industry-item span {
    font-size: 11.5px;
  }

  .bottom-col {
    padding: 40px 20px;
  }

  .why-list {
    margin-top: 24px;
    gap: 18px;
  }

  .why-list li {
    font-size: 13px;
    line-height: 1.5;
  }

  .contact-top {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .contact-heading {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
  }

  .contact-lead {
    font-size: 13.5px;
    max-width: none;
  }

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

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

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

@media (max-width: 480px) {
  .hero-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .challenges-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-flow {
    gap: 24px 12px;
  }

  .industries-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .industry-icon {
    width: 48px;
    height: 48px;
  }

  .industry-item span {
    font-size: 10.5px;
  }
}

/* ==========================================================================
   Stories
   ========================================================================== */

.section-stories {
  background: var(--gray-50);
  padding: 48px 0 72px;
}

.stories-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 20px;
  margin-bottom: 28px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
}

.stories-toolbar-row {
  display: contents;
}

.stories-filter-search {
  flex: 1 1 220px;
  min-width: 200px;
}

.stories-filter-toggle {
  display: none;
}

.stories-filters-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px 20px;
  flex: 1 1 auto;
  min-width: 0;
}

.stories-toolbar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  flex: 1;
  min-width: 0;
}

.stories-filter,
.stories-toolbar-sort {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}

.stories-filters-panel .stories-filter {
  flex: 1 1 160px;
}

.stories-filters-panel .stories-toolbar-sort {
  min-width: 160px;
}

.stories-filter label,
.stories-toolbar-sort label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.stories-filter input,
.stories-filter select,
.stories-toolbar-sort select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  padding: 10px 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.stories-filter input:focus,
.stories-filter select:focus,
.stories-toolbar-sort select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 74, 0.15);
}

.stories-count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.stories-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-bottom: 3px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  transform-origin: center center;
}

.story-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(13, 31, 53, 0.12);
}

.story-card-link {
  display: grid;
  grid-template-columns: minmax(240px, 42%) 1fr;
  min-height: 220px;
  color: inherit;
  text-decoration: none;
}

.story-card-image {
  position: relative;
  min-height: 220px;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 55%, var(--navy-dark) 100%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.story-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 36px 40px;
  gap: 14px;
}

.story-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.story-card-summary {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.story-meta-sep {
  color: var(--gray-200);
}

.story-card-cta {
  margin-top: 4px;
  pointer-events: none;
}

.stories-empty,
.stories-error {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
}

.stories-empty h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.stories-empty p,
.stories-error {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

/* Story detail */

.story-detail-hero {
  margin-top: var(--header-height);
  position: relative;
  background: var(--navy);
  color: var(--white);
}

.story-detail-hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 55%, var(--navy-dark) 100%);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.story-detail-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 40px 56px;
}

.story-back-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  transition: color var(--transition);
}

.story-back-link:hover {
  color: var(--gold-light);
}

.story-detail-hero-content h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--white);
  max-width: 720px;
  margin-bottom: 16px;
}

.story-detail-lead {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin-bottom: 18px;
}

.story-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.story-detail-body {
  background: var(--gray-50);
  padding: 56px 0 72px;
}

.story-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(240px, 0.85fr);
  gap: 40px;
  align-items: start;
}

.story-article {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  padding: 40px 44px 48px;
}

.story-article-heading {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.3;
  color: var(--navy);
  margin: 36px 0 10px;
}

.story-article > .story-article-heading:first-child {
  margin-top: 0;
}

.story-article-subtitle {
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--gray-500);
  font-weight: 500;
  margin: 0 0 16px;
}

.story-article-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin: 0 0 18px;
}

.story-article-figure {
  margin: 28px 0;
}

.story-article-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 2px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  cursor: zoom-in;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.story-article-figure img:hover,
.story-article-figure img:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(13, 31, 53, 0.12);
  outline: none;
}

.story-article-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-500);
  font-style: italic;
}

body.story-lightbox-open {
  overflow: hidden;
}

.story-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px 28px;
  background: rgba(13, 31, 53, 0.88);
  backdrop-filter: blur(2px);
}

.story-lightbox[hidden] {
  display: none;
}

.story-lightbox-image {
  display: block;
  max-width: min(96vw, 1400px);
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.story-lightbox-caption {
  max-width: min(96vw, 900px);
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.story-lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}

.story-lightbox-close:hover,
.story-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.story-article-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 24px;
  padding: 0;
}

.story-article-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
}

.story-article-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.story-quote {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--gray-50);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.story-quote p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 12px;
}

.story-quote cite {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  font-style: normal;
}

.story-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.story-sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  padding: 22px 24px;
}

.story-sidebar-card h3 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.story-sidebar-card p {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.story-sidebar-card .story-sidebar-summary {
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--gray-600);
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 3px;
  padding: 5px 10px;
}

.story-sidebar-cta {
  width: 100%;
  text-align: center;
}

.story-not-found .page-hero {
  min-height: 320px;
}

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

  .story-card-image {
    min-height: 200px;
  }

  .story-card-body {
    padding: 28px 24px 32px;
  }

  .story-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-article {
    padding: 28px 22px 36px;
  }

  .story-detail-sidebar {
    position: static;
  }

  .stories-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
  }

  .stories-toolbar-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .stories-filter-search {
    flex: 1;
    min-width: 0;
    gap: 0;
  }

  .stories-filter-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .stories-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--white);
    border: 1.5px solid var(--gold);
    border-radius: 3px;
    padding: 0 14px;
    min-height: 38px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
  }

  .stories-filter-toggle:hover,
  .stories-filter-toggle.is-active {
    background: var(--gold);
    color: var(--white);
  }

  .stories-filters-panel {
    display: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: end;
  }

  .stories-filters-panel.is-open {
    display: grid;
  }

  .stories-filters-panel .stories-toolbar-sort {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .stories-filter,
  .stories-toolbar-sort {
    flex: none;
    min-width: 0;
    gap: 4px;
  }

  .stories-filter label,
  .stories-toolbar-sort label {
    font-size: 9px;
  }

  .stories-filter input,
  .stories-filter select,
  .stories-toolbar-sort select {
    padding: 8px 10px;
    font-size: 13px;
  }

  .section-stories {
    padding: 32px 0 56px;
  }

  .stories-count {
    margin-bottom: 14px;
  }
}

@media (max-width: 600px) {
  .story-card:hover {
    transform: none;
    box-shadow: none;
  }

  .story-detail-hero-content {
    padding-top: 36px;
    padding-bottom: 44px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
