/* ==================== ТОКЕНЫ ==================== */
:root {
  --bg:        #FFFEFB;
  --bg-card:   #FFFFFF;
  --bg-cream:  #FFF8F0;     /* почти-белый, лёгкий тёплый — заменил тёмно-бежевый */
  --bg-rose:   #FFF1F2;     /* нежно-розовый для «Как заказать» */
  --bg-dark:   #2A1518;
  --accent:    #E8344B;
  --accent-2:  #FF5A6E;
  --accent-soft:#FCE4E7;
  --accent-mark:#FFE2C7;
  --berry:     #5C0A1B;
  --leaf:      #2E5C3F;
  --ink:       #2A1B12;
  --ink-2:     #6B5043;
  --ink-3:     #A89485;
  --line:      #F0E5D8;
  --gold:      #D4A574;
  --mint:      #B8DCC4;
  --sea:       #FFE0D9;

  --font: 'Onest', system-ui, sans-serif;
  --serif:'Yeseva One', 'Playfair Display', Georgia, serif;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --shadow-sm: 0 2px 8px rgba(42, 27, 18, .05);
  --shadow:    0 12px 36px rgba(42, 27, 18, .08);
  --shadow-lg: 0 30px 80px rgba(42, 27, 18, .15);
  --shadow-card: 0 8px 24px rgba(232, 52, 75, .08), 0 2px 6px rgba(42, 27, 18, .04);
}

/* ==================== RESET ==================== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
mark { background: var(--accent-mark); padding: 1px 8px; border-radius: 6px; color: var(--berry); font-weight: 700; }
em { font-style: italic; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.ic { width: 20px; height: 20px; flex-shrink: 0; }
.ic--sm { width: 16px; height: 16px; }
.ic--md { width: 24px; height: 24px; }
.ic--lg { width: 32px; height: 32px; }
.ic--xl { width: 40px; height: 40px; }
.ic--flip { transform: rotate(180deg); }

/* ==================== ТИПОГРАФИКА ==================== */
h1,h2,h3,h4 {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-family: var(--font);
}
.section__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section__head--light { color: #fff; }
.section__head--minimal { margin-bottom: 40px; }
.section__head--minimal .section__label { margin: 0; }
.section__label {
  display: inline-block;
  font-family: var(--font);    /* Onest — гротеск, без курсива */
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.section__label::before {
  content: "— ";
  opacity: .5;
}
.section__label::after {
  content: " —";
  opacity: .5;
}
.section__title {
  font-size: clamp(32px, 4.6vw, 60px);
  margin-bottom: 16px;
}
.section__lead {
  color: var(--ink-2);
  font-size: 17px;
}
.accent { color: var(--accent); }
.accent-curve {
  font-family: var(--serif);
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-soft);
  color: var(--berry);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.badge--dark { background: var(--bg-dark); color: #fff; }
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ==================== КНОПКИ (с изюминкой) ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  position: relative;
}
.btn--xs { padding: 8px 16px; font-size: 13px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(232,52,75,.25);
  padding-right: 30px;
}
.btn--primary .btn__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  margin-left: 4px;
  position: relative;
  flex-shrink: 0;
}
.btn--primary .btn__dot::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-right: 2px solid var(--accent);
  border-top: 2px solid var(--accent);
  transform: rotate(45deg);
  border-radius: 0 2px 0 0;
  margin-top: -1px;
  margin-left: -3px;
}
.btn--primary:hover {
  background: var(--berry);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232,52,75,.4);
}
.btn--ghost {
  background: rgba(255,255,255,.7);
  color: var(--ink);
  border: 2px solid var(--ink);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--berry);
  border: 2px solid var(--berry);
}
.btn--outline:hover { background: var(--berry); color: #fff; }

/* ==================== ЛЕТАЮЩИЕ КЛУБНИЧКИ ==================== */
.berries {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.berry {
  position: absolute;
  width: 80px;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 8px 24px rgba(232, 52, 75, .25));
  transition: opacity .8s, transform 1.2s cubic-bezier(.2, .8, .25, 1);
  will-change: transform;
}
.berry.show { opacity: .85; }
.berry--1 { top: 12vh; left: 4vw;  width: 70px; }
.berry--2 { top: 32vh; right: 6vw; width: 90px; }
.berry--3 { top: 58vh; left: 7vw;  width: 75px; }
.berry--4 { top: 78vh; right: 4vw; width: 100px;}
.berry--5 { top: 105vh; left: 12vw; width: 65px; }
.berry--6 { top: 130vh; right: 10vw;width: 80px; }
.berry--7 { top: 160vh; left: 6vw; width: 85px; }
.berry--8 { top: 190vh; right: 5vw;width: 70px; }

/* ==================== HEADER ==================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 245, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 229, 216, .6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--accent-soft);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__title { font-size: 20px; font-weight: 700; color: var(--ink); }
.logo__sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; letter-spacing: 0.02em; }
.nav { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--accent); }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 1024px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all .25s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .burger { display: flex; }
  .header__cta { display: none; }
}
@media (max-width: 480px) {
  .logo__sub { display: none; }
  .logo__title { font-size: 17px; }
}

/* ==================== HERO ==================== */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,52,75,.10), transparent 65%);
  top: -150px; right: -150px;
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,116,.18), transparent 65%);
  bottom: -100px; left: -100px;
  filter: blur(40px);
  pointer-events: none;
}
.hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(232,52,75,.25));
}
.hero-deco img { width: 100%; height: auto; }
.hero-deco--1 { top: 8%; left: 4%; width: 60px; transform: rotate(-15deg); animation: float 7s ease-in-out infinite; }
.hero-deco--2 { top: 65%; left: 38%; width: 50px; transform: rotate(20deg); animation: float 9s ease-in-out infinite reverse; }
.hero-deco--3 { top: 18%; right: 42%; width: 45px; transform: rotate(-30deg); animation: float 8s ease-in-out infinite; }
@keyframes float {
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -20px; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero__accent {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0;
}
.hero__lead {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 620px;
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.ti { display: flex; flex-direction: column; }
.ti strong {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
}
.ti span {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 4px;
  line-height: 1.3;
}

/* hero visual: букет ЦЕЛЬНЫЙ, без круга/квадрата */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero__bouquet {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(92, 10, 27, .25))
          drop-shadow(0 4px 12px rgba(232, 52, 75, .15));
  animation: bouquetSpin 28s linear infinite;
  transform-origin: center center;
  position: relative;
  z-index: 2;
}
@keyframes bouquetSpin {
  to { transform: rotate(360deg); }
}

.hero__sticker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.25;
  z-index: 5;
  white-space: nowrap;
}
.hero__sticker .ic { color: var(--accent); }
.hero__sticker--1 { top: 8%;   left: -8%;  transform: rotate(-6deg); animation: stick1 6s ease-in-out infinite; }
.hero__sticker--2 { bottom: 12%; right: -8%; transform: rotate(4deg); animation: stick2 7s ease-in-out infinite; }
@keyframes stick1 { 0%,100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-8px); } }
@keyframes stick2 { 0%,100% { transform: rotate(4deg) translateY(0); }  50% { transform: rotate(4deg) translateY(8px); } }

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { min-height: 380px; }
  .hero__bouquet { max-width: 420px; }
  .hero__sticker--1 { left: 2%; }
  .hero__sticker--2 { right: 2%; }
}
@media (max-width: 600px) {
  .hero__sticker { font-size: 11px; padding: 8px 14px 8px 10px; }
  .hero__sticker .ic { width: 18px; height: 18px; }
  .hero__bouquet { max-width: 280px; }
  .hero__visual { min-height: 320px; }
  .hero__sticker--1 { top: 2%; left: 4%; }
  .hero__sticker--2 { bottom: 4%; right: 4%; }
  .hero__cta .btn { flex: 1; min-width: 0; }
  .hero-deco--1, .hero-deco--2, .hero-deco--3 { display: none; }
}
@media (max-width: 420px) {
  .hero__title { font-size: 28px; }
  .hero__lead { font-size: 15px; }
}

/* ==================== БЕГУЩАЯ СТРОКА ==================== */
.marquee {
  background: var(--berry);
  color: #FFF1E5;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marquee__track .ic { color: var(--accent-2); }
.dot-sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==================== 6 ПРИЧИН (плашки вокруг заголовка) ==================== */
.reasons {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.reasons__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
/* центральный заголовок (без лейбла «Почему мы» — он теперь в section__head сверху) */
.reasons__center {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
  padding: 0 8px;
}
.reasons__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 4px;
}
.reasons__line-1 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: .85;
}
.reasons__big {
  font-family: var(--serif);
  font-size: clamp(54px, 6.5vw, 88px);
  color: var(--accent);
  line-height: .85;
}
.reasons__word {
  font-family: var(--font);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.reasons__line-2 {
  font-family: var(--font);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  margin-top: 4px;
}

/* плашки */
.rcard {
  position: relative;
  background: #fff;
  padding: 36px 24px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all .3s ease;
}
.rcard:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  box-shadow: 0 20px 48px rgba(232, 52, 75, .15), var(--shadow-card);
}
/* иконка над плашкой как магнит */
.rcard__icon {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(232,52,75,.35);
  border: 4px solid var(--bg);
}
.rcard__icon .ic { width: 24px; height: 24px; }
.rcard h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.1;
}
.rcard p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
}
/* парящее размещение: боковые верхние ниже, боковые нижние выше — лепестками вокруг центра */
.rcard--1 { grid-column: 1; grid-row: 1; animation: sway1 6.0s ease-in-out infinite; }
.rcard--2 { grid-column: 2; grid-row: 1; animation: sway2 6.5s ease-in-out infinite; }
.rcard--3 { grid-column: 3; grid-row: 1; animation: sway3 6.0s ease-in-out infinite; }
.rcard--4 { grid-column: 1; grid-row: 3; animation: sway4 6.5s ease-in-out infinite; }
.rcard--5 { grid-column: 2; grid-row: 3; animation: sway5 6.0s ease-in-out infinite; }
.rcard--6 { grid-column: 3; grid-row: 3; animation: sway6 6.5s ease-in-out infinite; }

/* верхний ряд: средняя ВЫШЕ боковых (боковые смещены вниз) */
@keyframes sway1 {
  0%,100% { transform: translateY(34px) rotate(-2deg); }
  50%     { transform: translateY(28px) rotate(-2deg); }
}
@keyframes sway2 {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%     { transform: translateY(-6px) rotate(1deg); }
}
@keyframes sway3 {
  0%,100% { transform: translateY(34px) rotate(-1deg); }
  50%     { transform: translateY(28px) rotate(-1deg); }
}
/* нижний ряд: средняя НИЖЕ боковых (боковые смещены вверх) */
@keyframes sway4 {
  0%,100% { transform: translateY(-34px) rotate(2deg); }
  50%     { transform: translateY(-28px) rotate(2deg); }
}
@keyframes sway5 {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(6px) rotate(-1deg); }
}
@keyframes sway6 {
  0%,100% { transform: translateY(-34px) rotate(1deg); }
  50%     { transform: translateY(-28px) rotate(1deg); }
}

.rcard:hover {
  animation: none;
  transform: translateY(-6px) rotate(0) !important;
}

@media (max-width: 1024px) {
  .reasons__layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 24px;
  }
  .reasons__center { grid-column: 1 / -1; grid-row: 1; padding: 24px 0; }
  .rcard--1 { grid-column: 1; grid-row: 2; }
  .rcard--2 { grid-column: 2; grid-row: 2; }
  .rcard--3 { grid-column: 1; grid-row: 3; }
  .rcard--4 { grid-column: 2; grid-row: 3; }
  .rcard--5 { grid-column: 1; grid-row: 4; }
  .rcard--6 { grid-column: 2; grid-row: 4; }
}
@media (max-width: 600px) {
  .reasons { padding: 64px 0; }
  .reasons__layout { grid-template-columns: 1fr; gap: 32px; }
  .rcard { grid-column: 1 !important; padding: 36px 20px 22px; }
  .rcard--1 { grid-row: 2; transform: rotate(0); animation: rcardFloat 5s ease-in-out infinite; }
  .rcard--2 { grid-row: 3; transform: rotate(0); animation: rcardFloat 5.5s ease-in-out infinite; animation-delay: .3s; }
  .rcard--3 { grid-row: 4; transform: rotate(0); animation: rcardFloat 6s ease-in-out infinite; animation-delay: .6s; }
  .rcard--4 { grid-row: 5; transform: rotate(0); animation: rcardFloat 5.5s ease-in-out infinite; animation-delay: .9s; }
  .rcard--5 { grid-row: 6; transform: rotate(0); animation: rcardFloat 5s ease-in-out infinite; animation-delay: 1.2s; }
  .rcard--6 { grid-row: 7; transform: rotate(0); animation: rcardFloat 6s ease-in-out infinite; animation-delay: 1.5s; }
  @keyframes rcardFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-6px); }
  }
  .reasons__line-1 { gap: 8px; }
}

/* ==================== КАТЕГОРИИ ==================== */
.cats {
  padding: 100px 0;
  background: var(--bg-cream);
  position: relative;
  z-index: 2;
}
.cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 360px;
  gap: 16px;
}
.cat {
  position: relative;
  background: var(--bg, #FCE4E7);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  cursor: pointer;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat--big { grid-column: span 2; }
.cat__photo { flex: 1; overflow: hidden; position: relative; }
.cat__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.cat:hover .cat__photo img { transform: scale(1.06); }
.cat__body {
  padding: 18px 22px 20px;
  background: var(--bg);
}
.cat__body h3 { font-size: 21px; font-weight: 700; line-height: 1.05; margin-bottom: 4px; }
.cat__body p { font-size: 13px; color: var(--ink-2); margin-bottom: 10px; }
.cat__price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 14px;
  background: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--berry);
  transition: all .25s;
}
.cat:hover .cat__price { background: var(--accent); color: #fff; transform: translateX(2px); }
.cat__price .ic { transition: transform .25s; }
.cat:hover .cat__price .ic { transform: translateX(2px); }

@media (max-width: 1024px) {
  .cats__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
  .cat--big { grid-column: span 2; }
}
@media (max-width: 560px) {
  .cats__grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .cat--big { grid-column: span 1; }
}

/* ==================== ТОП БУКЕТОВ ==================== */
.bouquets { padding: 100px 0; position: relative; z-index: 2; }
.bouquets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bcard {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.bcard:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(232, 52, 75, .12), var(--shadow-card); }
.bcard__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #fff;
  color: var(--berry);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bcard__tag--accent { background: var(--accent); color: #fff; }
.bcard__tag--dark   { background: var(--ink); color: #fff; }
.bcard__tag--sea    { background: #FF8068; color: #fff; }
.bcard__tag--mint   { background: var(--mint); color: #1F4A2C; }

.bcard__photo { aspect-ratio: 1/1; overflow: hidden; }
.bcard__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bcard:hover .bcard__photo img { transform: scale(1.06); }
.bcard__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.bcard h3 { font-size: 18px; margin-bottom: 6px; font-weight: 700; line-height: 1.15; }
.bcard p { color: var(--ink-2); font-size: 13px; line-height: 1.45; margin-bottom: 14px; flex: 1; }
.bcard__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bcard__price { font-family: var(--serif); font-size: 22px; color: var(--berry); }

.bouquets__more {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.bouquets__more p { color: var(--ink-2); font-size: 16px; max-width: 480px; }
.bouquets__more-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 1100px) { .bouquets__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .bouquets__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .bouquets__grid { grid-template-columns: 1fr; } }

/* ==================== КОНСТРУКТОР ==================== */
.constructor {
  padding: 100px 0;
  background: var(--bg-cream);
  position: relative;
  z-index: 2;
}
.constructor__inner {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.constructor__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
}
.cs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px;
  transition: all .25s;
}
.cs__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  border: 2px solid var(--bg-cream);
  transition: all .25s;
}
.cs__label { font-size: 13px; font-weight: 600; color: var(--ink-3); }
.cs--active .cs__num,
.cs:hover .cs__num { background: var(--accent); color: #fff; border-color: var(--accent); }
.cs--active .cs__label, .cs:hover .cs__label { color: var(--ink); }
.cs--done .cs__num { background: var(--berry); color: #fff; border-color: var(--berry); }

.cs__line {
  height: 2px;
  background: var(--bg-cream);
  position: relative;
  top: -12px;
}
.cs__line.cs__line--active { background: var(--accent); }

.cpanel { display: none; }
.cpanel--active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cpanel h3 { font-size: 22px; margin-bottom: 24px; text-align: center; }

.cpanel__opts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.cpanel__opts--multi { grid-template-columns: repeat(4, 1fr); }
.opt { cursor: pointer; }
.opt input { position: absolute; opacity: 0; }
.opt span {
  display: block;
  padding: 16px 14px;
  background: var(--bg-cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all .2s;
  line-height: 1.3;
}
.opt span em {
  display: block;
  font-style: normal;
  font-family: var(--font);    /* Onest, без курсива */
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-top: 4px;
}
.opt input:checked + span em { color: var(--accent); }
.opt:hover span { border-color: var(--accent-2); }
.opt input:checked + span {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--berry);
}
.opt--check { display: block; margin-bottom: 16px; }
.opt--check span { text-align: left; padding: 12px 18px; }

.cpanel__text {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  margin-bottom: 16px;
  background: var(--bg-cream);
}
.cpanel__text:focus { outline: none; border-color: var(--accent); background: #fff; }

.cpanel__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--accent-soft);
  border-radius: var(--r-md);
  margin-bottom: 16px;
}
.cpanel__total strong {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--berry);
}

/* превью сообщения в Telegram (конструктор + корпоратив) */
.msg-preview {
  background: var(--bg-cream);
  border: 2px dashed var(--accent);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: 20px 0 16px;
}
.msg-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.msg-preview__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.msg-preview__copy {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 6px 14px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  transition: all .2s;
  background: #fff;
}
.msg-preview__copy:hover { background: var(--accent); color: #fff; }
.msg-preview__copy.copied { background: var(--accent); color: #fff; }
.msg-preview__body {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  white-space: pre-wrap;
  font-family: var(--font);
  border: 1px solid var(--line);
  max-height: 240px;
  overflow-y: auto;
}

/* кнопки навигации в конструкторе */
.cpanel__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.cpanel__nav .btn:only-child { margin-left: auto; }
.cpanel small { display: block; text-align: center; margin-top: 12px; color: var(--ink-3); font-size: 13px; }

@media (max-width: 700px) {
  .constructor__inner { padding: 24px; }
  .cpanel__opts { grid-template-columns: 1fr; }
  .cpanel__opts--multi { grid-template-columns: repeat(2, 1fr); }
  .cs__label { font-size: 11px; }
  .cs__num { width: 36px; height: 36px; font-size: 18px; }
}
@media (max-width: 480px) {
  .cpanel__nav { flex-direction: column-reverse; }
  .cpanel__nav .btn { width: 100%; }
}

/* ==================== КАК ЗАКАЗАТЬ (светлый фон, квадратные плашки одного цвета) ==================== */
.how {
  background: var(--bg-rose);
  color: var(--ink);
  padding: 100px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(232,52,75,.06), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(212,165,116,.08), transparent 50%);
  pointer-events: none;
}
.how .section__title { color: var(--ink); }
.how__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.hs {
  text-align: center;
  padding: 32px 24px;
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: all .3s;
}
.hs:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(232, 52, 75, .15), var(--shadow-card);
}
.hs__circle {
  width: 72px;
  height: 72px;
  border-radius: 18px;            /* квадратное со скруглениями */
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(232,52,75,.30);
  transition: transform .3s;
  transform: rotate(-6deg);
  animation: hsTilt 5s ease-in-out infinite;
}
.hs--2 .hs__circle { animation-delay: .6s; }
.hs--3 .hs__circle { animation-delay: 1.2s; }
.hs--4 .hs__circle { animation-delay: 1.8s; }
.hs__circle .ic { width: 32px; height: 32px; }
@keyframes hsTilt {
  0%,100% { transform: rotate(-6deg) scale(1); }
  50%     { transform: rotate(2deg) scale(1.06); }
}
.hs:hover .hs__circle { transform: rotate(0deg) scale(1.08); animation: none; }

.hs__num {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  opacity: .8;
}
.hs h3 { font-size: 19px; margin-bottom: 10px; color: var(--ink); }
.hs p { color: var(--ink-2); font-size: 14px; line-height: 1.5; }

.hs__arrow {
  display: flex;
  align-items: center;
  width: 80px;
  color: var(--accent);
  opacity: .55;
}
.hs__arrow svg { width: 80px; height: 30px; }

.how__note {
  margin: 56px auto 0;
  max-width: 720px;
  padding: 24px 32px;
  background: #fff;
  border: 2px dashed var(--accent);
  border-radius: var(--r-md);
  display: flex;
  gap: 16px;
  align-items: center;
}
.how__note .ic { color: var(--accent); flex-shrink: 0; }
.how__note strong { display: block; font-size: 17px; margin-bottom: 4px; color: var(--ink); }
.how__note span { color: var(--ink-2); font-size: 14px; }

@media (max-width: 1024px) {
  .how__steps { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .hs__arrow { display: none; }
}
@media (max-width: 560px) {
  .how__steps { grid-template-columns: 1fr; }
  .hs__circle { width: 72px; height: 72px; }
  .hs__circle .ic { width: 32px; height: 32px; }
}

/* ==================== КОРПОРАТИВ ==================== */
.corp { padding: 100px 0; position: relative; z-index: 2; }
.corp__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.corp__text h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}
.corp__text > p { font-size: 17px; color: var(--ink-2); line-height: 1.6; margin-bottom: 24px; }
.corp__feats { display: grid; gap: 10px; }
.corp__feats li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.corp__feats li:last-child { border-bottom: 0; }
.corp__feats .ic--check {
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.corp__calc {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
}
.corp__calc::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  z-index: -1;
}
.corp__calc h3 { font-size: 24px; margin-bottom: 20px; }
.corp__calc label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin: 14px 0 6px; }
.corp__calc input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  background: var(--bg-cream);
}
.corp__calc input:focus { outline: none; border-color: var(--accent); background: #fff; }
.corp__calc-result {
  background: var(--bg-cream);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 24px 0 16px;
}
.ccr-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 15px; color: var(--ink-2); }
.ccr-row strong { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.ccr-row--accent { color: var(--accent); }
.ccr-row--accent strong { color: var(--accent); }
.ccr-row--total {
  border-top: 2px dashed var(--line);
  padding-top: 14px;
  margin-top: 4px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.ccr-row--total strong { font-size: 26px; color: var(--berry); }
.corp__calc small { display: block; text-align: center; margin-top: 12px; color: var(--ink-3); font-size: 13px; }

@media (max-width: 900px) { .corp__inner { grid-template-columns: 1fr; gap: 32px; } }

/* ==================== ПОДПИСКА К ДАТАМ ==================== */
.subscribe {
  padding: 100px 0;
  background: var(--bg-cream);
  position: relative;
  z-index: 2;
}
.subscribe__inner { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.subscribe__art { display: flex; justify-content: center; align-items: center; min-height: 360px; }
.subscribe__cal { display: flex; gap: 20px; }
.cal-day {
  width: 130px;
  height: 160px;
  background: #fff;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--line);
  transform: rotate(-3deg);
}
.cal-day:nth-child(2) { transform: rotate(2deg); margin-top: 30px; }
.cal-day:nth-child(3) { transform: rotate(-2deg); margin-top: 60px; }
.cal-day span { font-family: var(--serif); font-size: 64px; line-height: 1; color: var(--ink); }
.cal-day em {
  font-size: 14px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: normal;
  color: var(--accent);
  font-family: var(--font);
  font-weight: 600;
}
.cal-day--mark { background: var(--accent); border-color: var(--accent); }
.cal-day--mark span { color: #fff; }
.cal-day--mark em { color: rgba(255,255,255,.85); }

.subscribe__text h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 8px 0 20px;
}
.subscribe__text > p { font-size: 17px; color: var(--ink-2); line-height: 1.6; margin-bottom: 24px; }
.subscribe__text small { display: block; margin-top: 12px; color: var(--ink-3); font-size: 13px; }

@media (max-width: 900px) {
  .subscribe__inner { grid-template-columns: 1fr; gap: 32px; }
  .subscribe__art { order: 2; }
}

/* ==================== СЕРТИФИКАТЫ (с фестонами и печатью) ==================== */
.cert { padding: 100px 0; position: relative; z-index: 2; }
.cert__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.cert-card {
  position: relative;
  aspect-ratio: 1.6/1;
  border-radius: var(--r-md);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: visible;
  transition: all .3s;
  box-shadow: var(--shadow);
  /* фестонные углы через radial-gradient (декоративные «вырезки» по углам) */
  background: linear-gradient(135deg, var(--c1, var(--accent-2)) 0%, var(--c2, var(--accent)) 100%);
}
.cert-card--1 { --c1: #FF8FA0; --c2: var(--accent); }
.cert-card--2 { --c1: var(--accent); --c2: var(--berry); transform: scale(1.05); }
.cert-card--3 { --c1: var(--berry); --c2: #2A1518; }
.cert-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.cert-card--2:hover { transform: translateY(-6px) scale(1.05) rotate(-1deg); }

/* фестонные углы — 4 круга по углам имитируют вырезки */
.cert-card__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--bg);
  border-radius: 50%;
}
.cert-card__corner--tl { top: -12px; left: -12px; }
.cert-card__corner--tr { top: -12px; right: -12px; }
.cert-card__corner--bl { bottom: -12px; left: -12px; }
.cert-card__corner--br { bottom: -12px; right: -12px; }

.cert-card__seal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.25);
  border: 1.5px dashed rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: sealSpin 16s linear infinite;
}
.cert-card__seal svg { width: 22px; height: 22px; }
@keyframes sealSpin { to { transform: rotate(360deg); } }
.cert-card__seal--popular {
  width: auto;
  height: auto;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: sealBounce 2.5s ease-in-out infinite;
}
@keyframes sealBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.cert-card__top { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; opacity: .85; }
.cert-card__amount { display: flex; align-items: baseline; gap: 6px; }
.cert-card__amount strong { font-family: var(--serif); font-size: 56px; line-height: 1; }
.cert-card__amount span { font-family: var(--serif); font-size: 32px; opacity: .85; }
.cert-card__bottom { font-size: 13px; font-weight: 600; opacity: .9; }

.cert__cta { text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.cert__cta p { color: var(--ink-2); max-width: 540px; }

@media (max-width: 900px) {
  .cert__grid { grid-template-columns: 1fr; }
  .cert-card--2 { transform: none; }
  .cert-card--2:hover { transform: translateY(-6px); }
}

/* ==================== О МАСТЕРЕ ==================== */
.about { padding: 100px 0; position: relative; z-index: 2; }
.about__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about__photos { position: relative; aspect-ratio: 1/1.05; }
.about__photo {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--main { inset: 0 25% 15% 0; }
.about__photo--small {
  width: 50%;
  aspect-ratio: 3/4;
  bottom: 0;
  right: 0;
  border: 8px solid var(--bg);
}
.about__years {
  position: absolute;
  top: 16px;
  right: 12%;
  background: var(--accent);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 5;
  transform: rotate(4deg);
}
.about__years strong {
  font-family: var(--serif);
  font-size: 56px;
  color: #fff;
  line-height: 1;
}
.about__years span { font-size: 13px; font-weight: 600; line-height: 1.2; }

.about__text h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 12px 0 24px;
  letter-spacing: -0.02em;
}
.about__text p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin-bottom: 16px; }
.about__socials { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.soc {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all .25s;
  background: #fff;
}
.soc:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.soc strong { font-size: 16px; }
.soc span { font-size: 13px; color: var(--ink-2); margin-top: 4px; }

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

/* ==================== ВИДЕО ==================== */
.video { padding: 100px 0; background: var(--bg-cream); position: relative; z-index: 2; }
.video__head { text-align: center; margin-bottom: 48px; }
.video__player {
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--berry);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
}
.video__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--berry) 0%, var(--accent) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
}
.video__play {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 0 rgba(255,255,255,.4);
  animation: playPulse 2s infinite;
}
.video__play svg { width: 32px; height: 32px; margin-left: 4px; }
@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  70%  { box-shadow: 0 0 0 24px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.video__caption { font-size: 16px; line-height: 1.5; opacity: .9; max-width: 480px; }

/* ==================== ОТЗЫВЫ ==================== */
.reviews { padding: 100px 0; position: relative; z-index: 2; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev {
  background: #fff;
  padding: 28px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  position: relative;
}
.rev__quote {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  color: var(--accent-soft);
}
.rev__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.rev__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
}
.rev__avatar--2 { background: var(--berry); }
.rev__avatar--3 { background: var(--gold); }
.rev__head strong { display: block; font-size: 15px; }
.rev__head span { font-size: 13px; color: var(--ink-3); }
.rev__stars { margin-left: auto; color: var(--gold); font-size: 14px; }
.rev p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ==================== КОНВЕРТ (НАСТОЯЩИЙ) ==================== */
.env-cta { padding: 100px 0; position: relative; z-index: 2; }
.env {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  perspective: 1500px;
}
.env__body {
  position: relative;
  background: #FFE8EA;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(92, 10, 27, .25);
  padding: 90px 50px 50px;
  /* боковые «складки» через clip-path делают фактуру конверта */
}
/* передняя часть конверта (треугольный клапан сверху, открытый) */
.env__flap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(180deg, #FFB3BD 0%, var(--accent) 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
  transform-origin: top center;
  animation: flapOpen 8s ease-in-out infinite;
}
@keyframes flapOpen {
  0%, 30%   { transform: rotateX(0deg); }
  50%, 80%  { transform: rotateX(-160deg); }
  100%      { transform: rotateX(0deg); }
}
/* боковые складки (визуальные треугольники) */
.env__back-fold {
  position: absolute;
  z-index: 0;
  background: linear-gradient(135deg, #F5C0CB 0%, #FFB3BD 100%);
}
.env__back-fold--l { top: 0; left: 0; width: 50%; height: 100%; clip-path: polygon(0 0, 100% 50%, 0 100%); opacity: .5; }
.env__back-fold--r { top: 0; right: 0; width: 50%; height: 100%; clip-path: polygon(100% 0, 0 50%, 100% 100%); opacity: .5; }
.env__back-fold--b { bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(180deg, transparent 0%, #F5C0CB 100%); clip-path: polygon(0 100%, 50% 0, 100% 100%); opacity: .35; }

.env__seal {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  animation: sealSpin 16s linear infinite;
}
.env__seal svg { width: 28px; height: 28px; }

/* открытка-письмо ВНУТРИ конверта */
.env__letter {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 6px;
  padding: 36px 40px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  margin-top: 30px;
  overflow: hidden;
}
.env__letter-stripes {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(45deg,
    var(--accent) 0px, var(--accent) 10px,
    #fff 10px, #fff 20px,
    var(--bg-dark) 20px, var(--bg-dark) 30px,
    #fff 30px, #fff 40px);
}
.env__label {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 16px;
  margin: 8px 0;
}
.env__letter h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.env__letter h2 strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5em;
  color: var(--accent);
  font-weight: 400;
}
.env__letter p {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .env__body { padding: 80px 24px 32px; }
  .env__letter { padding: 28px 20px 24px; }
}

/* ==================== РЕФЕРАЛЬНАЯ ==================== */
.referral { padding: 80px 0; position: relative; z-index: 2; }
.referral__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--accent-soft) 100%);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}
.referral__art svg { width: 100%; height: auto; }
.referral__text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.referral__text p { color: var(--ink-2); font-size: 16px; line-height: 1.6; margin-bottom: 20px; max-width: 600px; }

@media (max-width: 700px) {
  .referral__inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; text-align: center; }
}

/* ==================== ДОСТАВКА (карточки с большими иконками) ==================== */
.delivery { padding: 100px 0; background: var(--bg-cream); position: relative; z-index: 2; }
.delivery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dcard {
  background: #fff;
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.dcard::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto auto;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(232,52,75,.08), transparent 70%);
  pointer-events: none;
  border-radius: 0 var(--r-lg) 0 0;
}
.dcard:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.dcard__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.dcard__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: #fff;
  border-radius: 18px;
  transform: rotate(-8deg);
  transition: transform .3s;
}
.dcard:hover .dcard__icon-wrap { transform: rotate(0deg) scale(1.05); }
.dcard__num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--accent-soft);
  line-height: 1;
}
.dcard h3 { font-size: 19px; margin-bottom: 14px; }
.dcard ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
  border-bottom: 1px dashed var(--line);
}
.dcard ul li:last-child { border-bottom: 0; }
.dcard ul li strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) { .delivery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .delivery__grid { grid-template-columns: 1fr; } }

/* ==================== FAQ ==================== */
.faq { padding: 100px 0; position: relative; z-index: 2; }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border-radius: var(--r-md);
  margin-bottom: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--accent); }
.faq__item summary {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 32px;
  color: var(--accent);
  transition: transform .2s;
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__body { padding: 0 26px 24px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ==================== ФУТЕР ==================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
  padding: 80px 0 24px;
  position: relative;
  z-index: 2;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.logo--footer .logo__title { color: #fff; }
.logo--footer .logo__sub  { color: rgba(255,255,255,.55); }
.footer__col p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.6);
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}
.footer__col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}
.footer__col ul li a:hover { color: var(--accent-2); }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
}
.footer__socials a:hover { background: var(--accent); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1024px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__inner { grid-template-columns: 1fr; gap: 28px; } }

/* ==================== ПОПАП В УГЛУ (как у noowidecor) ==================== */
.popup-corner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  width: 340px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(42, 21, 24, .25), 0 4px 12px rgba(232,52,75,.15);
  transform: translateX(-150%);
  opacity: 0;
  transition: all .5s cubic-bezier(.34, 1.56, .64, 1);
  overflow: visible;
  border: 2px solid var(--accent-soft);
}
.popup-corner.show {
  transform: translateX(0);
  opacity: 1;
}
.popup-corner__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.popup-corner__close:hover { background: var(--accent); transform: rotate(90deg); }
.popup-corner__icon {
  position: absolute;
  top: -38px;
  right: 16px;
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 6px 12px rgba(232, 52, 75, .35));
  animation: popBerryFloat 3s ease-in-out infinite;
}
.popup-corner__icon img { width: 100%; height: auto; }
@keyframes popBerryFloat {
  0%,100% { transform: rotate(-12deg) translateY(0); }
  50%     { transform: rotate(-6deg) translateY(-5px); }
}
.popup-corner__body { padding: 28px 22px 22px; }
.popup-corner__label {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 6px;
}
.popup-corner__body h3 {
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 8px;
}
.popup-corner__body h3 strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4em;
  color: var(--accent);
  font-weight: 400;
}
.popup-corner__body p {
  color: var(--ink-2);
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .popup-corner { width: calc(100% - 32px); left: 16px; bottom: 88px; }
}

/* ==================== ПЛАВАЮЩАЯ TG ==================== */
.floating-tg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(232, 52, 75, .45);
  z-index: 40;
  transition: transform .25s;
  animation: pulse 2.5s infinite;
}
.floating-tg:hover { transform: scale(1.1); animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 8px 24px rgba(232,52,75,.45), 0 0 0 0 rgba(232,52,75,.5); }
  70%  { box-shadow: 0 8px 24px rgba(232,52,75,.45), 0 0 0 18px rgba(232,52,75,0); }
  100% { box-shadow: 0 8px 24px rgba(232,52,75,.45), 0 0 0 0 rgba(232,52,75,0); }
}
@media (max-width: 560px) { .floating-tg { width: 52px; height: 52px; bottom: 18px; right: 18px; } }

/* ==================== ОБЩИЕ МОБИЛЬНЫЕ УТОЧНЕНИЯ ==================== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  /* секции компактнее */
  .reasons, .cats, .bouquets, .constructor, .how, .corp,
  .subscribe, .cert, .about, .video, .reviews,
  .env-cta, .referral, .delivery, .faq { padding: 64px 0; }
  .footer { padding: 56px 0 20px; }
  .section__head { margin-bottom: 36px; }
  .hero { padding: 32px 0 48px; }
  .marquee__track span { font-size: 14px; }
  /* клубнички меньше и реже */
  .berry { width: 50px !important; }
  .berry--2, .berry--4, .berry--6, .berry--8 { display: none; }
  /* hero CTA на полную ширину */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  /* trust убираем отступы */
  .hero__trust { gap: 20px; justify-content: space-between; }
  .ti strong { font-size: 28px; }
  /* конструктор */
  .constructor__inner { padding: 20px 16px; }
  /* сертификаты */
  .cert-card { padding: 24px 22px; }
  .cert-card__amount strong { font-size: 44px; }
  /* конверт */
  .env { max-width: 100%; }
  /* доставка/корпоратив/референс — простые столбцы */
  .footer__bottom { font-size: 12px; }
  /* попап лучше в центре низа на телефоне */
  .popup-corner { left: 16px !important; right: 16px; width: auto; bottom: 88px; }
  /* кнопки шапки */
  .header__inner { padding: 12px 16px; gap: 12px; }
}
@media (max-width: 420px) {
  .section__title { font-size: 28px; }
  .reasons__big { font-size: 64px; }
  .reasons__word, .reasons__line-2 { font-size: 22px; }
  .cert-card__amount strong { font-size: 36px; }
  .cert-card__amount span { font-size: 24px; }
  .marquee { padding: 12px 0; }
  .marquee__track span { font-size: 13px; gap: 6px; }
  /* конверт минимально */
  .env__body { padding: 70px 16px 20px; }
  .env__letter { padding: 24px 16px 20px; }
  .env__letter h2 { font-size: 24px; }
  /* топ букетов: tag не должен перекрывать контент */
  .bcard__tag { font-size: 10px; padding: 4px 9px; }
}
