:root {
    --color-bg: #f8f6f2;
    --color-surface: #ffffff;
    --color-dark: #1f2329;
    --color-muted: #5c6572;
    --color-accent: #f4b73f;
    --color-accent-dark: #d69a2a;
    --color-border: #e7e2da;
    --header-h: 80px;
    --radius: 12px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --space-xs: 0.5rem;
    --space-sm: 0.875rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --transition: 0.25s ease;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", Tahoma, Arial, sans-serif;
    color: var(--color-dark);
    background: var(--color-bg);
    line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: var(--space-xl) 0; }
.section-alt { background: #f2eee8; }

h1, h2, h3, h4 { line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: var(--space-md); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Transparent fixed header (scroll state via .scrolled) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: var(--header-h);
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(61, 60, 60, 1);
    transition: background 0.5s ease, border-color 0.35s ease, backdrop-filter 0.5s ease;
}
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
.site-header.search-open {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo-img {
    display: block;
    height: 71px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
}
.logo-text strong {
    color: var(--color-accent);
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list > li { position: relative; }

.nav-list > li > a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 22.5px;
    text-transform: uppercase;
    padding: 28px 10px;
    transition: color 0.2s ease;
}

.nav-list > li > .services-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 22.5px;
    text-transform: uppercase;
    padding: 28px 10px;
    transition: color 0.2s ease;
}

.services-link__text {
    position: relative;
}

.services-link__caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.9;
    transition: transform 0.28s ease, opacity 0.2s ease;
}

.services-link__caret svg {
    display: block;
}

.nav-dropdown.is-open .services-link__caret,
.nav-dropdown:focus-within .services-link__caret {
    transform: rotate(180deg);
}

.nav-list a:hover,
.nav-list a:focus-visible { color: var(--color-accent); }
.nav-list a.active { color: var(--color-accent); }

.nav-list > li > a::after,
.nav-list > li > .services-link::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 22px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}
.nav-list > li > a:hover::after,
.nav-list > li > a:focus-visible::after,
.nav-list > li > .services-link:hover::after,
.nav-list > li > .services-link:focus-visible::after,
.nav-list > li > a.active::after,
.nav-list > li > .services-link.active::after {
    width: calc(100% - 20px);
}

.nav-dropdown {
    position: relative;
}

/* Invisible hit area between "Services" and panel (absolute children don't extend li hover) */
@media (min-width: 993px) {
    .nav-dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 18px;
        z-index: 9998;
    }
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 268px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: rgba(24, 26, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    z-index: 10000;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: rgba(245, 247, 250, 0.92);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-accent);
}

.dropdown-menu a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
}

@media (min-width: 993px) {
    .nav-dropdown.is-open .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-link__caret {
        transition: none;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    transition: transform 0.3s ease;
}
.search-btn:hover { transform: scale(1.08); }

.header-btn {
    height: 58px;
    padding: 0 38px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}
.header-btn:hover,
.header-btn:focus-visible { background: #fff; color: #111; }

.menu-btn {
    display: none;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: #fff;
}

.header-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(17, 17, 17, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: var(--space-sm) 0;
}
.header-search[hidden] { display: none !important; }
.header-search-inner {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.header-search-input {
    flex: 1;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}
.header-search-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.header-search-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary { background: var(--color-accent); color: #111; }
.btn-primary:hover { background: var(--color-accent-dark); color: #fff; }

/* Homepage full-viewport hero */
/* Hero background image: url() is set inline in index.php (hero-img.webp) so $basePath works everywhere */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.55) 38%,
        rgba(0, 0, 0, 0.22) 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left top, rgba(255, 255, 255, 0.1), transparent 30%),
        rgba(0, 0, 0, 0.2);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    min-height: 100vh;
    margin: 0 auto;
    padding: calc(var(--header-h) + 70px) 20px 60px;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 183px;
    height: 32px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
}

.hero-title {
    margin-top: 28px;
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(52px, 10vw, 100px);
    font-weight: 700;
    line-height: 1.24;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.hero-btn {
    height: 55px;
    min-width: 198px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-btn-primary {
    background: #f5b942;
    color: #111;
    border: 1px solid #f5b942;
}

.hero-btn-primary:hover {
    background: #fff;
    border-color: #fff;
}

.hero-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

.hero-btn-outline:hover {
    background: #f5b942;
    border-color: #f5b942;
    color: #111;
}

.hero-btn span {
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 992px) {
    .hero-title {
        letter-spacing: -2px;
    }
    .hero-buttons {
        gap: 18px;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding-top: calc(var(--header-h) + 50px);
    }
    .hero-title {
        letter-spacing: -1px;
    }
    .hero-btn {
        width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Services highlight (below hero) */
.services-highlight {
    position: relative;
    padding: 70px 0 85px;
    background-color: #f4b942;
    background-image: url("../img/feature-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.services-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-cards {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 95px;
}

.service-card {
    width: 100%;
    max-width: 550px;
    min-height: 220px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    padding: 24px;
    overflow: hidden;
    position: relative;
}

.dark-card {
    background-color: #1a1a1a;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url("../img/service-card-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.light-card {
    background: #fff;
}

/* Fallback when .service-image is used without --slant */
.service-image:not(.service-image--slant) {
    width: 240px;
    height: 170px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Slanted frame + gold border — both highlight cards */
.dark-card .service-image--slant,
.light-card .service-image--slant {
    width: 248px;
    height: 176px;
    padding: 5px;
    box-sizing: border-box;
    background: #f4b942;
    border-radius: 0;
    overflow: visible;
    flex-shrink: 0;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.dark-card .service-image--slant .service-image__inner,
.light-card .service-image--slant .service-image__inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    border-radius: 12px;
}

.dark-card .service-image--slant img,
.light-card .service-image--slant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding-left: 28px;
}

.service-content h3 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.service-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.service-content h3 a:hover {
    opacity: 0.85;
}

.dark-card h3 {
    color: #fff;
}

.light-card h3 {
    color: #111827;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 260px;
    margin: 0;
}

.dark-card p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.dark-card .service-content {
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.light-card p {
    color: #5f5f5f;
}

.clients-line {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 55px;
}

.clients-line span {
    white-space: nowrap;
    color: #111;
    font-size: 16px;
    font-weight: 700;
}

.clients-line .line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.6);
}

/* Partner logos: inline SVG + horizontal scroll, nav buttons (scrollbar hidden). */
.sh-partners {
    width: 100%;
}

.sh-partners__row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.sh-partners__nav {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-dark);
    color: #fff;
    cursor: pointer;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;
}

.sh-partners__nav svg {
    width: 22px;
    height: 22px;
    display: block;
}

.sh-partners__nav:hover:not(:disabled) {
    background: #111;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.28),
        0 0 0 2px var(--color-accent),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.sh-partners__nav:active:not(:disabled) {
    transform: translateY(0);
    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.22),
        0 0 0 2px var(--color-accent-dark),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sh-partners__nav:focus-visible {
    outline: 2px solid var(--color-dark);
    outline-offset: 3px;
}

.sh-partners__nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(31, 35, 41, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    .sh-partners__nav {
        transition: background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    }

    .sh-partners__nav:hover:not(:disabled),
    .sh-partners__nav:active:not(:disabled) {
        transform: none;
    }
}

.sh-partners__viewport {
    flex: 1;
    min-width: 0;
    padding: 12px 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    outline: none;
}

.sh-partners__viewport::-webkit-scrollbar {
    display: none;
}

.sh-partners__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(20px, 4vw, 40px);
    min-height: 56px;
    padding: 4px 2px 8px;
    width: max-content;
    max-width: none;
}

.sh-partners__item {
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.sh-partners__logo {
    margin: 0;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-partners__logo svg {
    display: block;
    height: 48px;
    width: auto;
    max-width: min(240px, 72vw);
}

.sh-partners__logo svg text {
    fill: #111;
}

.sh-partners__logo svg [stroke] {
    stroke: #111;
}

.sh-partners__fallback {
    margin: 0;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: rgba(17, 17, 17, 0.75);
}

.client-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(17, 17, 17, 0.55);
    border: 1px dashed rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

@media (max-width: 992px) {
    .services-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-image {
        width: 100%;
        height: 220px;
    }

    .dark-card .service-image--slant,
    .light-card .service-image--slant {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }

    .service-content {
        padding-left: 0;
        padding-top: 24px;
    }

    .clients-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .clients-line .line {
        display: none;
    }
}

.eyebrow { color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }

/* About section (home) */
.about-section {
    position: relative;
    padding: 120px 0;
    background: #f3f3f3;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    left: max(-180px, -12vw);
    bottom: -80px;
    width: min(620px, 90vw);
    height: min(620px, 85vh);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    pointer-events: none;
}

.about-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.about-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    flex-shrink: 0;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.about-content {
    width: 100%;
    max-width: 580px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.about-title {
    color: #222;
    font-size: clamp(2rem, 4vw, 48px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
}

.about-title span {
    color: var(--color-accent);
}

.about-text {
    margin-top: 34px;
    color: #666;
    font-size: clamp(1rem, 2vw, 20px);
    line-height: 1.8;
    max-width: 560px;
}

.about-btn {
    margin-top: 42px;
    width: 260px;
    max-width: 100%;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 34px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #111;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.about-btn span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e3a933;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.about-btn:hover span {
    background: #d69a2a;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: clamp(40px, 8vw, 90px);
    margin-top: 60px;
}

.about-stat h3 {
    color: var(--color-accent);
    font-size: clamp(2rem, 4vw, 52px);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    min-height: 1.1em;
}

.about-stat p {
    color: #444;
    font-size: clamp(1rem, 2vw, 22px);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1100px) {
    .about-container {
        flex-direction: column;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image-wrap {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 90px 0;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 45px;
    }
}

@media (max-width: 576px) {
    .about-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-btn:hover {
        transform: none;
    }
}

/* Services showcase slider (dark) */
.services-showcase {
    position: relative;
    background: #0d0d0d;
    color: #fff;
    padding: 100px 0 110px;
    overflow: hidden;
    isolation: isolate;
}

/* Yellow corner arc (transition toward why-section) */
.services-showcase::after {
    content: "";
    position: absolute;
    left: -14%;
    bottom: -32%;
    width: min(62vw, 580px);
    height: min(62vw, 580px);
    border-radius: 50%;
    background: var(--color-accent);
    z-index: 0;
    pointer-events: none;
}

.services-showcase__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-showcase__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px 40px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.services-showcase__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.services-showcase__title {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.services-showcase__title-line {
    display: block;
    color: #fff;
}

.services-showcase__title-accent {
    display: block;
    color: var(--color-accent);
}

.services-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    height: 58px;
    padding: 0 10px 0 32px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #111;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-showcase__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244, 183, 63, 0.35);
}

.services-showcase__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    color: #111;
}

.services-showcase-swiper.swiper {
    overflow: hidden;
}

.services-showcase__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.svc-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: visible;
    background: #141414;
    display: flex;
    flex-direction: column;
}

.svc-card__visual {
    position: relative;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: #222;
}

.svc-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-card__icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.svc-card__icon-svg {
    display: block;
}

.svc-card__panel {
    position: relative;
    z-index: 2;
    margin: -36px 14px 18px auto;
    width: calc(100% - 28px);
    max-width: 420px;
    padding: 22px 22px 24px;
    background: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.svc-card__title {
    margin: 0 0 12px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.svc-card__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.svc-card__more {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px 10px 20px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.svc-card__more:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.svc-card__more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #111;
}

.services-showcase__pagination.swiper-pagination {
    position: relative;
    margin-top: 44px;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.services-showcase .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    border-radius: 50%;
    background: #6a5230;
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.services-showcase .swiper-pagination-bullet-active {
    background: var(--color-accent);
    transform: scale(1.15);
}

@media (max-width: 992px) {
    .services-showcase__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-showcase__cta {
        width: 100%;
        justify-content: space-between;
    }

    .services-showcase__row {
        grid-template-columns: 1fr;
    }

    .svc-card__panel {
        margin-left: 14px;
        margin-right: 14px;
        max-width: none;
        width: calc(100% - 28px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-showcase__cta:hover {
        transform: none;
    }
}

/* Why choose us (yellow band) */
.why-section {
    padding: 95px 0 80px;
    background: var(--color-accent);
    overflow: hidden;
}

.why-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.why-content {
    width: 100%;
    max-width: 560px;
}

.why-subtitle {
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.why-title {
    color: #111;
    font-size: clamp(1.75rem, 3.5vw, 40px);
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 28px;
}

.why-text {
    color: #111;
    font-size: 15px;
    line-height: 1.55;
    max-width: 520px;
    margin: 0 0 32px;
}

.why-list {
    width: 100%;
}

.why-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.75);
    padding: 0 0 18px;
    margin-bottom: 18px;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-item__trigger {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.why-item__title {
    color: #111;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.why-item__trigger:focus-visible {
    outline: 2px solid #111;
    outline-offset: 4px;
    border-radius: 4px;
}

.why-item:not(.active) .why-item__body {
    display: none;
}

.why-item-img {
    width: 100%;
    height: 105px;
    margin: 22px 0 14px;
    border: 5px solid #fff;
    border-radius: 8px;
    overflow: hidden;
}

.why-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-item__body p {
    color: #111;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.why-btn {
    margin-top: 36px;
    width: 182px;
    max-width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px 0 24px;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.why-btn:hover {
    transform: translateY(-3px);
}

.why-btn span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-image-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
    flex-shrink: 0;
}

.why-image {
    width: min(440px, 100%);
    max-width: 440px;
    aspect-ratio: 1;
    margin: 0 auto;
    border: 10px solid #fff;
    border-radius: 50% 50% 0 0;
    overflow: hidden;
    background: #fff;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-experience {
    position: absolute;
    right: clamp(-30px, -4vw, -40px);
    bottom: -28px;
    color: #111;
    font-size: clamp(3.5rem, 12vw, 108px);
    line-height: 1;
    font-weight: 700;
    text-shadow:
        -4px -4px 0 #fff,
        4px -4px 0 #fff,
        -4px 4px 0 #fff,
        4px 4px 0 #fff,
        0 8px 15px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.why-experience span {
    display: inline-block;
}

@media (max-width: 1050px) {
    .why-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-image-wrap {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .why-section {
        padding: 70px 0;
    }

    .why-title {
        font-size: 32px;
    }

    .why-image {
        width: min(320px, 100%);
        max-width: 320px;
    }

    .why-experience {
        font-size: 78px;
        right: -12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-btn:hover {
        transform: none;
    }
}

/* Marquee strip */
.marquee-section {
    width: 100%;
    padding: 55px 0;
    background: #fff;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 28s linear infinite;
    will-change: transform;
}

.marquee-row {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-row span {
    display: block;
    margin: 0 40px;
    font-family: "Space Grotesk", "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: clamp(2rem, 8vw, 80px);
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #888;
    transition: -webkit-text-stroke-color 0.35s ease, -webkit-text-fill-color 0.35s ease, color 0.35s ease;
}

.marquee-row span:hover {
    -webkit-text-fill-color: var(--color-accent);
    -webkit-text-stroke-color: var(--color-accent);
}

@supports not (-webkit-text-stroke: 1px #888) {
    .marquee-row span {
        color: #e8e8e8;
        -webkit-text-stroke: 0 transparent;
    }

    .marquee-row span:hover {
        color: var(--color-accent);
    }
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        row-gap: 0.5rem;
    }

    .marquee-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .marquee-section .marquee-row:last-child {
        display: none;
    }

    .marquee-row span {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .marquee-row span {
        font-size: 52px;
        line-height: 64px;
        margin: 0 25px;
    }
}

/* Digital / BIM section */
.digital-section {
    padding: 110px 0;
    background: #fff;
}

.digital-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.digital-content {
    width: 100%;
    max-width: 520px;
}

.digital-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 24px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    color: var(--color-accent-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.digital-title {
    color: #111;
    font-size: clamp(2rem, 5vw, 60px);
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.digital-title span {
    color: var(--color-accent);
}

.digital-text {
    margin-top: 32px;
    color: #555;
    font-size: 18px;
    line-height: 1.9;
    max-width: 500px;
}

.digital-btn {
    margin-top: 45px;
    width: 255px;
    max-width: 100%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 34px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #111;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.digital-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.digital-btn span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent-dark);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.digital-box {
    width: 100%;
    max-width: 560px;
    background: #090909;
    border-radius: 8px;
    padding: 34px;
}

.digital-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 34px;
}

.digital-item {
    color: #fff;
}

.digital-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.digital-icon svg {
    display: block;
}

.digital-item h3 {
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 14px;
}

.digital-item p {
    color: #d7d7d7;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.digital-image {
    width: 100%;
    height: 270px;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
}

.digital-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1050px) {
    .digital-container {
        flex-direction: column;
    }

    .digital-content,
    .digital-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .digital-section {
        padding: 80px 0;
    }

    .digital-title {
        font-size: 42px;
    }

    .digital-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .digital-title {
        font-size: 34px;
    }

    .digital-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .digital-btn:hover {
        transform: none;
    }
}

/* FAQ section */
.faq-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.faq-bg-block {
    position: absolute;
    top: 0;
    left: 14%;
    width: 260px;
    height: 430px;
    background: linear-gradient(to bottom, var(--color-accent), rgba(244, 183, 63, 0));
    pointer-events: none;
}

.faq-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.faq-image {
    width: 100%;
    max-width: 520px;
    height: 620px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-content {
    width: 100%;
    max-width: 530px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    color: var(--color-accent-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.faq-title {
    color: #111;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 42px;
}

.faq-title span {
    color: var(--color-accent);
    display: block;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 58px;
    padding: 0 24px;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-family: inherit;
    color: #000;
    font-size: 19px;
    font-weight: 700;
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-accent-dark);
}

.faq-question b {
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
    flex-shrink: 0;
    color: inherit;
}

.faq-answer {
    display: none;
    padding: 0 24px 28px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-item.active .faq-question:hover {
    color: var(--color-accent-dark);
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 1050px) {
    .faq-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-image {
        max-width: 100%;
        height: 520px;
    }

    .faq-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 0 18px;
    }

    .faq-answer {
        padding: 0 18px 24px;
    }
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
.card {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}
.card a { color: var(--color-accent-dark); font-weight: 600; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.image-placeholder {
    min-height: 280px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #ece8e0 0%, #d4cfc6 45%, #c4bfb5 100%);
    border: 1px solid var(--color-border);
    display: grid;
    place-items: center;
    text-align: center;
    padding: var(--space-md);
    color: var(--color-muted);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* Process + portfolio + contact (home) */
.process-section {
    padding: var(--space-xl) 0;
    background: #fff;
}

.section-intro {
    max-width: 640px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-intro__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    margin: 0 0 18px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    color: var(--color-accent-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-intro__title {
    margin: 0;
    color: #111;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    font-weight: 700;
}

.section-intro__title--tight {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.section-intro__title span {
    color: var(--color-accent);
}

.section-intro__lead {
    margin: 1rem 0 0;
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 52ch;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.steps-grid--home {
    gap: 1.25rem;
}

.step {
    position: relative;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    padding: 1.5rem 1.35rem 1.5rem;
    box-shadow: 0 8px 28px rgba(31, 35, 41, 0.06);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    opacity: 0.95;
}

.step:hover {
    border-color: rgba(244, 183, 63, 0.45);
    box-shadow: 0 14px 36px rgba(31, 35, 41, 0.1);
}

.step h3 {
    margin: 0.35rem 0 0.65rem;
    color: var(--color-accent-dark);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.step p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.portfolio-section {
    position: relative;
    padding: var(--space-xl) 0;
    background: #0c0c0c;
    color: #f0f0f0;
    overflow: hidden;
}

.portfolio-section::before {
    content: "";
    position: absolute;
    right: -8%;
    top: 20%;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 183, 63, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.portfolio-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.portfolio-visual__frame {
    position: relative;
    min-height: 320px;
    border-radius: 12px;
    background: linear-gradient(160deg, #161a20 0%, #0a0a0a 55%, #12161c 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    isolation: isolate;
}

.portfolio-visual__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.portfolio-visual__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.25) 100%
    );
    pointer-events: none;
}

.portfolio-visual__mesh {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 45%);
}

.portfolio-visual__tag {
    position: relative;
    z-index: 3;
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-accent);
}

.portfolio-visual__meta {
    position: relative;
    z-index: 3;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
    max-width: 18ch;
}

.portfolio-copy .section-intro__badge {
    border-color: rgba(244, 183, 63, 0.55);
    color: var(--color-accent);
}

.portfolio-copy .section-intro__title {
    color: #fff;
}

.portfolio-copy__text {
    margin: 0 0 1.5rem;
    color: rgba(230, 232, 236, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 48ch;
}

.text-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-accent);
    transition: color var(--transition), gap var(--transition);
}

.text-cta:hover {
    color: #fff;
    gap: 0.65rem;
}

.contact-preview-section {
    padding: var(--space-xl) 0 calc(var(--space-xl) + 0.5rem);
    background: #fff;
}

.contact-preview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
}

.contact-preview-lead {
    margin: 0 0 1.75rem;
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 48ch;
}

.contact-chips {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-chip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-chip:hover {
    border-color: rgba(244, 183, 63, 0.35);
    box-shadow: 0 8px 22px rgba(31, 35, 41, 0.06);
}

.contact-chip__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--color-border);
    display: grid;
    place-items: center;
    color: var(--color-accent-dark);
}

.contact-chip__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: 0.2rem;
}

.contact-chip__value {
    font-weight: 600;
    color: var(--color-dark);
    word-break: break-word;
}

.contact-chip__value--static {
    display: block;
    line-height: 1.5;
}

a.contact-chip__value:hover {
    color: var(--color-accent-dark);
}

.contact-preview-visual {
    border-radius: 12px;
    min-height: 280px;
    background: linear-gradient(135deg, #1a1e25 0%, #0f1115 50%, #1a1612 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-preview-visual__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-preview-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(12, 14, 18, 0.88) 0%,
        rgba(15, 17, 21, 0.72) 45%,
        rgba(26, 22, 18, 0.55) 100%
    );
    pointer-events: none;
}

.contact-preview-visual::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 80%;
    height: 70%;
    border-radius: 50%;
    z-index: 2;
    background: radial-gradient(circle, rgba(244, 183, 63, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.contact-preview-visual__inner {
    position: relative;
    text-align: center;
    z-index: 3;
}

.contact-preview-visual__city {
    display: block;
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1;
}

.contact-preview-visual__arr {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Pricing section */
.pricing-section {
    position: relative;
    padding: 95px 0 80px;
    background: var(--color-accent);
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(244, 183, 63, 0.88),
        rgba(244, 183, 63, 0.88)
    );
    opacity: 0.75;
    pointer-events: none;
}

.pricing-section--bg::before {
    background-image: linear-gradient(
            rgba(244, 183, 63, 0.88),
            rgba(244, 183, 63, 0.88)
        ),
        var(--pricing-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-heading {
    text-align: center;
    margin-bottom: 45px;
}

.pricing-kicker {
    display: block;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-title {
    color: #111;
    font-size: clamp(2rem, 4vw, 2.65rem);
    line-height: 1.2;
    font-weight: 700;
    margin: 22px 0 0;
}

.pricing-title span {
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.price-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 34px 28px 30px;
    min-height: 425px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.price-card--active {
    background: #1d1d1d;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.price-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px 16px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.price-head > div:first-child {
    flex: 1;
    min-width: 0;
}

.price-card--active .price-head {
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.price-tier {
    display: block;
    color: var(--color-accent-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-card--active .price-tier {
    color: var(--color-accent);
}

.price-head h3 {
    color: #000;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    line-height: 1.2;
    font-weight: 700;
    margin: 8px 0 0;
    overflow-wrap: break-word;
}

.price-card--active .price-head h3 {
    color: #fff;
}

.price-tag {
    flex: 0 1 46%;
    min-width: 0;
    max-width: 48%;
    text-align: right;
}

.price-tag strong {
    display: block;
    color: var(--color-accent-dark);
    font-size: clamp(1.35rem, 2.4vw, 2.35rem);
    line-height: 1.08;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.price-card--active .price-tag strong {
    color: var(--color-accent);
    font-size: clamp(1.15rem, 2vw, 1.95rem);
}

.price-tag small {
    display: block;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
    opacity: 0.85;
    overflow-wrap: break-word;
}

.price-card--active .price-tag small {
    color: #fff;
    opacity: 0.92;
}

.price-body {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex: 1;
}

.price-img {
    width: 64px;
    height: 280px;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8e4dc;
}

.price-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.price-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-body li {
    position: relative;
    padding-left: 22px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.9;
}

.price-card--active .price-body li {
    color: rgba(255, 255, 255, 0.88);
}

.price-body li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent-dark);
    font-weight: 700;
}

.price-card--active .price-body li::before {
    color: var(--color-accent);
}

.price-btn {
    margin-top: 28px;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 0 5px 0 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: border-color var(--transition), transform 0.25s ease, box-shadow 0.25s ease;
}

.price-btn:hover {
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.price-card--active .price-btn {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #111;
}

.price-card--active .price-btn:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
}

.price-btn span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.price-card--active .price-btn span {
    background: var(--color-accent-dark);
    color: #fff;
}

.pricing-decor {
    position: absolute;
    top: -88px;
    right: clamp(12px, 8vw, 90px);
    z-index: 3;
    width: 230px;
    height: 230px;
    background: #fff;
    border: 18px solid #111;
    transform: rotate(45deg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.pricing-decor > div {
    transform: rotate(-45deg);
    text-align: center;
}

.pricing-decor strong {
    display: block;
    color: var(--color-accent-dark);
    font-size: 34px;
    line-height: 1;
}

.pricing-decor__caption {
    display: block;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    margin-top: 6px;
    max-width: 9rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

@media (max-width: 1050px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-decor {
        display: none;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 72px 0 64px;
    }

    .price-head {
        flex-direction: column;
    }

    .price-tag {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .price-btn:hover {
        transform: none;
    }
}

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { margin-bottom: 0.6rem; padding-left: 1.4rem; position: relative; }
.list-check li::before { content: "\2713"; position: absolute; left: 0; color: var(--color-accent-dark); font-weight: 700; }

/* —— Page À propos —— */
.page-hero__lead {
    max-width: 52ch;
    margin: 1rem 0 0;
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.page-hero__lead a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-hero__lead a:hover {
    color: #ffd36b;
}

.about-page-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.9fr);
    gap: clamp(2rem, 5vw, 3.75rem);
    align-items: center;
}

.about-page-story__title {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.18;
    margin: 0 0 1rem;
    color: #111;
    font-weight: 700;
}

.about-page-story__text {
    margin: 0 0 1rem;
    color: var(--color-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.about-page-story__text:last-of-type {
    margin-bottom: 0;
}

.about-page-story__figure {
    margin: 0;
    background: transparent;
}

.about-page-story__frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(31, 35, 41, 0.1);
    box-shadow: 0 28px 64px rgba(31, 35, 41, 0.14);
    transform: rotate(-2deg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background-color: transparent;
}

.about-page-story__frame:hover {
    transform: rotate(0deg);
    box-shadow: 0 32px 72px rgba(31, 35, 41, 0.18);
}

.about-page-story__frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: transparent;
    mix-blend-mode: normal;
}

.about-page-values__head {
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.about-page-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.about-value-card {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 14px;
    padding: 1.5rem 1.35rem 1.65rem;
    box-shadow: 0 10px 34px rgba(31, 35, 41, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-value-card:hover {
    border-color: rgba(212, 165, 116, 0.45);
    box-shadow: 0 16px 40px rgba(31, 35, 41, 0.09);
}

.about-value-card__index {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-accent-dark);
}

.about-value-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.about-value-card__text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.62;
    color: var(--color-muted);
}

.about-page-metrics {
    background: linear-gradient(180deg, #faf8f5 0%, #efeae2 100%);
    border-top: 1px solid #e4dfd5;
    border-bottom: 1px solid #e4dfd5;
}

.about-page-metrics__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.about-page-metric__num {
    display: block;
    font-size: clamp(2.1rem, 3.8vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
}

.about-page-metric__label {
    margin: 0.4rem 0 0;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.about-page-cta {
    padding-bottom: calc(var(--space-xl) + 0.5rem);
}

.about-page-expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

.about-expert-card {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(31, 35, 41, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(31, 35, 41, 0.1);
}

.about-expert-card__visual {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #e8e4dc;
}

.about-expert-card__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.about-expert-card:hover .about-expert-card__visual img {
    transform: scale(1.04);
}

.about-expert-card__body {
    padding: 1.35rem 1.4rem 1.5rem;
}

.about-expert-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
}

.about-expert-card__text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.62;
    color: var(--color-muted);
}

.about-page-split {
    padding: var(--space-xl) 0;
}

.about-page-split__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.about-page-split__visual {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(31, 35, 41, 0.12);
    border: 1px solid rgba(31, 35, 41, 0.06);
}

.about-page-split__visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.about-page-split__title {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    margin: 0 0 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.about-page-split__lead {
    margin: 0 0 1.25rem;
    color: var(--color-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.about-page-gallery {
    background: #fff;
}

.about-page-gallery__head {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.about-page-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.about-page-gallery__cell {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 32px rgba(31, 35, 41, 0.08);
}

.about-page-gallery__cell img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-page-gallery__cell:hover img {
    transform: scale(1.05);
}

.about-page-zone {
    background: linear-gradient(180deg, #f2eee8 0%, #ebe4da 100%);
    border-top: 1px solid #e0d8cc;
    border-bottom: 1px solid #e0d8cc;
}

.about-page-zone__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.about-page-zone__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-page-zone__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--color-dark);
    line-height: 1.45;
}

.about-page-zone__list li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 0.45rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-accent-dark);
}

.about-page-zone .text-cta {
    margin-top: 1.35rem;
}

.about-page-quote {
    background: linear-gradient(125deg, #1f2329 0%, #2a3038 55%, #1a1e24 100%);
    color: #fff;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.about-page-quote__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about-page-quote__text {
    margin: 0;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.about-page-quote__text strong {
    color: var(--color-accent);
    font-weight: 700;
}

.about-page-quote__cite {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1100px) {
    .about-page-expertise__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-page-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .about-page-values__grid {
        grid-template-columns: 1fr;
    }

    .about-page-gallery__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .about-page-story__grid {
        grid-template-columns: 1fr;
    }

    .about-page-story__figure {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-page-story__frame {
        transform: none;
    }

    .about-page-story__frame:hover {
        transform: none;
    }

    .about-page-split__grid {
        grid-template-columns: 1fr;
    }

    .about-page-split__visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .about-page-zone__grid {
        grid-template-columns: 1fr;
    }

    .about-page-metrics__inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-page-story__frame,
    .about-page-story__frame:hover {
        transition: none;
        transform: none;
    }

    .about-expert-card:hover,
    .about-expert-card:hover .about-expert-card__visual img {
        transform: none;
    }

    .about-page-gallery__cell:hover img {
        transform: none;
    }
}

.section-cta .cta-box {
    background: linear-gradient(165deg, #252a32 0%, #181c22 42%, #12161c 100%);
    color: #fff;
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 2.75rem);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.2);
}

.cta-eyebrow {
    margin: 0 0 0.65rem;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-accent);
}

.cta-title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
}

.cta-title span {
    color: var(--color-accent);
}

.cta-text {
    margin: 0 auto 1.75rem;
    max-width: 44ch;
    color: rgba(230, 232, 236, 0.86);
    font-size: 1.05rem;
    line-height: 1.65;
}

.section-cta .btn-primary.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.88rem;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-cta .btn-primary.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.cta-btn__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-accent-dark);
    color: #111;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
    .section-cta .btn-primary.cta-btn:hover {
        transform: none;
    }
}

.page-hero {
    position: relative;
    background-color: #1f2329;
    background-image: linear-gradient(120deg, rgba(31, 35, 41, 0.95), rgba(31, 35, 41, 0.75));
    color: #fff;
    padding: calc(var(--header-h) + 3.5rem) 0 4rem;
}

.page-hero--cover {
    background-image: linear-gradient(120deg, rgba(31, 35, 41, 0.88), rgba(31, 35, 41, 0.68)), var(--page-hero-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat, no-repeat;
}

.page-hero--contact.page-hero {
    padding-bottom: clamp(3.5rem, 8vw, 4.75rem);
}

.page-hero--service.page-hero {
    padding-bottom: clamp(3.5rem, 8vw, 4.75rem);
}

/* Inner service pages (service-template) */
.service-page__band {
    padding-top: calc(var(--space-xl) - 0.35rem);
}

.service-page__intro.two-col {
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
}

.service-page__copy h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

.service-page__badge {
    margin-bottom: 0.85rem;
    background: rgba(244, 183, 63, 0.12);
    border-color: rgba(212, 154, 42, 0.45);
}

.service-page__list {
    margin-top: 0.25rem;
}

.service-page__list li {
    font-size: 1.02rem;
    line-height: 1.55;
}

.service-page__figure {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 72px rgba(31, 35, 41, 0.12);
    border: 1px solid rgba(31, 35, 41, 0.06);
    position: relative;
}

.service-page__figure::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.service-page__figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.service-page__included-wrap .service-page__section-head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.service-page__section-head h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

.service-page__card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 1.5rem 1.4rem 1.45rem;
    border: 1px solid rgba(231, 226, 218, 0.95);
    box-shadow: 0 12px 36px rgba(31, 35, 41, 0.06);
    background: linear-gradient(165deg, #ffffff 0%, #fcfaf7 100%);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-page__card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent));
    opacity: 0.95;
}

.service-page__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(31, 35, 41, 0.1);
    border-color: rgba(212, 165, 116, 0.45);
}

.service-page__card h3 {
    margin: 0.4rem 0 0.6rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: #111;
}

.service-page__card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

.service-page__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}

.service-page__step {
    position: relative;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
    padding: 3.55rem 1.25rem 1.45rem 3.75rem;
    box-shadow: 0 10px 30px rgba(31, 35, 41, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-page__step:hover {
    border-color: rgba(244, 183, 63, 0.5);
    box-shadow: 0 14px 38px rgba(31, 35, 41, 0.09);
}

.service-page__step-num {
    position: absolute;
    top: 1.1rem;
    left: 1.15rem;
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    color: #111;
    background: linear-gradient(145deg, rgba(244, 183, 63, 0.35) 0%, rgba(244, 183, 63, 0.15) 100%);
    border: 1px solid rgba(212, 154, 42, 0.35);
}

.service-page__step h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    line-height: 1.3;
}

.service-page__step p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.93rem;
    line-height: 1.62;
}

.service-page__cta {
    padding-bottom: calc(var(--space-xl) + 0.25rem);
}

@media (max-width: 1100px) {
    .service-page__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .service-page__intro.two-col {
        grid-template-columns: 1fr;
    }

    .service-page__figure {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .service-page__steps {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-page__card:hover {
        transform: none;
    }
}

/* —— Pages politiques / légales —— */
.policy-page .policy-section {
    padding-top: calc(var(--space-lg) + 0.5rem);
    padding-bottom: var(--space-xl);
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
}

.policy-nav {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    padding: 1.2rem 1.25rem 1.35rem;
    border-radius: 16px;
    border: 1px solid rgba(231, 226, 218, 0.95);
    background: linear-gradient(165deg, #ffffff 0%, #faf8f5 100%);
    box-shadow: 0 14px 40px rgba(31, 35, 41, 0.07);
}

.policy-nav__title {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.policy-nav__subtitle {
    margin: 1.25rem 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.policy-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-nav__list--toc {
    border-top: 1px solid rgba(231, 226, 218, 0.9);
    padding-top: 0.75rem;
}

.policy-nav__list li {
    margin-bottom: 0.35rem;
}

.policy-nav__link {
    display: block;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    font-size: 0.93rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.policy-nav__link:hover,
.policy-nav__link:focus-visible {
    background: rgba(244, 183, 63, 0.16);
    color: #111;
}

.policy-nav__link--current {
    background: rgba(244, 183, 63, 0.28);
    color: #111;
}

.policy-nav__link--toc {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.policy-nav__link--toc:hover {
    color: #111;
}

.policy-main {
    max-width: 72ch;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--color-dark);
}

.policy-main > h2 {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.policy-main h2 {
    margin: 2.25rem 0 0.85rem;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.policy-main h2:first-child {
    margin-top: 0;
}

.policy-main h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
}

.policy-main p,
.policy-main li {
    color: var(--color-muted);
}

.policy-main p {
    margin: 0 0 1rem;
}

.policy-main ul,
.policy-main ol {
    margin: 0 0 1rem 1.1rem;
    padding: 0;
}

.policy-main li {
    margin-bottom: 0.45rem;
}

.policy-main a {
    color: var(--color-accent-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-main .policy-lead {
    font-size: 1.05rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.policy-main .policy-meta {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
}

.policy-main .policy-box {
    margin: 1.25rem 0;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: #faf8f5;
    font-size: 0.95rem;
}

.policy-main .policy-box strong {
    color: #111;
}

@media (max-width: 900px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-nav {
        position: relative;
        top: auto;
    }
}

.site-footer {
    position: relative;
    background: #f4f3ef;
    overflow: hidden;
    font-family: inherit;
    color: #111;
    padding: 0 0 var(--space-sm);
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-bg__photo {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 0;
    transform: translateX(-50%);
    width: max(100%, 960px);
    height: min(85%, 560px);
    min-height: 280px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.footer-bg__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.footer-bg--has-photo .footer-bg__shade {
    background: linear-gradient(
        180deg,
        rgba(244, 243, 239, 0.88) 0%,
        rgba(244, 243, 239, 0.45) 38%,
        rgba(244, 243, 239, 0.12) 78%,
        rgba(244, 243, 239, 0.05) 100%
    );
}

.footer-bg:not(.footer-bg--has-photo) .footer-bg__shade {
    opacity: 0.09;
    background-image: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(31, 35, 41, 0.35) 0%, transparent 55%);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 60%;
}

.footer-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 56px 20px 62px;
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1.25fr 1.35fr;
    gap: clamp(2rem, 5vw, 58px);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
}

.footer-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-logo-text strong {
    font-weight: 700;
}

.footer-col h3 {
    color: #111;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 22px;
}

.footer-col p,
.footer-col a,
.footer-post span {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
}

.footer-about p {
    max-width: 280px;
    margin: 0;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    text-decoration: none;
    color: var(--color-muted);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--color-accent-dark);
}

.footer-address p {
    margin: 0 0 12px;
}

.footer-address-line a {
    color: #111;
    font-weight: 600;
}

.footer-address-line a:hover {
    color: var(--color-accent-dark);
}

.footer-post {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
    color: inherit;
}

.footer-post:last-child {
    margin-bottom: 0;
}

.footer-post img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 6px;
}

.footer-post small {
    display: block;
    color: var(--color-accent-dark);
    font-size: 12px;
    line-height: 1.35;
    margin-top: 4px;
    font-weight: 600;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid #ddd;
    margin-top: 0;
    padding-top: 0;
}

.footer-bottom-container {
    width: 100%;
    max-width: 1040px;
    min-height: 48px;
    margin: 0 auto;
    padding: 14px 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #111;
    font-size: 13px;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 28px);
    flex-wrap: wrap;
}

.footer-links a {
    color: #111;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent-dark);
}

.footer-links__cookie-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links__cookie-btn:hover,
.footer-links__cookie-btn:focus-visible {
    color: var(--color-accent-dark);
}

.footer-machine {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.footer-machine img {
    height: 44px;
    width: auto;
    display: block;
}

/* Page Contact */
.contact-page-main {
    position: relative;
    padding-top: calc(var(--space-xl) - 0.5rem);
    padding-bottom: calc(var(--space-xl) + 1rem);
    background: linear-gradient(180deg, #e8e5df 0%, #dedad3 42%, #d5d1ca 100%);
}

.contact-form-split {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-split__shell {
    display: grid;
    grid-template-columns: minmax(260px, 318px) minmax(0, 1fr);
    align-items: stretch;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 3px 0 rgba(0, 0, 0, 0.05),
        0 28px 72px rgba(31, 35, 41, 0.13);
}

.contact-form-split__sidebar {
    display: flex;
    flex-direction: column;
    background: linear-gradient(195deg, #262a33 0%, #1a1d24 55%, #14161c 100%);
    color: rgba(255, 255, 255, 0.92);
}

.contact-form-split__cta-box {
    margin: 0 0 8px;
    padding: 1.85rem 1.4rem 1.65rem;
    background: linear-gradient(165deg, #fbc94d 0%, var(--color-accent) 48%, #e8a82a 100%);
    border-radius: 0 0 20px 20px;
    color: #111;
    text-align: center;
}

.contact-form-split__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.95rem;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.1);
    color: #111;
}

.contact-form-split__cta-text {
    margin: 0;
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.015em;
}

.contact-form-split__info {
    flex: 1;
    padding: 1.45rem 1.45rem 2.2rem;
}

.contact-form-split__info-title {
    margin: 0 0 0.95rem;
    font-size: 1.12rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.contact-form-split__address {
    margin: 0 0 1.25rem;
    font-size: 0.94rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.76);
}

.contact-form-split__link {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.97rem;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.contact-form-split__link:hover {
    color: var(--color-accent);
}

.contact-form-split__hours {
    margin: 1.35rem 0 0;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.52);
}

.contact-form-split__form-col {
    padding: clamp(1.85rem, 4.5vw, 2.75rem) clamp(1.5rem, 4vw, 2.65rem);
    background: #fff;
}

.contact-form-split__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    margin: 0 0 12px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    color: var(--color-accent-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
}

.contact-form-split__title {
    margin: 0 0 1.35rem;
    font-size: clamp(1.6rem, 3.1vw, 2.3rem);
    font-weight: 700;
    color: #111;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.contact-form-split__notice {
    margin: 0 0 1.15rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.94rem;
    line-height: 1.5;
}

.contact-form-split__notice--success {
    background: rgba(72, 160, 95, 0.12);
    border: 1px solid rgba(72, 160, 95, 0.35);
    color: #1d4d2e;
}

.contact-form-split__notice--error {
    background: rgba(180, 55, 55, 0.1);
    border: 1px solid rgba(180, 55, 55, 0.32);
    color: #6b1c1c;
}

.contact-form-split__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.2rem;
    margin-bottom: 1rem;
}

.contact-form-split__field label {
    display: block;
    margin-bottom: 0.38rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.03em;
}

.contact-form-split__req {
    color: #b33;
    font-weight: 700;
}

.contact-form-split__field input,
.contact-form-split__field textarea {
    width: 100%;
    padding: 0.78rem 0.92rem;
    border: 1px solid #d0cbc2;
    border-radius: 10px;
    font: inherit;
    font-size: 0.97rem;
    color: #111;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-split__field input::placeholder,
.contact-form-split__field textarea::placeholder {
    color: #8a8f96;
}

.contact-form-split__field input:focus,
.contact-form-split__field textarea:focus {
    outline: none;
    border-color: rgba(212, 154, 42, 0.88);
    box-shadow: 0 0 0 3px rgba(244, 183, 63, 0.22);
}

.contact-form-split__field--full textarea {
    min-height: 148px;
    resize: vertical;
}

.contact-form-split__submit {
    margin-top: 1.2rem;
    padding: 0.92rem 2.1rem;
    border: none;
    border-radius: 10px;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 700;
    color: #15181c;
    cursor: pointer;
    background: linear-gradient(145deg, #fbc94d 0%, var(--color-accent) 45%, #e8a82a 100%);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-split__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(212, 154, 42, 0.42);
}

.contact-form-split__submit:focus-visible {
    outline: 2px solid var(--color-accent-dark);
    outline-offset: 3px;
}

.contact-page-map {
    position: relative;
    padding-bottom: var(--space-xl);
    background:
        linear-gradient(180deg, rgba(242, 238, 232, 0.65) 0%, #f2eee8 38%, #ebe6df 100%);
}

.contact-page-map .container {
    position: relative;
    z-index: 1;
}

.contact-page-map__card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.65rem, 4vw, 2.4rem);
    border-radius: 20px;
    background: linear-gradient(122deg, #2a3038 0%, #1f2329 42%, #171b20 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(0, 0, 0, 0.2) inset;
    overflow: hidden;
}

.contact-page-map__card::before {
    content: "";
    position: absolute;
    right: -18%;
    top: -55%;
    width: min(52%, 420px);
    height: 200%;
    background: radial-gradient(circle at 40% 40%, rgba(244, 183, 63, 0.18) 0%, transparent 62%);
    pointer-events: none;
}

.contact-page-map__copy {
    position: relative;
    flex: 1;
    min-width: 220px;
    z-index: 1;
}

.contact-page-map__copy .section-intro__badge {
    border-color: rgba(244, 183, 63, 0.55);
    color: var(--color-accent);
    background: rgba(244, 183, 63, 0.1);
}

.contact-page-map__title {
    margin: 0.5rem 0 0.55rem;
    font-size: clamp(1.42rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.contact-page-map__text {
    margin: 0;
    max-width: 48ch;
    color: rgba(230, 232, 236, 0.84);
    font-size: 0.99rem;
    line-height: 1.62;
}

.contact-page-map__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.88rem 1.65rem;
    border-radius: 999px;
    background: linear-gradient(145deg, #f6c24a 0%, var(--color-accent) 45%, #e5a82e 100%);
    color: #15181c;
    font-weight: 700;
    font-size: 0.93rem;
    text-decoration: none;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-page-map__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.contact-page-map__cta-arrow {
    font-size: 1.1rem;
    line-height: 1;
}

.contact-page-tips__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.contact-tip-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(231, 226, 218, 0.95);
    border-radius: 16px;
    padding: 1.55rem 1.45rem 1.5rem;
    box-shadow: 0 12px 36px rgba(31, 35, 41, 0.055);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-tip-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), rgba(244, 183, 63, 0.35));
    opacity: 0.95;
}

.contact-tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(31, 35, 41, 0.1);
    border-color: rgba(212, 165, 116, 0.45);
}

.contact-tip-card__title {
    margin: 0 0 0.55rem;
    font-size: 1.09rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.015em;
}

.contact-tip-card__text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.62;
    color: var(--color-muted);
}

.contact-tip-card__text a {
    color: var(--color-accent-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 980px) {
    .contact-form-split__shell {
        grid-template-columns: 1fr;
    }

    .contact-form-split__row {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page-map__cta:hover,
    .contact-form-split__submit:hover {
        transform: none;
    }

    .contact-tip-card:hover {
        transform: none;
    }
}

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-lg); }
.form-placeholder {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-md);
}

body.cookie-consent-open {
    overflow: hidden;
}

.cookie-consent-root {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(0.5rem, 2.5vw, 1rem);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-consent-root.is-visible {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.cookie-consent-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 20, 24, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cookie-consent {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: min(90vh, 700px);
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border-radius: 20px;
    border: 1px solid rgba(231, 226, 218, 0.95);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 22px 50px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transform: translateY(12px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent-root.is-visible .cookie-consent {
    transform: translateY(0);
}

.cookie-consent__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: inherit;
}

.cookie-consent__header {
    flex-shrink: 0;
    padding: 1.35rem 1.35rem 1rem;
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(180deg, #fffefb 0%, #fff 100%);
}

.cookie-consent__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(244, 183, 63, 0.22), rgba(244, 183, 63, 0.06));
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.cookie-consent__title {
    font-size: clamp(1.25rem, 3vw, 1.45rem);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.cookie-consent__lead {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.cookie-consent__lead a {
    color: var(--color-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__lead a:hover {
    color: var(--color-accent-dark);
}

.cookie-consent__cats {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 0.85rem 1.1rem 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.cookie-cat {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    margin-bottom: 0.6rem;
    background: #fdfcfa;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.cookie-cat:hover {
    border-color: #dcd6cc;
}

.cookie-cat[open] {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border-color: #e0d8cc;
}

.cookie-cat__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    cursor: pointer;
    user-select: none;
}

.cookie-cat__summary::-webkit-details-marker {
    display: none;
}

.cookie-cat__summary-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.65rem;
}

.cookie-cat__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.cookie-cat__badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(31, 35, 41, 0.08);
    color: var(--color-muted);
}

.cookie-cat__chevron {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: rgba(31, 35, 41, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s ease;
}

.cookie-cat__chevron::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--color-muted);
    border-bottom: 2px solid var(--color-muted);
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform 0.3s ease;
}

.cookie-cat[open] .cookie-cat__chevron {
    background: rgba(244, 183, 63, 0.18);
}

.cookie-cat[open] .cookie-cat__chevron::before {
    transform: rotate(225deg) translate(1px, 1px);
}

.cookie-cat__body {
    padding: 0 1rem 1rem;
    border-top: 1px solid rgba(231, 226, 218, 0.75);
    background: rgba(255, 255, 255, 0.65);
}

.cookie-cat__desc {
    margin: 0.75rem 0 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.cookie-cat__switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.85rem;
    cursor: pointer;
}

.cookie-cat__input {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 28px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.cookie-cat__track {
    width: 48px;
    height: 28px;
    border-radius: 999px;
    background: #d9dde3;
    flex-shrink: 0;
    position: relative;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.cookie-cat__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-cat__input:checked + .cookie-cat__track {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    box-shadow: 0 0 0 1px rgba(214, 154, 42, 0.35);
}

.cookie-cat__input:checked + .cookie-cat__track .cookie-cat__thumb {
    transform: translateX(20px);
}

.cookie-cat__input:focus-visible + .cookie-cat__track {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.cookie-cat__switch-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-dark);
}

.cookie-cat__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}

.cookie-cat__row--locked {
    padding: 0.35rem 0;
}

.cookie-cat__row-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
}

.cookie-cat__locked-pill {
    width: 48px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c5cad1, #aeb4bd);
    position: relative;
    flex-shrink: 0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.cookie-cat__locked-pill::after {
    content: "";
    position: absolute;
    right: 3px;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.cookie-cat__locked-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-muted);
}

.cookie-consent__footer {
    flex-shrink: 0;
    padding: 1rem 1.25rem 1.2rem;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(0deg, #faf8f5 0%, #fff 100%);
}

.cookie-consent__actions-main {
    margin-bottom: 0.65rem;
}

.cookie-consent__actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent__btn {
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 999px;
    padding: 0.65rem 1.15rem;
    border: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.cookie-consent__btn:active {
    transform: scale(0.98);
}

.cookie-consent__btn--primary {
    width: 100%;
    background: var(--color-accent);
    color: #111;
}

.cookie-consent__btn--primary:hover {
    background: var(--color-accent-dark);
    color: #fff;
}

.cookie-consent__btn--outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-border);
}

.cookie-consent__btn--outline:hover {
    border-color: var(--color-dark);
    background: rgba(31, 35, 41, 0.04);
}

.cookie-consent__btn--ghost {
    background: transparent;
    color: var(--color-muted);
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    border-radius: 8px;
}

.cookie-consent__btn--ghost:hover {
    color: var(--color-dark);
}

@media (min-width: 560px) {
    .cookie-consent-root {
        align-items: center;
    }

    .cookie-consent__actions-row {
        flex-wrap: nowrap;
    }

    .cookie-consent__btn--outline,
    .cookie-consent__btn--ghost {
        flex: 1;
        text-align: center;
    }

    .cookie-consent__btn--ghost {
        text-decoration: none;
    }

    .cookie-consent__btn--ghost:hover {
        text-decoration: underline;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-consent-root,
    .cookie-consent,
    .cookie-cat__thumb,
    .cookie-cat__chevron,
    .cookie-cat__chevron::before {
        transition: none;
    }

    .cookie-consent {
        transform: none;
    }
}

@media (max-width: 980px) {
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-map__card {
        flex-direction: column;
        align-items: flex-start;
    }
    .portfolio-layout,
    .contact-preview-layout {
        grid-template-columns: 1fr;
    }
    .portfolio-copy {
        order: -1;
    }
    .portfolio-visual__frame {
        min-height: 260px;
    }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .contact-page-tips__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        overflow: auto;
        background: rgba(17, 17, 17, 0.97);
        padding: var(--space-md);
        align-items: flex-start;
        justify-content: flex-start;
    }
    .main-nav.open { display: flex; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }
    .nav-list > li > a,
    .nav-list > li > .services-link {
        padding: 1rem 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-list > li > .services-link {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }
    .nav-list > li > a::after,
    .nav-list > li > .services-link::after { display: none; }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu { display: none; }
    .nav-dropdown.is-open .dropdown-menu { display: block; }
    .dropdown-menu {
        position: static;
        display: none;
        transform: none;
        left: auto;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0 0 0.5rem 0.75rem;
        min-width: unset;
        overflow: visible;
    }
    .nav-dropdown.is-open .dropdown-menu { display: block; }
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.45rem 0;
        border-left: none;
    }
    .dropdown-menu a:hover,
    .dropdown-menu a:focus-visible {
        background: transparent;
        color: var(--color-accent);
    }
    .header-btn { display: none; }
    .menu-btn { display: flex; }
    .site-header.search-open .header-search { position: fixed; top: var(--header-h); }

    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 0;
        padding: 18px 20px 20px;
    }
    .footer-machine {
        position: static;
        transform: none;
        order: -1;
    }
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 760px) {
    .card-grid, .steps-grid { grid-template-columns: 1fr; }
    .footer-container {
        grid-template-columns: 1fr;
    }
}
