/* Самостоятелно хоствани шрифтове (без Google сървъри) */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-normal-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfairdisplay-italic-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfairdisplay-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfairdisplay-normal-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfairdisplay-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Голямата Панделка — стилове
   Бранд: велурено червено върху тъмен фон, едра типография
   ============================================================ */

:root {
  --red: #c8102e;
  --red-deep: #8f0b21;
  --ink: #0e0d0d;
  --ink-soft: #171515;
  --paper: #f7f3ee;
  --paper-dim: #cfc8bf;
  --line: rgba(247, 243, 238, 0.14);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Плавното скролване е само по изричните команди в скрипта,
   иначе браузърът анимира и скоковете от други страници */

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; }

h2 { font-size: clamp(2rem, 5.5vw, 3.6rem); letter-spacing: -0.01em; }

a { color: inherit; }

/* ---------- Навигация ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
  transition: background 0.35s, box-shadow 0.35s;
}

.nav.is-solid {
  background: rgba(14, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav__brand img { border-radius: 50%; }

.nav__links {
  display: flex;
  gap: clamp(18px, 2.6vw, 38px);
}

.nav__links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--paper-dim);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--paper); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobmenu {
  position: fixed;
  top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 49;
  display: grid;
  padding: 4px 0 12px;
  background: rgba(14, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-115%);
  transition: transform 0.35s var(--ease);
}

.mobmenu.open { transform: none; }

.mobmenu a {
  padding: 15px 26px;
  text-decoration: none;
  color: var(--paper);
  font-weight: 600;
  font-size: 1.05rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 901px) {
  .mobmenu { display: none; }
}

.nav__call {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--paper);
  background: var(--red);
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.2s;
}

.nav__call:hover { background: var(--red-deep); }

/* ---------- Херо: сцена с два акта.
   Вход: само G-класата + брандовият надпис.
   При скрол колата се отдалечава и разкрива мотото с бутоните.
   Всичко е вързано за позицията на скрола, затова работи и в двете посоки. ---------- */

.hero {
  position: relative;
  height: 200vh;
}

.hero__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
  will-change: transform;
  filter: blur(9px) brightness(0.42) saturate(0.75);
  scale: 1.1;
}

.hero__word {
  position: absolute;
  left: 0;
  right: 0;
  top: 9vh;
  z-index: 2;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 10.5vw, 8.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-shadow: 0 4px 40px rgba(14, 13, 13, 0.4);
  will-change: transform;
  user-select: none;
}

.hero__word span { display: block; }

.hero__motto {
  position: absolute;
  left: clamp(20px, 6vw, 80px);
  right: clamp(20px, 6vw, 80px);
  top: 40vh;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(26vw, 380px); /* коридорът по средата за слизащата панделка */
  opacity: 0;
  will-change: transform, opacity;
}

.hero__motto-left {
  flex: 0 1 460px;
  text-align: left;
}

.hero__motto-right {
  flex: 0 1 420px;
  text-align: right;
  padding-top: 8px;
}

.hero__btn { margin-top: 26px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  letter-spacing: 0;
  line-height: 1.3;
  text-shadow: 0 2px 22px rgba(14, 13, 13, 0.85);
}

.hero__title span { display: block; }

.hero__accent { color: var(--red); font-style: italic; }

.hero__sub {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--paper-dim);
  text-shadow: 0 2px 14px rgba(14, 13, 13, 0.9);
}

.hero__price {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
}

.hero__fgwrap {
  position: absolute;
  left: 50%;
  bottom: -3%;
  z-index: 3;
  width: min(780px, 88vw);
  margin-left: calc(min(780px, 88vw) / -2);
  transform-origin: center bottom;
  will-change: transform;
  pointer-events: none;
}

.hero__fg {
  width: 100%;
  height: auto;
  will-change: transform;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.55));
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14,13,13,0.4) 0%, rgba(14,13,13,0) 26%, rgba(14,13,13,0) 62%, var(--ink) 100%);
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn--primary { background: var(--red); color: var(--paper); }
.btn--primary:hover { background: var(--red-deep); }

.btn--ghost {
  border: 1px solid rgba(247, 243, 238, 0.4);
  color: var(--paper);
}
.btn--ghost:hover { border-color: var(--paper); }

.hero__scrollhint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 6;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(247,243,238,0.4);
  border-radius: 14px;
  will-change: opacity;
}

.hero__motto { pointer-events: none; }

.hero__scrollhint span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--paper);
  animation: scrollhint 1.8s var(--ease) infinite;
}

@keyframes scrollhint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Лента с предимства ---------- */

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
}

.strip ul {
  list-style: none;
  display: grid;
  /* средната празна колона е коридорът, по който минава летящата панделка */
  grid-template-columns: 1fr 1fr minmax(150px, 210px) 1fr 1fr;
  max-width: 1340px;
  margin: 0 auto;
}

.strip li:nth-child(3) { grid-column: 4; border-left: none; }

.strip li {
  padding: 26px 18px;
  text-align: center;
  display: grid;
  gap: 2px;
}

.strip li + li { border-left: 1px solid var(--line); }

.strip strong { font-size: 1.02rem; letter-spacing: 0.01em; }
.strip span { font-size: 0.85rem; color: var(--paper-dim); }

/* ---------- Изрязан текст със снимка в буквите ---------- */

.knockout {
  padding: clamp(60px, 10vh, 110px) 16px;
  text-align: center;
  overflow: hidden;
}

.knockout__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 13vw, 12rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: rgba(247, 243, 238, 0.07);
}

/* Цветната вълна: лента от червено между --a и --b минава през буквите */
.wordfill {
  color: transparent;
  background-image: linear-gradient(90deg,
    var(--wf-base) var(--a, 0%),
    var(--wf-color, var(--red)) var(--a, 0%),
    var(--wf-color, var(--red)) var(--b, 0%),
    var(--wf-base) var(--b, 0%));
  -webkit-background-clip: text;
  background-clip: text;
}

.knockout .wordfill { --wf-base: rgba(247, 243, 238, 0.07); }

/* Втората дума се пълни направо с бяло, преливайки от червените горни букви */
#fillword2 { --wf-color: #f7f3ee; }

.products--light .wordfill { --wf-base: #0e0d0d; }

/* Заглавието на историята: буквите изплуват една по една от мъгла */
.story__head .eyebrow { color: var(--paper); }

.story__h .ltr {
  display: inline-block;
  font-style: normal;
  opacity: 0.12;
  transform: translateY(30%);
  filter: blur(5px);
  will-change: transform, opacity, filter;
}

.knockout__caption {
  margin-top: 22px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--paper-dim);
}

/* ---------- Преливания между тъмно и светло ---------- */

.fade {
  height: 110px;
  margin-bottom: -1px;
}

.fade--to-light { background: linear-gradient(180deg, var(--ink), var(--paper)); }
.fade--to-dark { background: linear-gradient(180deg, var(--paper), var(--ink)); }

/* ---------- Светла редакционна секция ---------- */

.products--light {
  background: var(--paper);
  color: var(--ink);
}

.products--light .section-head h2 { color: var(--ink); }

.products--light .pcard {
  background: #fffdfa;
  border-color: rgba(14, 13, 13, 0.1);
  box-shadow: 0 18px 50px rgba(14, 13, 13, 0.09);
}

.products--light .pcard__body > p,
.products--light .pcard__prices span,
.products--light .pcard__note { color: #5c564e; }

.products--light .pcard__prices li { border-bottom-color: rgba(14, 13, 13, 0.14); }


/* ---------- Секции: общи ---------- */

section { padding: clamp(72px, 11vh, 128px) clamp(20px, 5vw, 64px); }

.section-head { max-width: 820px; margin: 0 auto 56px; text-align: center; }

.section-sub { margin-top: 16px; color: var(--paper-dim); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 14px;
}

/* ---------- История ---------- */

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 6vw, 88px);
  row-gap: clamp(36px, 6vh, 60px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: clamp(36px, 5vh, 70px);
}

/* ---------- Летателната зона на бялата панделка ---------- */

.flightzone {
  position: relative;
  height: clamp(320px, 46vh, 520px);
  max-width: 1400px;
  margin: 0 auto;
}

.fz__ribbon {
  position: absolute;
  top: 0;
  height: 100%;
  width: clamp(180px, 24vw, 360px);
  pointer-events: none;
}

.fz__ribbon--left { left: clamp(8px, 4vw, 90px); }
.fz__ribbon--right { right: clamp(8px, 4vw, 90px); }

.story__media {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 3 / 4;
}

.story__media img {
  width: 100%; height: 112%;
  object-fit: cover;
  will-change: transform;
}

.story__head {
  grid-column: 1 / -1;
  text-align: center;
}

.story__h {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.story__h span { display: block; white-space: nowrap; }
.story__text p { color: var(--paper-dim); margin-bottom: 16px; max-width: 52ch; }

.story__text { align-self: start; padding-top: clamp(4px, 2vh, 24px); }

/* ---------- Продукти ---------- */

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  max-width: 1200px;
  margin: 0 auto;
}

.pcard {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pcard__media { aspect-ratio: 16 / 10; overflow: hidden; }

.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.pcard:hover .pcard__media img { transform: scale(1.045); }

.pcard__body { padding: clamp(22px, 3vw, 34px); display: grid; gap: 14px; }

.pcard__body h3 { font-size: 1.45rem; }

.pcard__body > p { color: var(--paper-dim); font-size: 0.97rem; }

.pcard__prices { list-style: none; display: grid; gap: 0; }

.pcard__prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 2px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.97rem;
}

.pcard__prices span { color: var(--paper-dim); }
.pcard__prices strong { font-size: 1.05rem; letter-spacing: 0.02em; }

/* Цветовете като малки панделки: при натискане порастват и показват името си */
.pcard__colors {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  padding-bottom: 22px;
}

.dot {
  position: relative;
  width: 38px;
  height: 34px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c);
  -webkit-mask: url("../img/bow.webp") center / contain no-repeat;
  mask: url("../img/bow.webp") center / contain no-repeat;
  filter: drop-shadow(0 2px 4px rgba(14, 13, 13, 0.35));
  transition: transform 0.25s var(--ease);
  transform-origin: center;
}

.dot:hover::before,
.dot.active::before { transform: scale(1.3); }

.dot::after {
  content: attr(data-name);
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5c564e;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.dot.active::after { opacity: 1; }

.pcard__note { font-size: 0.82rem; color: var(--paper-dim); letter-spacing: 0.02em; }

/* ---------- Галерия ---------- */

.gallery__grid {
  columns: 3;
  column-gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__grid figure {
  margin: 0 0 16px;
  border-radius: 14px;
  overflow: hidden;
  break-inside: avoid;
}

.gallery__grid img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}

.gallery__grid figure:hover img { transform: scale(1.04); }

/* Хоризонтална лента с изпълнените поръчки */
.gscroll-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.gscroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 4px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(247, 243, 238, 0.25) transparent;
}

.gscroll figure {
  flex: 0 0 auto;
  width: clamp(210px, 23vw, 300px);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
}

.gscroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gscroll__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(247, 243, 238, 0.3);
  background: rgba(14, 13, 13, 0.82);
  color: var(--paper);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.gscroll__btn:hover { background: var(--red); border-color: var(--red); }

.gscroll__btn--prev { left: -12px; }
.gscroll__btn--next { right: -12px; }

.gallery__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.gallery__more {
  text-align: center;
  margin-top: 22px;
  color: var(--paper-dim);
}

/* ---------- Летящата панделка ---------- */

.flybow {
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  height: 287px;
  z-index: 45;
  pointer-events: none;
  transform-origin: 150px 143px; /* центърът на естествения размер */
  perspective: 900px;
  will-change: transform, opacity;
  visibility: hidden;
}

.flybow__spin {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  will-change: transform;
}

.flybow__spin img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
}

.flybow__side { opacity: var(--side, 0); transform: rotateY(60deg); }
.flybow__side--b { transform: rotateY(120deg); }


/* ---------- Правни страници и 404 ---------- */

.legal article { max-width: 760px; margin: 0 auto; padding-bottom: 40px; }

.legal h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 10px 0 30px; }

.legal h2 { font-size: 1.35rem; margin: 34px 0 12px; }

.legal p { color: var(--paper-dim); margin-bottom: 14px; }

.legal a { color: var(--paper); }

.legal em {
  font-style: normal;
  color: var(--paper);
  background: rgba(200, 16, 46, 0.2);
  padding: 1px 8px;
  border-radius: 6px;
}

.legal__date { margin-top: 40px; font-size: 0.85rem; }

.footer__legal { margin-top: 8px; font-size: 0.8rem; }

.footer__legal a { color: var(--paper-dim); }

.notfound { min-height: 62vh; padding-top: calc(var(--nav-h) + 10vh); }

.notfound__actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Страница Галерия ---------- */

.gpage {
  padding-top: calc(var(--nav-h) + clamp(36px, 6vh, 64px));
}

.gpage .section-head { margin-bottom: 40px; }

.gpage h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); letter-spacing: -0.01em; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  background: rgba(14, 13, 13, 0.94);
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.gallery__grid figure { cursor: zoom-in; }

.gallery__more a { color: var(--paper); }

/* ---------- Поводи ---------- */

.occasions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.ocard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  cursor: pointer;
}

.ocard img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.ocard:hover img { transform: scale(1.05); }

.ocard span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 44px 18px 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(14,13,13,0.88));
}

/* ---------- Поръчка ---------- */

.order { background: var(--ink-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.order__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
}

.order__num {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.order__steps h3 { font-size: 1.3rem; margin-bottom: 10px; }
.order__steps p { color: var(--paper-dim); font-size: 0.97rem; max-width: 34ch; }

/* ---------- ЧЗВ ---------- */

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__list details {
  border-bottom: 1px solid var(--line);
}

.faq__list summary {
  padding: 20px 34px 20px 2px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s;
}

.faq__list summary::-webkit-details-marker { display: none; }

.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--red);
  transition: transform 0.25s var(--ease);
}

.faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq__list summary:hover { color: var(--red); }

.faq__list details p {
  padding: 0 2px 20px;
  color: var(--paper-dim);
  max-width: 64ch;
}

/* ---------- Финален CTA ---------- */

.cta { text-align: center; }

.cta h2 { font-size: clamp(2.2rem, 6vw, 4rem); }

.cta__inner > p:not(.eyebrow) { color: var(--paper-dim); margin-top: 14px; }

.cta__phone {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}

.cta__phone:hover { color: var(--paper); }

.cta__hours { font-size: 0.95rem; margin-top: 18px; }

.cta__social {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.cta__social a {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper-dim);
  transition: color 0.2s, border-color 0.2s;
}

.cta__social a:hover { color: var(--paper); border-color: var(--paper); }

/* ---------- Футър и мобилен бутон ---------- */

.footer {
  padding: 26px 20px calc(26px + 64px);
  text-align: center;
  font-size: 0.85rem;
  color: var(--paper-dim);
  border-top: 1px solid var(--line);
}

.callbar {
  position: fixed;
  left: 14px; right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.35);
}

/* ---------- Анимации при скрол ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.4s; }

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { height: 100svh; }
  .hero__bg, .hero__fg, .hero__word { transform: none !important; }
  .hero__fgwrap { transform: scale(0.55) !important; }
  .hero__motto { opacity: 1 !important; pointer-events: auto !important; }
  .parallax > * { transform: none !important; }
  .hero__scrollhint { display: none; }
  .flybow { display: none; }
  .knockout .wordfill { --a: 0%; --b: 100%; }
  .story__h .ltr { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ---------- Отзивчивост ---------- */

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 4 / 3; }
  .products__grid { grid-template-columns: 1fr; }
  .gallery__grid { columns: 2; }
  .occasions__grid { grid-template-columns: 1fr 1fr; }
  .order__steps { grid-template-columns: 1fr; }
  .strip ul { grid-template-columns: 1fr 1fr; }
  .strip li:nth-child(3) { border-left: none; grid-column: auto; }
  .strip li:nth-child(1), .strip li:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 700px) {
  .callbar { display: flex; }
  .nav__call span { display: none; }
  .nav__call { padding: 12px; }
  section { padding-left: 18px; padding-right: 18px; }
  .section-head { margin-bottom: 40px; }
  .strip li { padding: 24px 10px; }
  .strip strong { font-size: 0.95rem; }
  .strip span { font-size: 0.8rem; }
  .knockout { padding-top: 56px; padding-bottom: 56px; }
  .hero__motto { top: 24vh; gap: 20px; }
  .hero__title { font-size: 1.45rem; }
  .story { row-gap: 28px; }
  .order__steps { gap: 34px; }
  .gallery__grid { columns: 2; column-gap: 10px; }
  .gallery__grid figure { margin-bottom: 10px; }
  .gscroll figure { width: 62vw; }
  .gscroll__btn { display: none; }
  .flightzone { height: clamp(260px, 40vh, 420px); }
  .gallery__grid--four figure { margin: 0; }
  .occasions__grid { grid-template-columns: 1fr; }
  .hero__word { top: 11vh; }
  .hero__motto { top: 23vh; flex-direction: column; gap: 0; }
  .hero__motto-left, .hero__motto-right { display: contents; }
  .hero__motto-right { text-align: left; }
  .hero__title { order: 1; }
  .hero__sub { order: 2; margin-top: 14px; text-align: left; }
  .hero__motto-left .hero__btn { order: 3; margin-top: 24px; }
  .hero__motto-right .hero__btn { order: 4; margin-top: 12px; }
  .hero__price { order: 5; margin-top: 12px; }
  .hero__fgwrap { width: 102vw; margin-left: -51vw; bottom: 13%; }
  .knockout__word { font-size: clamp(2.6rem, 15vw, 5rem); }
}
