/* ===========================================================
   Сайт фотографа — публичная часть
   =========================================================== */

:root {
    --bg: #fbf9f7;
    --bg-tint: #f3efea;
    --surface: #ffffff;
    --text: #1d1a17;
    --text-muted: #6f6862;
    --accent: #9a5f45;
    --accent-dark: #7d4b35;
    --line: #e4ddd5;
    --radius: 4px;
    --shadow: 0 10px 40px rgba(29, 26, 23, .08);
    --container: 1180px;
    --font: "Georgia", "Times New Roman", serif;
    --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

h1, h2, h3 { font-family: var(--font); font-weight: 400; line-height: 1.2; margin: 0 0 .5em; }

p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.muted { color: var(--text-muted); }

.skip-link {
    position: absolute; left: -9999px; top: 0; background: var(--text); color: #fff;
    padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

.admin-bar {
    background: #2f2a26; color: #f6f1eb; text-align: center;
    padding: 10px 20px; font-size: 14px;
}
.admin-bar a { color: #f0c9a8; margin-left: 8px; border-bottom: 1px solid currentColor; }

/* --- Шапка --- */

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251, 249, 247, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }

.brand { display: flex; flex-direction: column; color: var(--text); }
.brand:hover { color: var(--text); }
.brand__name { font-family: var(--font); font-size: 22px; letter-spacing: .04em; }
.brand__tagline { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .14em; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--text); font-size: 15px; letter-spacing: .02em; padding: 4px 0; border-bottom: 1px solid transparent; }
.site-nav a:hover, .site-nav a.is-active { color: var(--accent); border-bottom-color: var(--accent); }
.site-nav__phone { font-weight: 600; white-space: nowrap; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); transition: .2s; }

/* --- Кнопки --- */

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 28px; border-radius: var(--radius); border: 1px solid transparent;
    font-size: 15px; letter-spacing: .04em; cursor: pointer; transition: .18s ease;
    text-align: center;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--ghost { border-color: rgba(255, 255, 255, .6); color: #fff; background: transparent; }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }

.link-arrow { font-size: 15px; letter-spacing: .02em; white-space: nowrap; }
.link-arrow::after { content: " →"; }

/* --- Герой --- */

.hero {
    min-height: 74vh; display: flex; align-items: center;
    background-size: cover; background-position: center;
    color: #fff; text-align: center;
}
.hero--plain { background: var(--bg-tint); color: var(--text); min-height: 46vh; }
.hero--plain .btn--ghost { border-color: var(--line); color: var(--text); }
.hero--plain .btn--ghost:hover { background: var(--bg); color: var(--text); }

.hero__inner { padding-top: 80px; padding-bottom: 80px; }
.hero__title { font-size: clamp(34px, 5.2vw, 62px); margin-bottom: 16px; }
.hero__subtitle { font-size: clamp(16px, 2vw, 20px); opacity: .92; max-width: 640px; margin: 0 auto 32px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Слайд-шоу на главной --- */

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.slideshow-wrap { padding-top: 32px; }
.slideshow {
    position: relative; background: var(--bg-tint); overflow: hidden;
    border-radius: var(--radius); box-shadow: var(--shadow);
}
.slideshow__track { position: relative; height: min(56vh, 520px); }

.slideshow__slide {
    position: absolute; inset: 0; display: block;
    opacity: 0; visibility: hidden; transition: opacity .8s ease;
}
.slideshow__slide.is-active { opacity: 1; visibility: visible; }
.slideshow__slide img { width: 100%; height: 100%; object-fit: cover; }

.slideshow__caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 70px 32px 30px;
    background: linear-gradient(transparent, rgba(20, 18, 16, .75));
    color: #fff; display: flex; flex-direction: column; gap: 6px;
}
.slideshow__title { font-family: var(--font); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.15; }
.slideshow__more { font-size: 15px; letter-spacing: .04em; opacity: .85; }
.slideshow__slide:hover .slideshow__more { opacity: 1; }

.slideshow__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, .18); backdrop-filter: blur(4px);
    color: #fff; font-size: 30px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s; z-index: 2;
}
.slideshow__nav:hover { background: rgba(255, 255, 255, .34); }
.slideshow__nav--prev { left: 20px; }
.slideshow__nav--next { right: 20px; }

.slideshow__dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; gap: 8px; justify-content: center; z-index: 2; }
.slideshow__dot {
    width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, .45); cursor: pointer; transition: .2s;
}
.slideshow__dot.is-active { background: #fff; width: 26px; border-radius: 100px; }

@media (max-width: 720px) {
    .slideshow-wrap { padding-top: 20px; }
    .slideshow__track { height: 48vh; }
    .slideshow__caption { padding: 60px 18px 26px; }
    .slideshow__nav { width: 42px; height: 42px; font-size: 24px; }
    .slideshow__nav--prev { left: 10px; }
    .slideshow__nav--next { right: 10px; }
}

/* --- Секции --- */

.section { padding: 80px 0; }
.section--tint { background: var(--bg-tint); }
.section__title { font-size: clamp(26px, 3vw, 36px); margin: 0; }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }

.page-head { padding: 64px 0 24px; }
.page-head__title { font-size: clamp(30px, 4.4vw, 50px); }
.page-head__subtitle { font-size: 19px; color: var(--text-muted); max-width: 720px; }

.prose { max-width: 760px; color: var(--text-muted); }
.prose a { text-decoration: underline; }

.breadcrumbs { display: flex; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }

/* --- Блок «обо мне» --- */

.about__inner { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center; }
.about__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about__text { color: var(--text-muted); }
.about__text .section__title { color: var(--text); margin-bottom: 20px; }

/* --- Сетка альбомов --- */

.album-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

.album-card { display: block; color: var(--text); background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease; }
.album-card:hover { transform: translateY(-4px); color: var(--text); }
.album-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-tint); }
.album-card__media picture { display: block; width: 100%; height: 100%; }
.album-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.album-card:hover .album-card__media img { transform: scale(1.04); }
.album-card__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-muted); font-size: 14px; padding: 20px; text-align: center; }
.album-card__body { padding: 20px 22px 24px; }
.album-card__title { font-size: 21px; margin-bottom: 6px; }
.album-card__text { color: var(--text-muted); font-size: 15px; margin: 0; }

/* --- Сетка фотографий --- */

.photo-grid { columns: 3; column-gap: 18px; }
.photo-grid__item { display: block; position: relative; margin: 0 0 18px; break-inside: avoid; overflow: hidden; border-radius: var(--radius); background: var(--bg-tint); }
.photo-grid__item picture { display: block; }
.photo-grid__item img { width: 100%; height: auto; transition: transform .5s ease, filter .3s ease; }
.photo-grid__item:hover img { transform: scale(1.03); filter: brightness(.92); }
.photo-grid__caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .6)); color: #fff; font-size: 14px;
    opacity: 0; transition: opacity .25s ease;
}
.photo-grid__item:hover .photo-grid__caption { opacity: 1; }

/* --- Лайтбокс --- */

.lightbox {
    position: fixed; inset: 0; z-index: 200; background: rgba(16, 14, 12, .94);
    display: flex; align-items: center; justify-content: center; padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox__image { max-width: min(1400px, 92vw); max-height: 86vh; object-fit: contain; }
.lightbox__close, .lightbox__nav {
    position: absolute; background: none; border: 0; color: #fff; cursor: pointer;
    font-size: 40px; line-height: 1; padding: 12px; opacity: .75; transition: opacity .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }
.lightbox__close { top: 12px; right: 20px; font-size: 44px; }
.lightbox__nav--prev { left: 8px; font-size: 56px; }
.lightbox__nav--next { right: 8px; font-size: 56px; }
.lightbox__caption { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: #e8e2db; font-size: 14px; }

/* --- Цены --- */

.price-group { margin-bottom: 64px; }
.price-group:last-child { margin-bottom: 0; }
.price-group__head { margin-bottom: 28px; }

.price-list { border-top: 1px solid var(--line); }
.price-row { display: flex; gap: 32px; justify-content: space-between; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.price-row--featured { background: var(--surface); padding: 22px 24px; border-radius: var(--radius); box-shadow: var(--shadow); border-bottom-color: transparent; }
.price-row__title { font-size: 20px; margin: 0 0 4px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.price-row__main p { margin: 0; font-size: 15px; }
.price-row__price { text-align: right; white-space: nowrap; }
.price-row__amount { font-family: var(--font); font-size: 22px; display: block; }
.price-row__note { font-size: 13px; color: var(--text-muted); }

.badge { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 100px; font-family: var(--font-ui); }

.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.price-card { background: var(--surface); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; }
.price-card__title { font-size: 22px; margin: 0; }
.price-card p { font-size: 15px; margin: 0; }
.price-card__price { font-family: var(--font); font-size: 30px; margin-top: auto; padding-top: 12px; }
.price-card__note { font-size: 13px; color: var(--text-muted); margin-top: -8px; }
.price-card .btn { margin-top: 12px; }

/* --- Блог --- */

.container--narrow { max-width: 820px; }
.section--tight { padding-top: 40px; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.post-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease; }
.post-card:hover { transform: translateY(-4px); }
.post-card__link { display: block; color: var(--text); }
.post-card__link:hover { color: var(--text); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-tint); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px 22px 24px; }
.post-card__meta { display: flex; gap: 14px; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.post-card__title { font-size: 21px; margin-bottom: 8px; }
.post-card__text { color: var(--text-muted); font-size: 15px; margin: 0; }

.post__meta { display: flex; gap: 16px; color: var(--text-muted); font-size: 15px; }
.post__cover { width: 100%; border-radius: var(--radius); margin-top: 28px; }
.post__content { max-width: 100%; }
.post__content p { margin-bottom: 1.2em; }
.post-cta { text-align: center; }
.post-cta .service-actions { justify-content: center; margin-top: 20px; }

/* --- Страницы услуг --- */

.album-card__price { margin-top: 10px; font-family: var(--font); font-size: 19px; color: var(--accent); }

.service-facts { display: flex; gap: 40px; flex-wrap: wrap; margin: 28px 0 8px; }
.service-fact { display: flex; flex-direction: column; gap: 2px; }
.service-fact__label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }
.service-fact__value { font-family: var(--font); font-size: 22px; }
.service-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.prose--wide { max-width: 860px; color: var(--text); }
.prose--wide h2 { font-size: 28px; margin-top: 36px; }
.prose--wide h3 { font-size: 22px; margin-top: 28px; }
.prose--wide ul, .prose--wide ol { padding-left: 22px; color: var(--text-muted); }
.prose--wide li { margin-bottom: 8px; }

/* --- Уведомление о cookie и правовые страницы --- */

.cookie-notice {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120;
    max-width: 720px; margin: 0 auto; padding: 18px 22px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(29, 26, 23, .18);
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-notice[hidden] { display: none; }
.cookie-notice__text { margin: 0; font-size: 14px; color: var(--text-muted); flex: 1; min-width: 240px; }
.cookie-notice__text a { text-decoration: underline; }
.cookie-notice__button { padding: 10px 22px; font-size: 14px; }

.legal h2 { font-size: 22px; margin-top: 32px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal-requisites { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.legal-requisites .section__title { font-size: 24px; margin-bottom: 20px; }
.legal-updated { margin-top: 28px; font-size: 14px; }
.site-footer__legal { display: block; margin-top: 6px; font-size: 13px; }

@media (max-width: 720px) {
    .cookie-notice { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
}

/* --- Страницы ошибок --- */

.error-page { text-align: center; padding: 100px 0; }
.error-page__code { font-family: var(--font); font-size: clamp(64px, 12vw, 120px); color: var(--line); line-height: 1; }
.error-page__links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* --- Клиентские галереи --- */

.client-header { border-bottom: 1px solid var(--line); padding: 18px 0; }
.client-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.client-footer { border-top: 1px solid var(--line); padding: 28px 0; margin-top: 40px; }
.client-footer p { margin: 0; }
.client-note { margin-top: 18px; }
.client-expires { font-size: 15px; }

.client-gate { display: flex; justify-content: center; }
.client-gate__card {
    background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 40px; max-width: 460px; width: 100%; text-align: center;
}
.client-gate__title { font-size: 26px; }
.client-gate__card .form { text-align: left; margin-top: 22px; box-shadow: none; padding: 0; background: none; }
.client-gate__contacts { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

.photo-grid__download {
    position: absolute; top: 10px; right: 10px; width: 34px; height: 34px;
    background: rgba(20, 18, 16, .6); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; opacity: 0; transition: opacity .2s ease, background .2s ease;
}
.photo-grid__item:hover .photo-grid__download { opacity: 1; }
.photo-grid__download:hover { background: var(--accent); }

/* --- Частые вопросы --- */

.faq__title { margin-bottom: 28px; }
.faq { max-width: 820px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__question {
    cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative;
    font-family: var(--font); font-size: 20px; line-height: 1.35;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
    content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    font-size: 26px; color: var(--accent); line-height: 1; transition: transform .2s ease;
}
.faq__item[open] .faq__question::after { content: "−"; }
.faq__question:hover { color: var(--accent); }
.faq__answer { padding: 0 44px 22px 0; color: var(--text-muted); }

/* --- Отзывы --- */

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review {
    background: var(--surface); border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow); margin: 0; display: flex; flex-direction: column; gap: 16px;
}
.review__rating { color: var(--accent); letter-spacing: .16em; font-size: 15px; }
.review__text { margin: 0; font-size: 16px; line-height: 1.7; color: var(--text); quotes: "«" "»"; }
.review__text::before { content: open-quote; }
.review__text::after { content: close-quote; }
.review__author { display: flex; align-items: center; gap: 14px; margin-top: auto; font-size: 15px; }
.review__author span { display: flex; flex-direction: column; }
.review__author .muted { font-size: 13px; }
.review__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review__initials {
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    background: var(--bg-tint); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font); font-size: 17px;
}
.review__source { font-size: 12px; }

/* --- Контакты и форма --- */

.contacts { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }

.contact-list { margin: 0 0 24px; display: grid; gap: 18px; }
.contact-list dt { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }
.contact-list dd { margin: 2px 0 0; font-size: 18px; }

.socials { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.socials a { font-size: 15px; border-bottom: 1px solid currentColor; }

.map { margin-top: 24px; border-radius: var(--radius); overflow: hidden; }
.map iframe { width: 100%; min-height: 320px; border: 0; display: block; }

.form { background: var(--surface); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field { display: grid; gap: 6px; font-size: 14px; color: var(--text-muted); }
.form__field b { color: var(--accent); }
.form input[type="text"], .form input[type="tel"], .form input[type="email"], .form textarea {
    font: inherit; font-size: 16px; color: var(--text); padding: 12px 14px;
    border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); width: 100%;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.form textarea { resize: vertical; min-height: 120px; }
.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-muted); }
.form__check input { margin-top: 4px; }
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { justify-self: start; }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 15px; }
.alert--success { background: #e8f3ea; color: #23543a; }
.alert--error { background: #fbeae8; color: #8a2d22; }
.alert ul { margin: 0; padding-left: 20px; }

/* --- CTA и подвал --- */

.cta { background: var(--text); color: #f6f1eb; padding: 64px 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta__title { font-size: clamp(24px, 3vw, 34px); color: #fff; margin-bottom: 6px; }
.cta .muted { color: rgba(246, 241, 235, .7); margin: 0; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.site-footer { background: var(--bg-tint); padding: 56px 0 28px; margin-top: 0; }
.site-footer__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.site-footer__col .brand__name { display: block; margin-bottom: 6px; }
.footer-nav { display: grid; gap: 8px; }
.footer-nav a, .footer-contact { color: var(--text); }
.footer-nav a:hover, .footer-contact:hover { color: var(--accent); }
.footer-contact { display: block; margin-bottom: 6px; }
.site-footer__bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; }

/* --- Адаптив --- */

@media (max-width: 960px) {
    .about__inner, .contacts { grid-template-columns: 1fr; gap: 32px; }
    .photo-grid { columns: 2; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .section { padding: 56px 0; }

    .nav-burger { display: flex; }
    .site-nav {
        position: fixed; inset: 76px 0 auto; background: var(--bg);
        flex-direction: column; align-items: flex-start; gap: 0;
        padding: 8px 24px 24px; border-bottom: 1px solid var(--line);
        transform: translateY(-120%); transition: transform .25s ease;
        box-shadow: var(--shadow);
    }
    .site-nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
    .site-nav a.is-active { border-bottom-color: var(--line); }
    .nav-toggle:checked ~ .site-nav { transform: translateY(0); }

    .photo-grid { columns: 1; }
    .price-row { flex-direction: column; gap: 8px; }
    .price-row__price { text-align: left; }
    .form { padding: 24px 20px; }
    .form__row { grid-template-columns: 1fr; }
    .site-footer__inner { grid-template-columns: 1fr; }
    .lightbox { padding: 16px; }
    .lightbox__nav { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}
