:root {
    --elp-ink: #14262f;
    --elp-ink-soft: #29434f;
    --elp-blue: #0878b9;
    --elp-blue-dark: #075483;
    --elp-sky: #dff2fb;
    --elp-green: #2f8064;
    --elp-coral: #d95d45;
    --elp-mist: #f1f6f7;
    --elp-line: #d8e2e5;
    --elp-white: #ffffff;
    --elp-shell: 1180px;
    --elp-header-height: 82px;
}

.elp-controlled-page {
    margin: 0;
    color: var(--elp-ink);
    background: var(--elp-white);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

.elp-controlled-page * {
    box-sizing: border-box;
}

.elp-controlled-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.elp-controlled-page a {
    color: inherit;
}

.elp-controlled-page button,
.elp-controlled-page input,
.elp-controlled-page textarea,
.elp-controlled-page select {
    font: inherit;
}

.elp-shell {
    width: min(calc(100% - 48px), var(--elp-shell));
    margin-right: auto;
    margin-left: auto;
}

.elp-skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 10px 14px;
    color: var(--elp-white);
    background: var(--elp-ink);
}

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

.elp-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--elp-header-height);
    border-bottom: 1px solid var(--elp-line);
    background: rgba(255, 255, 255, 0.97);
}

.admin-bar .elp-header {
    top: 32px;
}

.elp-header__inner {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    align-items: center;
    height: 100%;
    gap: 28px;
}

.elp-brand {
    display: inline-flex;
    align-items: center;
    width: 182px;
    height: 72px;
    overflow: hidden;
}

.elp-brand img {
    width: 100%;
    transform: scale(1.22);
}

.elp-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    gap: 28px;
}

.elp-navigation a {
    position: relative;
    color: var(--elp-ink-soft);
    font-size: 15px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
}

.elp-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -11px;
    left: 0;
    height: 3px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: var(--elp-coral);
    transition: transform 160ms ease;
}

.elp-navigation a:hover::after,
.elp-navigation a:focus-visible::after,
.elp-navigation a[aria-current="page"]::after {
    transform: scaleX(1);
}

.elp-header__book,
.elp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 10px 19px;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.elp-header__book {
    color: var(--elp-white);
    background: var(--elp-blue);
}

.elp-header__book:hover,
.elp-header__book:focus-visible,
.elp-button--primary:hover,
.elp-button--primary:focus-visible {
    color: var(--elp-white);
    background: var(--elp-blue-dark);
    transform: translateY(-1px);
}

.elp-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.elp-nav-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--elp-ink);
}

.elp-main {
    min-height: 60vh;
}

.elp-site h1,
.elp-site h2,
.elp-site h3,
.elp-footer h2 {
    margin-top: 0;
    color: var(--elp-ink);
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1.12;
}

.elp-site h1 {
    margin-bottom: 24px;
    font-size: 62px;
}

.elp-site h2 {
    margin-bottom: 18px;
    font-size: 38px;
}

.elp-site h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.elp-site p {
    margin-top: 0;
    margin-bottom: 20px;
}

.elp-eyebrow {
    margin-bottom: 13px !important;
    color: var(--elp-coral);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.elp-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 620px;
    overflow: hidden;
    color: var(--elp-white);
    background-color: var(--elp-ink);
    background-image: url("../images/east-lothian-coast-runner.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.elp-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 68%;
    content: "";
    clip-path: polygon(0 0, 100% 0, 77% 100%, 0 100%);
    background: rgba(13, 42, 55, 0.88);
}

.elp-hero__content {
    padding-top: 76px;
    padding-bottom: 76px;
}

.elp-hero h1 {
    max-width: 690px;
    color: var(--elp-white);
    font-size: 68px;
}

.elp-hero__lead {
    max-width: 620px;
    font-size: 21px;
    line-height: 1.55;
}

.elp-button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.elp-button--primary {
    color: var(--elp-white);
    background: var(--elp-blue);
}

.elp-button--quiet {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--elp-white);
    background: transparent;
}

.elp-button--quiet:hover,
.elp-button--quiet:focus-visible {
    border-color: var(--elp-white);
    color: var(--elp-ink);
    background: var(--elp-white);
}

.elp-button--light {
    color: var(--elp-ink);
    background: var(--elp-white);
}

.elp-button--light:hover,
.elp-button--light:focus-visible {
    color: var(--elp-white);
    background: var(--elp-coral);
}

.elp-proof {
    border-bottom: 1px solid var(--elp-line);
    background: var(--elp-white);
}

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

.elp-proof__grid > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24px 32px;
    border-left: 1px solid var(--elp-line);
}

.elp-proof__grid > div:last-child {
    border-right: 1px solid var(--elp-line);
}

.elp-proof strong {
    color: var(--elp-blue-dark);
    font-size: 18px;
}

.elp-proof span {
    color: #536a75;
    font-size: 14px;
}

.elp-section {
    padding: 88px 0;
}

.elp-section--mist {
    border-top: 1px solid var(--elp-line);
    border-bottom: 1px solid var(--elp-line);
    background: var(--elp-mist);
}

.elp-section--ink {
    color: #dbe8ed;
    background: var(--elp-ink);
}

.elp-section--ink h2,
.elp-section--ink h3 {
    color: var(--elp-white);
}

.elp-section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.elp-section-heading > p:last-child {
    color: #4f6670;
    font-size: 18px;
}

.elp-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.elp-service-card {
    min-width: 0;
    min-height: 280px;
    border: 1px solid var(--elp-line);
    border-radius: 6px;
    padding: 30px 26px;
    background: var(--elp-white);
}

.elp-service-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 28px;
    border-radius: 50%;
    color: var(--elp-white);
    background: var(--elp-green);
    font-size: 24px;
    font-weight: 750;
}

.elp-service-card__icon--activity::before {
    content: "↗";
}

.elp-service-card__icon--assessment::before {
    content: "+";
}

.elp-service-card__icon--exercise::before {
    content: "↻";
}

.elp-service-card__icon--recovery::before {
    content: "✓";
}

.elp-service-card p {
    margin-bottom: 0;
    color: #536a75;
    font-size: 15px;
}

.elp-section-action {
    margin-top: 32px !important;
    margin-bottom: 0 !important;
}

.elp-text-link {
    color: var(--elp-blue-dark) !important;
    font-weight: 750;
    text-underline-offset: 4px;
}

.elp-profile {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    align-items: center;
    gap: 72px;
}

.elp-profile__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 6px;
}

.elp-profile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
}

.elp-profile__content {
    max-width: 650px;
}

.elp-profile__content > p:not(.elp-eyebrow) {
    color: #c2d2d9;
    font-size: 18px;
}

.elp-tick-list,
.elp-credential-list,
.elp-service-row ul {
    margin: 26px 0 34px;
    padding: 0;
    list-style: none;
}

.elp-tick-list li,
.elp-credential-list li,
.elp-service-row li {
    position: relative;
    margin: 11px 0;
    padding-left: 28px;
}

.elp-tick-list li::before,
.elp-credential-list li::before,
.elp-service-row li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--elp-coral);
    content: "✓";
    font-weight: 800;
}

.elp-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.elp-quote-grid blockquote {
    min-width: 0;
    margin: 0;
    border: 1px solid var(--elp-line);
    border-top: 5px solid var(--elp-green);
    border-radius: 6px;
    padding: 34px;
    background: var(--elp-white);
}

.elp-quote-grid p {
    margin: 0;
    color: var(--elp-ink-soft);
    font-size: 20px;
    line-height: 1.55;
}

.elp-location-band,
.elp-cta-band {
    padding: 64px 0;
}

.elp-location-band {
    background: var(--elp-sky);
}

.elp-location-band > .elp-shell,
.elp-cta-band > .elp-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.elp-location-band h2,
.elp-cta-band h2 {
    margin-bottom: 10px;
    font-size: 34px;
}

.elp-location-band p:last-child {
    margin-bottom: 0;
}

.elp-cta-band {
    color: var(--elp-white);
    background: var(--elp-blue-dark);
}

.elp-cta-band h2,
.elp-cta-band .elp-eyebrow {
    color: var(--elp-white);
}

.elp-page-intro {
    padding: 86px 0 82px;
    color: var(--elp-white);
    background: var(--elp-ink);
}

.elp-page-intro h1 {
    max-width: 850px;
    margin-bottom: 20px;
    color: var(--elp-white);
}

.elp-page-intro > .elp-shell > p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: #c9dbe2;
    font-size: 20px;
}

.elp-service-list {
    border-top: 1px solid var(--elp-line);
}

.elp-service-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 72px;
    padding: 48px 0;
    border-bottom: 1px solid var(--elp-line);
}

.elp-service-row h2 {
    font-size: 30px;
}

.elp-service-row p {
    max-width: 690px;
    margin-bottom: 0;
    color: #4d646e;
}

.elp-service-row ul {
    margin: 0;
}

.elp-info-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 52px;
}

.elp-info-columns h2 {
    font-size: 34px;
}

.elp-info-columns h3 {
    margin-top: 7px;
}

.elp-info-columns p {
    color: #4d646e;
}

.elp-about-layout {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 72px;
}

.elp-about-layout__portrait {
    position: sticky;
    top: calc(var(--elp-header-height) + 30px);
    align-self: start;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 6px;
}

.elp-about-layout__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
}

.elp-prose {
    max-width: 770px;
}

.elp-prose h2 {
    margin-top: 48px;
    font-size: 30px;
}

.elp-prose h2:first-child {
    margin-top: 0;
}

.elp-prose p,
.elp-prose li {
    color: #405964;
    font-size: 18px;
}

.elp-credentials {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 72px;
}

.elp-credential-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 34px;
    margin: 0;
}

.elp-accreditation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--elp-line);
    border-bottom: 1px solid var(--elp-line);
}

.elp-accreditation-grid > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px;
    border-right: 1px solid var(--elp-line);
}

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

.elp-accreditation-grid strong {
    margin-bottom: 10px;
}

.elp-accreditation-grid span {
    color: #536a75;
    font-size: 15px;
}

.elp-empty-state {
    max-width: 720px;
    padding: 32px 0;
}

.elp-empty-state p {
    color: #4d646e;
    font-size: 18px;
}

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

.elp-case-card {
    overflow: hidden;
    border: 1px solid var(--elp-line);
    border-radius: 6px;
    background: var(--elp-white);
}

.elp-case-card > a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.elp-case-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.elp-case-card__content {
    padding: 25px;
}

.elp-case-card__content > span {
    color: var(--elp-green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.elp-case-card h2 {
    margin-top: 8px;
    margin-bottom: 12px;
    font-size: 24px;
}

.elp-case-card p {
    margin-bottom: 0;
    color: #536a75;
    font-size: 15px;
}

.elp-booking-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: 50px;
}

.elp-booking-layout__intro {
    position: sticky;
    top: calc(var(--elp-header-height) + 30px);
}

.elp-booking-layout__intro h2 {
    font-size: 30px;
}

.elp-booking-layout__intro p {
    color: #4d646e;
}

.elp-booking-frame {
    min-width: 0;
    border: 1px solid var(--elp-line);
    border-radius: 6px;
    background: var(--elp-white);
}

.elp-booking-frame iframe {
    display: block;
    width: 100%;
    min-height: 780px;
    border: 0;
}

.elp-booking-frame > p {
    margin: 0;
    padding: 14px 20px;
    border-top: 1px solid var(--elp-line);
    font-size: 14px;
}

.elp-booking-fallback {
    padding: 64px 48px;
    text-align: center;
}

.elp-booking-fallback__mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 24px;
    border-radius: 50%;
    color: var(--elp-white);
    background: var(--elp-green);
    font-size: 26px;
    font-weight: 800;
}

.elp-booking-fallback h2 {
    font-size: 30px;
}

.elp-booking-fallback p {
    max-width: 560px;
    margin-right: auto;
    margin-bottom: 28px;
    margin-left: auto;
    color: #4d646e;
}

.elp-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--elp-line);
    border-bottom: 1px solid var(--elp-line);
}

.elp-contact-item {
    min-width: 0;
    padding: 36px;
    border-right: 1px solid var(--elp-line);
}

.elp-contact-item:first-child {
    border-left: 1px solid var(--elp-line);
}

.elp-contact-item > span {
    display: block;
    margin-bottom: 16px;
    color: var(--elp-coral);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.elp-contact-item > a,
.elp-contact-item > strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--elp-ink);
    font-size: 20px;
    font-weight: 750;
    line-height: 1.4;
}

.elp-contact-item > p {
    margin-top: 18px;
    margin-bottom: 0;
    color: #536a75;
    font-size: 15px;
}

.elp-legal h2 {
    padding-top: 8px;
}

.elp-legal-note,
.elp-preview-note {
    margin-top: 42px;
    border-left: 5px solid var(--elp-coral);
    padding: 22px 26px;
    background: #fff2ef;
}

.elp-case-full__header {
    padding: 82px 0;
    color: var(--elp-white);
    background: var(--elp-ink);
}

.elp-case-full__header h1 {
    max-width: 900px;
    color: var(--elp-white);
}

.elp-case-full__header > .elp-shell > p:last-child {
    max-width: 760px;
    color: #c9dbe2;
    font-size: 20px;
}

.elp-case-full__hero {
    max-height: 620px;
    overflow: hidden;
    background: var(--elp-mist);
}

.elp-case-full__hero img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.elp-case-full__body {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 72px;
    padding-top: 76px;
    padding-bottom: 88px;
}

.elp-case-facts {
    margin: 0;
}

.elp-case-facts > div {
    padding: 20px 0;
    border-top: 1px solid var(--elp-line);
}

.elp-case-facts > div:last-child {
    border-bottom: 1px solid var(--elp-line);
}

.elp-case-facts dt {
    margin-bottom: 6px;
    color: var(--elp-coral);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.elp-case-facts dd {
    margin: 0;
    color: var(--elp-ink);
    font-weight: 650;
}

.elp-case-gallery {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.elp-case-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.elp-preview-note {
    grid-column: 2;
}

.elp-footer {
    color: #bed0d7;
    background: #0b1d26;
}

.elp-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
}

.elp-footer h2 {
    margin-bottom: 17px;
    color: var(--elp-white);
    font-size: 15px;
}

.elp-footer p {
    margin: 8px 0;
    font-size: 14px;
}

.elp-footer a {
    color: var(--elp-white);
    text-underline-offset: 4px;
}

.elp-footer__brand img {
    width: 170px;
    margin-bottom: 18px;
    background: var(--elp-white);
}

.elp-footer__brand p {
    max-width: 360px;
}

.elp-footer__base {
    border-top: 1px solid #27404b;
}

.elp-footer__base > .elp-shell {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 12px;
}

@media (max-width: 1060px) {
    .elp-header__inner {
        grid-template-columns: 170px auto auto;
        justify-content: space-between;
    }

    .elp-nav-toggle {
        display: block;
        justify-self: end;
    }

    .elp-navigation {
        position: absolute;
        top: var(--elp-header-height);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 18px 24px 26px;
        border-bottom: 1px solid var(--elp-line);
        background: var(--elp-white);
        box-shadow: 0 12px 22px rgba(14, 38, 49, 0.1);
    }

    .elp-navigation.is-open {
        display: grid;
    }

    .elp-navigation a {
        padding: 12px 0;
    }

    .elp-navigation a::after {
        bottom: 4px;
    }

    .elp-header__book {
        grid-column: 3;
        grid-row: 1;
    }

    .elp-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 782px) {
    :root {
        --elp-header-height: 72px;
    }

    .admin-bar .elp-header {
        top: 46px;
    }

    .elp-shell {
        width: min(calc(100% - 32px), var(--elp-shell));
    }

    .elp-site h1,
    .elp-hero h1 {
        font-size: 44px;
    }

    .elp-site h2 {
        font-size: 31px;
    }

    .elp-header__inner {
        grid-template-columns: 148px auto;
        gap: 12px;
    }

    .elp-brand {
        width: 145px;
        height: 64px;
    }

    .elp-header__book {
        display: none;
    }

    .elp-hero {
        min-height: 610px;
        background-position: 63% center;
    }

    .elp-hero::before {
        width: 100%;
        clip-path: none;
        background: rgba(13, 42, 55, 0.77);
    }

    .elp-hero__content {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .elp-hero__lead {
        font-size: 18px;
    }

    .elp-proof__grid {
        grid-template-columns: 1fr;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .elp-proof__grid > div,
    .elp-proof__grid > div:last-child {
        padding: 14px 0;
        border: 0;
        border-bottom: 1px solid var(--elp-line);
    }

    .elp-proof__grid > div:last-child {
        border-bottom: 0;
    }

    .elp-section {
        padding: 62px 0;
    }

    .elp-card-grid,
    .elp-quote-grid,
    .elp-info-columns,
    .elp-accreditation-grid,
    .elp-contact-grid,
    .elp-case-grid,
    .elp-footer__grid {
        grid-template-columns: 1fr;
    }

    .elp-profile,
    .elp-about-layout,
    .elp-credentials,
    .elp-booking-layout,
    .elp-case-full__body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .elp-profile__image,
    .elp-about-layout__portrait {
        width: min(100%, 390px);
        position: static;
    }

    .elp-location-band > .elp-shell,
    .elp-cta-band > .elp-shell {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .elp-page-intro {
        padding: 64px 0 60px;
    }

    .elp-service-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 36px 0;
    }

    .elp-credential-list {
        grid-template-columns: 1fr;
    }

    .elp-accreditation-grid,
    .elp-contact-grid {
        border: 0;
        gap: 0;
    }

    .elp-accreditation-grid > div,
    .elp-accreditation-grid > div:first-child,
    .elp-contact-item,
    .elp-contact-item:first-child {
        padding: 26px 0;
        border: 0;
        border-top: 1px solid var(--elp-line);
    }

    .elp-accreditation-grid > div:last-child,
    .elp-contact-item:last-child {
        border-bottom: 1px solid var(--elp-line);
    }

    .elp-booking-layout__intro {
        position: static;
    }

    .elp-booking-fallback {
        padding: 48px 24px;
    }

    .elp-booking-frame iframe {
        min-height: 720px;
    }

    .elp-case-gallery,
    .elp-preview-note {
        grid-column: 1;
    }

    .elp-footer__grid {
        gap: 34px;
    }
}

@media (max-width: 520px) {
    .elp-site h1,
    .elp-hero h1 {
        font-size: 38px;
    }

    .elp-hero {
        min-height: 590px;
    }

    .elp-button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .elp-button-row .elp-button {
        width: 100%;
    }

    .elp-card-grid {
        grid-template-columns: 1fr;
    }

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

    .elp-case-gallery {
        grid-template-columns: 1fr;
    }

    .elp-footer__base > .elp-shell {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .elp-controlled-page *,
    .elp-controlled-page *::before,
    .elp-controlled-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
