:root {
    --white: #FFFFFF;
    --beige: #F3E8DD;
    --warm-beige: #E5D3C3;
    --gold: #C8A96B;
    --text: #2B2B2B;
    --muted: #756D66;
    --line: rgba(43, 43, 43, 0.12);
    --shadow: 0 24px 60px rgba(43, 43, 43, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

body.has-lightbox {
    overflow: hidden;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand,
.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--gold);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 24px;
}

.site-brand__text {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    letter-spacing: 0;
}

.site-brand__logo {
    max-width: 170px;
    max-height: 52px;
    display: block;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.site-nav__item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
}

.site-nav a.is-active {
    position: relative;
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--gold);
}

.site-nav__item--has-submenu > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.site-nav__item--has-submenu > a::before {
    order: 2;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: rotate(45deg);
}

.site-submenu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 60;
    min-width: 190px;
    display: grid;
    gap: 2px;
    padding: 10px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--warm-beige);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(43, 43, 43, 0.12);
    opacity: 0;
    transform: translate(-50%, -6px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav__item--has-submenu:hover .site-submenu,
.site-nav__item--has-submenu:focus-within .site-submenu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.site-submenu a {
    display: block;
    padding: 10px 12px;
    color: var(--muted);
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
}

.site-submenu a:hover,
.site-submenu a.is-active {
    color: var(--text);
    background: var(--beige);
}

.site-submenu a.is-active::after {
    display: none;
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.instagram-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--gold);
    background: var(--white);
    border: 1px solid var(--warm-beige);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(43, 43, 43, 0.06);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.instagram-link:hover {
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 12px 28px rgba(200, 169, 107, 0.28);
    transform: scale(1.05);
}

.instagram-icon {
    width: 21px;
    height: 21px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.instagram-icon__dot {
    fill: currentColor;
    stroke: none;
}

.instagram-detail-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-weight: 800;
    transition: color 180ms ease, transform 180ms ease;
}

.instagram-detail-link:hover {
    color: #9F7C3E;
    transform: scale(1.05);
}

.instagram-detail-link > span {
    margin: 0;
    color: inherit;
    font: inherit;
    text-transform: none;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--gold {
    color: var(--white);
    background: var(--gold);
    box-shadow: 0 12px 30px rgba(200, 169, 107, 0.28);
}

.button--light {
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--warm-beige);
}

.button--light:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 28px rgba(43, 43, 43, 0.08);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--warm-beige);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
}

.hero {
    min-height: calc(100vh - 78px);
    padding: 86px 0 56px;
    background: linear-gradient(115deg, var(--white) 0%, var(--beige) 58%, var(--warm-beige) 100%);
}

.hero__inner,
.section__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: center;
    gap: 54px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.section h1,
.section h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.08;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(48px, 7vw, 86px);
}

.hero p,
.section-lead {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-proof span {
    padding: 9px 13px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(200, 169, 107, 0.26);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero__visual {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(200, 169, 107, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.10), rgba(43, 43, 43, 0.05)),
        url("../images/salon-placeholder.jpg"),
        linear-gradient(135deg, var(--warm-beige), var(--white));
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.home-hero {
    overflow: hidden;
}

.home-hero__visual::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    z-index: 1;
}

.home-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-appointment-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(260px, calc(100% - 48px));
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(200, 169, 107, 0.32);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(43, 43, 43, 0.12);
    backdrop-filter: blur(14px);
    z-index: 2;
}

.hero-appointment-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-appointment-card strong {
    display: block;
    margin-top: 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
}

.section {
    padding: 82px 0;
}

.section--beige {
    background: var(--beige);
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section h1,
.section h2 {
    font-size: clamp(34px, 5vw, 56px);
}

.about-preview__grid,
.contact-grid,
.lead-panel {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 54px;
}

.image-placeholder,
.map-placeholder,
.gallery-tile {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 169, 107, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(43, 43, 43, 0.02)),
        linear-gradient(135deg, var(--warm-beige), var(--beige) 48%, var(--white));
    box-shadow: 0 18px 42px rgba(43, 43, 43, 0.07);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-before-after__media {
    position: absolute !important;
    inset: 0;
    z-index: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    margin: 0 !important;
}

.gallery-before-after__half {
    position: relative !important;
    z-index: 0 !important;
    display: block !important;
    min-width: 0;
    margin: 0 !important;
    overflow: hidden;
}

.gallery-before-after__half + .gallery-before-after__half {
    border-left: 2px solid rgba(255, 255, 255, 0.9);
}

.gallery-before-after__half img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-before-after__half b {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    padding: 5px 8px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
}

.gallery-type-badge {
    position: absolute !important;
    top: 18px;
    right: 18px;
    z-index: 3 !important;
    width: fit-content;
    margin: 0 !important;
    padding: 6px 9px;
    color: var(--text) !important;
    background: rgba(243, 232, 221, 0.94);
    border: 1px solid rgba(200, 169, 107, 0.7);
    border-radius: 4px;
    font-size: 10px !important;
    line-height: 1.2;
    text-transform: uppercase;
}

.gallery-tile__title {
    text-shadow: 0 1px 12px rgba(43, 43, 43, 0.5);
}

.image-placeholder::after,
.map-placeholder::after,
.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
}

.image-placeholder img,
.gallery-tile img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-tile span {
    position: relative;
    z-index: 2;
}

.gallery-tile small {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 6px;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    text-transform: none;
}

.portrait-placeholder {
    min-height: 560px;
}

.about-preview__grid > .portrait-placeholder {
    min-height: clamp(420px, 52vw, 640px);
}

.about-page__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 64px;
}

.about-page__image {
    min-height: clamp(500px, 58vw, 760px);
}

.about-page__content h2 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.08;
}

.about-biography {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.about-biography p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.about-signature {
    margin: 0 0 28px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-style: italic;
}

.simple-page__hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    margin-bottom: 48px;
    border: 1px solid rgba(200, 169, 107, 0.34);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.simple-page__hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.simple-page__content {
    width: min(780px, 100%);
    margin: 0 auto;
}

.simple-page__content p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
}

.service-detail-image {
    min-height: clamp(460px, 58vw, 720px);
}

.service-card--premium {
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card--premium:hover,
.review-card:hover,
.gallery-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 107, 0.56);
    box-shadow: 0 24px 58px rgba(43, 43, 43, 0.10);
}

.card-number {
    display: block;
    margin-bottom: 34px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
}

.service-card a {
    display: inline-flex;
    margin-top: 22px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-card a.button--gold {
    color: var(--white);
}

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

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

.gallery-tile.is-filtered-out {
    display: none;
}

.gallery-tile {
    aspect-ratio: 1 / 1;
    min-height: 0;
    display: grid;
    place-items: end start;
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-lightbox-trigger {
    width: 100%;
    color: inherit;
    border: 1px solid rgba(200, 169, 107, 0.34);
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.gallery-lightbox-trigger:disabled {
    cursor: default;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.gallery-tabs {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 28px;
    padding: 5px;
    background: var(--beige);
    border: 1px solid var(--warm-beige);
    border-radius: 8px;
}

.gallery-tabs button {
    min-width: 110px;
    min-height: 42px;
    padding: 0 18px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.gallery-tabs button:hover,
.gallery-tabs button.is-active {
    color: var(--text);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(43, 43, 43, 0.08);
}

[data-gallery-panel][hidden] {
    display: none;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.video-card {
    min-width: 0;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(43, 43, 43, 0.07);
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-align: left;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.video-card:hover {
    border-color: rgba(200, 169, 107, 0.62);
    box-shadow: 0 24px 58px rgba(43, 43, 43, 0.12);
    transform: translateY(-5px);
}

.video-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #2B2B2B, #756D66);
}

.video-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 300ms ease;
}

.video-card:hover .video-card__media img {
    transform: scale(1.04);
}

.video-card__placeholder {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.video-play-icon {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(200, 169, 107, 0.5);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(43, 43, 43, 0.2);
    transform: translate(-50%, -50%);
    transition: background-color 180ms ease, transform 180ms ease;
}

.video-play-icon::after {
    position: absolute;
    top: 50%;
    left: 52%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid var(--gold);
    content: "";
    transform: translate(-40%, -50%);
}

.video-card:hover .video-play-icon {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.05);
}

.video-card:hover .video-play-icon::after {
    border-left-color: var(--white);
}

.video-card__content {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.video-card__content small {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.video-card__content strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
}

.video-card__content > span {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.gallery-filters button {
    min-height: 42px;
    padding: 0 17px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--warm-beige);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(43, 43, 43, 0.82);
}

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

.gallery-lightbox__panel {
    width: min(980px, 100%);
    max-height: calc(100vh - 90px);
    overflow: hidden;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox__panel img {
    width: 100%;
    max-height: 72vh;
    display: block;
    object-fit: contain;
    background: var(--text);
}

.gallery-lightbox__comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    background: var(--gold);
}

.gallery-lightbox__comparison[hidden],
.gallery-lightbox__single[hidden],
.gallery-lightbox__video[hidden] {
    display: none;
}

.gallery-lightbox__video {
    width: min(980px, 100%);
    aspect-ratio: 16 / 9;
    background: #000000;
}

.gallery-lightbox__video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.gallery-lightbox__comparison figure {
    position: relative;
    margin: 0;
    min-width: 0;
    background: var(--text);
}

.gallery-lightbox__comparison img {
    width: 100%;
    height: min(66vh, 720px);
    object-fit: contain;
}

.gallery-lightbox__comparison figcaption {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.gallery-lightbox__caption {
    padding: 20px 24px 24px;
}

.gallery-lightbox__caption strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
}

.gallery-lightbox__caption p {
    margin: 8px 0 0;
    color: var(--muted);
}

.gallery-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 42px;
    padding: 0 16px;
    color: var(--text);
    background: var(--white);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
}

.service-card .gallery-tile {
    aspect-ratio: auto;
    height: 260px;
    width: calc(100% + 56px);
    margin: -28px -28px 24px;
    border-width: 0 0 1px;
    border-radius: 8px 8px 0 0;
    box-shadow: none;
}

.gallery-tile span,
.map-placeholder span {
    position: relative;
    z-index: 1;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.review-carousel {
    display: grid;
    gap: 22px;
}

.review-carousel__viewport {
    overflow: hidden;
}

.review-carousel__track {
    display: flex;
    gap: 18px;
    transition: transform 320ms ease;
    will-change: transform;
}

.review-carousel__slide {
    flex: 0 0 calc((100% - 36px) / 3);
}

.review-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.review-carousel__button {
    min-height: 42px;
    padding: 0 18px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--warm-beige);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.review-carousel__button:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.review-carousel__button:disabled {
    cursor: default;
    opacity: 0.45;
    transform: none;
}

.review-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.review-carousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: var(--warm-beige);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease;
}

.review-carousel__dot.is-active {
    width: 24px;
    background: var(--gold);
}

.review-card {
    min-height: 250px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(43, 43, 43, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stars {
    color: var(--gold);
    letter-spacing: 0;
    font-size: 14px;
}

.review-card p {
    margin: 24px 0;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.35;
}

.review-card strong {
    color: var(--muted);
    font-size: 14px;
}

.review-meta {
    display: block;
    margin-top: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
}

.review-service {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.review-empty {
    margin-bottom: 28px;
    padding: 34px;
    background: var(--beige);
    border: 1px solid var(--warm-beige);
    border-radius: 8px;
}

.review-empty span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.review-empty strong {
    display: block;
    margin-top: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
}

.review-empty p {
    margin: 8px 0 0;
    color: var(--muted);
}

.lead-panel {
    align-items: start;
    padding: 46px;
    background: var(--text);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lead-panel h2 {
    color: var(--white);
}

.lead-panel .section-lead {
    color: rgba(255, 255, 255, 0.72);
}

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

.lead-message {
    grid-column: 1 / -1;
    padding: 13px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.lead-message--success {
    color: #255A38;
    background: #ECF8EF;
    border: 1px solid #BFE4C8;
}

.lead-message--error {
    color: #7A2C2C;
    background: #FFF5F3;
    border: 1px solid #EAC6BF;
}

.lead-form label {
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    color: var(--text);
    background: var(--white);
    border: 1px solid transparent;
    border-radius: 8px;
    font: inherit;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form textarea {
    min-height: 140px;
    padding-top: 15px;
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.18);
}

.lead-form input.is-invalid {
    border-color: #D66A5E;
    box-shadow: 0 0 0 4px rgba(214, 106, 94, 0.16);
}

.lead-form button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.lead-form__wide {
    grid-column: 1 / -1;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.contact-list p {
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.contact-list span {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-weight: 900;
}

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

.contact-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(43, 43, 43, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 107, 0.56);
    box-shadow: 0 24px 58px rgba(43, 43, 43, 0.10);
}

.contact-card span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
    overflow-wrap: anywhere;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-card .instagram-detail-link {
    overflow-wrap: normal;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
}

.contact-card .instagram-detail-link--large .instagram-icon {
    width: 28px;
    height: 28px;
}

.map-placeholder {
    min-height: 430px;
    display: grid;
    place-items: center;
}

.map-placeholder--embed {
    padding: 0;
}

.map-placeholder--embed iframe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    border: 0;
}

.final-cta {
    padding: 88px 0;
    color: var(--white);
    background: var(--text);
}

.final-cta__inner {
    width: min(880px, calc(100% - 32px));
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    margin: 0 auto 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 500;
    line-height: 1.08;
}

.final-cta__subtitle {
    max-width: 680px;
    margin: -12px auto 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.7;
}

.section-action {
    margin-top: 30px;
    text-align: center;
}

.service-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.feature-card {
    min-height: 220px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(43, 43, 43, 0.06);
}

.service-card h3,
.feature-card h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 500;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.service-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    color: var(--gold);
    background: rgba(200, 169, 107, 0.10);
    border: 1px solid rgba(200, 169, 107, 0.24);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-meta--detail {
    margin: 18px 0;
}

.service-card p,
.feature-card p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    padding: 46px 0;
    color: var(--white);
    background: var(--text);
}

.site-footer__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.footer-instagram-link {
    margin-top: 8px;
    color: var(--gold);
}

.footer-instagram-link:hover {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
}

.faq-page {
    min-height: 68vh;
}

.faq-shell {
    display: grid;
    gap: 28px;
}

.faq-group {
    display: grid;
    gap: 16px;
}

.faq-group h2 {
    margin: 0;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 500;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item,
.faq-empty {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(200, 169, 107, 0.28);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(43, 43, 43, 0.07);
}

.faq-item {
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-item:hover,
.faq-item.is-open {
    border-color: rgba(200, 169, 107, 0.58);
    box-shadow: 0 22px 54px rgba(43, 43, 43, 0.10);
}

.faq-question {
    width: 100%;
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    color: var(--text);
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    line-height: 1.35;
    text-align: left;
}

.faq-question i {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid var(--warm-beige);
    border-radius: 50%;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.faq-question i::before,
.faq-question i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease, background-color 180ms ease;
}

.faq-question i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] i {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] i::before {
    background: var(--white);
}

.faq-question[aria-expanded="true"] i::after {
    background: var(--white);
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--muted);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

.faq-answer p + p {
    margin-top: 14px;
}

.faq-empty {
    padding: 34px;
}

.faq-empty span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.faq-empty strong {
    display: block;
    margin-top: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
}

.faq-empty p {
    max-width: 620px;
    margin: 8px 0 22px;
    color: var(--muted);
}

.art-visage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.art-visage-tile {
    aspect-ratio: 4 / 5;
}

.art-visage-empty {
    background: var(--white);
    border: 1px solid rgba(200, 169, 107, 0.28);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(43, 43, 43, 0.07);
}

.art-visage-cta {
    text-align: center;
}

.art-visage-cta .section__inner {
    display: grid;
    justify-items: center;
}

.art-visage-cta p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 24px 24px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__item {
        display: grid;
        align-items: stretch;
    }

    .site-submenu {
        position: static;
        min-width: 0;
        visibility: visible;
        gap: 0;
        padding: 0 0 8px 14px;
        opacity: 1;
        background: transparent;
        border: 0;
        box-shadow: none;
        transform: none;
    }

    .site-submenu a {
        padding: 10px 14px;
        background: transparent;
        font-size: 13px;
    }

    .site-nav a {
        position: relative;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .site-nav a.is-active::after {
        left: 0;
        right: auto;
        bottom: 10px;
        width: 34px;
    }

    .site-actions .button {
        display: none;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 360px;
    }

    .service-grid,
    .feature-grid,
    .gallery-grid,
    .video-gallery-grid,
    .art-visage-grid,
    .contact-card-grid,
    .review-grid,
    .about-preview__grid,
    .about-page__grid,
    .contact-grid,
    .lead-panel {
        grid-template-columns: 1fr;
    }

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

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

    .review-carousel__slide {
        flex-basis: calc((100% - 18px) / 2);
    }

    .section-header,
    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .lead-form {
        grid-template-columns: 1fr;
    }

    .portrait-placeholder,
    .map-placeholder {
        min-height: 360px;
    }

    .service-card .gallery-tile {
        height: 240px;
    }

    .faq-question {
        min-height: 66px;
        padding: 20px;
    }

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

@media (max-width: 560px) {
    .site-header__inner {
        width: min(100% - 24px, 1180px);
    }

    .instagram-link {
        width: 38px;
        height: 38px;
    }

    .instagram-link .instagram-icon {
        width: 19px;
        height: 19px;
    }

    .site-brand {
        min-width: 0;
    }

    .site-brand__text {
        overflow: hidden;
        font-size: 22px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-actions {
        gap: 8px;
    }

    .footer-links {
        gap: 12px 18px;
    }

    .hero {
        padding: 56px 0 42px;
    }

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

    .hero p,
    .section-lead {
        font-size: 16px;
    }

    .section {
        padding: 62px 0;
    }

    .lead-panel,
    .review-card,
    .service-card,
    .feature-card {
        padding: 24px;
    }

    .review-carousel__slide {
        flex-basis: 100%;
    }

    .review-carousel__controls {
        gap: 10px;
    }

    .review-carousel__button {
        padding: 0 14px;
    }

    .gallery-tile,
    .gallery-tile:nth-child(2),
    .gallery-tile:nth-child(5) {
        min-height: 0;
    }

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

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

    .gallery-tabs {
        width: 100%;
    }

    .gallery-tabs button {
        flex: 1 1 0;
        min-width: 0;
    }

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

    .gallery-lightbox {
        padding: 14px;
    }

    .gallery-lightbox__caption {
        padding: 18px;
    }

    .gallery-lightbox__comparison {
        grid-template-columns: 1fr;
        max-height: 72vh;
        overflow-y: auto;
    }

    .gallery-lightbox__comparison img {
        height: 48vh;
    }

    .service-card .gallery-tile {
        width: calc(100% + 48px);
        height: 220px;
        margin: -24px -24px 22px;
    }

    .final-cta {
        padding: 68px 0;
    }

    .faq-empty {
        padding: 24px;
    }

    .faq-question {
        grid-template-columns: minmax(0, 1fr) 30px;
        gap: 14px;
        font-size: 15px;
    }

    .faq-question i {
        width: 30px;
        height: 30px;
    }
}
