:root {
    --bg: #f3f0ea;
    --bg-soft: #d8d2cd;
    --panel: #1f2125;
    --panel-2: #282b30;
    --panel-3: #141518;
    --taupe: #9d7d57;
    --taupe-2: #bda48b;
    --gold: #d4af37;
    --gold-soft: #eddba0;
    --text: #2d2926;
    --text-soft: #5c5752;
    --line: rgba(45, 41, 38, 0.14);
    --white: #ffffff;
    --shadow-soft: 0 16px 44px rgba(18, 16, 14, 0.08);
    --shadow-deep: 0 24px 70px rgba(13, 13, 16, 0.22);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1360px;
    --header-h: 92px;
    --ease: 320ms cubic-bezier(.22, 1, .36, 1);
    --section-gap-tight: clamp(20px, 3vw, 32px);
    --section-gap-base: clamp(28px, 4vw, 48px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

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

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

button,
input,
textarea {
    font: inherit;
}

main {
    overflow: clip;
}

.site-shell {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 36vw;
    height: 36vw;
    min-width: 260px;
    min-height: 260px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(28px);
    opacity: 0.34;
}

.site-shell::before {
    display: none;
}

.site-shell::after {
    display: none;
}

.container-fluid-limited {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.page-pad {
    padding-top: calc(var(--header-h) + 42px);
}

.section-light {
    background: var(--bg);
    position: relative;
}

.section-soft {
    background: var(--bg-soft);
    position: relative;
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 28%),
        linear-gradient(180deg, #25282d 0%, #1c1e22 54%, #141619 100%);
    color: var(--white);
    position: relative;
}

.section-dark p,
.section-dark li {
    color: rgba(255, 255, 255, 0.82);
}

.section-spaced {
    padding: clamp(64px, 9vw, 120px) 0;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9d7910;
}

.display-title,
.section-title,
.quote-title,
.menu-link,
.footer-nav a,
.page-title,
.service-title,
.cta-title,
.brand-heading {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.display-title {
    font-size: clamp(3rem, 5.5vw, 5.7rem);
    line-height: 0.92;
    margin: 0;
}

.page-title {
    font-size: clamp(3.1rem, 5.2vw, 5.2rem);
    line-height: 0.94;
    margin: 0 0 28px;
}

.section-title {
    font-size: clamp(2.35rem, 4vw, 4rem);
    line-height: 0.96;
    margin: 0;
    position: relative;
}

.section-title::after,
.page-title::after {
    content: "";
    display: block;
    width: 74px;
    height: 2px;
    margin-top: 16px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 1), rgba(212, 175, 55, 0));
}

.brand-heading {
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    line-height: 1;
    margin: 0 0 18px;
}

p,
li,
label,
input,
textarea {
    color: var(--text-soft);
    line-height: 1.86;
}

p {
    margin: 0;
}

p + p {
    margin-top: 16px;
}

.btn-clean {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), color var(--ease), border-color var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-clean:hover {
    transform: translateY(-2px);
}

.btn-clean::after {
    content: "";
    position: absolute;
    inset: -1px auto -1px -35%;
    width: 28%;
    transform: skewX(-22deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    opacity: 0;
}

.btn-clean:hover::after {
    opacity: 1;
    animation: button-sheen 760ms ease;
}

.btn-dark {
    background: linear-gradient(180deg, #292c31 0%, #181b1f 100%);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-dark:hover {
    background: linear-gradient(180deg, #23262b 0%, #14171b 100%);
    color: var(--white);
}

.btn-taupe {
    background: var(--taupe-2);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(51, 38, 22, 0.14), 0 0 0 1px rgba(212, 175, 55, 0.14) inset;
}

.btn-taupe:hover {
    background: #b3977d;
    color: var(--white);
    border-color: rgba(212, 175, 55, 0.4);
}

.btn-light {
    background: var(--bg);
    border-color: rgba(212, 175, 55, 0.24);
    color: var(--panel);
}

.btn-light:hover {
    background: var(--white);
    color: var(--panel);
}

.btn-outline-soft {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.btn-outline-soft:hover {
    color: var(--panel);
    background: var(--white);
    border-color: var(--white);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1040;
    background: rgba(243, 240, 234, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    transition: box-shadow var(--ease), background-color var(--ease);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(20, 18, 17, 0.08), 0 1px 0 rgba(212, 175, 55, 0.2);
}

.header-inner {
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: 88px 1fr auto;
    align-items: center;
}

.header-menu-trigger,
.hero-arrows button,
.gallery-control,
.menu-close {
    border: 0;
    background: transparent;
    color: var(--panel);
    padding: 0;
    cursor: pointer;
}

.header-menu-trigger {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    transition: transform var(--ease), color var(--ease);
}

.header-menu-trigger:hover,
.menu-close:hover,
.header-socials a:hover,
.footer-socials a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.header-logo {
    justify-self: center;
}

.header-logo img {
    width: auto;
    height: 74px;
    object-fit: contain;
}

.header-socials {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-tools {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 10px 24px rgba(18, 16, 14, 0.06);
}

.language-switch--menu {
    display: none;
}

.language-switch__button {
    min-width: 44px;
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background-color var(--ease), color var(--ease), transform var(--ease);
}

.language-switch__button:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.language-switch__button.is-active {
    background: linear-gradient(145deg, #292c31 0%, #17191d 100%);
    color: var(--white);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.34);
}

.menu-language {
    margin-top: 28px;
}

.menu-language .language-switch {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.26);
    box-shadow: none;
}

.menu-language .language-switch__button {
    min-width: 56px;
    min-height: 38px;
    color: rgba(255, 255, 255, 0.72);
}

.menu-language .language-switch__button:hover {
    color: var(--white);
}

.menu-language .language-switch__button.is-active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.26), rgba(255, 255, 255, 0.1));
    color: var(--white);
}

.header-socials a,
.header-socials a i,
.footer-socials a,
.footer-socials a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #141210 !important;
    transition: transform var(--ease), color var(--ease);
}

.header-socials a:hover,
.header-socials a:hover i,
.footer-socials a:hover,
.footer-socials a:hover i {
    color: #141210 !important;
}

.contact-list i,
.schedule-list i {
    color: #9d7910;
}

.site-menu {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(100vw, 640px);
    background: linear-gradient(180deg, #25282d 0%, #17191d 100%);
    color: var(--white);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
    box-shadow: 24px 0 60px rgba(0, 0, 0, 0.18);
}

.site-menu.is-open {
    transform: translateX(0);
}

.site-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.03), transparent 30%);
    pointer-events: none;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ease), visibility var(--ease);
    z-index: 1090;
}

.menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.menu-inner {
    position: relative;
    height: 100%;
    padding: 28px 58px 48px;
    display: flex;
    flex-direction: column;
}

.menu-close {
    align-self: flex-end;
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.92);
}

.menu-nav {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.menu-link {
    display: inline-block;
    font-size: clamp(2.5rem, 6vw, 4.45rem);
    line-height: 1.02;
    color: #f8f4ee;
    transition: transform var(--ease), color var(--ease), opacity var(--ease);
    text-shadow: 0 0 24px rgba(212, 175, 55, 0.08);
}

.menu-link:hover,
.menu-link.is-active {
    color: var(--gold-soft);
    transform: translateX(10px);
}

.hero {
    padding-top: var(--header-h);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(360px, 38%) minmax(0, 62%);
    align-items: stretch;
    min-height: clamp(560px, 68vh, 690px);
    width: 100%;
    margin-inline: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.hero-copy {
    order: 1;
    background: linear-gradient(180deg, #ab8356 0%, #946b3d 100%);
    color: var(--white);
    padding: clamp(116px, 13vh, 156px) clamp(40px, 4vw, 64px) clamp(54px, 5vw, 74px) clamp(66px, 6vw, 108px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%);
    pointer-events: none;
}

.hero-copy::before {
    content: none;
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.86);
    max-width: 32rem;
    margin: 18px 0 0;
}

.hero .display-title {
    max-width: 6.5ch;
    font-size: clamp(3.3rem, 4.6vw, 5.3rem);
    line-height: 0.94;
}

.hero-copy .btn-clean {
    margin-top: 30px;
    align-self: flex-start;
}

.hero-media {
    order: 2;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background: #16120f;
}

.hero-media::before {
    content: none;
}

.hero-arrows {
    position: absolute;
    right: 28px;
    bottom: 24px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-arrows button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 999px;
    background: rgba(35, 38, 44, 0.28);
    backdrop-filter: blur(8px);
}

.image-frame,
.image-card,
.photo-card,
.gallery-photo,
.about-photo,
.service-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(157, 125, 87, 0.34), rgba(255, 255, 255, 0.18));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(212, 175, 55, 0.12);
    transition: transform var(--ease), box-shadow var(--ease);
}

.image-frame::before,
.image-card::before,
.photo-card::before,
.gallery-photo::before,
.about-photo::before,
.service-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.image-label {
    position: absolute;
    inset: auto auto 18px 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(31, 33, 38, 0.92);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (hover: hover) {
    .image-card:hover,
    .photo-card:hover,
    .gallery-photo:hover,
    .about-photo:hover,
    .service-card:hover,
    .service-category:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 50px rgba(18, 16, 14, 0.12);
    }
}

.image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    text-align: center;
    padding: 24px;
    color: rgba(30, 32, 37, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-visual-wrap {
    position: relative;
    height: 100%;
    min-height: 100%;
    padding: 0;
    z-index: 1;
}

.hero-visual {
    height: 100%;
    min-height: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.hero-visual--featured {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hero-visual--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 12, 8, 0.02), rgba(16, 12, 8, 0.12));
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.hero-visual--featured::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 12%;
    background: linear-gradient(180deg, rgba(22, 18, 15, 0), rgba(22, 18, 15, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-image {
    height: 100%;
    transform: scale(1.015);
    transform-origin: center center;
    object-position: center center;
    filter: saturate(0.92) contrast(1.03) brightness(0.94);
    animation: none;
}

.hero-visual--featured {
    background: #16120f;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 54px;
}

.check-list,
.feature-bullets,
.dark-bullets,
.company-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li,
.feature-bullets li,
.dark-bullets li,
.company-list li {
    position: relative;
    padding-left: 34px;
}

.check-list li + li,
.feature-bullets li + li,
.dark-bullets li + li,
.company-list li + li {
    margin-top: 18px;
}

.check-list li::before,
.feature-bullets li::before,
.dark-bullets li::before,
.company-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: inherit;
    font-weight: 700;
}

.expect-grid,
.approach-grid,
.about-grid-top,
.about-grid-bottom,
.contact-grid,
.gallery-top,
.gallery-masonry,
.service-intro-grid,
.service-grid {
    display: grid;
    gap: 40px;
}

.expect-grid {
    grid-template-columns: 1.25fr 0.95fr;
    align-items: center;
}

.expect-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.expect-media .image-card:nth-child(1) {
    aspect-ratio: 0.76;
}

.expect-media .image-card:nth-child(2) {
    aspect-ratio: 0.76;
    transform: translateY(34px);
}

.dark-showcase-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 46px;
    align-items: center;
}

.dark-stack {
    display: grid;
    gap: 18px;
}

.dark-stack .image-card {
    min-height: 420px;
    aspect-ratio: 1 / 0.72;
}

.approach-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.approach-photo {
    min-height: 580px;
}

.process-list {
    display: grid;
    gap: 24px;
}

.process-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
}

.process-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #a88417;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(157, 125, 87, 0.08));
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.22);
    font-size: 1.25rem;
}

.process-item h3,
.faq-question,
.service-title,
.footer-nav a,
.contact-side h3,
.company-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
}

.process-item h3,
.company-title,
.contact-side h3 {
    font-size: 2rem;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--text);
}

.faq-cta-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 52px;
}

.quote-title {
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    max-width: 11ch;
}

.faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-button {
    width: 100%;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: 0;
    color: var(--white);
    cursor: pointer;
    text-align: left;
}

.faq-button span:first-child {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.3rem, 2.1vw, 1.9rem);
    line-height: 1.05;
}

.faq-toggle-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 22px;
    font-size: 1.55rem;
    line-height: 1;
    opacity: 0.84;
    transition: transform var(--ease), opacity var(--ease);
}

.faq-item.is-open .faq-toggle-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--ease), opacity var(--ease);
}

.faq-answer-inner {
    padding: 0 0 22px;
}

.faq-item.is-open .faq-answer {
    max-height: 220px;
    opacity: 1;
}

.cta-band {
    padding: 52px 0;
}

.cta-band-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.cta-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.98;
    margin: 0;
    color: var(--white);
}

.site-footer {
    padding: 42px 0 34px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 28px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.footer-divider {
    width: min(100%, 420px);
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.72), rgba(212, 175, 55, 0));
    margin: 18px auto 22px;
}

.footer-meta {
    text-align: center;
}

.footer-meta p {
    margin: 0;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 10px 0 12px;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 18px;
    z-index: 1020;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 14px 28px rgba(7, 97, 38, 0.28), 0 0 0 3px rgba(212, 175, 55, 0.18);
    transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
    animation: whatsapp-enter 500ms ease 180ms both, whatsapp-float-drift 3.6s ease-in-out 900ms infinite;
    overflow: visible;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.26), transparent 38%),
        linear-gradient(145deg, #38df7b 0%, #25d366 55%, #16994c 100%);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 22px 44px rgba(7, 97, 38, 0.34);
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: conic-gradient(from 180deg, rgba(212, 175, 55, 0), rgba(255, 244, 204, 0.92), rgba(212, 175, 55, 0));
    z-index: -1;
    animation: whatsapp-orbit 4s linear infinite;
    opacity: 0.7;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 1px solid rgba(212, 175, 55, 0.5);
    opacity: 0;
    transform: scale(0.92);
}

.whatsapp-float.is-attention::after {
    animation: whatsapp-pulse 1.8s ease-out 0s 3;
}

.whatsapp-float i {
    position: relative;
    z-index: 1;
    font-size: 1.45rem;
    animation: whatsapp-bob 2.4s ease-in-out infinite, whatsapp-icon-tilt 3.6s ease-in-out infinite;
}

.page-hero-copy {
    max-width: 480px;
}

.contact-grid {
    grid-template-columns: 1.4fr 0.8fr;
}

.contact-grid > .reveal,
.contact-side {
    position: relative;
}

.contact-grid > .reveal::before,
.contact-side::before {
    content: "";
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: calc(var(--radius-lg) + 6px);
    pointer-events: none;
}

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

.form-field {
    display: grid;
    gap: 8px;
}

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

.form-field label {
    color: var(--text);
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(45, 41, 38, 0.08);
    background: #eceef3;
    padding: 14px 16px;
    color: var(--text);
    resize: vertical;
    min-height: 56px;
    transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.56);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
    background: #f5f3ef;
}

.form-field textarea {
    min-height: 160px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.captcha-field {
    gap: 14px;
}

.captcha-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.6)),
        rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 16px 34px rgba(18, 16, 14, 0.06);
}

.captcha-label {
    display: inline-block;
    margin-bottom: 6px;
    color: #9c7a16;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.captcha-question {
    display: block;
    color: var(--text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1;
}

.captcha-refresh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--ease), border-color var(--ease), background-color var(--ease), color var(--ease);
}

.captcha-refresh:hover {
    transform: translateY(-1px);
    color: #8b6914;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 250, 235, 0.95);
}

.consent-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(255, 255, 255, 0.54);
    cursor: pointer;
}

.consent-check input {
    width: 18px;
    height: 18px;
    margin: 6px 0 0;
    accent-color: #b89117;
}

.consent-check span {
    color: var(--text);
    line-height: 1.7;
}

.consent-link {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: #9d7910;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.54);
    text-underline-offset: 3px;
    cursor: pointer;
}

.consent-link:hover {
    color: #7f6211;
}

.footer-terms-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: color var(--ease), transform var(--ease);
}

.footer-terms-trigger:hover {
    color: #7f6211;
    transform: translateY(-1px);
}

.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    line-height: 1.6;
}

.form-status.is-success {
    background: rgba(37, 211, 102, 0.12);
    color: #165f33;
}

.form-status.is-error,
.form-status.is-validation,
.form-status.is-captcha {
    background: rgba(157, 125, 87, 0.12);
    color: var(--text);
}

[data-contact-submit]:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.contact-side {
    display: grid;
    gap: 38px;
}

.contact-list,
.schedule-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li,
.schedule-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list li {
    align-items: flex-start;
}

.contact-list li i {
    margin-top: 2px;
}

.contact-side-note {
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.65;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1180;
    background: rgba(16, 14, 12, 0.54);
    backdrop-filter: blur(8px);
}

.terms-modal {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: grid;
    place-items: center;
    padding: 24px;
}

.terms-modal__panel {
    position: relative;
    width: min(100%, 860px);
    max-height: min(88vh, 920px);
    overflow: auto;
    padding: 34px 30px 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 24%),
        linear-gradient(180deg, #faf7f0 0%, #f2ece2 100%);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 30px 90px rgba(16, 14, 12, 0.24);
}

.terms-modal__panel::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.terms-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: transform var(--ease), color var(--ease), border-color var(--ease);
}

.terms-modal__close:hover {
    transform: translateY(-1px);
    color: #8b6914;
    border-color: rgba(212, 175, 55, 0.52);
}

.terms-modal__eyebrow {
    margin-bottom: 8px;
}

.terms-modal__title {
    max-width: 16ch;
    margin-bottom: 20px;
}

.terms-modal__content {
    display: grid;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.terms-list {
    display: grid;
    gap: 16px;
}

.terms-section {
    display: grid;
    gap: 14px;
}

.terms-section-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(30, 32, 37, 0.92);
}

.terms-item {
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 12px 28px rgba(18, 16, 14, 0.05);
}

.terms-item h3 {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--text);
}

.terms-item h4 {
    margin: 0 0 10px;
    font-size: 1.06rem;
    line-height: 1.25;
    font-weight: 800;
    color: rgba(30, 32, 37, 0.96);
}

.terms-item__lead {
    margin: 0 0 12px;
}

.terms-bullets {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 10px;
}

.terms-bullets li::marker {
    color: rgba(171, 129, 30, 0.9);
}

.terms-item > :last-child {
    margin-bottom: 0;
}

.terms-note {
    padding: 16px 18px;
    border-left: 3px solid rgba(212, 175, 55, 0.72);
    background: rgba(212, 175, 55, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.gallery-top {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
}

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

.gallery-photo {
    min-height: 420px;
    border-radius: 0;
    box-shadow: none;
}

.gallery-photo.is-tall {
    min-height: 560px;
}

.before-after-tag {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--panel);
    display: grid;
    place-items: center;
    z-index: 2;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.before-after-line {
    position: absolute;
    inset: 0 auto 0 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.page-gallery .gallery-top {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
    align-items: start;
}

.page-gallery .gallery-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.page-gallery .gallery-photo,
.page-gallery .gallery-photo.is-tall {
    --compare-position: 50%;
    min-height: 0;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    isolation: isolate;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(18, 16, 14, 0.08);
    user-select: none;
}

.page-gallery .gallery-compare__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    pointer-events: none;
}

.page-gallery .gallery-compare__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.page-gallery .gallery-compare__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 16, 14, 0.06));
    pointer-events: none;
}

.page-gallery .gallery-compare__range {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
    border: 0;
    opacity: 0;
}

.page-gallery .gallery-compare.is-dragging {
    box-shadow: 0 24px 56px rgba(18, 16, 14, 0.14);
}

.page-gallery .before-after-line {
    inset: 0 auto 0 var(--compare-position);
    width: 3px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 1px rgba(21, 18, 14, 0.04);
    z-index: 2;
    pointer-events: none;
}

.page-gallery .before-after-tag {
    inset: 50% auto auto var(--compare-position);
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    padding: 0;
    border-radius: 50%;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid rgba(32, 27, 20, 0.08);
    background: rgba(255, 255, 255, 0.96);
    color: var(--panel);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    z-index: 3;
    pointer-events: auto;
}

.page-gallery .before-after-handle {
    cursor: ew-resize;
    touch-action: none;
}

.page-gallery .before-after-handle span {
    pointer-events: none;
}

.page-gallery .before-after-handle:focus-visible {
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22), 0 14px 28px rgba(0, 0, 0, 0.14);
}

.page-gallery .before-after-handle:active {
    transform: translate(-50%, -50%) scale(0.98);
}

.about-grid-top {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
}

.about-grid-bottom {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
}

.about-photo,
.service-banner {
    min-height: 420px;
}

.page-about .about-grid-top {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
    gap: 22px;
}

.page-about .about-grid-bottom {
    grid-template-columns: minmax(320px, 1.02fr) minmax(0, 0.98fr);
    gap: 22px;
    margin-top: 14px;
}

.page-about .about-photo {
    width: 88%;
    max-width: 560px;
    min-height: 0;
    aspect-ratio: 4 / 5;
}

.page-about .about-grid-top .about-photo {
    justify-self: start;
}

.page-about .about-grid-bottom .about-photo {
    justify-self: end;
}

.page-about .company-panel {
    padding: 28px 0 0 26px;
}

.company-panel {
    padding: 24px 10px 0 22px;
}

.company-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 26px;
    margin: 22px 0 24px;
}

.company-list li {
    padding-left: 26px;
    margin-top: 0 !important;
}

.service-intro-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
}

.service-banner {
    min-height: 620px;
    border-radius: 0;
    box-shadow: none;
}

.service-categories {
    display: grid;
    gap: var(--section-gap-base);
    margin-top: 48px;
}

.service-category {
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.46);
    box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255, 247, 224, 0.48);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-category-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: var(--section-gap-base);
}

.service-category-copy {
    max-width: 42rem;
}

.service-category-label {
    color: #a88417;
    margin-bottom: 10px;
}

.service-category-title {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 0.96;
    color: var(--text);
}

.service-category-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.16);
    color: #9d7910;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--section-gap-tight);
}

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

.service-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px;
    min-height: 100%;
    border-radius: var(--radius-md);
    background: rgba(243, 240, 234, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.14);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card p {
    font-size: 0.97rem;
    line-height: 1.72;
}

.service-icon {
    width: 72px;
    aspect-ratio: 1;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.24), rgba(255, 255, 255, 0.46));
    box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(212, 175, 55, 0.22);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.service-icon::after {
    content: attr(data-label);
    position: absolute;
    inset: auto 0 10px;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.service-icon--image::after {
    content: none;
}

.service-icon--image::before {
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.service-icon__image {
    position: absolute;
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    object-fit: cover;
    border-radius: 14px;
    z-index: 1;
}

.service-title {
    font-size: clamp(1.7rem, 2.6vw, 2.45rem);
    line-height: 0.96;
    margin: 0 0 10px;
}

.service-banner-quote {
    position: absolute;
    inset: auto auto 44px 42px;
    max-width: 20ch;
    color: var(--white);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    z-index: 2;
}

.service-note {
    text-align: center;
    margin-top: 32px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.page-services .page-pad {
    padding-top: calc(var(--header-h) + 22px);
}

.page-services .services-hero-section {
    padding-bottom: clamp(18px, 3vw, 32px);
}

.page-services .services-catalog-section {
    padding-top: 0;
}

.page-services .services-hero-section .container-fluid-limited,
.page-services .services-catalog-section .container-fluid-limited {
    width: min(100% - 72px, 1380px);
}

.page-services .services-intro-grid {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: end;
    margin-bottom: 0;
    max-width: 1100px;
}

.page-services .services-intro-title {
    align-self: end;
}

.page-services .services-intro-title .page-title {
    margin: 0;
    font-size: clamp(3.4rem, 5.4vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
}

.page-services .services-intro-copy {
    max-width: 56rem;
    padding: clamp(22px, 2.6vw, 30px) clamp(24px, 3vw, 34px);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 243, 236, 0.68));
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 16px 36px rgba(18, 16, 14, 0.06);
    backdrop-filter: blur(8px);
}

.page-services .services-intro-copy p {
    margin: 0;
    max-width: 60ch;
    font-size: clamp(1rem, 1.15vw, 1.08rem);
    line-height: 1.8;
    color: rgba(34, 28, 22, 0.82);
}

.page-services .service-banner--cta {
    overflow: hidden;
    max-width: min(100%, 1040px);
    margin-inline: auto;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    background: #ece5db;
    box-shadow: 0 28px 58px rgba(18, 16, 14, 0.12);
}

.page-services .service-banner--cta .media-cover {
    transform: scale(1.015);
    filter: saturate(0.94) contrast(1.03) brightness(0.98);
}

.page-services .service-banner--cta .media-cover {
    object-position: center 54%;
}

.page-services .services-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.page-services .services-section-head .brand-heading {
    margin: 0;
    font-size: clamp(2.7rem, 4vw, 4.2rem);
    line-height: 0.96;
}

.page-services .service-categories {
    gap: 30px;
    margin-top: 0;
}

.page-services .service-category {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 3vw, 40px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(247, 243, 237, 0.75));
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 18px 42px rgba(18, 16, 14, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.page-services .service-category::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.62), rgba(212, 175, 55, 0));
    opacity: 0.7;
    pointer-events: none;
}

.page-services .service-category-header {
    gap: 18px 28px;
    align-items: center;
    margin-bottom: 26px;
}

.page-services .service-category-copy {
    max-width: 48rem;
}

.page-services .service-category-copy > p:not(.service-category-label) {
    margin: 0;
    max-width: 62ch;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(34, 28, 22, 0.76);
}

.page-services .service-category-label {
    margin-bottom: 12px;
    letter-spacing: 0.22em;
}

.page-services .service-category-title {
    max-width: 12ch;
    margin-bottom: 12px;
    font-size: clamp(2.1rem, 3.2vw, 3.3rem);
    line-height: 0.92;
}

.page-services .service-category-meta {
    min-height: 38px;
    padding: 0 15px;
    background: rgba(212, 175, 55, 0.14);
    color: #a27d16;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.18);
}

.page-services .service-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.page-services .service-category-grid--vehicles {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-services .service-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(252, 249, 244, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 22px rgba(18, 16, 14, 0.05);
}

.page-services .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 48%);
    pointer-events: none;
    z-index: 0;
}

.page-services .service-card > * {
    position: relative;
    z-index: 1;
}

.page-services .service-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(38, 32, 28, 0.74);
}

.page-services .service-title {
    margin-bottom: 8px;
    font-size: clamp(1.55rem, 1.9vw, 2rem);
    line-height: 0.96;
}

.page-services .service-icon {
    width: 82px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f7f1e7 0%, #eee3d5 100%);
    box-shadow:
        0 10px 22px rgba(18, 16, 14, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        inset 0 0 0 1px rgba(212, 175, 55, 0.14);
}

.page-services .service-icon--image::before {
    inset: 6px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 237, 227, 0.84));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.page-services .service-icon--image::after {
    content: none;
}

.page-services .service-icon__image {
    position: absolute;
    inset: 9px;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    border-radius: 12px;
    transition: transform var(--ease), filter var(--ease);
}

.page-services .service-icon--photo .service-icon__image {
    object-fit: cover;
    padding: 0;
    background: #f2eadf;
    box-shadow: 0 8px 18px rgba(18, 16, 14, 0.1);
}

.page-services .service-icon--cutout .service-icon__image {
    object-fit: contain;
    padding: 8px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0) 72%);
    filter: drop-shadow(0 8px 12px rgba(31, 24, 18, 0.12)) contrast(1.03);
}

.page-services .service-card:hover .service-icon__image {
    transform: scale(1.03);
}

.page-services .service-card:hover .service-icon--cutout .service-icon__image {
    filter: drop-shadow(0 10px 14px rgba(31, 24, 18, 0.16)) contrast(1.04);
}

.page-services .service-note--catalog {
    margin-top: 34px;
    padding: 18px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    color: rgba(34, 28, 22, 0.62);
}

.page-services .service-banner--cta {
    max-width: min(100%, 880px);
    min-height: clamp(190px, 24vw, 280px);
    margin-top: 32px;
}

.page-services .service-banner--cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 16, 14, 0) 44%, rgba(18, 16, 14, 0.64) 100%);
    z-index: 1;
    pointer-events: none;
}

.page-services .service-banner-quote {
    inset: auto auto 34px 34px;
    max-width: 16ch;
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    line-height: 0.94;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.route-note {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: #9d7910;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1199px) {
    .intro-grid,
    .expect-grid,
    .dark-showcase-grid,
    .approach-grid,
    .faq-cta-grid,
    .contact-grid,
    .gallery-top,
    .about-grid-top,
    .about-grid-bottom,
    .service-intro-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: minmax(300px, 40%) minmax(0, 60%);
        min-height: clamp(500px, 60vh, 620px);
    }

    .hero-copy {
        min-height: 0;
        justify-content: flex-start;
        padding: clamp(92px, 11vh, 126px) 34px 48px 46px;
    }

    .hero-media {
        min-height: 100%;
    }

    .dark-stack .image-card {
        min-height: 320px;
    }

    .company-panel {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .header-inner {
        grid-template-columns: 64px 1fr auto;
    }

    .header-logo img {
        height: 66px;
    }

    .site-menu {
        width: 100%;
    }

    .menu-inner {
        padding-inline: 32px;
    }

    .expect-media,
    .gallery-masonry,
    .form-grid,
    .company-list,
    .service-category-grid {
        grid-template-columns: 1fr;
    }

    .service-category-grid--vehicles {
        grid-template-columns: 1fr;
    }

    .expect-media .image-card:nth-child(2) {
        transform: none;
    }

    .service-category-header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .service-category {
        padding: 26px 22px;
    }

    .cta-band-grid {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

@media (max-width: 767px) {
    :root {
        --header-h: 82px;
    }

    .container-fluid-limited {
        width: min(100% - 24px, var(--container));
    }

    .page-pad {
        padding-top: calc(var(--header-h) + 30px);
    }

    .header-inner {
        grid-template-columns: 48px 1fr auto;
        min-height: var(--header-h);
    }

    .header-tools {
        gap: 10px;
    }

    .language-switch--header {
        display: none;
    }

    .language-switch--menu {
        display: inline-flex;
    }

    .header-socials {
        gap: 10px;
    }

    .header-socials a {
        font-size: 0.9rem;
    }

    .header-logo img {
        height: 58px;
    }

    .hero {
        padding-top: var(--header-h);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        width: 100%;
        border-radius: 0;
    }

    .hero-copy {
        order: 2;
        min-height: 0;
        padding: 34px 24px 40px;
        justify-content: center;
    }

    .hero-media {
        order: 1;
        min-height: 0;
    }

    .hero-visual-wrap {
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 10.2;
        padding: 0;
    }

    .hero-visual {
        min-height: 0;
        height: 100%;
        border-radius: 0;
    }

    .hero-visual--featured::after {
        height: 12%;
    }

    .hero-image {
        height: 100%;
        transform: scale(1.03);
        object-position: center center;
    }

    .dark-showcase-grid {
        gap: 28px;
    }

    .dark-stack .image-card {
        min-height: 240px;
    }

    .process-item {
        grid-template-columns: 48px 1fr;
    }

    .quote-title {
        max-width: none;
    }

    .gallery-photo,
    .gallery-photo.is-tall,
    .about-photo,
    .service-banner,
    .approach-photo {
        min-height: 300px;
    }

    .footer-nav {
        gap: 8px 16px;
        font-size: clamp(1.7rem, 7vw, 2.4rem);
    }

    .menu-link {
        font-size: clamp(1.8rem, 7.6vw, 2.8rem);
    }

    .before-after-tag {
        width: 82px;
        height: 82px;
        font-size: 0.85rem;
    }

    .service-banner-quote {
        left: 24px;
        right: 24px;
        bottom: 24px;
        max-width: 16ch;
    }

    .service-card {
        grid-template-columns: 64px 1fr;
        padding: 20px;
    }

    .service-icon {
        width: 64px;
        border-radius: 14px;
    }

    .captcha-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .captcha-refresh {
        width: 100%;
        justify-content: center;
    }

    .terms-modal {
        padding: 14px;
    }

    .terms-modal__panel {
        padding: 28px 20px 22px;
        max-height: 90vh;
    }
}

@media (max-width: 1199px) {
    .page-services .services-hero-section .container-fluid-limited,
    .page-services .services-catalog-section .container-fluid-limited {
        width: min(100% - 56px, 1380px);
    }

    .page-services .services-intro-grid {
        gap: 24px;
    }

    .page-services .services-intro-copy {
        max-width: none;
    }

    .page-services .service-banner--main {
        min-height: 300px;
    }

    .page-services .service-banner--cta {
        min-height: 240px;
    }

    .page-services .service-category-title {
        max-width: none;
    }

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

    .page-about .about-grid-top,
    .page-about .about-grid-bottom {
        gap: 18px;
    }

    .page-about .about-photo {
        width: 92%;
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .page-about .about-grid-top,
    .page-about .about-grid-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-about .about-grid-bottom {
        margin-top: 22px;
    }

    .page-about .about-photo {
        width: 100%;
        max-width: none;
    }

    .page-about .about-grid-top .about-photo,
    .page-about .about-grid-bottom .about-photo {
        justify-self: stretch;
    }

    .page-about .company-panel {
        padding: 0;
    }

    .page-services .page-pad {
        padding-top: calc(var(--header-h) + 18px);
    }

    .page-services .services-hero-section .container-fluid-limited,
    .page-services .services-catalog-section .container-fluid-limited {
        width: min(100% - 34px, var(--container));
    }

    .page-services .services-intro-grid {
        grid-template-columns: 1fr;
        align-items: start;
        margin-bottom: 24px;
    }

    .page-services .service-banner--main {
        min-height: 250px;
    }

    .page-services .service-banner--cta {
        min-height: 210px;
    }

    .page-services .service-category-grid,
    .page-services .service-category-grid--vehicles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-services .service-category-header {
        align-items: start;
    }

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

@media (max-width: 767px) {
    .page-services .page-pad {
        padding-top: calc(var(--header-h) + 20px);
    }

    .page-services .services-hero-section {
        padding-bottom: 34px;
    }

    .page-services .services-hero-section .container-fluid-limited,
    .page-services .services-catalog-section .container-fluid-limited {
        width: min(100% - 24px, var(--container));
    }

    .page-services .services-intro-grid {
        gap: 18px;
        margin-bottom: 18px;
    }

    .page-services .services-intro-copy {
        padding: 18px 18px 16px;
        border-radius: 20px;
    }

    .page-services .service-banner--main,
    .page-services .service-banner--cta {
        min-height: 190px;
        border-radius: 22px;
    }

    .page-services .services-section-head {
        margin-bottom: 18px;
    }

    .page-services .service-category {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .page-services .service-category-grid,
    .page-services .service-category-grid--vehicles {
        grid-template-columns: 1fr;
    }

    .page-services .service-card {
        grid-template-columns: 74px 1fr;
        gap: 14px;
        padding: 18px;
    }

    .page-services .service-icon {
        width: 74px;
        border-radius: 16px;
    }

    .page-services .service-banner-quote {
        left: 22px;
        right: 22px;
        bottom: 22px;
        max-width: 12ch;
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .page-services .service-note--catalog {
        margin-top: 26px;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .page-about .about-grid-top,
    .page-about .about-grid-bottom {
        gap: 18px;
    }

    .page-about .about-grid-bottom {
        margin-top: 18px;
    }

    .page-about .about-photo {
        border-radius: 22px;
        aspect-ratio: 4 / 4.8;
    }

    .page-about .company-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .page-gallery .gallery-photo,
    .page-gallery .gallery-photo.is-tall {
        aspect-ratio: 3 / 4;
        border-radius: 20px;
    }

    .page-gallery .before-after-tag {
        width: 74px;
        height: 74px;
        font-size: 0.7rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@keyframes ambient-drift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(24px, -18px, 0) scale(1.08);
    }
}

@keyframes hero-image-drift {
    from {
        transform: scale(1.08) translate3d(0, -20%, 0);
    }
    to {
        transform: scale(1.1) translate3d(-4px, -22%, 0);
    }
}

@keyframes whatsapp-enter {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes button-sheen {
    from {
        transform: translateX(0) skewX(-22deg);
    }
    to {
        transform: translateX(420%) skewX(-22deg);
    }
}

@keyframes whatsapp-orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes whatsapp-bob {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.06);
    }
}

@keyframes whatsapp-float-drift {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    35% {
        transform: translateY(-4px) scale(1.02);
    }
    65% {
        transform: translateY(1px) scale(0.99);
    }
}

@keyframes whatsapp-icon-tilt {
    0%,
    100% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    40% {
        transform: rotate(7deg);
    }
    60% {
        transform: rotate(-4deg);
    }
    80% {
        transform: rotate(3deg);
    }
}

@keyframes whatsapp-pulse {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    35% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: scale(1.24);
    }
}
