/* ═══════════════════════════════════════════════
   Ольга Голуб — Доула
   Палитра: льняной · тауп · сливки · персик · карамель
   Шрифты: Cormorant Garant (display) + Jost (body)
═══════════════════════════════════════════════ */

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --linen:  #E8DDD0;
    --taupe:  #A89E8A;
    --cream:  #F5F2E8;
    --butter: #FFE8A0;
    --peach:  #F5C9A8;
    --tan:    #D4B090;

    --text:   #3A3028;
    --text-2: #6B5F55;
    --text-3: #9C8E82;

    --font-d: 'Cormorant Garant', Georgia, serif;
    --font-b: 'Jost', sans-serif;

    --max-w:  1180px;
    --pad-x:  clamp(20px, 5vw, 64px);
    --sec:    clamp(72px, 10vw, 130px);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-b);
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
ul       { list-style: none; }

/* ─── Grain overlay ─────────────────────────────── */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.038;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    font-family: var(--font-b);
    font-weight: 400;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background .25s, color .25s, border-color .25s, transform .2s;
}

.btn--primary {
    background: var(--tan);
    color: #fff;
    border-color: var(--tan);
}
.btn--primary:hover {
    background: var(--taupe);
    border-color: var(--taupe);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--tan);
    border-color: var(--tan);
}
.btn--outline:hover {
    background: var(--tan);
    color: #fff;
    transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ─── Section helpers ────────────────────────────── */
.section { padding: var(--sec) var(--pad-x); }

.section__label {
    display: block;
    font-family: var(--font-b);
    font-weight: 400;
    font-size: 0.67rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 18px;
}
.section__label::before { content: '— '; }

.section__title {
    font-family: var(--font-d);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 32px;
}
.section__title em { font-style: italic; color: var(--tan); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__header .section__title { margin-bottom: 0; }

/* ─── Reveal ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Navigation ─────────────────────────────────── */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    padding: 22px var(--pad-x);
    transition: padding .3s;
}
.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s, box-shadow .3s;
}
.nav.scrolled::before {
    background: rgba(245, 242, 232, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 24px rgba(58, 48, 40, 0.07);
    opacity: 1;
}
.nav.scrolled {
    padding-top: 13px;
    padding-bottom: 13px;
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
}

.nav__logo { display: flex; flex-direction: column; gap: 2px; }
.nav__logo-name {
    font-family: var(--font-d);
    font-style: italic;
    font-size: 1.22rem;
    line-height: 1;
    color: var(--text);
}
.nav__logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
}

.nav__links { display: flex; align-items: center; gap: 34px; }

.nav__link {
    font-weight: 300;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: var(--text-2);
    position: relative;
    transition: color .2s;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--tan);
    transition: width .3s;
}
.nav__link:hover { color: var(--tan); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
    padding: 8px 22px;
    border: 1.5px solid var(--tan);
    color: var(--tan);
    font-weight: 400;
    letter-spacing: 0.1em;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--tan); color: #fff; }

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: 4px;
    z-index: 201;
}
.nav__burger span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--text);
    transition: transform .3s, opacity .3s;
}
.nav__burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px var(--pad-x) 64px;
    overflow: hidden;
}

/* Animated gradient blobs */
.hero__bg { position: absolute; inset: 0; overflow: hidden; }

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    will-change: transform;
}
.hero__blob--1 {
    width: 65vw; height: 65vw;
    background: radial-gradient(circle, rgba(245,201,168,.58), transparent 68%);
    top: -18%; right: -8%;
    animation: blob1 10s ease-in-out infinite alternate;
}
.hero__blob--2 {
    width: 55vw; height: 55vw;
    background: radial-gradient(circle, rgba(255,232,160,.48), transparent 68%);
    bottom: 0; left: -6%;
    animation: blob2 13s ease-in-out infinite alternate;
}
.hero__blob--3 {
    width: 42vw; height: 42vw;
    background: radial-gradient(circle, rgba(212,176,144,.38), transparent 68%);
    top: 38%; left: 38%;
    animation: blob3 9s ease-in-out infinite alternate;
}

@keyframes blob1 { from { transform: translate(0,0) scale(1); }      to { transform: translate(-32px, 40px) scale(1.08); } }
@keyframes blob2 { from { transform: translate(0,0) scale(1); }      to { transform: translate(38px,-28px) scale(1.06); } }
@keyframes blob3 { from { transform: translate(0,0) scale(1); }      to { transform: translate(-22px,-28px) scale(.94); } }

/* Botanical SVG */
.hero__botanical {
    position: absolute;
    width: clamp(180px, 28vw, 360px);
    right: clamp(-40px, 2vw, 50px);
    bottom: 0;
    opacity: .65;
    pointer-events: none;
    transform-origin: bottom center;
    animation: sway 7s ease-in-out infinite alternate;
}
@keyframes sway {
    from { transform: rotate(-1.2deg); }
    to   { transform: rotate(1.6deg); }
}

/* Hero content */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    animation: fadeUp 1.2s ease both;
}

.hero__eyebrow {
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 16px;
    animation: fadeUp 1.2s .15s ease both;
}

.hero__title {
    font-family: var(--font-d);
    font-size: clamp(2.6rem, 6.5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 18px;
    animation: fadeUp 1.2s .3s ease both;
}
.hero__title em { font-style: italic; }

.hero__sub {
    font-weight: 300;
    font-size: clamp(.9rem, 1.6vw, 1.08rem);
    color: var(--text-2);
    max-width: 450px;
    margin: 0 auto 28px;
    line-height: 1.75;
    animation: fadeUp 1.2s .45s ease both;
}

.hero .btn { animation: fadeUp 1.2s .6s ease both; }

.hero__scroll {
    position: absolute;
    bottom: 38px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 2;
    animation: heroScrollFade 1.2s 1s ease both;
}
@keyframes heroScrollFade {
    from { opacity: 0; transform: translateX(-50%) translateY(22px); }
    to   { opacity: 1; transform: translateX(-50%); }
}
.hero__scroll-line {
    display: block;
    width: 1px; height: 42px;
    background: var(--taupe);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity: .25; transform: scaleY(.6); }
    50%      { opacity: .75; transform: scaleY(1); }
}
.hero__scroll-text {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--taupe);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}

/* ─── About ──────────────────────────────────────── */
.about { background: var(--linen); }

.about__wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}
@media (min-width: 780px) {
    .about__wrap { grid-template-columns: 340px 1fr; gap: 80px; }
}

.about__photo-col { display: flex; justify-content: center; }

.about__frame {
    position: relative;
    width: min(280px, 100%);
}
.about__photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--linen);
    overflow: hidden;
    border-radius: 2px;
}
.about__photo svg { width: 100%; height: 100%; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about__frame-border {
    position: absolute;
    inset: -14px;
    border: 1.5px solid var(--tan);
    border-radius: 2px;
    opacity: .45;
    z-index: -1;
}

.about__lead {
    font-family: var(--font-d);
    font-style: italic;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 20px;
}
.about__body {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.85;
}

.about__stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(168,158,138,.28);
}
.about__stat { display: flex; flex-direction: column; gap: 4px; }
.about__stat-n {
    font-family: var(--font-d);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--tan);
    line-height: 1;
}
.about__stat-l {
    font-size: .8rem;
    letter-spacing: .05em;
    color: var(--text-2);
}

/* ─── Services ───────────────────────────────────── */
.services { background: var(--cream); }
.services__inner { max-width: var(--max-w); margin: 0 auto; }

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
@media (min-width: 780px) {
    .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.svc-card {
    padding: 42px 36px;
    background: #fff;
    border: 1px solid var(--linen);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    cursor: default;
}
.svc-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 64px rgba(212,176,144,.16);
    border-color: var(--peach);
}

.svc-card__icon { width: 46px; height: 46px; margin-bottom: 26px; }

.svc-card__title {
    font-family: var(--font-d);
    font-size: 1.42rem;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--text);
}
.svc-card__desc {
    font-size: .87rem;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 26px;
}
.svc-card__link {
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 400;
    transition: color .2s;
}
.svc-card__link:hover { color: var(--taupe); }

/* ─── Pricing ────────────────────────────────────── */
.pricing { background: var(--linen); }
.pricing__inner { max-width: var(--max-w); margin: 0 auto; }

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
}
@media (min-width: 780px) {
    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.price-card {
    padding: 40px 34px;
    background: var(--cream);
    border: 1px solid rgba(168,158,138,.28);
    display: flex; flex-direction: column; gap: 18px;
    transition: transform .3s, box-shadow .3s;
}
.price-card:hover:not(.price-card--hero) {
    transform: translateY(-5px);
    box-shadow: 0 18px 52px rgba(212,176,144,.13);
}
.price-card--hero {
    background: var(--tan);
    border-color: var(--tan);
    color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 32px 80px rgba(212,176,144,.32);
}

.price-card__tag {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--taupe);
}
.price-card--hero .price-card__tag { color: rgba(255,255,255,.65); }

.price-card__name {
    font-family: var(--font-d);
    font-size: 1.28rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text);
}
.price-card--hero .price-card__name { color: #fff; }

.price-card__amount-row { display: flex; align-items: baseline; gap: 8px; }
.price-card__amount {
    font-family: var(--font-d);
    font-size: 2rem;
    font-weight: 300;
    color: var(--tan);
    line-height: 1;
}
.price-card--hero .price-card__amount { color: #fff; }
.price-card__per { font-size: .78rem; color: var(--text-2); }
.price-card--hero .price-card__per { color: rgba(255,255,255,.65); }

.price-card__list { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.price-card__list li {
    font-size: .84rem;
    color: var(--text-2);
    padding-left: 18px;
    position: relative;
}
.price-card__list li::before { content: '—'; position: absolute; left: 0; color: var(--tan); }
.price-card--hero .price-card__list li { color: rgba(255,255,255,.85); }
.price-card--hero .price-card__list li::before { color: rgba(255,255,255,.45); }

.price-card--hero .btn--primary {
    background: #fff;
    color: var(--tan);
    border-color: #fff;
}
.price-card--hero .btn--primary:hover { background: var(--cream); }

.pricing__note {
    text-align: center;
    font-size: .84rem;
    color: var(--text-2);
}

/* ─── Contact ────────────────────────────────────── */
.contact {
    background: var(--cream);
    padding: clamp(40px, 5vw, 72px) var(--pad-x);
}
.contact .section__header { margin-bottom: 36px; }
.contact__wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
@media (min-width: 780px) {
    .contact__wrap { grid-template-columns: 1fr 1.5fr; gap: 52px; align-items: start; }
}

.contact__desc { font-size: .92rem; color: var(--text-2); line-height: 1.75; margin-bottom: 22px; }
.contact__socials { display: flex; flex-direction: column; gap: 14px; }
.contact__social {
    display: inline-flex; align-items: center; gap: 13px;
    font-size: .84rem; color: var(--text-2);
    transition: color .2s;
}
.contact__social svg { width: 20px; height: 20px; color: var(--tan); flex-shrink: 0; }
.contact__social:hover { color: var(--tan); }

/* ─── Form ───────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 16px; }

.form__field { position: relative; }

.form__input {
    width: 100%;
    padding: 12px 0 8px;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(168,158,138,.38);
    border-radius: 0;
    font-family: var(--font-b);
    font-weight: 300;
    font-size: .94rem;
    color: var(--text);
    outline: none;
    transition: border-color .3s;
    -webkit-appearance: none;
    appearance: none;
}
.form__input:focus { border-bottom-color: var(--tan); }

.form__label {
    position: absolute;
    top: 12px; left: 0;
    font-weight: 300;
    font-size: .88rem;
    color: var(--text-2);
    pointer-events: none;
    transition: top .2s, font-size .2s, color .2s, letter-spacing .2s;
}
.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown) ~ .form__label {
    top: 0;
    font-size: .66rem;
    color: var(--tan);
    letter-spacing: .1em;
}

.form__textarea { resize: vertical; min-height: 56px; }

.form__err {
    display: block;
    font-size: .7rem;
    color: #bf6e5a;
    margin-top: 5px;
    min-height: 1em;
}

/* Honeypot */
.form__hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    tab-size: 0;
}

/* Consent checkbox */
.form__consent { display: flex; flex-direction: column; gap: 5px; }
.form__ck-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.form__ck { position: absolute; opacity: 0; width: 0; height: 0; }
.form__ck-box {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border: 1.5px solid rgba(168,158,138,.5);
    margin-top: 2px;
    transition: background .2s, border-color .2s;
    position: relative;
}
.form__ck:checked + .form__ck-box { background: var(--tan); border-color: var(--tan); }
.form__ck:checked + .form__ck-box::after {
    content: '';
    position: absolute;
    left: 4px; top: 1px;
    width: 6px; height: 10px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg);
}
.form__ck-text { font-size: .84rem; color: var(--text-2); line-height: 1.5; }
.form__ck-link { color: var(--tan); text-decoration: underline; text-underline-offset: 2px; }

/* Success / error messages */
.btn--sending {
    background: var(--taupe);
    border-color: var(--taupe);
    cursor: wait;
}

.form__ok {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 22px;
    background: rgba(196,149,106,.18);
    border: 1.5px solid rgba(196,149,106,.6);
}
.form__ok[hidden], .form__fail[hidden] { display: none; }
.form__ok svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--tan); }
.form__ok p { font-size: .9rem; color: var(--text); font-weight: 400; }
.form__fail { font-size: .84rem; color: #bf6e5a; padding: 10px 0; }

/* ─── Footer ─────────────────────────────────────── */
.footer {
    padding: 52px var(--pad-x);
    background: var(--text);
    color: rgba(245,242,232,.6);
}
.footer__inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; flex-direction: column;
    gap: 24px; align-items: center; text-align: center;
}
@media (min-width: 780px) {
    .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer__logo { display: flex; flex-direction: column; gap: 4px; }
.footer__name { font-family: var(--font-d); font-style: italic; font-size: 1.18rem; color: var(--cream); }
.footer__sub  { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; }

.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__nav a { font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; transition: color .2s; }
.footer__nav a:hover { color: var(--cream); }

.footer__copy { font-size: .72rem; }

/* ─── Mobile nav ─────────────────────────────────── */
@media (max-width: 779px) {
    .nav__burger { display: flex; }

    .hero__botanical {
        height: 80svh;
        width: auto;
        max-width: none;
        right: -25svh;
        left: auto;
        bottom: 0;
        opacity: .55;
    }

    .nav__links {
        position: fixed; inset: 0;
        background: var(--cream);
        flex-direction: column;
        justify-content: center; align-items: center;
        gap: 28px;
        opacity: 0; pointer-events: none;
        transition: opacity .3s;
        z-index: 200;
    }
    .nav__links.open { opacity: 1; pointer-events: all; }

    .nav__link { font-family: var(--font-d); font-style: italic; font-size: 1.5rem; }
    .nav__link--cta { font-family: var(--font-b); font-style: normal; font-size: .82rem; }
}

/* ─── Number input cleanup ───────────────────────── */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* ─── Gallery ────────────────────────────────────── */
.gallery { background: var(--cream); }
.gallery__inner { max-width: var(--max-w); margin: 0 auto; }

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* Mobile: все квадратные */
.gallery__item { aspect-ratio: 1/1; overflow: hidden; cursor: pointer; background: var(--linen); }

/* Desktop: мозаика 3 колонки */
@media (min-width: 780px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 240px);
        gap: 12px;
    }
    .gallery__item              { aspect-ratio: unset; height: 100%; }
    .gallery__item:nth-child(1) { grid-column: span 2; }
    .gallery__item:nth-child(2) { grid-row: span 2; }
    .gallery__item:nth-child(6) { grid-column: span 2; }
}

.gallery__img {
    width: 100%;
    height: 100%;
    transition: transform .5s ease;
}
.gallery__item:hover .gallery__img { transform: scale(1.05); }

.gallery__img svg,
.gallery__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Lightbox ───────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.lightbox.open {
    opacity: 1;
    pointer-events: all;
}
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 8, .96);
    cursor: zoom-out;
}
.lightbox__stage {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(90vw, 960px);
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.lightbox__track {
    display: flex;
    width: 100%;
    transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.lightbox__slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 90vh;
}
.lightbox__slide img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    background: none;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color .2s;
    font-family: var(--font-b);
    font-weight: 300;
}
.lightbox__close:hover { color: #fff; }
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    user-select: none;
}
.lightbox__nav:hover { background: rgba(255,255,255,.18); color: #fff; }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__nav:disabled { opacity: .25; cursor: default; }
.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.5);
    font-family: var(--font-b);
    font-size: 13px;
    letter-spacing: .08em;
}

/* ─── Contacts ───────────────────────────────────── */
.contacts { background: var(--linen); }

.contacts__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
@media (min-width: 780px) {
    .contacts__inner { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}

.contacts__map {
    border: 1px solid rgba(168,158,138,.2);
    overflow: hidden;
    line-height: 0;
    order: 2;
}
@media (min-width: 780px) {
    .contacts__map { order: unset; }
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 36px;
    order: 1;
}
@media (min-width: 780px) {
    .contacts__info { order: unset; }
}

.contacts__address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-d);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-2);
    line-height: 1.5;
}
.contacts__pin {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--tan);
    margin-top: 3px;
}

.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacts__item {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-size: .9rem;
    color: var(--text-2);
    transition: color .2s;
}
.contacts__item:hover { color: var(--tan); }
.contacts__item svg {
    width: 20px;
    height: 20px;
    color: var(--tan);
    flex-shrink: 0;
}

/* ─── Order form (overrides for centred single-col layout) ── */
.contact__wrap {
    grid-template-columns: 1fr !important;
}
.contact__header {
    text-align: center;
    margin-bottom: 8px;
}
.contact__header .section__title { margin-bottom: 12px; }
.contact__form-col {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

/* ─── Page (inner pages) ─────────────────────────── */
.page-hero {
    padding: calc(var(--sec) + 80px) var(--pad-x) var(--sec);
    background: var(--linen);
    text-align: center;
}
.page-hero .section__title { margin-bottom: 0; }

/* ─── Nav dropdown ───────────────────────────────── */
.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-b);
    font-weight: 300;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: var(--text-2);
    transition: color .2s;
    position: relative;
}
.nav__dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--tan);
    transition: width .3s;
}
.nav__dropdown-toggle:hover { color: var(--tan); }
.nav__dropdown-toggle:hover::after { width: 100%; }
.nav__dropdown-toggle[aria-expanded="true"] { color: var(--tan); }

.nav__dropdown-arrow {
    flex-shrink: 0;
    transition: transform .25s;
}
.nav__dropdown-toggle[aria-expanded="true"] .nav__dropdown-arrow { transform: rotate(180deg); }

.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--cream);
    border: 1px solid var(--linen);
    box-shadow: 0 12px 40px rgba(58,48,40,.10);
    min-width: 290px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s, visibility .22s, transform .22s;
    z-index: 300;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-toggle[aria-expanded="true"] ~ .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
    display: block;
    padding: 10px 24px;
    font-size: .8rem;
    letter-spacing: .04em;
    color: var(--text-2);
    transition: color .18s, background .18s;
    position: relative;
}
.nav__dropdown-item:hover {
    color: var(--tan);
    background: rgba(212,176,144,.06);
}
.nav__dropdown-item + .nav__dropdown-item {
    border-top: 1px solid rgba(232,221,208,.5);
}

/* Mobile dropdown */
@media (max-width: 779px) {
    .nav__dropdown { width: 100%; text-align: center; }
    .nav__dropdown-toggle {
        font-family: var(--font-d);
        font-style: italic;
        font-size: 1.5rem;
        letter-spacing: 0;
        font-weight: 400;
        justify-content: center;
    }
    .nav__dropdown-toggle::after { display: none; }
    .nav__dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .35s ease, opacity .25s;
    }
    .nav__dropdown-toggle[aria-expanded="true"] ~ .nav__dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 8px 0 16px;
    }
    .nav__dropdown-item {
        font-family: var(--font-d);
        font-style: italic;
        font-size: 1.05rem;
        padding: 7px 0;
        text-align: center;
        letter-spacing: 0;
        color: var(--text-2);
    }
    .nav__dropdown-item + .nav__dropdown-item { border-top: none; }
}

/* ─── Service pages ───────────────────────────────── */
.svc-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--sec) + 80px) var(--pad-x) var(--sec);
    background: var(--linen);
    text-align: center;
}
.svc-hero .section__label { margin-bottom: 12px; }
.svc-hero .section__title { margin-bottom: 20px; }
.svc-hero__sub {
    font-size: clamp(.9rem, 1.6vw, 1.06rem);
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.svc-section__inner {
    max-width: 740px;
    margin: 0 auto;
}
.svc-section__inner--center { text-align: center; }
.svc-section--alt { background: var(--linen); }

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 8px;
}
.svc-list li {
    font-size: .92rem;
    color: var(--text-2);
    padding-left: 26px;
    position: relative;
    line-height: 1.75;
}
.svc-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--tan);
}

.svc-text {
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.85;
    margin-top: 8px;
}

.svc-format-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 16px;
}
@media (min-width: 600px) {
    .svc-format-grid { grid-template-columns: repeat(2, 1fr); }
}
.svc-format-item {
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--linen);
}
.svc-format-item__label {
    display: block;
    font-size: .63rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 6px;
}
.svc-format-item__value {
    font-family: var(--font-d);
    font-size: 1.08rem;
    font-weight: 400;
    color: var(--text);
}

.svc-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 16px;
}
.svc-price-card {
    background: var(--text);
    color: var(--cream);
    padding: 48px 56px;
    text-align: center;
    min-width: 280px;
}
.svc-price-num {
    display: block;
    font-family: var(--font-d);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--tan);
    line-height: 1;
    margin-bottom: 8px;
}
.svc-price-per {
    font-size: .78rem;
    letter-spacing: .08em;
    color: rgba(245,242,232,.5);
}
.svc-price-note {
    font-size: .82rem;
    color: var(--text-2);
    max-width: 400px;
    text-align: center;
    line-height: 1.65;
}

/* Select field */
.form__select {
    width: 100%;
    padding: 12px 0 8px;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(168,158,138,.38);
    border-radius: 0;
    font-family: var(--font-b);
    font-weight: 300;
    font-size: .94rem;
    color: var(--text);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .3s;
}
.form__select:focus { border-bottom-color: var(--tan); }
.form__select option[value=""] { color: var(--text-3); }

/* Services grid — center last lone card */
@media (min-width: 780px) {
    .services__grid .svc-card:last-child:nth-child(3n+1) {
        grid-column: 2;
    }
}
