@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700&family=Montserrat:wght@500;700&display=swap");

:root {
    --bg: #f5f2ed;
    --surface: #ffffff;
    --surface-strong: #111111;
    --surface-soft: #efe8df;
    --text: #181818;
    --muted: #5a5a5a;
    --line: #d8d0c6;
    --brand: #d71920;
    --brand-dark: #ab1218;
    --accent: #111111;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Barlow Condensed", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(215, 25, 32, 0.08), transparent 24rem),
        linear-gradient(180deg, #fbf8f4 0%, var(--bg) 100%);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(24, 24, 24, 0.08);
    transition: background 180ms ease, backdrop-filter 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(49, 47, 50, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.brand img {
    width: 160px;
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--surface);
    color: var(--text);
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.site-header.is-scrolled .nav-toggle {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: none;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: var(--surface);
    color: var(--text);
}

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

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a[aria-current="page"] {
    background: transparent;
    color: var(--brand);
}

.nav-cta a {
    background: var(--brand);
    color: #fff;
}

.nav-cta a:hover {
    background: var(--brand-dark);
    color: #fff;
}

.hero {
    padding: 0;
}

.hero-shell {
    min-height: min(46rem, calc(100vh - 0.5rem));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(15, 15, 15, 0.22) 0%, rgba(15, 15, 15, 0.38) 38%, rgba(15, 15, 15, 0.62) 100%),
        url("/assets/images/image_hero.jpg") center 58% / cover no-repeat;
    background-color: #464646;
    position: relative;
}

.hero-inner,
.two-col {
    display: grid;
}

.two-col {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.hero-inner {
    justify-items: center;
    align-content: center;
    width: min(100%, 74rem);
    padding-top: clamp(7.5rem, 9vw, 9.5rem);
    padding-bottom: clamp(4.2rem, 6vw, 5.6rem);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(215, 25, 32, 0.16);
    background: rgba(215, 25, 32, 0.08);
    color: var(--brand);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0 0 0.75rem;
    line-height: 1.12;
}

h1 {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

h2 {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

h3 {
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    text-transform: uppercase;
}

h4 {
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.lead {
    font-size: 1.1rem;
    max-width: 62ch;
}

.hero-media,
.panel,
.cta-panel,
.form-card,
.card,
.logo-wall,
.stats-strip,
.footprint,
.leadership-grid article {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.section {
    padding: 2.5rem 0;
}

.section-head {
    max-width: 54rem;
    margin-bottom: 1.5rem;
}

.section-head-home {
    text-align: center;
    max-width: 68rem;
    margin: 0 auto 2.35rem;
}

.section-head-home h3 {
    margin-bottom: 0;
    color: #222;
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 300;
    line-height: 1;
}

.section-head-home h2 {
    margin-bottom: 0.55rem;
    color: #111;
    font-size: clamp(2.5rem, 4vw, 4.9rem);
    font-weight: 700;
    line-height: 0.96;
}

.section-head-home p {
    max-width: 56rem;
    margin: 0 auto;
    color: #666;
    font-size: clamp(1.2rem, 1.5vw, 1.55rem);
    line-height: 1.35;
    text-align: center;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

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

.button-primary:hover {
    background: var(--brand-dark);
}

.button-secondary {
    background: var(--surface);
    border: 1px solid var(--line);
}

.hero-kicker {
    margin: 0 0 0.45rem;
    color: #fff;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(1.7rem, 2.1vw, 2.55rem);
    font-weight: 300;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.hero h1 {
    max-width: 10.5ch;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(2.45rem, 4.3vw, 3.85rem);
    font-weight: 600;
    letter-spacing: -0.035em;
}

.hero-stats {
    width: min(100%, 67rem);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem;
    margin-top: clamp(3.4rem, 6vw, 4.6rem);
}

.hero-stat {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-stat-label {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(1.05rem, 1.4vw, 1.45rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hero-stat strong {
    display: block;
    color: #fff;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.05;
}

.hero-band {
    position: relative;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.03) 0 22%, transparent 22% 100%),
        linear-gradient(160deg, transparent 0 18%, rgba(255, 255, 255, 0.04) 18% 24%, transparent 24% 100%),
        linear-gradient(180deg, #525254 0%, #434345 100%);
}

.hero-band::before,
.hero-band::after {
    content: "";
    position: absolute;
    top: -10.3rem;
    height: 11.5rem;
    background: #ed1c24;
    width: 50%;
}

.hero-band::before {
    left: 0;
    clip-path: polygon(0 10%, 100% 78%, 100% 100%, 0 58%);
}

.hero-band::after {
    right: 0;
    clip-path: polygon(0 78%, 100% 10%, 100% 58%, 0 100%);
}

.hero-band-inner {
    position: relative;
    padding: 5.6rem 0 2.4rem;
}

.hero-intro {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 0.75rem;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(1.22rem, 1.5vw, 1.55rem);
    font-weight: 400;
    line-height: 1.34;
    text-align: center;
}

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

.stat {
    background: var(--surface);
    border: 1px solid rgba(24, 24, 24, 0.06);
    padding: 1.35rem;
    border-radius: 20px;
}

.stat strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--brand);
}

.logo-wall {
    background: var(--surface);
    padding: 1.4rem;
}

.logo-wall-flat,
.logo-wall-gray {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
}

.logo-grid a,
.logo-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 122px;
    padding: 1rem;
    border: 1px solid rgba(24, 24, 24, 0.07);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #faf8f5);
}

.logo-grid img {
    max-height: 70px;
    width: auto;
}

.logo-grid-flat {
    gap: 0.5rem 1.25rem;
}

.logo-grid-flat a,
.logo-grid-flat div {
    min-height: 8.8rem;
    padding: 0.4rem;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.logo-grid-flat img {
    max-height: 7rem;
    mix-blend-mode: multiply;
}

.logo-grid-brands {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.logo-grid-brands a {
    min-height: 8.8rem;
    padding: 0.8rem 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.logo-grid-brands img {
    max-height: 6.9rem;
}

.service-grid,
.leadership-grid,
.footprint-grid,
.contact-grid,
.feature-grid {
    display: grid;
    gap: 1rem;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: var(--surface);
    padding: 1.5rem;
}

.card img.icon {
    width: 88px;
    margin: 0 auto 1rem;
}

.card.center {
    text-align: center;
}

.home-section {
    padding: 5.4rem 0 3rem;
}

.home-brands {
    background: #f2f2f2;
    margin-top: 1.3rem;
    padding-top: 5.4rem;
}

.home-offerings {
    padding-top: 5rem;
    padding-bottom: 4.6rem;
}

.offerings-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
    margin-top: 2rem;
}

.offering-item {
    text-align: center;
}

.offering-item h4 {
    margin-bottom: 0.7rem;
    color: var(--brand);
    font-size: 1.95rem;
    font-weight: 400;
    line-height: 1;
}

.offering-item .icon {
    width: auto;
    max-width: 100%;
    height: 8.6rem;
    margin: 0 auto;
    object-fit: contain;
}

.offerings-cta {
    margin-top: 1.8rem;
    text-align: center;
}

.learn-more-button,
.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9rem;
    padding: 0.85rem 1.5rem;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.learn-more-button {
    background: var(--brand);
    border: 2px solid var(--brand);
    color: #fff;
}

.learn-more-button:hover {
    background: #fff;
    border-color: var(--brand);
    color: var(--brand);
}

.footer-cta-button {
    background: #fff;
    border: 2px solid #fff;
    color: var(--brand);
}

.footer-cta-button:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.cta-panel {
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.94), rgba(124, 16, 20, 0.94)),
        url("/assets/images/background.png") center/cover no-repeat;
    color: #fff;
    padding: 2rem;
}

.cta-panel p,
.dark-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.stats-strip {
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.78)),
        url("/assets/images/graybanner.jpg") center/cover no-repeat;
    color: #fff;
    padding: 1.4rem;
}

.stats-strip .stats {
    gap: 1rem;
}

.stats-strip .stat {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.footprint {
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.6), rgba(17, 17, 17, 0.72)),
        url("/assets/images/agency-background2x.jpg") center/cover no-repeat;
    padding: 2rem;
    color: #fff;
}

.footprint-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footprint-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.25rem;
    text-align: center;
}

.footprint-card img {
    width: 84px;
    margin: 0 auto 0.9rem;
}

.leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leadership-grid article {
    background: var(--surface);
}

.leadership-grid img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
}

.leadership-grid .bio {
    padding: 1.2rem;
}

.subhero {
    padding: 4rem 0 1.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
        url("/assets/images/subpage-header2x.png") center/cover no-repeat;
    border-bottom: 1px solid rgba(24, 24, 24, 0.08);
}

.overlay-nav-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.overlay-nav-page .site-header.is-scrolled {
    background: rgba(49, 47, 50, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.overlay-nav-page .header-inner {
    position: relative;
    min-height: 6.6rem;
    justify-content: flex-end;
}

.overlay-nav-page .brand {
    position: absolute;
    left: 50%;
    top: 1.05rem;
    transform: translateX(-50%);
}

.overlay-nav-page .brand img {
    width: clamp(13rem, 18vw, 17rem);
}

.overlay-nav-page .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-right: 0.2rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(70, 67, 69, 0.92);
    box-shadow: none;
}

.overlay-nav-page .nav-toggle::before {
    color: currentColor;
}

.overlay-nav-page .site-header.is-scrolled .nav-toggle {
    color: #fff;
}

.overlay-nav-page .site-nav {
    position: fixed;
    top: 0;
    right: 2.75rem;
    width: 13.5rem;
    padding-top: 7rem;
    display: none;
}

.overlay-nav-page .site-nav.is-open {
    display: block;
}

.overlay-nav-page .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.3rem 1.5rem 1.4rem;
    border-radius: 0;
    background: rgba(65, 64, 66, 0.96);
    box-shadow: none;
}

.overlay-nav-page .site-nav a {
    justify-content: flex-end;
    padding: 0.15rem 0;
    border-radius: 0;
    color: #fff;
}

.overlay-nav-page .site-nav a:hover,
.overlay-nav-page .site-nav a[aria-current="page"] {
    background: transparent;
    color: var(--brand);
}

.overlay-nav-page .subhero {
    padding: 8.25rem 0 2rem;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.82)),
        url("/assets/images/subpage-header2x.png") center/cover no-repeat;
}

.overlay-nav-page .subhero .eyebrow {
    margin-bottom: 0.5rem;
}

.overlay-nav-page .subhero h1 {
    margin-bottom: 0.65rem;
}

.overlay-nav-page .subhero .lead,
.offerings-overview .section-head-home p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.offerings-overview {
    padding-top: 1rem;
}

.offerings-grid {
    gap: 1.8rem 1.4rem;
    margin-top: 0.4rem;
}

.offering-card {
    text-align: center;
    background: transparent;
    padding: 0.5rem 0.25rem;
}

.offering-card .icon {
    width: auto;
    height: 7.6rem;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.offering-card h3 {
    margin-bottom: 0.55rem;
    color: var(--brand);
    font-size: 1.95rem;
    font-weight: 400;
}

.offering-card p {
    color: #666;
    font-size: 1.02rem;
    line-height: 1.45;
}

.offerings-stats-section {
    padding-top: 1rem;
}

.contact-section {
    padding-top: 2rem;
}

.contact-page .form-card {
    max-width: 64rem;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.08);
    padding: 2rem;
}

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

.contact-page .contact-grid {
    grid-template-columns: 1fr;
}

.form-card,
.panel {
    background: var(--surface);
    padding: 1.5rem;
}

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

.form-field {
    display: grid;
    gap: 0.4rem;
}

.form-field.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 700;
    color: var(--text);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font: inherit;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(215, 25, 32, 0.16);
    border-color: rgba(215, 25, 32, 0.45);
}

.assistive {
    position: absolute;
    left: -9999px;
}

.status {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.status.success {
    background: rgba(10, 122, 78, 0.12);
    color: #0a6f4a;
}

.status.error {
    background: rgba(215, 25, 32, 0.1);
    color: #962226;
}

.site-footer {
    margin-top: 3rem;
}

.footer-cta {
    background: var(--brand);
    color: #fff;
    padding: 1.2rem 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-cta h3,
.footer-cta p {
    color: #fff;
    margin: 0;
}

.footer-cta h3 {
    font-size: 2rem;
    font-weight: 400;
}

.footer-bottom {
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.72);
    padding: 1rem 0;
    font-size: 0.95rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.home-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.home-page .site-header.is-scrolled {
    background: rgba(49, 47, 50, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.home-page .header-inner {
    position: relative;
    min-height: 6.6rem;
    justify-content: flex-end;
}

.home-page .brand-home {
    position: absolute;
    left: 50%;
    top: 1.05rem;
    transform: translateX(-50%);
}

.home-page .brand-home img {
    width: clamp(13rem, 18vw, 17rem);
}

.nav-toggle-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-right: 0.2rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nav-toggle-home::before {
    content: "\2630";
    color: #fff;
    font-size: 2.35rem;
    line-height: 1;
}

.home-page .site-nav {
    position: fixed;
    top: 0;
    right: 2.75rem;
    width: 13.5rem;
    padding-top: 7rem;
    display: none;
}

.home-page .site-nav.is-open {
    display: block;
}

.home-page .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.3rem 1.5rem 1.4rem;
    border-radius: 0;
    background: rgba(65, 64, 66, 0.96);
    box-shadow: none;
}

.home-page .site-nav a {
    justify-content: flex-end;
    padding: 0.15rem 0;
    border-radius: 0;
    color: #fff;
}

.home-page .site-nav a:hover,
.home-page .site-nav a[aria-current="page"] {
    background: transparent;
    color: var(--brand);
}

.home-page .nav-cta a {
    background: transparent;
}

.small-note {
    font-size: 0.9rem;
}

@media (max-width: 960px) {
    .two-col,
    .contact-grid,
    .service-grid,
    .leadership-grid,
    .footprint-grid,
    .logo-grid,
    .offerings-strip {
        grid-template-columns: 1fr;
    }

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

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        padding: 0 1rem 1rem;
        display: none;
    }

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

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        background: var(--surface);
        border-radius: 22px;
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .site-nav a {
        width: 100%;
        justify-content: center;
    }

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

    .hero-shell {
        min-height: auto;
    }

    .hero-inner {
        width: min(100%, 42rem);
        padding-top: 6.3rem;
        padding-bottom: 3.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        width: min(100%, 20rem);
        gap: 0.9rem;
    }

    .hero-band::before,
    .hero-band::after {
        top: -4.8rem;
        height: 5.3rem;
    }

    .hero-band-inner {
        padding-top: 2.6rem;
        padding-bottom: 1.4rem;
    }

    .home-page .site-nav {
        position: fixed;
        top: 0;
        left: auto;
        right: 0;
        width: min(100%, 14rem);
        padding: 5.2rem 0 0;
    }

    .home-page .site-nav ul {
        background: rgba(65, 64, 66, 0.96);
        border-radius: 0;
        padding: 1rem 1.25rem 1.2rem;
        box-shadow: none;
    }

    .home-page .site-nav a {
        justify-content: flex-end;
    }

    .home-page .brand-home {
        top: 1rem;
    }

    .home-page .brand-home img {
        width: clamp(10.5rem, 42vw, 13rem);
    }

    .overlay-nav-page .site-nav {
        position: fixed;
        top: 0;
        left: auto;
        right: 0;
        width: min(100%, 14rem);
        padding: 5.2rem 0 0;
    }

    .overlay-nav-page .site-nav ul {
        background: rgba(65, 64, 66, 0.96);
        border-radius: 0;
        padding: 1rem 1.25rem 1.2rem;
        box-shadow: none;
    }

    .overlay-nav-page .site-nav a {
        justify-content: flex-end;
    }

    .overlay-nav-page .brand {
        top: 1rem;
    }

    .overlay-nav-page .brand img {
        width: clamp(10.5rem, 42vw, 13rem);
    }

    .home-section {
        padding-top: 3rem;
    }

    .section-head-home h3 {
        font-size: 1.8rem;
    }

    .section-head-home h2 {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
    }

    .logo-grid-flat {
        gap: 0.2rem;
    }

    .logo-grid-flat a,
    .logo-grid-flat div,
    .logo-grid-brands a {
        min-height: 6rem;
    }

    .offering-item .icon {
        height: 7rem;
    }

    .footer-cta-button,
    .learn-more-button {
        min-width: 8rem;
    }
}
