/* ============================================================
   ADRIANA PHOTOGRAPHY — стилі
   Палітра та шрифти керуються змінними нижче.
   ============================================================ */

:root {
  --bg: #faf7f2;
  --bg-alt: #f2ece1;
  --ink: #211c15;
  --ink-soft: #3a3328;
  --muted: #7a7060;
  --line: #e3dbcd;
  --accent: #b08d57;
  --accent-dark: #8f6f3f;
  --dark: #171310;
  --dark-2: #211c17;
  --cream: #f6f1e7;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;
  --shadow: 0 20px 60px rgba(33, 28, 21, 0.12);
  --radius: 4px;
  --header-h: 76px;
}

/* ---------- базове ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }

::selection { background: var(--accent); color: #fff; }

.container { width: min(1180px, 92vw); margin-inline: auto; }

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: var(--cream); }
.section--dark .kicker { color: var(--accent); }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.kicker::before { content: ""; width: 38px; height: 1px; background: var(--accent); }
.section-head--center .kicker::after { content: ""; width: 38px; height: 1px; background: var(--accent); }

.h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.lead { font-size: 1.08rem; color: var(--muted); }
.section--dark .lead { color: #cfc4b2; }
em.fancy { font-style: italic; color: var(--accent-dark); }
.section--dark em.fancy, .hero em.fancy { color: var(--accent); }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 36px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-2px); }

.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--light { background: transparent; border-color: rgba(246, 241, 231, 0.55); color: var(--cream); }
.btn--light:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.btn--small { padding: 12px 24px; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ---------- прелоадер ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader span { font-family: var(--font-display); font-size: 2rem; font-style: italic; color: var(--accent-dark); }
.preloader.done { opacity: 0; visibility: hidden; }

/* ---------- шапка ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.logo { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: 0.02em; color: var(--cream); transition: color 0.35s; z-index: 110; position: relative; }
.logo i { font-style: italic; color: var(--accent); }

.nav-list { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246, 241, 231, 0.85);
  transition: color 0.25s;
  position: relative;
}
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--accent); transition: width 0.3s; }
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: 10px; }

.site-header.scrolled { background: rgba(250, 247, 242, 0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
/* backdrop-filter робить шапку containing block для fixed-нащадків і ламає
   повноекранне мобільне меню — вимикаємо блюр, поки меню відкрите */
body.nav-open .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; }
.site-header.scrolled .logo { color: var(--ink); }
.site-header.scrolled .nav-link { color: var(--ink-soft); }
.site-header.scrolled .nav-link:hover { color: var(--ink); }
.site-header.scrolled .btn--light { border-color: var(--ink); color: var(--ink); }
.site-header.scrolled .btn--light:hover { background: var(--ink); color: var(--cream); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0;
  position: relative; z-index: 110;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; margin: 6px auto;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s, background 0.35s;
}
.site-header.scrolled .nav-toggle span, body.nav-open .nav-toggle span { background: var(--ink); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
body.nav-open .logo { color: var(--ink); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--dark); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.6s ease; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.is-active { opacity: 1; }
.hero-slide.is-active img { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 9, 0.85) 0%, rgba(15, 12, 9, 0.42) 45%, rgba(15, 12, 9, 0.45) 100%);
}

.hero-content { position: relative; z-index: 2; padding-bottom: clamp(80px, 12vh, 140px); color: var(--cream); }
.hero .kicker { color: var(--accent); }
.hero-title {
  font-size: clamp(2.7rem, 7.2vw, 5.6rem);
  max-width: 14ch;
  margin-bottom: 0.35em;
  color: #fff;
}
.hero-sub { max-width: 54ch; font-size: 1.06rem; color: rgba(246, 241, 231, 0.85); margin-bottom: 2em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-dots { position: absolute; right: 4vw; bottom: clamp(80px, 12vh, 140px); z-index: 3; display: flex; flex-direction: column; gap: 10px; }
.hero-dots button { width: 26px; height: 2px; border: 0; padding: 0; background: rgba(246, 241, 231, 0.35); transition: background 0.3s, width 0.3s; }
.hero-dots button.is-active { background: var(--accent); width: 40px; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  color: rgba(246, 241, 231, 0.6);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- біжуча стрічка ---------- */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--bg); padding: 22px 0; }
/* без gap на треку: відступ усередині span, інакше цикл -50% стрибає на пів-проміжку */
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--muted);
  display: flex; align-items: center; gap: 48px; white-space: nowrap;
  margin-right: 48px;
}
.marquee-track span::after { content: "✦"; font-size: 0.7rem; color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- про мене ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-media { position: relative; }
.about-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 72%; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  border: 1px solid var(--accent); border-radius: var(--radius); z-index: -1;
}
.about-exp {
  position: absolute; left: -18px; bottom: 34px;
  background: var(--dark); color: var(--cream);
  padding: 18px 26px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-exp b { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--accent); }
.about-exp span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #cfc4b2; }

.about-sign { font-family: var(--font-display); font-style: italic; font-size: 2.2rem; color: var(--accent-dark); margin-top: 10px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line); }
.stats--3 { grid-template-columns: repeat(3, 1fr); }
.stat-num { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--ink); line-height: 1; }
.stat-num i { font-style: normal; color: var(--accent); }
.stat-label { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ---------- послуги ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s, box-shadow 0.35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-media { overflow: hidden; aspect-ratio: 4 / 3; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-body { padding: 26px 26px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-title { font-size: 1.5rem; margin-bottom: 8px; }
.svc-text { font-size: 0.94rem; color: var(--muted); flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.svc-price { font-weight: 700; color: var(--accent-dark); font-size: 0.95rem; }
.svc-link {
  background: none; border: 0; padding: 0;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.25s, gap 0.25s;
}
.svc-link::after { content: "→"; color: var(--accent); }
.svc-link:hover { color: var(--accent-dark); gap: 12px; }

/* ---------- портфоліо ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 11px 22px;
  border: 1px solid var(--line); border-radius: 100px; background: transparent;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent-dark); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.works { columns: 3; column-gap: 22px; }
.work {
  position: relative; margin: 0 0 22px; break-inside: avoid;
  border-radius: var(--radius); overflow: hidden; cursor: zoom-in;
}
.work img { width: 100%; height: auto; transition: transform 0.6s ease; }
.work:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.work:hover img { transform: scale(1.05); }
.work-cap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(to top, rgba(15, 12, 9, 0.75), transparent 55%);
  opacity: 0; transition: opacity 0.35s;
}
.work:hover .work-cap { opacity: 1; }
.work-cat { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.work-title { font-size: 1.3rem; color: #fff; margin: 0; }
.work.hidden { display: none; }

.portfolio-more { text-align: center; margin-top: 40px; }
.portfolio-more[hidden] { display: none; }

/* ---------- процес ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 48px); }
.step { position: relative; padding-top: 18px; }
.step-num {
  font-family: var(--font-display); font-style: italic; font-size: 4.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--accent);
  display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.4rem; color: #fff; }
.step p { font-size: 0.94rem; color: #b7ac99; margin: 0; }

/* ---------- прайс ---------- */
.price-table { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line); }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 26px 18px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.price-row:hover { background: rgba(176, 141, 87, 0.06); }
.price-info h3 { font-size: 1.45rem; margin: 0 0 6px; }
.price-info p { margin: 0; font-size: 0.92rem; color: var(--muted); max-width: 56ch; }
.price-side { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex: 0 0 auto; }
.price-tag { font-family: var(--font-display); font-size: 1.9rem; color: var(--accent-dark); white-space: nowrap; line-height: 1.1; }
.price-row--featured { background: var(--dark); border-radius: var(--radius); border-bottom-color: var(--dark); margin-top: 14px; }
.price-row--featured:hover { background: var(--dark-2); }
.price-row--featured .price-info h3 { color: var(--cream); }
.price-row--featured .price-info p { color: #b7ac99; }
.price-row--featured .price-tag { color: var(--accent); }
.price-row--featured .svc-link { color: var(--cream); }
.price-note { text-align: center; color: var(--muted); font-size: 0.92rem; margin-top: 34px; }

/* ---------- відгуки ---------- */
.reviews-wrap { position: relative; }
.reviews-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 min(400px, 85vw); scroll-snap-align: start;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px;
  display: flex; flex-direction: column;
}
.review-quote { font-family: var(--font-display); font-size: 4rem; line-height: 0.5; color: var(--accent); height: 26px; }
.review-text { font-size: 0.98rem; color: var(--ink-soft); flex: 1; font-style: italic; }
.review-meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.review-meta b { display: block; font-size: 0.98rem; }
.review-meta span { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-dark); }
.reviews-nav { display: flex; gap: 12px; margin-top: 26px; }
.rev-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  font-size: 1.2rem; color: var(--ink);
  transition: all 0.25s;
}
.rev-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  transition: color 0.25s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+"; flex: 0 0 auto;
  width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 1.1rem; color: var(--accent-dark);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item[open] .faq-q { color: var(--accent-dark); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: #fff; }
.faq-a { padding: 0 0 24px; color: var(--muted); max-width: 62ch; }

/* ---------- CTA-банер ---------- */
.cta { position: relative; overflow: hidden; background: var(--dark); }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.cta .container { position: relative; z-index: 2; text-align: center; padding-top: clamp(80px, 10vw, 130px); padding-bottom: clamp(80px, 10vw, 130px); }
.cta-title { font-size: clamp(2rem, 4.5vw, 3.4rem); color: #fff; max-width: 20ch; margin-inline: auto; }
.cta p { color: #cfc4b2; max-width: 52ch; margin: 0 auto 2.2em; }

/* ---------- бронювання ---------- */
.booking-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 6vw, 80px); align-items: start; }

.contact-list { list-style: none; margin: 30px 0; padding: 0; display: grid; gap: 6px; }
.contact-list a, .contact-list .contact-static {
  display: flex; align-items: center; gap: 16px;
  padding: 13px 0;
  transition: color 0.25s;
}
.contact-list a:hover { color: var(--accent-dark); }
.contact-ico {
  flex: 0 0 auto;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
}
.contact-ico svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-size: 0.98rem; font-weight: 600; }
.contact-list small { display: block; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

.booking-direct { margin-top: 8px; padding-top: 26px; border-top: 1px solid var(--line); }
.booking-direct p { font-size: 0.92rem; color: var(--muted); margin-bottom: 14px; }
.booking-direct .btn { margin-right: 10px; margin-bottom: 10px; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.7rem; margin-bottom: 4px; }
.form-card > p { font-size: 0.92rem; color: var(--muted); margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: block; margin-bottom: 20px; }
.field-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field-label i { color: var(--accent-dark); font-style: normal; }
.field-input {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg);
  font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15); }
textarea.field-input { resize: vertical; min-height: 96px; }
.field-err { display: none; font-size: 12.5px; color: #b0483f; margin-top: 6px; }
.field.has-error .field-input { border-color: #b0483f; }
.field.has-error .field-err { display: block; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; }
.form-alert {
  display: none;
  background: #fdf0ee; border: 1px solid #eccfcb; border-radius: var(--radius);
  padding: 14px 16px; font-size: 0.92rem; color: #8f3c34; margin-bottom: 18px;
}
.form-alert.show { display: block; }
.form-alert a { text-decoration: underline; font-weight: 600; }

.form-success { text-align: center; padding: 30px 10px; }
.form-success svg { width: 64px; height: 64px; margin: 0 auto 18px; display: block; }
.form-success h3 { font-size: 1.8rem; }
.form-success p { color: var(--muted); }

/* ---------- мапа ---------- */
.map-wrap { line-height: 0; }
.map-wrap iframe {
  width: 100%; height: 400px; border: 0;
  filter: grayscale(1) sepia(0.12);
  transition: filter 0.5s;
}
.map-wrap iframe:hover { filter: none; }

/* ---------- футер ---------- */
.site-footer { background: var(--dark); color: #b7ac99; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(246, 241, 231, 0.12); }
.footer-brand .logo { color: var(--cream); font-size: 1.9rem; }
.footer-brand p { font-size: 0.92rem; margin-top: 14px; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 0.95rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 26px; font-size: 0.85rem; }
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- плаваючі кнопки ---------- */
.float-stack {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
}
.float-stack.show { opacity: 1; visibility: visible; transform: none; }
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 24px rgba(33, 28, 21, 0.28);
  transition: transform 0.25s;
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); }
.float-btn svg { width: 24px; height: 24px; }
.float-btn--tg { background: #2aabee; }
.float-btn--inst { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.float-btn--phone { background: var(--accent); }

#toTop {
  position: fixed; left: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(250, 247, 242, 0.9); backdrop-filter: blur(8px);
  color: var(--ink); font-size: 1.1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, background 0.25s;
}
#toTop.show { opacity: 1; visibility: visible; }
#toTop:hover { background: var(--ink); color: var(--cream); }

/* ---------- лайтбокс ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 150;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(15, 12, 9, 0.95); }
.lb-figure { position: relative; z-index: 2; margin: 0; max-width: 90vw; text-align: center; }
.lb-figure img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius); }
.lb-cap { color: #cfc4b2; font-size: 0.92rem; margin-top: 14px; }
.lb-cap b { color: #fff; font-weight: 600; }
.lb-btn {
  position: absolute; z-index: 3;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(246, 241, 231, 0.3); background: rgba(15, 12, 9, 0.5);
  color: #fff; font-size: 1.25rem;
  transition: background 0.25s, border-color 0.25s;
}
.lb-btn:hover { background: var(--accent); border-color: var(--accent); }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lb-close { top: 22px; right: 3vw; }
.lb-count { position: absolute; top: 34px; left: 3vw; z-index: 3; color: #cfc4b2; font-size: 0.9rem; letter-spacing: 0.15em; }

/* ---------- тост ---------- */
.toast {
  position: fixed; top: 20px; left: 50%; transform: translate(-50%, -80px);
  z-index: 180;
  background: var(--dark); color: var(--cream);
  padding: 14px 26px; border-radius: 100px;
  font-size: 0.92rem; box-shadow: var(--shadow);
  transition: transform 0.4s;
  max-width: 90vw;
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- анімації появи ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; transition-delay: var(--d, 0s); }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- адаптив ---------- */
@media (max-width: 1024px) {
  .works { columns: 2; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* бургер вмикається вже з 1024px: на 861–1024px десктопне меню не влазить у контейнер */
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 105;
    background: var(--bg);
    display: flex; flex-direction: column; align-items: center;
    /* flex-start + margin:auto на списку = центр, який не обрізається на низьких екранах */
    justify-content: flex-start;
    overflow-y: auto;
    padding: 90px 24px 40px;
    opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; gap: 26px; margin: auto; }
  .nav-link { color: var(--ink) !important; font-family: var(--font-display); font-size: 1.7rem; text-transform: none; letter-spacing: 0.02em; font-weight: 500; }
  .nav-cta { margin: 14px 0 0; }
  .site-header .btn--light { border-color: var(--ink); color: var(--ink); }

  .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; }
  .about-media::before { inset: 16px -14px -14px 16px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .stats--3 { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-dots { display: none; }
}

@media (max-width: 620px) {
  .svc-grid { grid-template-columns: 1fr; }
  .works { columns: 1; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .price-side { flex-direction: row; align-items: baseline; gap: 18px; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions .btn { width: 100%; }
  .float-stack { right: 14px; bottom: 14px; }
  #toTop { left: 14px; bottom: 14px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}
