.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.header {
    position: relative;
}

body.nav-open {
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -100px;
    z-index: 2000;
    padding: 12px 16px;
    border-radius: 12px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}


.header__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo {
    display: block;
    max-height: 64px;
    width: auto;
    object-fit: contain;
}

.header__brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.header__brand {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    color: var(--heading, #111111);
    text-decoration: none;
    flex-shrink: 0;
}

.header__brand-name {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.header__brand-type {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted, #6f6f6f);
}

.header__toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border, rgba(17, 17, 17, 0.1));
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
    -webkit-appearance: none;
    appearance: none;
}

.header__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--heading, #111111);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__menu li {
    margin: 0;
    padding: 0;
}

.header__menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text, #1c1c1c);
    text-decoration: none;
    transition: color 0.2s ease;
}

.header__menu a:hover {
    color: var(--primary, #111111);
}

.header__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary, #111111);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.header__menu a:hover::after,
.header__menu a:focus-visible::after {
    transform: scaleX(1);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.header__lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--border, rgba(17, 17, 17, 0.1));
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
}

.header__lang-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text, #1c1c1c);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.header__lang-switcher a:hover,
.header__lang-switcher a.is-active {
    background: var(--heading, #111111);
    color: #ffffff;
}

.header__cta {
    white-space: nowrap;
}

.header__bar {
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    background: rgba(255, 255, 255, 0.72);
}

.header__bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 46px;
    flex-wrap: wrap;
    text-align: center;
}

.header__bar-inner a,
.header__bar-inner span {
    font-size: 0.92rem;
    color: var(--text-muted, #6f6f6f);
    text-decoration: none;
}

.header__bar-inner a:hover {
    color: var(--primary, #111111);
}

@media (max-width: 1180px) {
    .header__menu {
        gap: 16px;
    }

    .header__menu a {
        font-size: 0.92rem;
    }
}

@media (max-width: 991px) {
    .header__container {
        min-height: 76px;
    }

    .header__toggle {
        display: inline-flex;
        position: relative;
        z-index: 1002;
    }

    .header__nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(17, 17, 17, 0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .header__nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header__menu li {
        width: 100%;
    }

    .header__menu a {
        width: 100%;
        min-height: 48px;
        padding: 8px 0;
    }

    .header__menu a::after {
        display: none;
    }

    .header__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .header__lang-switcher {
        justify-content: center;
    }

    .header__cta {
        width: 100%;
        justify-content: center;
    }

    .header__bar-inner {
        gap: 10px 16px;
        padding: 12px 0;
    }
}

@media (max-width: 767px) {
    .header__container {
        gap: 14px;
        min-height: 72px;
    }

    .header__brand-name {
        font-size: 1.24rem;
    }

    .header__brand-type {
        font-size: 0.72rem;
    }

    .header__bar-inner a,
    .header__bar-inner span {
        font-size: 0.88rem;
    }
}


.header--minimal {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header--minimal .header__container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header--minimal .header__brand {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.header--minimal .header__brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    color: var(--heading);
}

.header--minimal .header__brand-type {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1;
}

.header--minimal .header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 24px;
}

.header--minimal .header__menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header--minimal .header__menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.25s ease, opacity 0.25s ease;
}

.header--minimal .header__menu a:hover {
    color: var(--heading);
    opacity: 0.7;
}

.header--minimal .header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header--minimal .header__lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.header--minimal .header__lang-switcher a {
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
}

.header--minimal .header__lang-switcher a.is-active {
    background: var(--heading);
    color: var(--surface);
}

.header--minimal .header__cta {
    white-space: nowrap;
}

@media (max-width: 980px) {
    .header--minimal .header__toggle {
        display: inline-flex;
    }

    .header--minimal .header__nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--surface);
        box-shadow: var(--shadow-md);
    }

    .header--minimal .header__nav.is-open {
        display: flex;
    }

    .header--minimal .header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .header--minimal .header__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .header--minimal .header__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 981px) {
    .header--minimal .header__toggle {
        display: none;
    }
}

.hero {
    position: relative;
    overflow: hidden;
}

/* Base */
.hero__container {
    display: grid;
    align-items: center;
    gap: 32px;
    min-height: 70vh;
}

.hero__content {
    max-width: 680px;
}

.hero__eyebrow {
    margin: 0 0 14px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero__title {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.05;
    color: var(--heading);
}

.hero__text {
    margin: 0 0 28px;
    max-width: 60ch;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero__highlights li {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    font-size: 0.95rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.hero__media {
    position: relative;
}

.hero__media img {
    width: 100%;
    height: 100%;
    max-height: 640px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero__badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--heading);
    color: var(--bg);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

/* DEFAULT */
.hero--default .hero__container {
    justify-content: center;
    text-align: center;
}

.hero--default .hero__content {
    margin-inline: auto;
}

.hero--default .hero__actions,
.hero--default .hero__highlights {
    justify-content: center;
}

/* SPLIT */
.hero--split .hero__container {
    grid-template-columns: 1.1fr 0.9fr;
}

/* COVER */
.hero--cover {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
}

.hero--cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.22) 0%,
            rgba(0, 0, 0, 0.46) 52%,
            rgba(0, 0, 0, 0.62) 100%
        );
    pointer-events: none;
}

.hero--cover .hero__container {
    position: relative;
    z-index: 1;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero--cover .hero__content {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero--cover .hero__eyebrow {
    color: rgba(255, 255, 255, 0.9);
}

.hero--cover .hero__title {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    letter-spacing: -0.03em;
}

.hero--cover .hero__text {
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero--cover .hero__actions {
    justify-content: center;
}

.hero--cover .hero__highlights {
    justify-content: center;
}

.hero--cover .hero__highlights li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(6px);
}

.hero--cover .hero__badge {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

/* Responsive */
@media (max-width: 991px) {
    .hero__container,
    .hero--split .hero__container {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__media img {
        max-height: 520px;
    }
}

@media (max-width: 768px) {
    .hero__container {
        min-height: auto;
        gap: 24px;
    }

    .hero__title {
        font-size: clamp(2rem, 9vw, 3.2rem);
    }

    .hero__text {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero--default .hero__actions,
    .hero--default .hero__highlights,
    .hero--cover .hero__actions,
    .hero--cover .hero__highlights {
        justify-content: center;
    }

    .hero--cover {
        min-height: 88vh;
        padding: 100px 0 80px;
    }

    .hero--cover .hero__container {
        min-height: auto;
    }

    .hero--cover .hero__actions {
        align-items: center;
    }

    .hero--cover .hero__actions .btn {
        max-width: 300px;
    }

    .hero--cover .hero__highlights {
        flex-direction: column;
        align-items: center;
    }
}

.about {
    position: relative;
}

.about__container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
}

.about__content {
    max-width: 640px;
}

.about__eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9C7B3F;
}

.about__title {
    margin: 0 0 20px;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
    color: var(--heading, #111111);
}

.about__text {
    margin: 0;
    color: var(--text-muted, #6f6f6f);
    font-size: 1rem;
    line-height: 1.85;
}

.about__list {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.about__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about__item-icon {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    margin-top: 7px;
    border-radius: 999px;
    background: var(--secondary, #c8a96b);
    box-shadow: 0 0 0 6px rgba(200, 169, 107, 0.14);
}

.about__item-text {
    color: var(--text, #2c2c2c);
    line-height: 1.7;
}

.about__media {
    position: relative;
}

.about__media-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl, 32px);
    background: var(--surface, #ffffff);
    box-shadow: var(--shadow-md, 0 16px 34px rgba(0, 0, 0, 0.08));
}

.about__image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: 560px;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

@media (max-width: 991px) {
    .about__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__content {
        max-width: none;
    }

    .about__image {
        min-height: 320px;
        max-height: 480px;
    }
}

@media (max-width: 767px) {
    .about__container {
        gap: 24px;
    }

    .about__eyebrow {
        margin-bottom: 12px;
        font-size: 0.72rem;
    }

    .about__title {
        margin-bottom: 16px;
    }

    .about__text {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .about__list {
        margin-top: 22px;
        gap: 12px;
    }

    .about__image {
        min-height: 260px;
    }
}

/* =========================
   ABOUT MINIMAL VARIANT
========================= */

.about--minimal .about__container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: center;
}

.about--minimal .about__media {
    position: relative;
}

.about--minimal .about__image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg, 24px);
    box-shadow: none;
}

.about--minimal .about__content {
    max-width: 560px;
}

.about--minimal .about__eyebrow {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9C7B3F;
}

.about--minimal .about__title {
    margin: 0 0 18px;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.08;
    color: var(--heading, #111111);
}

.about--minimal .about__text {
    margin: 0;
    color: var(--text-muted, #6f6f6f);
    font-size: 1rem;
    line-height: 1.85;
}

.about--minimal .about__list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.about--minimal .about__item {
    position: relative;
    padding-left: 20px;
    color: var(--text, #2c2c2c);
    line-height: 1.7;
}

.about--minimal .about__item::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--secondary, #c8a96b);
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .about--minimal .about__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about--minimal .about__content {
        max-width: none;
    }

    .about--minimal .about__image {
        min-height: 300px;
        max-height: 460px;
    }
}

@media (max-width: 767px) {
    .about--minimal .about__container {
        gap: 24px;
    }

    .about--minimal .about__eyebrow {
        margin-bottom: 10px;
        font-size: 0.72rem;
    }

    .about--minimal .about__title {
        margin-bottom: 14px;
    }

    .about--minimal .about__text {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .about--minimal .about__list {
        margin-top: 22px;
        gap: 10px;
    }

    .about--minimal .about__image {
        min-height: 240px;
    }
}



.contact {
    position: relative;
}

.contact__container {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: stretch;
}

.contact__left {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.contact__content {
    min-width: 0;
}

.contact .section-title {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.1;
    color: var(--heading);
}

.contact .section-text {
    margin: 0;
    max-width: 60ch;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact__info {
    display: grid;
    gap: 14px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact__item {
    display: grid;
    gap: 6px;
}

.contact__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact__value {
    text-decoration: none;
    color: var(--heading);
    line-height: 1.7;
    transition: color var(--transition);
}

.contact__value:hover {
    color: var(--secondary);
}

.contact__actions {
    margin-top: 8px;
}

.contact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact__map {
    min-width: 0;
    height: 100%;
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.contact__map-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 420px;
    padding: 24px;
    text-decoration: none;
    color: var(--heading);
    font-weight: 600;
    transition: color var(--transition);
}

.contact__map-fallback:hover {
    color: var(--secondary);
}

@media (max-width: 991px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact__map,
    .contact__map iframe,
    .contact__map-fallback {
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .contact__left {
        gap: 18px;
    }

    .contact__info {
        padding: 22px;
    }

    .contact .section-title {
        margin-bottom: 14px;
    }

    .contact__map,
    .contact__map iframe,
    .contact__map-fallback {
        min-height: 300px;
    }
}

.contact--minimal .contact__container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.contact--minimal .contact__left {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.contact--minimal .contact__content {
    min-width: 0;
}

.contact--minimal .section-title {
    margin: 0 0 14px;
}

.contact--minimal .section-text {
    margin: 0;
    max-width: 56ch;
}

.contact--minimal .contact__list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--border);
}

.contact--minimal .contact__row {
    display: grid;
    gap: 8px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.contact--minimal .contact__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact--minimal .contact__value {
    text-decoration: none;
    color: var(--heading);
    line-height: 1.7;
    transition: color var(--transition);
}

.contact--minimal .contact__value:hover {
    color: var(--secondary);
}

.contact--minimal .contact__actions {
    margin-top: 4px;
}

.contact--minimal .contact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact--minimal .contact__map {
    min-width: 0;
    min-height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact--minimal .contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
}

.contact--minimal .contact__map-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 460px;
    padding: 24px;
    text-decoration: none;
    color: var(--heading);
    font-weight: 600;
    transition: color var(--transition);
}

.contact--minimal .contact__map-fallback:hover {
    color: var(--secondary);
}

@media (max-width: 991px) {
    .contact--minimal .contact__container {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .contact--minimal .contact__map,
    .contact--minimal .contact__map iframe,
    .contact--minimal .contact__map-fallback {
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .contact--minimal .contact__left {
        gap: 20px;
    }

    .contact--minimal .contact__row {
        padding: 16px 0;
    }

    .contact--minimal .contact__map,
    .contact--minimal .contact__map iframe,
    .contact--minimal .contact__map-fallback {
        min-height: 300px;
    }
}



.faq {
    position: relative;
}

.faq__container {
    max-width: 900px;
}

.faq__heading {
    text-align: center;
    margin-bottom: 40px;
}

.faq__list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.12);
}

.faq-item[open] {
    border-color: rgba(0, 0, 0, 0.14);
}

.faq-item__question {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 26px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.4;
    color: var(--heading);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--heading);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item__icon::after {
    width: 2px;
    height: 18px;
}

.faq-item[open] .faq-item__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__answer {
    padding: 0 26px 24px;
}

.faq-item__answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
}

@media (max-width: 767px) {
    .faq__heading {
        margin-bottom: 32px;
    }

    .faq-item {
        border-radius: var(--radius);
    }

    .faq-item__question {
        padding: 18px 18px;
        font-size: 0.98rem;
        gap: 14px;
    }

    .faq-item__answer {
        padding: 0 18px 20px;
    }
}


.site-footer {
    padding: 32px 0;
    border-top: 1px solid var(--border, rgba(17, 17, 17, 0.08));
    background: var(--surface, #ffffff);
}

.footer__container {
    display: grid;
    gap: 18px;
    text-align: center;
}

.footer__brand-link {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading, #111111);
    text-decoration: none;
}

.footer__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}

.footer__info a,
.footer__info span {
    color: var(--text-muted, #6f6f6f);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer__info a:hover {
    color: var(--primary, #111111);
}

.footer__copy p {
    margin: 0;
    color: var(--text-muted, #6f6f6f);
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 26px 0;
    }

    .footer__info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 1rem;
}

.footer__legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer__legal-link:hover,
.footer__legal-link:focus-visible {
    color: var(--heading);
    text-decoration: underline;
}

.footer__copy {
    margin-top: 1rem;
}

.footer__copy p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
}

.footer__credits {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer__credits-link {
    color: #5440fe;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.footer__credits-link:hover {
    opacity: 0.75;
}

.gallery .section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.gallery .section-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.1;
    color: var(--heading);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery-card {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.gallery-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 380px;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-card:hover .gallery-card__image {
    transform: scale(1.04);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .gallery .section-head {
        margin-bottom: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-card__image {
        min-height: 240px;
        max-height: 320px;
    }
}

.gallery .section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.gallery .section-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.1;
    color: var(--heading);
}

.gallery-card {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.gallery-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-card:hover .gallery-card__image {
    transform: scale(1.04);
}

/* =========================
   GRID
========================= */

.gallery--grid .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery--grid .gallery-card__image {
    min-height: 280px;
    max-height: 380px;
}

/* =========================
   SLIDE
========================= */

.gallery--slide .gallery-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.gallery--slide .gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 360px);
    gap: 24px;
}

.gallery--slide .gallery-card {
    scroll-snap-align: start;
}

.gallery--slide .gallery-slider {
    scroll-snap-type: x mandatory;
}

.gallery--slide .gallery-card__image {
    min-height: 360px;
    max-height: 420px;
}

.gallery--slide .gallery-slider::-webkit-scrollbar {
    height: 8px;
}

.gallery--slide .gallery-slider::-webkit-scrollbar-thumb {
    background: rgba(17, 17, 17, 0.18);
    border-radius: 999px;
}

.gallery--slide .gallery-slider::-webkit-scrollbar-track {
    background: rgba(17, 17, 17, 0.06);
    border-radius: 999px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .gallery--grid .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery--slide .gallery-track {
        grid-auto-columns: minmax(240px, 320px);
    }

    .gallery--slide .gallery-card__image {
        min-height: 300px;
        max-height: 360px;
    }
}

@media (max-width: 767px) {
    .gallery .section-head {
        margin-bottom: 28px;
    }

    .gallery--grid .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery--grid .gallery-card__image {
        min-height: 240px;
        max-height: 320px;
    }

    .gallery--slide .gallery-track {
        grid-auto-columns: 84%;
        gap: 18px;
    }

    .gallery--slide .gallery-card__image {
        min-height: 260px;
        max-height: 320px;
    }
}



.gallery {
    background-color: var(--bg);
}

.gallery__container {
    position: relative;
}

.gallery__header {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.gallery__header .section-title {
    color: var(--heading);
    margin-bottom: 12px;
}

.gallery__header .section-text {
    color: var(--text-muted);
}

.gallery__eight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 55%,
        rgba(125, 79, 88, 0.06) 100%
    );
    pointer-events: none;
}

.gallery__item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.045);
}

/* Tablette */
@media (max-width: 992px) {
    .gallery__eight {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gallery {
        padding: 0;
    }

    .gallery__header {
        margin-bottom: 24px;
    }

    .gallery__eight {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery__item {
        border-radius: var(--radius);
    }
}

/* Petit mobile */
@media (max-width: 420px) {
    .gallery__eight {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery__item img {
        aspect-ratio: 0.9 / 1;
    }
}



.pricing {
    position: relative;
}

.pricing__heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.12);
}

.pricing-card__top {
    margin-bottom: 24px;
}

.pricing-card__title {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.2;
    color: var(--heading);
}

.pricing-card__price {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card__features {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-card__features li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
}

.pricing-card__features li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondary);
    transform: translateY(-50%);
}

.pricing-card__footer {
    margin-top: auto;
}

.pricing-card__footer .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 991px) {
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .pricing__heading {
        margin-bottom: 32px;
    }

    .pricing-card {
        padding: 24px 20px;
        border-radius: var(--radius);
    }

    .pricing-card__price {
        font-size: 2.2rem;
    }
}


.services .section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.services .section-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.1;
    color: var(--heading);
}

.services-grid {
    display: grid;
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(17, 17, 17, 0.14);
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(17, 17, 17, 0.05);
    color: var(--primary);
    font-size: 1.2rem;
}

.service-card__title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--heading);
}

.service-card__text {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

.service-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.06);
    color: var(--heading);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =========================
   VARIANTS
========================= */

.services--cards .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services--grid .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* =========================
   MINIMAL
========================= */

.services--minimal .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
}

.services--minimal .service-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 20px 0;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
}

.services--minimal .service-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
}

.services--minimal .service-card__main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
}

.services--minimal .service-card__icon {
    width: auto;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 1rem;
    flex-shrink: 0;
}

.services--minimal .service-card__content {
    min-width: 0;
    flex: 1 1 auto;
}

.services--minimal .service-card__title {
    margin: 0 0 8px;
}

.services--minimal .service-card__text {
    margin: 0;
}

.services--minimal .service-card__label {
    margin-bottom: 8px;
}

.services--minimal .service-card__price {
    margin-left: auto;
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--heading);
}
.services--minimal .service-card__price {
    margin-left: auto;
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--heading);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .services--cards .services-grid,
    .services--grid .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .services .section-head {
        margin-bottom: 28px;
    }

    .services--cards .services-grid,
    .services--grid .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 22px;
    }

    .services--minimal .service-card {
        flex-direction: column;
        gap: 12px;
        padding: 18px 0;
    }

    .services--minimal .service-card__main {
        width: 100%;
        gap: 12px;
    }

    .services--minimal .service-card__price {
        margin-left: 0;
        text-align: left;
    }
}
@media (max-width: 767px) {
    .services .section-head {
        margin-bottom: 28px;
    }

    .services--cards .services-grid,
    .services--grid .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 22px;
    }

    .services--minimal .service-card {
        flex-direction: column;
        gap: 12px;
        padding: 18px 0;
    }

    .services--minimal .service-card__main {
        width: 100%;
        gap: 12px;
    }

    .services--minimal .service-card__price {
        width: 100%;
        margin-left: 0;
        text-align: right;
    }
}


.testimonials {
    position: relative;
}

.testimonials__heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.12);
}

.testimonial-card__content {
    margin-bottom: 24px;
}

.testimonial-card__text {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__media {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
}

.testimonial-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.testimonial-card__meta {
    min-width: 0;
}

.testimonial-card__name {
    margin: 0 0 4px;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--heading);
}

.testimonial-card__role {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .testimonials__heading {
        margin-bottom: 32px;
    }

    .testimonial-card {
        padding: 22px 18px;
        border-radius: var(--radius);
    }

    .testimonial-card__content {
        margin-bottom: 20px;
    }

    .testimonial-card__text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .testimonial-card__media {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }
}

.testimonials__grid--google {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-review {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.12);
}

.testimonial-review__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.testimonial-review__author {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.testimonial-review__avatar {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
}

.testimonial-review__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.testimonial-review__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--heading);
}

.testimonial-review__meta {
    min-width: 0;
}

.testimonial-review__name {
    margin: 0 0 4px;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--heading);
}

.testimonial-review__subline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.testimonial-review__role,
.testimonial-review__source {
    white-space: nowrap;
}

.testimonial-review__dot {
    opacity: 0.6;
}

.testimonial-review__menu {
    flex: 0 0 auto;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--text-muted);
    user-select: none;
}

.testimonial-review__rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.testimonial-review__star {
    font-size: 1rem;
    line-height: 1;
    color: #d6d6d6;
}

.testimonial-review__star.is-active {
    color: #f4b400;
}

.testimonial-review__date {
    margin-left: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.testimonial-review__content p {
    margin: 0;
    color: var(--text);
    line-height: 1.75;
}

@media (max-width: 991px) {
    .testimonials__grid--google {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .testimonial-review {
        padding: 20px 18px;
        border-radius: var(--radius);
    }

    .testimonial-review__avatar {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .testimonial-review__content p {
        font-size: 0.96rem;
        line-height: 1.7;
    }
}