@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: clamp(280px, 60vw, 420px);
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    padding: 74px clamp(18px, 3vw, 30px) 28px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    background:
      linear-gradient(180deg, rgba(5,47,68,.96), rgba(10,126,124,.96) 48%, rgba(122,115,74,.96));
    color: #f5f8f3;
    border-left: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: -22px 0 58px rgba(5,47,68,.16);
    transform: translateX(105%);
    transition: transform .24s cubic-bezier(.2,.8,.2,1);
  }
  [data-theme="dark"] .nav-links {
    background:
      linear-gradient(180deg, rgba(5,47,68,.96), rgba(10,126,124,.96) 48%, rgba(122,115,74,.96));
    color: #f5f8f3;
    border-left-color: rgba(245,248,243,.32);
    box-shadow: -24px 0 70px rgba(5,47,68,.26);
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-links::before {
    content: "Welcome to SIMSAA";
    display: block;
    margin: 0 auto 18px;
    max-width: 11ch;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 8vw, 3.4rem);
    font-weight: 800;
    line-height: .9;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 18px 36px rgba(0,0,0,.26);
  }
  .nav-links::after {
    content: "Consulting • Staffing • Systems";
    display: block;
    margin: 20px auto 0;
    padding-top: 14px;
    width: min(100%, 320px);
    color: rgba(255,255,255,.78);
    border-top: 1px solid rgba(245,248,243,.22);
    font-size: .72rem;
    font-weight: 780;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
  }
  .nav-links a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(.86rem, 1.7vw, 1rem);
    padding: 10px 10px;
    text-align: center;
    border-radius: 0;
    background: transparent;
    color: currentColor;
    border: 0;
    border-bottom: 1px solid rgba(245,248,243,.22);
    box-shadow: none;
    text-shadow: 0 2px 10px rgba(0,0,0,.28);
  }
  .nav-item {
    width: 100%;
  }
  .nav-mega::after { display: none; }
  .nav-mega > .mega-trigger::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .22s ease;
  }
  .nav-mega.is-expanded > .mega-trigger::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }
  .nav-mega .mega-panel {
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(6,17,15,.38), rgba(10,126,124,.18)),
      rgba(255,255,255,.055);
    box-shadow: none;
    transition: max-height .32s cubic-bezier(.2,.8,.2,1), margin .22s ease, padding .22s ease;
  }
  .nav-mega.is-expanded .mega-panel {
    max-height: 1400px;
    margin: 8px 0 12px;
    padding: 10px;
    pointer-events: auto;
  }
  .mega-panel-head {
    display: none;
  }
  .mega-panel-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 0;
  }
  .mega-menu-section {
    padding: 0;
    background: rgba(6,17,15,.16);
    border-color: rgba(245,248,243,.16);
  }
  .mega-section-title {
    min-height: 46px;
    margin: 0;
    padding: 0 14px;
    color: #fff;
    font-size: .66rem;
    text-align: left;
    cursor: pointer;
  }
  .mega-section-title > span {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .22s ease;
  }
  .mega-section-title[aria-expanded="true"] > span { transform: rotate(225deg); }
  .mega-section-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 9px;
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, padding .2s ease;
  }
  .mega-section-title[aria-expanded="true"] + .mega-section-content {
    max-height: 700px;
    padding: 0 9px 10px;
    opacity: 1;
  }
  .mega-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
  }
  .mega-feature-card {
    min-height: 78px;
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 10px;
  }
  .mega-icon {
    width: 32px;
    border-radius: 6px;
    font-size: .6rem;
  }
  .mega-feature-card strong {
    font-size: .72rem;
  }
  .mega-feature-card small {
    font-size: .61rem;
  }
  .mega-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .mega-link-grid--services,
  .mega-link-grid--industries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-link-grid a {
    min-height: 34px;
    padding: 7px 6px;
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(245,248,243,.14);
    background: rgba(255,255,255,.045);
    font-size: .58rem;
    text-shadow: none;
  }
  .mega-link-grid a:hover {
    color: #06110f;
  }
  .mega-view-more {
    min-height: 48px !important;
    margin-top: 9px;
    padding: 11px 14px !important;
    border-bottom: 1px solid rgba(210,168,97,.65) !important;
    font-size: .68rem !important;
  }
  .nav-links a[aria-current="page"],
  .nav-links a:hover {
    color: #ffffff;
    background: rgba(6,17,15,.42);
    border-color: rgba(245,248,243,.42);
    box-shadow: inset 0 0 0 1px rgba(245,248,243,.2);
  }
  [data-theme="dark"] .nav-links a[aria-current="page"],
  [data-theme="dark"] .nav-links a:hover {
    color: #ffffff;
    background: rgba(6,17,15,.42);
  }
  .nav-links a[aria-current="page"]::after {
    left: 50%;
    right: auto;
    width: 42px;
    transform: translateX(-50%);
  }
  .nav-links .mobile-cta {
    margin-top: 14px;
    color: #ffffff;
    background: #06110f;
    border: 1px solid rgba(245,248,243,.32);
    border-radius: 9px;
    box-shadow: 0 18px 36px rgba(5,47,68,.24);
    overflow: hidden;
    position: relative;
  }
  .nav-links .mobile-cta:hover {
    color: #ffffff;
    background: #0f2f2c;
  }
  .nav-links .mobile-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(-75deg, transparent 32%, rgba(255,255,255,.7) 50%, transparent 68%);
    background-size: 220% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    animation: menu-cta-shine 2s linear infinite;
  }
  .menu-toggle {
    display: inline-grid;
    position: relative;
    z-index: 120;
    color: var(--teal-900);
    background: color-mix(in srgb, var(--teal-700) 10%, white);
    border: 1px solid color-mix(in srgb, var(--teal-700) 24%, transparent);
  }
  [data-theme="dark"] .menu-toggle {
    color: #f5f1e8;
    background: rgba(39,166,161,.14);
    border-color: rgba(39,166,161,.28);
  }
  .nav-actions .btn { display: none; }
  .mobile-cta {
    display: inline-flex;
    background: transparent;
    color: currentColor;
    border-color: transparent;
    box-shadow: none;
  }
  .mobile-cta:hover {
    background: transparent;
    color: var(--aqua-400);
    box-shadow: none;
  }
  [data-theme="dark"] .mobile-cta {
    background: transparent;
    color: #f5f1e8;
    border-color: transparent;
    box-shadow: none;
  }
  .two-col { grid-template-columns: 1fr; }
  .who-grid {
    grid-template-columns: minmax(0, .94fr) minmax(280px, .72fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
  }
  .why-grid {
    grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
    gap: clamp(24px, 4vw, 52px);
  }
  .why-copy {
    max-width: 620px;
  }
  .why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .careers-intro-grid,
  .career-process-grid {
    grid-template-columns: 1fr;
  }
  .career-visual {
    width: min(100%, 620px);
    justify-self: center;
  }
  .who-copy h2 {
    font-size: clamp(2.55rem, 5.8vw, 4.15rem);
  }
  .who-copy .lead {
    max-width: 640px;
  }
  .who-illustration {
    min-height: clamp(300px, 39vw, 390px);
    width: min(100%, 430px);
    justify-self: end;
  }
  .who-photo-wrap {
    width: min(76%, 340px);
    right: 2%;
    top: 12%;
  }
  .who-shape-teal {
    width: min(42%, 180px);
  }
  .who-dot-pattern {
    width: min(58%, 250px);
    height: 92px;
  }
  .service-highlights {
    min-height: auto;
  }
  .service-highlights .three-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .service-highlights .tile {
    min-height: 205px;
  }
  .services-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-growth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-story-grid {
    grid-template-columns: 1fr;
  }
  .service-story-visual {
    min-height: 430px;
  }
  .tech-capability-grid,
  .service-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tech-project-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-row {
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  }
  .article-row .article-tag {
    grid-column: 2;
    justify-self: start;
  }
  .article-card:nth-child(1),
  .article-card:nth-child(6n) {
    grid-column: span 1;
  }
  .industry-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-card.is-tall {
    grid-row: span 1;
    min-height: clamp(260px, 32vw, 360px);
  }
  .industry-card.is-tall {
    grid-row: span 1;
    min-height: clamp(260px, 32vw, 360px);
  }
  .about-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-card {
    min-height: 260px;
  }
  .perspective-carousel { min-height: 390px; }
  .carousel-stage { height: 300px; }
  main > section#industries {
    padding-block: 36px 54px;
  }
  main > section#industries .perspective-carousel {
    min-height: 360px;
  }
  main > section#industries .carousel-stage {
    height: 300px;
  }
  .carousel-card { width: min(72vw, 220px); }
  .four-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-studio-grid { grid-template-columns: 1fr minmax(220px, .8fr) 1fr; }
  .industry-detail-grid {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map-card {
    order: -1;
  }
  .map-frame {
    min-height: clamp(320px, 54vw, 460px);
  }
}

@media (max-width: 1100px) {
  .nav-links { font-size: inherit; }
  .nav-mega > .mega-trigger::after { display: none; }
  .nav-mega .nav-chevron {
    width: 8px;
    height: 8px;
    margin-left: 3px;
    border-width: 2px;
  }
  .nav-mega.is-expanded .nav-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
  }
  .nav-mega .mega-panel {
    position: static;
    width: 100%;
    padding: 0;
    border-radius: 8px;
    transform: none;
  }
  .nav-mega:hover .mega-panel,
  .nav-mega:focus-within .mega-panel {
    transform: none;
  }
  .nav-mega.is-expanded .mega-panel {
    max-height: 560px;
    padding: 12px;
  }
  .nav-mega .mega-panel-head {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .nav-mega .mega-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-mega .mega-link-grid a {
    min-height: 40px;
    justify-content: flex-start;
    padding: 8px 10px;
    font-size: .68rem;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .nav-mega .mega-link-grid { grid-template-columns: 1fr; }
}

@keyframes menu-cta-shine {
  from { background-position: 120% 0; opacity: .2; }
  45% { opacity: 1; }
  to { background-position: -120% 0; opacity: .2; }
}

@media (min-width: 1101px) {
  .mobile-cta { display: none; }
}

@media (max-width: 780px) {
  :root { --gutter: 18px; }
  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 0;
    gap: 0;
  }
  .brand-name {
    display: none;
  }
  .brand img { width: 82px; height: 82px; }
  .site-header {
    top: 0;
    width: 100%;
    background:
      linear-gradient(90deg, rgba(10,142,139,.96) 0%, rgba(47,135,119,.94) 48%, rgba(189,164,101,.9) 100%);
    border: 0;
    border-radius: 0;
    box-shadow: 0 12px 38px rgba(5,8,6,.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header.is-scrolled {
    background:
      linear-gradient(90deg, rgba(10,142,139,.96) 0%, rgba(47,135,119,.94) 48%, rgba(189,164,101,.9) 100%);
    border-color: transparent;
    box-shadow: 0 14px 44px rgba(5,8,6,.18);
  }
  .nav-wrap {
    position: relative;
    min-height: 58px;
    justify-content: space-between;
    padding-inline: 8px;
  }
  .nav-actions {
    gap: 7px;
    margin-left: auto;
  }
  .switch,
  .menu-toggle {
    background: rgba(229,241,235,.58);
    color: #052f44;
    border-color: rgba(15,107,118,.26);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 999px;
  }
  [data-theme="dark"] .switch,
  [data-theme="dark"] .menu-toggle {
    background: rgba(39,166,161,.2);
    color: #f5f1e8;
    border-color: rgba(245,248,243,.24);
  }
  .brand img { width: 82px; height: 82px; }
  h1 { font-size: clamp(3rem, 17vw, 4.35rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .three-col, .four-col, .stat-strip, .form-grid { grid-template-columns: 1fr; }
  .service-highlights .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .service-highlights .tile {
    min-height: 215px;
  }
  .modal-panel {
    overflow: hidden;
    padding: 18px;
  }
  .modal-head {
    gap: 10px;
    margin-bottom: 10px;
  }
  .modal-panel h2 {
    margin-bottom: 6px;
    font-size: clamp(1.65rem, 8.5vw, 2.45rem);
    line-height: .94;
  }
  .modal-panel .muted {
    font-size: .86rem;
    line-height: 1.35;
  }
  .modal-close {
    width: 36px;
    height: 36px;
  }
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  label {
    font-size: .72rem;
  }
  input,
  select,
  textarea {
    min-height: 40px;
    font-size: .86rem;
    padding-block: 7px;
  }
  textarea {
    min-height: 60px;
  }
  .bento-modal .modal-panel {
    max-height: calc(100svh - 18px);
    overflow-y: auto;
    padding: 52px 18px 18px;
  }
  .bento-modal-head {
    padding-inline: 0;
    margin-bottom: 12px;
  }
  .bento-detail-grid {
    gap: 10px;
    padding-inline: 10px;
  }
  .bento-detail-grid li p {
    font-size: .86rem;
    font-weight: 520;
    line-height: 1.36;
  }
  .form-modal.bento-modal .modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  .bento-actions .btn {
    width: 100%;
  }
  .service-row { grid-template-columns: 1fr; text-align: left; }
  .service-row h2,
  .service-row .lead { grid-column: auto; }
  .split-heading {
    grid-template-columns: 1fr;
  }
  .service-quote-strip,
  .service-detail-process-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-visual-grid {
    grid-template-columns: 1fr;
  }
  .service-story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-story-points {
    grid-template-columns: 1fr;
  }
  .service-story-visual {
    min-height: 360px;
  }
  .story-frame-1 {
    width: 72%;
    right: 2%;
  }
  .story-frame-2,
  .story-frame-3 {
    width: 46%;
  }
  .services-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .career-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .article-row {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding-block: 22px;
  }
  .article-row-media {
    aspect-ratio: 1.9;
  }
  .article-row .article-tag {
    grid-column: auto;
  }
  .blog-faq-item button {
    grid-template-columns: 44px 1fr 22px;
    gap: 12px;
    padding-block: 20px;
  }
  .blog-faq-item .faq-icon {
    width: 36px;
    height: 36px;
  }
  .blog-faq-item .faq-icon svg {
    width: 28px;
    height: 28px;
  }
  .blog-faq-item p {
    padding-inline: 56px 18px;
  }
  .industry-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card,
  .service-card.is-tall {
    min-height: 300px;
  }
  .industry-card,
  .industry-card.is-tall {
    min-height: 310px;
  }
  .hero { min-height: 100svh; padding: 0; }
  .hero .container { min-height: 100svh; }
  .hero h1 {
    font-size: clamp(2.15rem, 9.7vw, 3.9rem);
    letter-spacing: .07em;
    max-width: 96vw;
  }
  .hero .eyebrow {
    max-width: min(100%, 330px);
    letter-spacing: .22em;
  }
  .eyebrow {
    min-height: 38px;
    padding-inline: 18px;
    font-size: clamp(.76rem, 3vw, .92rem);
    letter-spacing: .18em;
  }
  .who-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-copy {
    order: -1;
    justify-self: start;
    max-width: 100%;
  }
  .why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-cards .info-panel {
    min-height: 180px;
  }
  .about-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-card {
    min-height: 230px;
    padding: 20px;
  }
  .about-card h3 {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }
  .about-card p {
    font-size: .86rem;
    line-height: 1.42;
  }
  .about-trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-metrics {
    grid-template-columns: 1fr;
  }
  .partner-logo-slot {
    flex-basis: 190px;
    height: 124px;
  }
  .who-copy {
    text-align: left;
  }
  .who-illustration {
    min-height: clamp(300px, 82vw, 360px);
    width: min(100%, 440px);
    margin-inline: auto;
    justify-self: center;
  }
  .who-photo-wrap {
    width: min(74%, 330px);
    right: 0;
    top: 10%;
  }
  .who-shape-teal {
    width: min(40%, 170px);
  }
  .who-dot-pattern {
    width: min(64%, 260px);
    height: 92px;
  }
  .perspective-carousel { min-height: 360px; }
  .carousel-stage { height: 280px; }
  main > section#industries {
    padding-block: 30px 44px;
  }
  main > section#industries .perspective-carousel {
    min-height: 330px;
  }
  main > section#industries .carousel-stage {
    height: 270px;
  }
  .testimonial-stack { min-height: 390px; margin-bottom: 64px; }
  .testimonial-controls { left: 50%; transform: translateX(-50%); }
  .node-card { width: 76%; }
  .node-card.two { top: 42%; }
  .standard-page-hero {
    min-height: 100svh;
    padding-block: 118px 64px;
  }
  .careers-intro-grid,
  .career-process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .career-visual {
    min-height: clamp(330px, 86vw, 430px);
    width: min(100%, 480px);
  }
  .career-visual-photo {
    inset: 10% 2% 8% 8%;
  }
  .career-metric {
    min-width: 132px;
    padding: 12px 13px;
  }
  .career-metric strong {
    font-size: 1.18rem;
  }
  .career-benefit-grid {
    grid-template-columns: 1fr;
  }
  .career-role .job-toggle {
    grid-template-columns: 48px 1fr 24px;
    gap: 12px;
  }
  .career-role-icon {
    width: 42px;
    height: 42px;
    font-size: .86rem;
  }
  .career-role-question small {
    font-size: .62rem;
    letter-spacing: .09em;
  }
  .career-role-question strong {
    font-size: clamp(1.18rem, 6vw, 1.7rem);
  }
  .career-role .job-details p,
  .career-role-tags,
  .career-role .apply-role {
    margin-left: 60px;
  }
  .career-benefit {
    min-height: 230px;
  }
  .career-step {
    grid-template-columns: 1fr;
  }
  .career-step p {
    grid-column: auto;
    margin-top: 0;
  }
  .hero-scatter span {
    width: clamp(108px, 34vw, 154px);
    opacity: .58;
  }
  .hero-scatter span:nth-child(1) { left: -5%; top: 18%; }
  .hero-scatter span:nth-child(2) { right: -6%; top: 19%; }
  .hero-scatter span:nth-child(3) { left: 4%; bottom: 10%; }
  .hero-scatter span:nth-child(4) { right: 2%; bottom: 12%; }
  .hero-scatter span:nth-child(n+5) { display: none; }
  .site-footer {
    min-height: auto;
    padding-top: clamp(96px, 26vw, 142px);
  }
  .footer-studio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .footer-nav,
  .footer-contact {
    justify-self: center;
    text-align: center;
  }
  .footer-nav a {
    width: auto;
  }
  .site-footer p {
    margin-inline: auto;
  }
  .footer-flip-rail {
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 100%;
    margin-inline: auto;
    gap: 7px;
    padding: 9px;
  }
  .footer-flip-node,
  .site-footer .footer-flip-node {
    width: 40px;
    height: 40px;
  }
  .footer-flip-card {
    transform: rotateY(180deg);
    transition-delay: 0ms;
  }
  .footer-flip-node::before,
  .footer-flip-node::after {
    display: none;
  }
  .footer-ornament span:nth-child(1),
  .footer-ornament span:nth-child(5) {
    display: none;
  }
  .footer-mega-name {
    margin-top: 28px;
    text-align: center;
  }
  .footer-mega-name span {
    font-size: clamp(4rem, 19vw, 8rem);
    letter-spacing: -.04em;
  }
  .footer-mega-name small {
    font-size: clamp(.9rem, 4.5vw, 1.7rem);
    line-height: 1.05;
  }
  .cta-band { border-radius: var(--radius-md); }
  .industry-detail-hero {
    min-height: auto;
  }
  .industry-detail-visual {
    min-height: 320px;
  }
  .location-info-grid {
    grid-template-columns: 1fr;
  }
  .location-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .mega-menu-section {
    padding: 9px;
  }
  .mega-feature-grid,
  .mega-link-grid,
  .mega-link-grid--services,
  .mega-link-grid--industries {
    grid-template-columns: 1fr;
  }
  .mega-feature-card {
    min-height: 66px;
  }
  .mega-link-grid a {
    min-height: 34px;
    font-size: .58rem;
  }
  .hero-actions, .cta-band .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-metric {
    min-height: 128px;
    padding: 18px 16px;
  }
  .trust-metric strong {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }
  .trust-metric span {
    font-size: .92rem;
  }
  .partner-marquee-track {
    min-height: 158px;
    padding: 0;
    gap: 0;
  }
  .partner-marquee-group { gap: 18px; padding-right: 18px; }
  .partner-logo-slot {
    flex-basis: 176px;
    height: 118px;
  }
  main > section#industries .perspective-carousel {
    min-height: 320px;
  }
  main > section#industries .carousel-stage {
    height: 260px;
  }
  .carousel-card { width: min(78vw, 210px); }
  .switch { font-size: 8.5px; }
  .brand img { width: 74px; height: 74px; }
  .brand-name { font-size: .76rem; }
  .brand-name span { max-width: 128px; font-size: .46rem; }
  .footer-flip-rail {
    gap: 5px;
    padding: 8px;
  }
  .footer-flip-node,
  .site-footer .footer-flip-node {
    width: 36px;
    height: 36px;
  }
  .footer-mega-name span {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }
  .who-points {
    gap: 8px;
  }
  .who-points span {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    font-size: .84rem;
  }
  .why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .about-card-grid {
    grid-template-columns: 1fr;
  }
  .about-statement,
  .about-trust-card {
    min-height: 240px;
  }
  .why-cards .info-panel {
    min-height: 170px;
    padding: 18px;
    padding-top: 72px;
  }
  .why-cards .info-panel h3 {
    font-size: clamp(.9rem, 4vw, 1.08rem);
    max-width: 11ch;
  }
  .why-cards .info-panel p {
    max-width: 22ch;
    font-size: .68rem;
    line-height: 1.28;
  }
  .why-cards .info-panel::before,
  .why-cards .info-panel::after {
    right: auto;
    top: 18px;
  }
  .why-cards .info-panel::before {
    left: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .why-cards .info-panel::after {
    left: calc(50% - 22px);
    width: 44px;
    height: 44px;
  }
  .service-highlights .tile {
    min-height: 190px;
    padding: 16px;
  }
  .service-highlights .tile h3 {
    font-size: clamp(1rem, 5vw, 1.28rem);
  }
  .service-highlights .tile p {
    font-size: .72rem;
    line-height: 1.3;
    -webkit-line-clamp: 3;
  }
  .service-highlights .tile::after,
  .service-highlights .tile .kicker {
    left: auto;
    top: auto;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }
  .service-highlights .tile .kicker { font-size: .9rem; }
  .services-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .service-growth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .growth-service-card {
    min-height: 128px;
    padding: 14px;
  }
  .growth-service-card strong {
    font-size: .95rem;
  }
  .growth-service-card span {
    font-size: .55rem;
  }
  .tech-suite-panel {
    padding: 18px;
    border-radius: 4px 24px 4px 24px;
  }
  .tech-capability-grid,
  .tech-project-grid,
  .service-project-grid {
    grid-template-columns: 1fr;
  }
  .tech-capability-card,
  .tech-project-card,
  .service-project-card {
    min-height: auto;
    padding: 18px;
  }
  .tech-suite-intro h3,
  .tech-projects-block h3 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }
  .industry-card-grid {
    grid-template-columns: 1fr;
  }
  .service-card.is-wide {
    grid-column: span 1;
  }
  .industry-card.is-wide {
    grid-column: span 1;
  }
  .service-card,
  .service-card.is-tall {
    min-height: 230px;
    padding: 14px;
  }
  .industry-card,
  .industry-card.is-tall {
    min-height: 300px;
    padding-top: 78px;
  }
  .service-card h3 {
    max-width: 10ch;
    font-size: clamp(1.08rem, 6vw, 1.55rem);
  }
  .service-card p {
    max-width: 20ch;
    font-size: .73rem;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-card .service-phase {
    font-size: .55rem;
  }
  .service-card-chip {
    min-height: 26px;
    margin-top: 10px;
    padding: 5px 8px;
    font-size: .62rem;
  }
  .service-card-num {
    width: 42px;
    font-size: .94rem;
    right: 12px;
    top: 12px;
  }
  .service-quote-strip {
    padding: 16px;
  }
  .service-detail-checks li {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 13px;
  }
  .service-detail-checks span {
    width: 36px;
  }
  .article-card {
    min-height: 310px;
  }
  .article-card h3 {
    max-width: 11ch;
    font-size: clamp(1.18rem, 6vw, 1.58rem);
  }
  .article-card .muted {
    font-size: .76rem;
    line-height: 1.34;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .article-content {
    padding: 16px;
  }
  .article-meta span,
  .article-tag {
    min-height: 24px;
    padding: 4px 7px;
    font-size: .54rem;
  }
  .article-card::after {
    width: 40px;
    height: 40px;
    right: 14px;
    top: 14px;
  }
  .industry-card h3 {
    max-width: 12ch;
    font-size: clamp(1.65rem, 9vw, 2.35rem);
  }
  .industry-card p {
    max-width: 29ch;
  }
  .location-map-card {
    padding: 10px;
    border-radius: 22px 2px 22px 2px;
  }
  .map-frame {
    min-height: 330px;
    border-radius: 18px 2px 18px 2px;
  }
  .who-illustration {
    min-height: 295px;
  }
  .who-photo-wrap {
    width: min(78%, 285px);
    right: 0;
  }
  .who-shape-teal {
    left: 4%;
    width: min(42%, 140px);
  }
  .who-orbit {
    width: min(68%, 250px);
  }
}
