/* ============================================================
   NORR — Стилі окремих секцій сторінок
   ============================================================ */

/* ─── HERO (головна) ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px var(--pad-x) 100px;
  position: relative;
  z-index: 2;
}
.hero .eyebrow { margin-bottom: 30px; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 32px;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}
.scroll-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--faint);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 1; }
  50%      { width: 64px; opacity: 0.4; }
}
.hero-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EDE9E2 0%, #E4DED6 45%, #D9D2C8 100%);
}
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 40px; right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  z-index: 2;
}
.hero-badge .l1 {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(28,26,23,0.32);
}
.hero-badge .l2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; letter-spacing: 0.06em; color: rgba(28,26,23,0.45);
}

/* Планшет: колонки вужчі, зменшуємо заголовок */
@media (max-width: 1024px) {
  .hero h1 { font-size: 62px; }
  .hero-left { padding: 140px var(--pad-x) 80px; }
}
/* Мобільний / вузький планшет: одна колонка */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: calc(var(--nav-h) + 48px) var(--pad-x) 56px;
  }
  .hero h1 { font-size: 54px; }
  .hero-sub { max-width: 460px; }
  .hero-media { min-height: 62vw; }
  .hero-badge { bottom: 24px; right: 24px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 40px; margin-bottom: 26px; }
  .hero .eyebrow { margin-bottom: 22px; }
  .hero-sub { font-size: 14px; margin-bottom: 36px; }
  .hero-actions { gap: 16px 22px; margin-bottom: 44px; }
  .hero-actions .btn { padding: 15px 26px; }
  .hero-media { min-height: 78vw; }
}

/* ─── Внутрішній хедер сторінки (не головна) ──────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 90px) var(--pad-x) 90px;
  background: var(--linen);
}
.page-hero .inner { max-width: var(--maxw); margin: 0 auto; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  margin: 16px 0 24px;
}
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero p {
  font-size: 15px; line-height: 1.85; color: var(--muted); max-width: 520px;
}
@media (max-width: 1024px) {
  .page-hero { padding: calc(var(--nav-h) + 70px) var(--pad-x) 70px; }
  .page-hero h1 { font-size: 54px; }
}
@media (max-width: 680px) {
  .page-hero { padding: calc(var(--nav-h) + 44px) var(--pad-x) 52px; }
  .page-hero h1 { font-size: 40px; margin: 14px 0 20px; }
  .page-hero p { font-size: 14px; }
}

/* ─── MANIFESTO ───────────────────────────────────────────── */
.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.28;
  color: var(--off-white);
}
.manifesto-text em { font-style: italic; color: rgba(245,242,236,0.45); }
.manifesto .section-label { margin-bottom: 40px; }
@media (max-width: 1024px) { .manifesto-text { font-size: 40px; } }
@media (max-width: 680px)  { .manifesto-text { font-size: 30px; line-height: 1.34; } }

/* ─── Сітка колекції ──────────────────────────────────────── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
@media (max-width: 1024px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .collection-grid { grid-template-columns: 1fr; } }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.filter-chip {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: 1px solid var(--sage-border);
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-chip:hover { color: var(--charcoal); border-color: rgba(28,26,23,0.35); }
.filter-chip.is-active { background: var(--charcoal); color: var(--warm-white); border-color: var(--charcoal); }

/* ─── VALUES / STEPS / PERKS (спільні колонки) ────────────── */
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.col-item {
  padding: 52px 60px 52px 0;
  border-right: 1px solid var(--sage-border);
}
.col-item:nth-child(2) { padding-left: 60px; }
.col-item:last-child { border-right: none; padding-right: 0; padding-left: 60px; }
.cols-3.on-dark .col-item { border-color: rgba(245,242,236,0.10); }

.col-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  color: var(--sage);
  margin-bottom: 24px;
}
.col-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.on-dark .col-title { color: var(--off-white); }
.col-text { font-size: 14px; line-height: 1.85; color: var(--muted); }
.on-dark .col-text { color: rgba(245,242,236,0.45); }

@media (max-width: 780px) {
  .cols-3 { grid-template-columns: 1fr; }
  .col-item, .col-item:nth-child(2), .col-item:last-child {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid var(--sage-border);
  }
  .cols-3.on-dark .col-item { border-color: rgba(245,242,236,0.10); }
  .col-item:last-child { border-bottom: none; }
}

/* ─── RENTAL ──────────────────────────────────────────────── */
.rental-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(138,158,135,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.rental-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 90px;
}
.rental-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; font-weight: 300; line-height: 1.1;
  color: var(--off-white); margin-top: 14px;
}
.rental-headline em { font-style: italic; color: var(--sage); }
.rental-desc {
  font-size: 15px; line-height: 1.85;
  color: rgba(245,242,236,0.55); margin-bottom: 32px; padding-top: 14px;
}
.rental-note {
  font-size: 12px; letter-spacing: 0.08em; color: var(--sage);
  border-left: 2px solid var(--sage); padding-left: 18px; line-height: 1.7;
}
.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 90px;
}
.rental-card {
  background: rgba(245,242,236,0.04);
  border: 1px solid rgba(245,242,236,0.08);
  padding: 40px 32px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.rental-card:hover {
  background: rgba(138,158,135,0.10);
  border-color: rgba(138,158,135,0.28);
  transform: translateY(-4px);
}
.rental-icon { width: 40px; height: 40px; margin-bottom: 26px; opacity: 0.7; }
.rental-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--off-white); margin-bottom: 12px; line-height: 1.3;
}
.rental-card-text { font-size: 13px; line-height: 1.8; color: rgba(245,242,236,0.45); }
@media (max-width: 1024px) {
  .rental-top { grid-template-columns: 1fr; gap: 36px; }
  .rental-headline { font-size: 46px; }
  .rental-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .rental-grid { grid-template-columns: 1fr; } }

/* ─── Оренда: провідний візуал (широкий кадр під hero) ────── */
.rental-lead {
  position: relative;
  height: 66vh;
  min-height: 440px;
  max-height: 760px;
  overflow: hidden;
  background: linear-gradient(145deg, #EAE4DB 0%, #D8CEC0 55%, #C8BAA8 100%);
}
.rental-lead img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 62%;
}
.rental-lead .rl-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 44px var(--pad-x);
  background: linear-gradient(to top, rgba(18,39,32,0.55), rgba(18,39,32,0));
  color: #F6EFE6;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.01em;
}
@media (max-width: 680px) {
  .rental-lead { height: 44vh; min-height: 300px; }
  .rental-lead .rl-cap { font-size: 18px; padding: 28px var(--pad-x); }
}

/* ─── Оренда: процес (кроки) ──────────────────────────────── */
.rental-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 36px;
}
.rental-step { position: relative; }
.rental-step .rs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px; font-weight: 300; line-height: 1;
  color: var(--sage); margin-bottom: 18px;
}
.rental-step h3 {
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 12px;
}
.rental-step p { font-size: 14px; line-height: 1.8; color: var(--muted); }
@media (max-width: 820px) { .rental-steps { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media (max-width: 460px) { .rental-steps { grid-template-columns: 1fr; gap: 32px; } }

/* ─── Оренда: що входить у сезон ──────────────────────────── */
.rental-includes {
  margin-top: 84px;
  padding-top: 56px;
  border-top: 1px solid rgba(43,43,43,0.10);
}
.ri-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}
.ri-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 36px; line-height: 1.15;
  color: var(--dark);
}
.ri-head h3 em { font-style: italic; color: var(--sage); }
.ri-head p {
  font-size: 14px; line-height: 1.85; color: var(--muted); max-width: 460px;
}
.ri-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 44px;
  list-style: none;
}
.ri-list li {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 14px; line-height: 1.7; color: var(--charcoal);
  padding: 16px 0;
  border-bottom: 1px solid rgba(43,43,43,0.07);
}
.ri-list li::before {
  content: '✓';
  flex: none; font-size: 11px; color: var(--sage);
}
.ri-note {
  margin-top: 38px;
  padding-left: 22px;
  border-left: 1px solid var(--sage);
  font-size: 14px; line-height: 1.85; color: var(--muted);
  max-width: 640px;
}
@media (max-width: 820px) {
  .ri-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .ri-head h3 { font-size: 30px; }
  .ri-list { grid-template-columns: 1fr 1fr; gap: 0 32px; }
}
@media (max-width: 460px) { .ri-list { grid-template-columns: 1fr; } }

/* ─── Новий рік: смуга з дедлайном сезону ─────────────────── */
.xmas-deadline {
  background: var(--charcoal);
  padding: 20px var(--pad-x);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 10px 34px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,242,236,0.42);
  text-align: center;
}
.xmas-deadline span { display: inline-flex; align-items: center; gap: 10px; }
.xmas-deadline span::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--sage); flex: none;
}
.xmas-deadline strong { color: rgba(245,242,236,0.86); font-weight: 500; }
@media (max-width: 680px) {
  .xmas-deadline { flex-direction: column; gap: 12px; align-items: flex-start; text-align: left; }
}

/* ─── Новий рік: дата біля кроку календаря ────────────────── */
.rental-step .rs-when {
  font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 10px;
}

/* ─── Новий рік: часті питання ────────────────────────────── */
.xmas-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.xmas-faq .fq { padding: 30px 0; border-top: 1px solid rgba(43,43,43,0.10); }
.xmas-faq h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 23px; line-height: 1.3;
  color: var(--dark); margin-bottom: 12px;
}
.xmas-faq p { font-size: 14px; line-height: 1.8; color: var(--muted); }
@media (max-width: 820px) { .xmas-faq { grid-template-columns: 1fr; gap: 0; } }

/* Пʼятий пункт у меню — трохи щільніше на вузьких десктопах */
@media (max-width: 1200px) and (min-width: 1025px) { .nav-links { gap: 24px; } }

/* ─── Оренда: витрина сезонів ─────────────────────────────── */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.season-item .media { aspect-ratio: 3/4; margin-bottom: 14px; }
.season-item:hover .media img { transform: scale(1.03); }
.season-item .s-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--dark); line-height: 1.2;
}
.season-item .s-note {
  font-size: 12px; color: var(--muted); letter-spacing: 0.03em; margin-top: 4px;
}
.season-item .s-book {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid rgba(43,43,43,0.10);
  font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--sage);
}
@media (max-width: 900px) { .season-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; } }
@media (max-width: 460px) { .season-grid { grid-template-columns: 1fr; } }

/* ─── «Живі деталі»: рух світла + промальовка іконок ──────── */
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1);          opacity: 0.9; }
  50%      { transform: translate(-60px, 40px) scale(1.18); opacity: 0.5; }
}
.rental-glow { animation: glowDrift 22s ease-in-out infinite; will-change: transform, opacity; }

/* Лінійні іконки напрямків «малюються» штрихом, коли картка зʼявляється */
.rental-icon path, .rental-icon line, .rental-icon rect, .rental-icon circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  transition: stroke-dashoffset 1.1s var(--ease) 0.15s;
}
.rental-card.reveal.is-in .rental-icon path,
.rental-card.reveal.is-in .rental-icon line,
.rental-card.reveal.is-in .rental-icon rect,
.rental-card.reveal.is-in .rental-icon circle {
  stroke-dashoffset: 0;
}


/* ─── JOURNAL ─────────────────────────────────────────────── */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
.journal-card { text-decoration: none; color: inherit; display: block; }
.journal-card .media { aspect-ratio: 4/3; margin-bottom: 20px; }
.journal-card:hover .media img { transform: scale(1.03); }
.journal-cat {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 10px;
}
.journal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--dark); line-height: 1.3; margin-bottom: 8px;
}
.journal-excerpt { font-size: 13px; line-height: 1.75; color: var(--muted); }
.journal-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.journal-feature .media { aspect-ratio: 16/11; }
@media (max-width: 1024px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .journal-grid { grid-template-columns: 1fr; }
  .journal-feature { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── CONTACT / FAQ ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.contact-channels { display: flex; flex-direction: column; gap: 4px; }
.channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--sage-border);
  text-decoration: none;
  color: inherit;
  transition: padding 0.3s var(--ease);
}
.channel:hover { padding-left: 8px; }
.channel-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--sage-border); border-radius: 50%; color: var(--sage);
}
.channel .c-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.channel .c-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--dark); }

.info-block { margin-bottom: 40px; }
.info-block h3 {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 12px;
}
.info-block p { font-size: 14px; line-height: 1.85; color: var(--muted); }

.faq-item { border-bottom: 1px solid var(--sage-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--dark);
}
.faq-q .plus { font-family: 'Inter', sans-serif; font-size: 20px; color: var(--sage); transition: transform 0.3s var(--ease); }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { font-size: 14px; line-height: 1.85; color: var(--muted); padding: 0 0 24px; max-width: 620px; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ─── CLOSING CTA ─────────────────────────────────────────── */
.closing { text-align: center; }
.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300; line-height: 1.12; color: var(--dark); margin-bottom: 24px;
}
.closing h2 em { font-style: italic; color: var(--sage); }
.closing-sub { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 56px; }
.closing-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
@media (max-width: 680px) { .closing h2 { font-size: 40px; } }

/* ─── Тизер оренди (на головній) ──────────────────────────── */
.rental-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--charcoal);
  align-items: stretch;
}
.rental-teaser .media { min-height: 420px; }
.rental-teaser .rt-body { padding: 90px 64px; align-self: center; }
.rental-teaser .rt-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--off-white); margin: 14px 0 20px; line-height: 1.15;
}
.rental-teaser .rt-body h2 em { font-style: italic; color: var(--sage); }
.rental-teaser .rt-body p { font-size: 14px; line-height: 1.85; color: rgba(245,242,236,0.55); margin-bottom: 32px; max-width: 420px; }
/* Дзеркальний варіант — щоб два тизери поспіль не виглядали клоном */
.rental-teaser--flip .media { order: 2; }

@media (max-width: 860px) {
  .rental-teaser { grid-template-columns: 1fr; }
  .rental-teaser .rt-body { padding: 64px 32px; }
  .rental-teaser .media { min-height: 300px; }
  .rental-teaser--flip .media { order: 0; }
}

/* ─── Промо-смуга новорічного сезону ──────────────────────── */
.xmas-strip {
  background: var(--sage);
  padding: 18px var(--pad-x);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 8px 22px; text-align: center;
}
.xmas-strip p,
.xmas-strip a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--off-white);
}
.xmas-strip a {
  text-decoration: none;
  border-bottom: 1px solid rgba(245,242,236,0.45);
  padding-bottom: 3px;
  transition: border-color 0.3s var(--ease);
}
.xmas-strip a:hover { border-color: var(--off-white); }

/* ============================================================
   КОМПОЗИЦІЇ — галерея-магазин + лайтбокс + форма замовлення
   ============================================================ */

/* ─── Сітка галереї ───────────────────────────────────────── */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
}
@media (max-width: 1024px) { .comp-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }
@media (max-width: 620px)  { .comp-grid { grid-template-columns: 1fr; } }

.comp-card { cursor: pointer; background: none; border: none; padding: 0; text-align: left; font: inherit; color: inherit; display: block; width: 100%; }
.comp-media { aspect-ratio: 4/5; }
.comp-card:hover .comp-media img { transform: scale(1.04); }
.comp-card:focus-visible { outline: 2px solid var(--sage); outline-offset: 6px; }

/* Плашка типу композиції */
.comp-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6EFE6;
  background: rgba(28,58,44,0.72);
  padding: 6px 11px;
  backdrop-filter: blur(6px);
}
.comp-tag--order { background: rgba(126,43,52,0.78); }

/* Підказка «дивитись» */
.comp-zoom {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(18,39,32,0.18);
  transition: opacity 0.4s var(--ease);
}
.comp-card:hover .comp-zoom { opacity: 1; }
.comp-zoom span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F6EFE6;
  border: 1px solid rgba(246,239,230,0.6);
  padding: 10px 18px;
}

/* Галерея кадрів у картці (додається скриптом, якщо в data-img кілька фото) */
.comp-media .card-slide { opacity: 0; z-index: 0; }
.comp-media .card-slide.is-active { opacity: 1; }

.card-dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  z-index: 3;
  display: flex; gap: 7px; justify-content: center;
  pointer-events: none;
}
.card-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(246,239,230,0.55);
  box-shadow: 0 0 0 1px rgba(18,39,32,0.18);
  cursor: pointer; pointer-events: auto;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.card-dot.is-active { background: #F6EFE6; transform: scale(1.3); }

.card-nav {
  position: absolute; top: 50%; z-index: 3;
  width: 34px; height: 34px; margin-top: -17px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(18,39,32,0.38);
  backdrop-filter: blur(6px);
  color: #F6EFE6; font-size: 20px; line-height: 1;
  cursor: pointer; opacity: 0;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.card-nav--prev { left: 12px; }
.card-nav--next { right: 12px; }
.comp-card:hover .card-nav { opacity: 1; }
.card-nav:hover { background: var(--sage); }

/* На тач-пристроях стрілки ховаємо — гортання свайпом */
@media (hover: none) {
  .card-nav { display: none; }
}

.comp-info { padding: 20px 0 0; }
.comp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.25;
}
.comp-meta { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 10px; }
.comp-price { font-size: 14px; font-weight: 500; letter-spacing: 0.04em; color: var(--charcoal); }
.comp-price--ask { color: var(--terracotta); font-weight: 400; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 17px; }

/* ─── Лайтбокс ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  background: #122720;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lb-visual { position: relative; overflow: hidden; background: linear-gradient(145deg, #EAE4DB 0%, #D8CEC0 55%, #C8BAA8 100%); }
.lb-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.lb-panel {
  padding: 72px 64px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--off-white);
}
.lb-tag {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 18px;
}
.lb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; line-height: 1.12;
  color: var(--off-white); margin-bottom: 16px;
}
.lb-price { font-size: 20px; font-weight: 500; color: #F6EFE6; margin-bottom: 26px; }
.lb-desc { font-size: 15px; line-height: 1.9; color: rgba(242,238,229,0.62); margin-bottom: 30px; }
.lb-specs { border-top: 1px solid rgba(242,238,229,0.14); margin-bottom: 34px; }
.lb-specs .row {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 12px 0; border-bottom: 1px solid rgba(242,238,229,0.14);
  font-size: 13px;
}
.lb-specs .row span:first-child { color: rgba(242,238,229,0.45); }
.lb-specs .row span:last-child { color: #F6EFE6; text-align: right; }

.lb-close {
  position: absolute;
  top: 26px; right: 30px;
  z-index: 3;
  width: 44px; height: 44px;
  border: 1px solid rgba(242,238,229,0.28);
  background: rgba(18,39,32,0.35);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: #F6EFE6;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lb-close:hover { background: var(--terracotta); border-color: var(--terracotta); }

.lb-nav {
  position: absolute;
  bottom: 26px; left: 30px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.lb-nav button {
  width: 44px; height: 44px;
  border: 1px solid rgba(242,238,229,0.28);
  background: rgba(18,39,32,0.35);
  backdrop-filter: blur(8px);
  color: #F6EFE6;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lb-nav button:hover { background: var(--sage); border-color: var(--sage); }

/* Галерея кадрів композиції — рядок мініатюр у панелі */
.lb-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lb-thumbs:not(:empty) { margin: 2px 0 30px; }
.lb-thumbs button {
  width: 66px; height: 82px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(242,238,229,0.25);
  border-radius: 3px;
  background: rgba(242,238,229,0.05);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lb-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumbs button:hover { opacity: 0.85; }
.lb-thumbs button.is-active { opacity: 1; border-color: var(--sage); }

/* Лупа (zoom-лінза) над головним фото */
.lb-lens {
  position: absolute;
  display: none;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(0,0,0,0.15);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .lb-visual { cursor: zoom-in; }
}

@media (max-width: 900px) {
  .lightbox { grid-template-columns: 1fr; grid-template-rows: 42vh 1fr; }
  .lb-panel { padding: 40px 26px 56px; justify-content: flex-start; }
  .lb-title { font-size: 32px; }
  .lb-nav { bottom: auto; top: 26px; left: 26px; }
  .lb-thumbs button { width: 56px; height: 70px; }
}

/* ─── Модалка форми замовлення ────────────────────────────── */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18,39,32,0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.order-modal.is-open { opacity: 1; pointer-events: auto; }

.order-box {
  background: var(--warm-white);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.35s var(--ease);
}
.order-modal.is-open .order-box { transform: none; }

.order-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 300; color: var(--dark);
  margin-bottom: 6px;
}
.order-sub { font-size: 13px; color: var(--muted); margin-bottom: 30px; line-height: 1.7; }

.order-item {
  background: var(--linen);
  padding: 16px 18px;
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.order-item .oi-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--dark); }
.order-item .oi-price { font-size: 13px; font-weight: 500; color: var(--terracotta); white-space: nowrap; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid var(--sage-border);
  padding: 13px 14px;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--sage);
}
.field textarea { resize: vertical; min-height: 82px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field .err { font-size: 11px; color: var(--terracotta); margin-top: 5px; display: none; }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--terracotta); }
.field.is-invalid .err { display: block; }

.order-actions { display: flex; gap: 14px; align-items: center; margin-top: 26px; flex-wrap: wrap; }
.order-note { font-size: 11px; color: var(--faint); line-height: 1.6; margin-top: 16px; }

.order-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border: none; background: none; cursor: pointer;
  color: var(--muted); font-size: 20px; line-height: 1;
  transition: color 0.3s var(--ease);
}
.order-close:hover { color: var(--charcoal); }

/* Успіх */
.order-success { text-align: center; padding: 18px 0; }
.order-success .ok-mark {
  width: 56px; height: 56px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  color: #F6EFE6; font-size: 26px;
}
.order-success h3 { margin-bottom: 12px; }
.order-success p { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 26px; }

@media (max-width: 560px) {
  .order-box { padding: 36px 22px; }
  .field-row { grid-template-columns: 1fr; }
}

body.no-scroll { overflow: hidden; }

/* ─── Юридичні сторінки (політика конфіденційності тощо) ──── */
.legal-meta {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
  padding: 14px 18px;
  background: var(--sage-light);
  border-left: 2px solid var(--sage);
  margin-bottom: 44px;
}
.legal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 40px 0 14px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal-soft, #33463c);
  margin-bottom: 14px;
}
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--charcoal-soft, #33463c);
  margin-bottom: 7px;
}
.legal a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { font-weight: 500; color: var(--charcoal); }
