:root {
    --ES-black: #11100d;
    --ES-black-soft: #191711;
    --ES-gold: #b88a3d;
    --ES-gold-dark: #8a6429;
    --ES-cream: #f7f1e7;
    --ES-cream-2: #fffaf1;
    --ES-white: #ffffff;
    --ES-text: #1f1b16;
    --ES-muted: #756b5f;
    --ES-border: rgba(184, 138, 61, 0.28);
    --ES-border-soft: rgba(31, 27, 22, 0.1);
    --ES-radius: 16px;
    --ES-heading: "Cormorant Garamond", Georgia, serif;
    --ES-body: "Manrope", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ES-body {
    margin: 0;
    font-family: var(--ES-body);
    color: var(--ES-text);
    background: var(--ES-cream);
    line-height: 1.75;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.ES-container {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
}

.ES-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ES-black);
    border-bottom: 1px solid rgba(184, 138, 61, 0.25);
}

.ES-headerInner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.ES-logo {
    width: 164px;
    height: 56px;
    max-width: 164px;
    max-height: 56px;
    min-width: 164px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--ES-white);
    flex: 0 0 164px;
    overflow: hidden;
}

.ES-logo .custom-logo-link,
.ES-logoFallback {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
}

.ES-logo img,
.ES-logo .custom-logo,
.ES-logo .custom-logo-link img {
    width: 100% !important;
    height: 100% !important;
    max-width: 164px !important;
    max-height: 56px !important;
    object-fit: contain !important;
    object-position: left center !important;
    display: block !important;
}

.ES-logoText {
    display: grid;
    line-height: 1;
    text-transform: uppercase;
}

.ES-logoText strong {
    font-family: var(--ES-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--ES-white);
    letter-spacing: 0.5px;
}

.ES-logoText small {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 700;
    color: var(--ES-gold);
    letter-spacing: 2px;
}

.ES-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.ES-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.ES-menu a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 700;
}

.ES-menu a:hover {
    color: var(--ES-gold);
}

.ES-navCta {
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--ES-gold);
    border-radius: 100px;
    color: var(--ES-gold);
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ES-menuToggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 138, 61, 0.55);
    border-radius: 8px;
    background: transparent;
    padding: 10px;
}

.ES-menuToggle span {
    display: block;
    height: 2px;
    background: var(--ES-gold);
    margin: 5px 0;
}

.ES-main {
    overflow: hidden;
}

.ES-hero {
    position: relative;
    min-height: 720px;
    color: var(--ES-white);
    background: var(--ES-black);
}

.ES-heroBg,
.ES-serviceHeroBg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 16, 13, 0.88), rgba(17, 16, 13, 0.5), rgba(17, 16, 13, 0.92)),
        url("../images/hero.jpg") center/cover;
}

.ES-heroBg::after,
.ES-serviceHeroBg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 16, 13, 0.1), rgba(17, 16, 13, 0.78));
}

.ES-heroInner {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
    padding: 90px 0;
}

.ES-overline {
    margin: 0 0 14px;
    color: var(--ES-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: var(--ES-heading);
    line-height: 1.05;
    margin: 0 0 18px;
    color: inherit;
    font-weight: 700;
}

h1 {
    font-size: clamp(52px, 7vw, 94px);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(38px, 4.5vw, 64px);
    letter-spacing: -0.5px;
}

h3 {
    font-size: 30px;
}

p {
    margin: 0 0 18px;
}

.ES-heroContent {
    max-width: 710px;
}

.ES-heroLocation {
    font-size: 18px;
    font-weight: 800;
    color: var(--ES-gold);
}

.ES-heroContent p:not(.ES-overline):not(.ES-heroLocation) {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
}

.ES-heroActions,
.ES-footerActions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.ES-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 6px;
    font-family: var(--ES-body);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.ES-btnGold {
    background: var(--ES-gold);
    color: var(--ES-white);
    border-color: var(--ES-gold);
}

.ES-btnGold:hover {
    background: var(--ES-gold-dark);
    border-color: var(--ES-gold-dark);
}

.ES-btnOutline {
    border-color: var(--ES-gold);
    color: var(--ES-gold);
    background: transparent;
}

.ES-btnOutline:hover {
    background: var(--ES-gold);
    color: var(--ES-white);
}

.ES-btnFull {
    width: 100%;
}

.ES-btnIcon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.ES-iconFallback {
    display: inline-grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 900;
}

.ES-heroInfo {
    display: grid;
    gap: 14px;
    align-self: end;
    max-width: 420px;
    margin-left: auto;
}

.ES-heroInfo div {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(184, 138, 61, 0.32);
}

.ES-infoIcon {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.ES-heroInfo strong {
    display: block;
    font-family: var(--ES-heading);
    font-size: 31px;
    color: var(--ES-white);
    line-height: 1;
}

.ES-heroInfo span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 700;
}

.ES-section {
    padding: 92px 0;
}

.ES-light {
    background: var(--ES-cream);
}

.ES-white {
    background: var(--ES-white);
}

.ES-dark {
    background: var(--ES-black);
    color: var(--ES-white);
}

.ES-sectionHead {
    max-width: 740px;
    margin-bottom: 44px;
}

.ES-sectionHead p {
    color: var(--ES-muted);
    font-size: 17px;
}

.ES-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ES-cardGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.ES-cardGridTwo {
    grid-template-columns: repeat(2, 1fr);
}

.ES-serviceCard,
.ES-blogCard,
.ES-infoCard,
.ES-quoteBox,
.ES-formPanel,
.ES-testimonial {
    border-radius: var(--ES-radius);
    background: var(--ES-white);
    overflow: hidden;
    border: 1px solid var(--ES-border-soft);
}

.ES-serviceCard {
    background: var(--ES-white);
}

.ES-cardImage,
.ES-tabImage,
.ES-blogPlaceholder {
    min-height: 245px;
    background:
        linear-gradient(135deg, rgba(184, 138, 61, 0.2), rgba(17, 16, 13, 0.24)),
        url("../images/hero.jpg") center/cover;
    position: relative;
}

.ES-cardImage span {
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--ES-white);
    background: rgba(17, 16, 13, 0.72);
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-family: var(--ES-heading);
    font-size: 24px;
    font-weight: 700;
}

.ES-cardBody {
    padding: 28px;
}

.ES-cardBody h3,
.ES-cardBody h2 {
    color: var(--ES-text);
}

.ES-cardBody p {
    color: var(--ES-muted);
}

.ES-textLink {
    color: var(--ES-gold-dark);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.ES-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
    align-items: start;
}

.ES-tabs {
    margin-top: 20px;
}

.ES-tabButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.ES-tabButtons button {
    border: 1px solid var(--ES-border-soft);
    background: var(--ES-cream-2);
    color: var(--ES-muted);
    padding: 10px 14px;
    border-radius: 100px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 12px;
}

.ES-tabButtons button.is-active {
    color: var(--ES-white);
    border-color: var(--ES-gold);
    background: var(--ES-gold);
}

.ES-tabPanel {
    display: none;
    padding: 18px;
    border-radius: var(--ES-radius);
    border: 1px solid var(--ES-border-soft);
    background: var(--ES-white);
}

.ES-tabPanel.is-active {
    display: block;
}

.ES-tabPanel h3 {
    color: var(--ES-text);
    margin-top: 24px;
}

.ES-tabPanel p {
    color: var(--ES-muted);
}

.ES-checkList {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 12px;
}

.ES-checkList li {
    position: relative;
    padding-left: 30px;
    color: var(--ES-muted);
    font-weight: 700;
}

.ES-checkList li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ES-gold);
    font-weight: 900;
}

.ES-largeList {
    grid-template-columns: repeat(2, 1fr);
}

.ES-quoteBox {
    padding: 34px;
    background: var(--ES-black-soft);
    color: var(--ES-white);
    border-color: var(--ES-border);
}

.ES-quoteBoxLight {
    background: var(--ES-cream);
    color: var(--ES-text);
    border-color: var(--ES-border-soft);
}

.ES-formGrid {
    display: grid;
    gap: 14px;
}

.ES-form input,
.ES-form select,
.ES-form textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--ES-border-soft);
    border-radius: 6px;
    padding: 13px 15px;
    font: inherit;
    outline: none;
    background: #fff;
}

.ES-form textarea {
    resize: vertical;
}

.ES-form input:focus,
.ES-form select:focus,
.ES-form textarea:focus {
    border-color: var(--ES-gold);
}

.ES-hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.ES-formSuccess {
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 6px;
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
    font-weight: 800;
}

.ES-ceoSplit {
    align-items: center;
}

.ES-dark p {
    color: rgba(255, 255, 255, 0.78);
}

.ES-signature {
    display: block;
    margin-top: 22px;
    color: var(--ES-gold);
}

.ES-testimonial {
    padding: 38px;
    background: transparent;
    border-color: var(--ES-border);
    color: var(--ES-white);
}

.ES-stars {
    color: var(--ES-gold);
    letter-spacing: 4px;
    font-size: 20px;
    margin-bottom: 18px;
}

.ES-testimonial p {
    font-family: var(--ES-heading);
    font-size: 27px;
    line-height: 1.4;
}

.ES-blogCard a {
    display: block;
    color: inherit;
    background: #fff;
}

.ES-blogCard img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.ES-blogCard div:not(.ES-blogPlaceholder) {
    padding: 24px;
}

.ES-blogCard span {
    color: var(--ES-gold-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ES-blogCard h2,
.ES-blogCard h3 {
    color: var(--ES-text);
    margin-top: 8px;
    font-size: 28px;
}

.ES-blogCard p {
    color: var(--ES-muted);
}

.ES-cta {
    background: var(--ES-black);
    color: var(--ES-white);
    padding: 46px 0;
    border-top: 1px solid var(--ES-border);
}

.ES-ctaInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.ES-ctaInner p {
    color: rgba(255, 255, 255, 0.72);
}

.ES-pageHero {
    padding: 120px 0 76px;
    background: var(--ES-black);
    color: var(--ES-white);
    border-bottom: 1px solid var(--ES-border);
}

.ES-pageHero p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.ES-infoCard {
    padding: 34px;
    background: var(--ES-black);
    color: #fff;
    border-color: var(--ES-border);
}

.ES-infoCard p {
    color: rgba(255, 255, 255, 0.78);
}

.ES-contactGrid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: start;
}

.ES-contactCards {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.ES-contactCards div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    row-gap: 3px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--ES-border);
}

.ES-contactCards .ES-infoIcon {
    grid-row: span 2;
}

.ES-contactCards strong,
.ES-contactCards span,
.ES-contactCards a {
    display: block;
}

.ES-contactCards strong {
    color: var(--ES-gold);
    margin-bottom: 2px;
}

.ES-formPanel {
    padding: 34px;
}

.ES-serviceHero {
    position: relative;
    min-height: 540px;
    display: grid;
    align-items: end;
    color: var(--ES-white);
    background: var(--ES-black);
}

.ES-serviceHero .ES-container {
    position: relative;
    z-index: 2;
    padding: 140px 0 70px;
}

.ES-serviceHero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.ES-content {
    max-width: 860px;
}

.ES-content p,
.ES-content li {
    color: var(--ES-muted);
}

.ES-content a {
    color: var(--ES-gold-dark);
    font-weight: 800;
}

.ES-singleImage {
    margin-top: -54px;
    position: relative;
    z-index: 2;
    border-radius: var(--ES-radius);
    overflow: hidden;
    border: 1px solid var(--ES-border-soft);
}

.ES-singleImage img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}

.ES-pagination {
    margin-top: 42px;
}

.ES-empty {
    padding: 40px;
    border-radius: var(--ES-radius);
    background: #fff;
    text-align: center;
    border: 1px solid var(--ES-border-soft);
}

.ES-footer {
    background: var(--ES-black);
    color: rgba(255, 255, 255, 0.76);
    padding: 70px 0 28px;
    border-top: 1px solid var(--ES-border);
}

.ES-footerGrid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 42px;
}

.ES-footer h3 {
    color: var(--ES-white);
    font-size: 27px;
}

.ES-footerLogo {
    width: 180px;
    height: 64px;
    max-width: 180px;
    max-height: 64px;
    min-width: 180px;
    flex: 0 0 180px;
    margin-bottom: 18px;
}

.ES-footerLogo .custom-logo-link,
.ES-footerLogo .ES-logoFallback {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
}

.ES-footerLogo img,
.ES-footerLogo .custom-logo,
.ES-footerLogo .custom-logo-link img {
    width: 100% !important;
    height: 100% !important;
    max-width: 180px !important;
    max-height: 64px !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.ES-footerLinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.ES-footerLinks a:hover {
    color: var(--ES-gold);
}

.ES-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.ES-socials a {
    width: 42px;
    height: 42px;
    border-radius: 100px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ES-border);
}

.ES-socialIcon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.ES-footerBottom {
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
}

.ES-floatingWhatsApp {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 90;
    width: 54px;
    height: 54px;
    border-radius: 100px;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    border: 0;
}

.ES-floatingIcon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.ES-backTop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid var(--ES-gold);
    background: var(--ES-gold);
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.ES-backTop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* SVG icon color control */
.ES-btnIcon,
.ES-infoIcon,
.ES-socialIcon,
.ES-floatingIcon {
    display: inline-block;
    object-fit: contain;
}

.ES-btnGold .ES-btnIcon,
.ES-floatingWhatsApp .ES-floatingIcon {
    filter: brightness(0) invert(1);
}

.ES-btnOutline .ES-btnIcon {
    filter: brightness(0) saturate(100%) invert(56%) sepia(28%) saturate(958%) hue-rotate(4deg) brightness(92%) contrast(88%);
}

.ES-btnOutline:hover .ES-btnIcon {
    filter: brightness(0) invert(1);
}

.ES-heroInfo .ES-infoIcon,
.ES-contactCards .ES-infoIcon,
.ES-footer .ES-infoIcon {
    filter: brightness(0) saturate(100%) invert(56%) sepia(28%) saturate(958%) hue-rotate(4deg) brightness(92%) contrast(88%);
}

.ES-footer .ES-socialIcon {
    filter: brightness(0) invert(1);
}

.ES-footer .ES-socials a:hover .ES-socialIcon {
    filter: brightness(0) saturate(100%) invert(56%) sepia(28%) saturate(958%) hue-rotate(4deg) brightness(92%) contrast(88%);
}

.ES-white .ES-infoIcon,
.ES-light .ES-infoIcon {
    filter: brightness(0) saturate(100%);
}

.ES-iconFallback {
    filter: none !important;
}

@media (max-width: 980px) {
    .ES-headerInner {
        min-height: 72px;
    }

    .ES-logo {
        width: 148px;
        height: 50px;
        max-width: 148px;
        max-height: 50px;
        min-width: 148px;
        flex-basis: 148px;
    }

    .ES-logo img,
    .ES-logo .custom-logo,
    .ES-logo .custom-logo-link img {
        max-width: 148px !important;
        max-height: 50px !important;
    }

    .ES-menuToggle {
        display: block;
    }

    .ES-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        padding: 22px 20px 28px;
        background: var(--ES-black);
        border-bottom: 1px solid var(--ES-border);
    }

    .ES-nav.is-open {
        display: block;
    }

    .ES-menu {
        display: grid;
        gap: 16px;
    }

    .ES-navCta {
        margin-top: 18px;
        display: inline-flex;
    }

    .ES-hero,
    .ES-heroInner {
        min-height: auto;
    }

    .ES-heroInner,
    .ES-split,
    .ES-contactGrid {
        grid-template-columns: 1fr;
    }

    .ES-heroInner {
        padding: 92px 0 58px;
    }

    .ES-heroInfo {
        margin-left: 0;
        max-width: none;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .ES-heroInfo div {
        display: block;
        border-bottom: 0;
        border-top: 1px solid rgba(184, 138, 61, 0.32);
    }

    .ES-infoIcon {
        margin-bottom: 12px;
    }

    .ES-cardGrid,
    .ES-cardGridTwo,
    .ES-footerGrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .ES-container {
        width: min(100% - 28px, 1380px);
    }

    .ES-logo {
        width: 126px;
        height: 44px;
        max-width: 126px;
        max-height: 44px;
        min-width: 126px;
        flex-basis: 126px;
    }

    .ES-logo img,
    .ES-logo .custom-logo,
    .ES-logo .custom-logo-link img {
        max-width: 126px !important;
        max-height: 44px !important;
    }

    .ES-footerLogo {
        width: 154px;
        height: 56px;
        max-width: 154px;
        max-height: 56px;
        min-width: 154px;
        flex-basis: 154px;
    }

    .ES-footerLogo img,
    .ES-footerLogo .custom-logo,
    .ES-footerLogo .custom-logo-link img {
        max-width: 154px !important;
        max-height: 56px !important;
    }

    .ES-logoText strong {
        font-size: 24px;
    }

    .ES-logoText small {
        font-size: 9px;
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 38px;
    }

    .ES-heroInner {
        padding-top: 74px;
    }

    .ES-heroActions,
    .ES-footerActions {
        display: grid;
    }

    .ES-heroInfo,
    .ES-cardGrid,
    .ES-cardGridTwo,
    .ES-footerGrid,
    .ES-largeList {
        grid-template-columns: 1fr;
    }

    .ES-section {
        padding: 66px 0;
    }

    .ES-cardImage,
    .ES-tabImage,
    .ES-blogPlaceholder {
        min-height: 215px;
    }

    .ES-tabButtons {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .ES-tabButtons button {
        flex: 0 0 auto;
    }

    .ES-quoteBox,
    .ES-formPanel,
    .ES-infoCard,
    .ES-testimonial {
        padding: 24px;
    }

    .ES-ctaInner,
    .ES-footerBottom {
        display: grid;
    }

    .ES-pageHero {
        padding: 100px 0 60px;
    }

    .ES-serviceHero .ES-container {
        padding: 110px 0 58px;
    }

    .ES-floatingWhatsApp {
        right: 16px;
        bottom: 82px;
        width: 50px;
        height: 50px;
    }

    .ES-backTop {
        right: 16px;
        bottom: 18px;
        width: 46px;
        height: 46px;
    }
}

/* =========================================================
   ES service section image fit + responsive fix
   Replace the previous bottom override block with this
========================================================= */

/* Service cards and What We Do image should fill the frame nicely */
.ES-cardImage,
.ES-tabImage,
.ES-blogPlaceholder {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #f4eee3;
}

/* Expertise cards image area */
.ES-serviceCard .ES-cardImage {
    min-height: 240px;
    height: 240px;
    aspect-ratio: auto;
}

/* What We Do tab image area */
.ES-tabImage {
    min-height: 340px;
    height: 340px;
    border-radius: 12px;
}

/* Keep cards balanced */
.ES-serviceCard {
    display: flex;
    flex-direction: column;
}

.ES-serviceCard .ES-cardBody {
    flex: 1;
}

/* Same gap above submit button as form fields */
.ES-form .ES-btnFull {
    margin-top: 14px;
}

/* Desktop/laptop responsiveness */
@media (max-width: 1180px) {
    .ES-cardGrid,
    .ES-cardGridThree,
    .ES-cardGridTwo {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ES-split {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .ES-quoteBox,
    .ES-formPanel {
        width: 100%;
        max-width: 100%;
    }

    .ES-tabImage {
        min-height: 300px;
        height: 300px;
    }
}

/* Tablet */
@media (max-width: 780px) {
    .ES-section {
        padding: 58px 0;
    }

    .ES-sectionHead {
        margin-bottom: 28px;
    }

    .ES-cardGrid,
    .ES-cardGridThree,
    .ES-cardGridTwo {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ES-serviceCard .ES-cardImage {
        min-height: 220px;
        height: 220px;
    }

    .ES-tabImage {
        min-height: 240px;
        height: 240px;
    }

    .ES-tabPanel {
        padding: 14px;
    }

    .ES-tabPanel h3 {
        margin-top: 18px;
    }

    .ES-quoteBox,
    .ES-formPanel {
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .ES-container {
        width: min(100% - 24px, 1380px);
    }

    .ES-serviceCard .ES-cardImage {
        min-height: 190px;
        height: 190px;
    }

    .ES-tabImage {
        min-height: 190px;
        height: 190px;
    }

    .ES-cardBody {
        padding: 22px;
    }

    .ES-tabButtons {
        gap: 8px;
        margin-bottom: 18px;
    }

    .ES-tabButtons button {
        padding: 9px 12px;
        font-size: 11px;
    }

    .ES-form input,
    .ES-form select,
    .ES-form textarea {
        min-height: 50px;
    }
}

/* =========================================================
   ES service detail hero image fix
   Fix repeated background image on service pages
========================================================= */

.ES-serviceHeroBg {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

/* Keep dark overlay clean on service detail hero */
.ES-serviceHeroBg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(17, 16, 13, 0.82) 0%,
        rgba(17, 16, 13, 0.58) 45%,
        rgba(17, 16, 13, 0.34) 100%
    );
    pointer-events: none;
}

/* Make sure hero content stays above overlay */
.ES-serviceHero .ES-container {
    position: relative;
    z-index: 2;
}

/* Better banner height for service pages */
.ES-serviceHero {
    min-height: 560px;
    overflow: hidden;
}

/* Tablet */
@media (max-width: 980px) {
    .ES-serviceHero {
        min-height: 500px;
    }

    .ES-serviceHeroBg {
        background-position: center center !important;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .ES-serviceHero {
        min-height: 430px;
    }

    .ES-serviceHero .ES-container {
        padding: 105px 0 52px;
    }

    .ES-serviceHeroBg {
        background-position: center center !important;
    }
}
/* =========================================================
   ES content refresh, service galleries, and lightbox
========================================================= */

.ES-cardGridFour {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ES-cardSlider {
    display: block;
    overflow: hidden;
    background: var(--ES-black);
}

.ES-cardSlider::after,
.ES-galleryItem::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 16, 13, 0.08), rgba(17, 16, 13, 0.34));
    pointer-events: none;
}

.ES-cardSlide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 0.7s ease, transform 3.2s ease;
}

.ES-cardSlide.is-active {
    opacity: 1;
    transform: scale(1);
}

.ES-cardNumber {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    color: var(--ES-white);
    background: rgba(17, 16, 13, 0.72);
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-family: var(--ES-heading);
    font-size: 24px;
    font-weight: 700;
}

.ES-btnArrow::after {
    content: "\2192";
    font-size: 16px;
    line-height: 1;
    transform: translateX(0);
    transition: transform 0.18s ease;
}

.ES-btnArrow:hover::after {
    transform: translateX(3px);
}

.ES-serviceCardFeatured {
    box-shadow: 0 18px 45px rgba(17, 16, 13, 0.08);
}

.ES-serviceCardActions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.ES-serviceCardActions .ES-btn {
    min-height: 46px;
    padding: 12px 18px;
}

.ES-brandStory .ES-overline,
.ES-serviceHero .ES-overline,
.ES-dark .ES-overline {
    color: var(--ES-gold);
}

.ES-brandStats {
    display: grid;
    gap: 16px;
}

.ES-brandStats div,
.ES-whyGrid div,
.ES-solutionCard {
    border: 1px solid var(--ES-border);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 24px;
}

.ES-brandStats strong {
    display: block;
    font-family: var(--ES-heading);
    color: var(--ES-gold);
    font-size: 54px;
    line-height: 1;
    margin-bottom: 8px;
}

.ES-brandStats span,
.ES-whyGrid div {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.ES-infoCardList .ES-checkList li,
.ES-infoCard .ES-checkList li {
    color: rgba(255, 255, 255, 0.82);
}

.ES-infoCardList .ES-checkList li::before,
.ES-infoCard .ES-checkList li::before {
    color: var(--ES-gold);
}

.ES-solutionGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ES-solutionCard {
    background: var(--ES-white);
    border-color: var(--ES-border-soft);
}

.ES-solutionCard span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--ES-gold-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.ES-solutionCard h3 {
    color: var(--ES-text);
    font-size: 28px;
}

.ES-solutionCard p {
    color: var(--ES-muted);
    margin-bottom: 0;
}

.ES-galleryGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ES-galleryItem {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    padding: 0;
    background: var(--ES-black);
    cursor: zoom-in;
}

.ES-galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.24s ease;
}

.ES-galleryItem:hover img {
    transform: scale(1.045);
}

.ES-whyGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ES-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(17, 16, 13, 0.9);
}

.ES-lightbox.is-open {
    display: flex;
}

.ES-lightbox img {
    max-width: min(1120px, 94vw);
    max-height: 86vh;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    object-fit: contain;
}

.ES-lightboxClose {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    background: rgba(17, 16, 13, 0.7);
    color: var(--ES-white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1180px) {
    .ES-cardGridFour,
    .ES-galleryGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .ES-solutionGrid,
    .ES-whyGrid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 520px) {
    .ES-galleryGrid,
    .ES-cardGridFour {
        grid-template-columns: 1fr;
    }

    .ES-serviceCardActions {
        display: grid;
    }

    .ES-lightbox {
        padding: 16px;
    }
}
/* =========================================================
   ES final polish: lighter heroes, SVG arrows, less clutter
========================================================= */

.ES-heroBg {
    background:
        linear-gradient(90deg, rgba(17, 16, 13, 0.64), rgba(17, 16, 13, 0.24), rgba(17, 16, 13, 0.58)),
        url("../images/hero.jpg") center/cover;
}

.ES-heroBg::after {
    background: linear-gradient(180deg, rgba(17, 16, 13, 0.02), rgba(17, 16, 13, 0.42));
}

.ES-pageHero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(17, 16, 13, 0.76), rgba(17, 16, 13, 0.38)),
        url("../images/hero.jpg") center/cover;
}

.ES-pageHero .ES-container {
    position: relative;
    z-index: 2;
}

.ES-pageHero h1,
.ES-serviceHero h1 {
    max-width: 860px;
}

.ES-pageHero p,
.ES-serviceHero p,
.ES-heroContent p:not(.ES-overline):not(.ES-heroLocation) {
    max-width: 650px;
}

.ES-checkList li::before {
    content: "\2713";
}

.ES-btnArrow::after {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    background: currentColor;
    -webkit-mask: url("../images/icon-arrow.svg") center / contain no-repeat;
    mask: url("../images/icon-arrow.svg") center / contain no-repeat;
    transform: translateX(0);
    transition: transform 0.18s ease;
}

.ES-btnArrow:hover::after {
    transform: translateX(4px);
}

.ES-arrowIcon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    color: currentColor;
}

.ES-arrowIcon svg {
    width: 100%;
    height: 100%;
}

.ES-arrow-left { transform: rotate(180deg); }
.ES-arrow-up { transform: rotate(-90deg); }
.ES-arrow-down { transform: rotate(90deg); }

.ES-backTop {
    font-size: 0;
}

.ES-backTop::before {
    content: "";
    width: 21px;
    height: 21px;
    display: block;
    margin: auto;
    background: currentColor;
    -webkit-mask: url("../images/icon-arrow.svg") center / contain no-repeat;
    mask: url("../images/icon-arrow.svg") center / contain no-repeat;
    transform: rotate(-90deg);
}

.ES-cardBody p,
.ES-tabPanel p,
.ES-solutionCard p,
.ES-content p {
    line-height: 1.65;
}

.ES-tabPanel .ES-checkList,
.ES-infoCard .ES-checkList {
    gap: 9px;
}

.ES-blogControls {
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
}

.ES-blogControls form {
    display: flex;
    gap: 12px;
    max-width: 620px;
}

.ES-blogControls input[type="search"] {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--ES-border-soft);
    border-radius: 6px;
    padding: 12px 15px;
    font: inherit;
    background: var(--ES-white);
}

.ES-blogFilterLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ES-blogFilterLinks a {
    border: 1px solid var(--ES-border-soft);
    background: var(--ES-white);
    color: var(--ES-muted);
    border-radius: 100px;
    padding: 8px 13px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ES-blogFilterLinks a:hover {
    border-color: var(--ES-gold);
    color: var(--ES-gold-dark);
}

@media (max-width: 680px) {
    .ES-hero {
        min-height: 620px;
    }

    .ES-heroBg {
        background:
            linear-gradient(180deg, rgba(17, 16, 13, 0.42), rgba(17, 16, 13, 0.72)),
            url("../images/hero.jpg") center/cover;
    }

    .ES-heroInner {
        padding: 86px 0 42px;
        gap: 30px;
    }

    .ES-heroContent {
        max-width: 100%;
    }

    .ES-overline {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .ES-heroContent h1 {
        font-size: 43px;
        line-height: 1;
        margin-bottom: 14px;
    }

    .ES-heroContent p:not(.ES-overline):not(.ES-heroLocation) {
        font-size: 15px;
        line-height: 1.65;
    }

    .ES-heroInfo {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 6px;
    }

    .ES-heroInfo div {
        display: grid;
        grid-template-columns: 34px 1fr;
        padding: 12px 0;
    }

    .ES-heroInfo strong {
        font-size: 24px;
    }

    .ES-infoIcon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
    }

    .ES-pageHero {
        padding: 86px 0 46px;
    }

    .ES-pageHero h1,
    .ES-serviceHero h1 {
        font-size: 40px;
    }

    .ES-blogControls form {
        display: grid;
    }
}

/* =========================================================
   ES logo header refresh and service sticky CTA
========================================================= */

.ES-header {
    background: rgba(17, 16, 13, 0.92);
    border-bottom: 1px solid rgba(184, 138, 61, 0.22);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.ES-headerInner {
    min-height: 84px;
}

.ES-logo {
    width: 188px;
    height: 62px;
    max-width: 188px;
    max-height: 62px;
    min-width: 188px;
    flex-basis: 188px;
}

.ES-logoImageLink {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.ES-logoImageLink img,
.ES-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: left center !important;
    display: block;
}

.ES-menu {
    gap: 10px;
    padding: 7px;
    border: 1px solid rgba(184, 138, 61, 0.16);
    border-radius: 100px;
    background: rgba(255, 250, 241, 0.045);
}

.ES-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.78);
    transition: background 0.18s ease, color 0.18s ease;
}

.ES-menu a:hover {
    background: rgba(184, 138, 61, 0.14);
    color: var(--ES-white);
}

.ES-navCta {
    min-height: 44px;
    padding: 10px 17px;
    background: var(--ES-gold);
    color: var(--ES-white);
    border-color: var(--ES-gold);
    gap: 8px;
}

.ES-navCta:hover {
    background: var(--ES-gold-dark);
    border-color: var(--ES-gold-dark);
    color: var(--ES-white);
}

.ES-creditLink {
    color: var(--ES-gold);
    font-weight: 800;
}

.ES-creditLink:hover {
    color: var(--ES-white);
}

.ES-serviceStickyCta {
    position: fixed;
    right: 24px;
    bottom: 154px;
    z-index: 91;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--ES-gold);
    color: var(--ES-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 42px rgba(17, 16, 13, 0.28);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25px;
}

.ES-serviceStickyCta:hover {
    background: var(--ES-gold-dark);
    color: var(--ES-white);
}

@media (max-width: 980px) {
    .ES-headerInner {
        min-height: 76px;
    }

    .ES-logo {
        width: 162px;
        height: 54px;
        max-width: 162px;
        max-height: 54px;
        min-width: 162px;
        flex-basis: 162px;
    }

    .ES-nav {
        top: 76px;
        background: rgba(17, 16, 13, 0.98);
    }

    .ES-menu {
        display: grid;
        border-radius: 14px;
        padding: 10px;
    }

    .ES-menu a {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .ES-logo {
        width: 138px;
        height: 48px;
        max-width: 138px;
        max-height: 48px;
        min-width: 138px;
        flex-basis: 138px;
    }

    .ES-serviceStickyCta {
        left: 16px;
        right: 16px;
        bottom: 18px;
        width: auto;
        min-height: 50px;
    }

    .ES-backTop,
    .ES-floatingWhatsApp {
        display: none;
    }
}

/* =========================================================
   ES simple event-style header and delayed service CTA
========================================================= */

.ES-header {
    background: rgba(17, 16, 13, 0.98);
    border-bottom: 1px solid rgba(184, 138, 61, 0.26);
    box-shadow: none;
    backdrop-filter: none;
}

.ES-headerInner {
    min-height: 78px;
}

.ES-logo {
    width: 176px;
    height: 58px;
    max-width: 176px;
    max-height: 58px;
    min-width: 176px;
    flex-basis: 176px;
}

.ES-menu {
    gap: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.ES-menu a {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}

.ES-menu a:hover {
    background: transparent;
    color: var(--ES-gold);
}

.ES-navCta {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 4px;
    background: transparent;
    color: var(--ES-gold);
    border: 1px solid var(--ES-gold);
}

.ES-navCta::after {
    content: none !important;
}

.ES-navCta:hover {
    background: var(--ES-gold);
    color: var(--ES-white);
    border-color: var(--ES-gold);
}

.ES-serviceStickyCta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, background 0.18s ease;
}

.ES-serviceStickyCta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .ES-headerInner {
        min-height: 74px;
    }

    .ES-logo {
        width: 154px;
        height: 52px;
        max-width: 154px;
        max-height: 52px;
        min-width: 154px;
        flex-basis: 154px;
    }

    .ES-nav {
        top: 74px;
        background: rgba(17, 16, 13, 0.99);
    }

    .ES-menu {
        gap: 16px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .ES-menu a {
        min-height: 38px;
        padding: 4px 0;
    }
}

@media (max-width: 680px) {
    .ES-logo {
        width: 132px;
        height: 46px;
        max-width: 132px;
        max-height: 46px;
        min-width: 132px;
        flex-basis: 132px;
    }
}

/* =========================================================
   ES service pain point concern / answer columns
========================================================= */

.ES-painColumns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--ES-border-soft);
    border-radius: 12px;
    overflow: hidden;
    background: var(--ES-white);
    box-shadow: 0 18px 42px rgba(17, 16, 13, 0.06);
}

.ES-painColumn {
    padding: 30px 32px;
}

.ES-painConcern {
    background: #f7e7e5;
}

.ES-painAnswer {
    background: #e8f1e9;
    border-left: 1px solid rgba(31, 27, 22, 0.08);
}

.ES-painColumn h3 {
    margin-bottom: 22px;
    font-family: var(--ES-body);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.ES-painConcern h3,
.ES-painConcern strong {
    color: #9d1f22;
}

.ES-painAnswer h3,
.ES-painAnswer strong {
    color: #2f6d3b;
}

.ES-painItem + .ES-painItem {
    margin-top: 18px;
}

.ES-painItem strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 900;
}

.ES-painItem p {
    margin: 0;
    color: #2f2a24;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 780px) {
    .ES-painColumns {
        grid-template-columns: 1fr;
    }

    .ES-painAnswer {
        border-left: 0;
        border-top: 1px solid rgba(31, 27, 22, 0.08);
    }

    .ES-painColumn {
        padding: 24px;
    }
}

/* =========================================================
   ES pain columns theme-aligned refinement
========================================================= */

.ES-painColumns {
    border: 1px solid var(--ES-border);
    border-radius: var(--ES-radius);
    background: var(--ES-black);
    box-shadow: 0 22px 60px rgba(17, 16, 13, 0.12);
}

.ES-painColumn {
    padding: 34px;
}

.ES-painConcern {
    background: var(--ES-cream-2);
}

.ES-painAnswer {
    background: var(--ES-black-soft);
    border-left: 1px solid var(--ES-border);
}

.ES-painColumn h3 {
    margin: 0 0 24px;
    font-family: var(--ES-heading);
    font-size: 32px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0;
}

.ES-painConcern h3 {
    color: var(--ES-text);
}

.ES-painAnswer h3 {
    color: var(--ES-white);
}

.ES-painItem {
    position: relative;
    padding-left: 18px;
}

.ES-painItem::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 100px;
    background: var(--ES-gold);
}

.ES-painItem + .ES-painItem {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 138, 61, 0.18);
}

.ES-painConcern strong,
.ES-painAnswer strong {
    color: var(--ES-gold-dark);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 900;
    text-transform: none;
}

.ES-painAnswer strong {
    color: var(--ES-gold);
}

.ES-painItem p {
    margin-top: 6px;
    color: var(--ES-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ES-painAnswer .ES-painItem p {
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 780px) {
    .ES-painColumn {
        padding: 26px 22px;
    }

    .ES-painAnswer {
        border-left: 0;
        border-top: 1px solid var(--ES-border);
    }

    .ES-painColumn h3 {
        font-size: 28px;
    }
}
