:root {
    --navy-950: #061b2d;
    --navy-900: #0a2942;
    --navy-800: #123b5a;
    --blue-700: #19577f;
    --blue-100: #e9f1f6;
    --gold-500: #b78a35;
    --ink: #17232d;
    --muted: #5b6872;
    --line: #d7dfe4;
    --paper: #f5f7f8;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif;
}

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

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

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    background: var(--white);
    color: var(--navy-900);
    transform: translateY(-150%);
}

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

.official-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--navy-950);
    color: #d8e3eb;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.official-bar__content {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
}

.official-bar a {
    color: var(--white);
    font-weight: 700;
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--gold-500);
    background: var(--navy-900);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    color: #344550;
    font-size: 0.89rem;
    font-weight: 700;
}

.main-nav a {
    padding-block: 32px;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    border-bottom-color: var(--gold-500);
    color: var(--navy-900);
}

.menu-button {
    display: none;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy-900);
    padding: 10px 13px;
    font-size: 0.78rem;
    font-weight: 800;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--navy-900);
    background: var(--navy-900);
    color: var(--white);
    padding: 0 24px;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
    border-color: var(--gold-500);
    background: var(--navy-800);
    transform: translateY(-1px);
}

.button--small {
    min-height: 42px;
    padding-inline: 19px;
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.hero::before,
.hero::after {
    position: absolute;
    border: 1px solid #d8e1e6;
    content: "";
    pointer-events: none;
    transform: rotate(8deg);
}

.hero::before {
    top: 70px;
    right: -110px;
    width: 390px;
    height: 390px;
}

.hero::after {
    right: 35px;
    bottom: -260px;
    width: 480px;
    height: 480px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 585px;
    align-items: center;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 80px;
    padding-block: 78px;
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--blue-700);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    display: inline-block;
    width: 28px;
    height: 2px;
    margin: 0 10px 3px 0;
    background: var(--gold-500);
    content: "";
}

.hero h1,
.page-hero h1,
.section-heading h2,
.approach h2,
.contact h2 {
    margin: 0;
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3rem, 5vw, 4.75rem);
    line-height: 1.04;
}

.hero h1 span {
    color: var(--blue-700);
}

.hero-lead {
    max-width: 705px;
    margin: 26px 0 0;
    color: #41525e;
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.text-link {
    border-bottom: 1px solid #93a4ae;
    color: var(--navy-900);
    padding-block: 8px;
    font-size: 0.87rem;
    font-weight: 800;
}

.text-link span,
.card-link span {
    margin-left: 8px;
    color: var(--gold-500);
}

.hero-panel {
    border-top: 4px solid var(--gold-500);
    background: var(--navy-900);
    color: #dce7ee;
    padding: 36px;
    box-shadow: 18px 18px 0 rgba(10, 41, 66, 0.11);
}

.panel-heading {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-heading span,
.service-category {
    color: #9fb5c5;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.panel-heading strong {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.expertise-list {
    margin: 8px 0 0;
}

.expertise-list div {
    display: grid;
    align-items: center;
    grid-template-columns: 42px 1fr;
    padding-block: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.expertise-list dt {
    color: var(--gold-500);
    font-size: 0.72rem;
    font-weight: 900;
}

.expertise-list dd {
    margin: 0;
    color: var(--white);
    font-size: 0.91rem;
    font-weight: 700;
}

.hero-panel > p {
    margin: 22px 0 0;
    color: #b9cad5;
    font-size: 0.84rem;
    line-height: 1.7;
}

.credibility {
    background: var(--white);
    box-shadow: 0 12px 35px rgba(6, 27, 45, 0.07);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.credibility-grid > div {
    display: flex;
    min-height: 118px;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px;
    border-right: 1px solid var(--line);
}

.credibility-grid > div:first-child {
    border-left: 1px solid var(--line);
}

.credibility-grid strong {
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.04rem;
}

.credibility-grid span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.79rem;
}

.section {
    padding-block: 105px;
}

.section-heading {
    display: grid;
    align-items: end;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    margin-bottom: 48px;
}

.section-heading h2,
.approach h2,
.contact h2 {
    max-width: 720px;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    line-height: 1.08;
}

.section-heading > p,
.contact-grid > div > p:not(.eyebrow) {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    min-height: 390px;
    padding: 34px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    transition: background 160ms ease, transform 160ms ease;
}

.service-card:hover {
    background: var(--paper);
    transform: translateY(-3px);
}

.service-number {
    color: var(--gold-500);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.service-category {
    margin: 22px 0 0;
    color: var(--blue-700);
}

.service-card h3 {
    min-height: 54px;
    margin: 10px 0 13px;
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.15;
}

.service-card > p:not(.service-category) {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.68;
}

.card-link {
    display: inline-block;
    margin-top: 25px;
    color: var(--navy-900);
    font-size: 0.75rem;
    font-weight: 900;
}

.approach {
    background: var(--navy-900);
    color: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 100px;
}

.eyebrow--light {
    color: #b4c8d5;
}

.approach h2 {
    color: var(--white);
}

.approach-copy > p:last-child {
    margin: 28px 0 0;
    color: #bcccd6;
    line-height: 1.8;
}

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

.process-list li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 15px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li:first-child {
    padding-top: 0;
}

.process-list li > span {
    color: var(--gold-500);
    font-size: 0.75rem;
    font-weight: 900;
}

.process-list strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
}

.process-list p {
    margin: 7px 0 0;
    color: #aebfcb;
    font-size: 0.84rem;
    line-height: 1.6;
}

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

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: -25px 0 16px;
}

.carousel-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy-900);
    cursor: pointer;
    font-size: 1.1rem;
}

.portfolio-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 3px 3px 17px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.client-card {
    min-width: min(360px, 87vw);
    flex: 1 0 calc(33.333% - 14px);
    padding: 31px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--navy-800);
    background: var(--white);
    scroll-snap-align: start;
}

.client-logo {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--blue-100);
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.client-logo--image {
    background: var(--white);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.client-type {
    margin: 26px 0 7px;
    color: var(--blue-700);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.client-card h2,
.client-card h3 {
    margin: 0;
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.client-location {
    margin: 8px 0 0;
    color: #6e7d86;
    font-size: 0.76rem;
}

.client-card dl {
    margin: 26px 0 23px;
}

.client-card dl > div {
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.client-card dt {
    color: #7a8790;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.client-card dd {
    margin: 5px 0 0;
    color: #3e4e59;
    font-size: 0.82rem;
}

.client-link {
    color: var(--navy-900);
    font-size: 0.78rem;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
}

.contact-assurance {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 38px;
    padding: 22px 0 22px 25px;
    border-left: 3px solid var(--gold-500);
}

.contact-assurance strong {
    color: var(--navy-900);
    font-size: 0.9rem;
}

.contact-assurance span {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.contact-form,
.filters {
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--paper);
}

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

.contact-form label,
.filters label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--navy-900);
    font-size: 0.73rem;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.filters input,
.filters select {
    width: 100%;
    border: 1px solid #cbd5db;
    border-radius: 0;
    outline: none;
    background: var(--white);
    color: var(--ink);
    padding: 13px 14px;
    font-size: 0.84rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.filters input:focus,
.filters select:focus {
    border-color: var(--blue-700);
    box-shadow: 0 0 0 3px rgba(25, 87, 127, 0.12);
}

.contact-form textarea {
    resize: vertical;
}

.consent {
    display: grid !important;
    align-items: start;
    grid-template-columns: 18px 1fr;
}

.consent input {
    width: 16px;
    margin-top: 2px;
}

.consent span {
    color: var(--muted);
    line-height: 1.5;
}

.form-hidden {
    position: absolute;
    left: -10000px;
}

.notice {
    margin-bottom: 18px;
    padding: 15px 17px;
    border: 1px solid;
    font-size: 0.82rem;
}

.notice--success {
    border-color: #9ac3a6;
    background: #edf7f0;
    color: #225a32;
}

.notice--error {
    border-color: #d6a3a3;
    background: #fbefef;
    color: #7a2929;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.page-hero::after {
    position: absolute;
    top: -140px;
    right: -100px;
    width: 390px;
    height: 390px;
    border: 1px solid #d4dfe5;
    content: "";
    transform: rotate(12deg);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-inline: auto;
    padding-block: 95px;
}

.page-hero--compact .page-hero__content {
    padding-block: 72px;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.35rem);
    line-height: 1.05;
}

.page-hero__content > p:last-child,
.client-hero__grid > div > p:not(.eyebrow) {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.service-detail-list {
    max-width: 970px;
}

.service-detail {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 35px;
    padding: 62px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 110px;
}

.service-detail:first-child {
    padding-top: 0;
}

.service-detail__index {
    color: var(--gold-500);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.service-detail .service-category {
    margin: 0 0 9px;
    color: var(--blue-700);
}

.service-detail h2,
.client-detail-grid h2 {
    margin: 0;
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.service-detail__lead {
    color: #334954 !important;
    font-size: 1.05rem !important;
    font-weight: 700;
}

.service-detail p:not(.service-category) {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.8;
}

.inline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 55px;
    padding: 38px;
    border-left: 4px solid var(--gold-500);
    background: var(--navy-900);
    color: var(--white);
}

.inline-cta div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.inline-cta span {
    color: #9fb5c5;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.inline-cta strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.inline-cta .button {
    border-color: var(--white);
    white-space: nowrap;
}

.filters {
    align-items: end;
    grid-template-columns: 1fr 0.7fr auto;
    margin-bottom: 38px;
}

.filters label {
    margin: 0;
}

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

.clients-grid .client-card {
    min-width: 0;
}

.empty-state {
    padding: 52px;
    border: 1px solid var(--line);
    background: var(--paper);
    text-align: center;
}

.empty-state strong {
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
}

.empty-state p {
    margin: 10px 0 0;
    color: var(--muted);
}

.client-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 220px;
    gap: 80px;
    padding-block: 85px;
}

.client-hero__logo {
    display: grid;
    width: 200px;
    height: 200px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
}

.client-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.client-hero__logo span {
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 700;
}

.client-detail-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 85px;
}

.client-detail-grid aside {
    position: sticky;
    top: 125px;
}

.client-detail-grid aside > p:last-child {
    color: var(--muted);
    line-height: 1.7;
}

.engagement {
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.engagement:first-child {
    padding-top: 0;
}

.engagement__meta {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--muted);
    font-size: 0.75rem;
}

.status {
    border: 1px solid #aab5bc;
    padding: 6px 9px;
    color: #566670;
    font-weight: 900;
    text-transform: uppercase;
}

.status--active {
    border-color: #84b294;
    background: #edf7f0;
    color: #27643a;
}

.engagement .service-category {
    margin: 24px 0 8px;
    color: var(--blue-700);
}

.engagement h3 {
    margin: 0;
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.engagement > p:last-child {
    color: var(--muted);
    line-height: 1.8;
}

.legal-copy__inner {
    max-width: 850px;
}

.legal-copy h2 {
    margin: 40px 0 12px;
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
}

.legal-copy h2:first-child {
    margin-top: 0;
}

.legal-copy p {
    color: var(--muted);
    line-height: 1.85;
}

.site-footer {
    background: var(--navy-950);
    color: #b9cad5;
}

.footer-main {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1.25fr 0.75fr;
    gap: 50px;
    padding-block: 55px;
}

.brand--footer .brand-mark {
    background: var(--white);
    color: var(--navy-900);
}

.brand--footer .brand-copy strong {
    color: var(--white);
}

.brand--footer .brand-copy small {
    color: #9eb4c2;
}

.footer-main p {
    max-width: 380px;
    font-size: 0.83rem;
    line-height: 1.7;
}

.footer-main address {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 0.76rem;
    font-style: normal;
}

.footer-main nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    min-height: 65px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #8299a8;
    font-size: 0.69rem;
}

@media (max-width: 980px) {
    .header-inner {
        position: relative;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: 86px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 20px 35px rgba(6, 27, 45, 0.12);
    }

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

    .main-nav a {
        padding: 16px 20px;
        border-bottom: 1px solid var(--line);
    }

    .hero-grid,
    .approach-grid,
    .contact-grid,
    .client-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .client-detail-grid aside {
        position: static;
    }

    .section-heading {
        align-items: start;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-grid,
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-main nav {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .shell {
        width: min(100% - 32px, 1180px);
    }

    .official-bar,
    .header-contact {
        display: none;
    }

    .header-inner {
        min-height: 72px;
    }

    .main-nav {
        top: 72px;
    }

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

    .hero-grid {
        min-height: 0;
        padding-block: 55px 65px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

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

    .hero-panel {
        padding: 28px;
        box-shadow: 10px 10px 0 rgba(10, 41, 66, 0.1);
    }

    .credibility-grid,
    .service-grid,
    .clients-grid,
    .form-row,
    .footer-main,
    .filters,
    .client-hero__grid {
        grid-template-columns: 1fr;
    }

    .credibility-grid > div,
    .credibility-grid > div:first-child {
        min-height: 98px;
        border-left: 1px solid var(--line);
    }

    .section {
        padding-block: 75px;
    }

    .service-card {
        min-height: 0;
    }

    .contact-form,
    .filters {
        padding: 24px;
    }

    .page-hero__content,
    .client-hero__grid {
        padding-block: 62px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-block: 45px;
    }

    .client-hero__logo {
        width: 150px;
        height: 150px;
    }

    .footer-bottom {
        justify-content: center;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html,
    .portfolio-track {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
