/* Кафе «Мята» — оформление лендинга */
:root {
  --cream: #FBF8F1;
  --cream-2: #F2EDE1;
  --ink: #14211C;
  --ink-2: #1C2E27;
  --green: #1E6B52;
  --green-deep: #0F3D2E;
  --mint: #7EE0B8;
  --mint-bright: #43D39A;
  --plum: #5A2D82;
  --amber: #F2A93B;
  --text: #1F2A26;
  --muted: #5F6D67;
  --line: rgba(20, 33, 28, .12);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(20, 33, 28, .08);
  --font-display: 'Unbounded', 'Arial Black', sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
address { font-style: normal; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 600; max-width: 18ch; }
.lead { font-size: 18px; color: var(--muted); max-width: 56ch; margin-top: 14px; }

/* Кнопки */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 15px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  font-family: var(--font-body); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--mint { background: var(--mint-bright); color: var(--ink); box-shadow: 0 8px 24px rgba(67, 211, 154, .35); }
.btn--mint:hover { background: var(--mint); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--green-deep); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }

/* Шапка */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 33, 28, .82); backdrop-filter: blur(12px);
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__in { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; column-gap: 10px; align-items: center; text-decoration: none; color: #fff; }
.logo__leaf { width: 34px; height: 34px; color: var(--mint-bright); grid-row: 1 / 3; }
.logo__word { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1; color: var(--mint-bright); letter-spacing: .02em; }
.logo__sub { font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 600; font-size: 14px; color: rgba(255,255,255,.85); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--mint); border-color: var(--mint); }
.header__cta { display: flex; align-items: center; gap: 16px; }
.header__phone { text-decoration: none; font-weight: 700; font-size: 15px; }
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 0 8px; margin-left: auto; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Первый экран */
.hero { position: relative; min-height: calc(100svh - 72px); display: flex; align-items: center; color: #fff; overflow: hidden;
  background: radial-gradient(1200px 600px at 20% 30%, #2B7A5C 0%, #14211C 60%), linear-gradient(160deg, #5A2D82 0%, #14211C 40%); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,33,28,.86) 0%, rgba(20,33,28,.62) 45%, rgba(20,33,28,.25) 100%),
              linear-gradient(0deg, rgba(20,33,28,.85) 0%, rgba(20,33,28,0) 40%); }
.hero__in { position: relative; z-index: 1; padding: 80px 0 110px; max-width: 760px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mint); margin-bottom: 22px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint-bright); display: inline-block; }
.dot--live { box-shadow: 0 0 0 0 rgba(67,211,154,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(67,211,154,.6); } 70% { box-shadow: 0 0 0 10px rgba(67,211,154,0); } 100% { box-shadow: 0 0 0 0 rgba(67,211,154,0); } }
.hero h1 { font-size: clamp(32px, 4.6vw, 58px); font-weight: 700; max-width: 16ch; }
.hero__lead { margin-top: 24px; font-size: clamp(17px, 1.6vw, 20px); max-width: 54ch; color: rgba(255,255,255,.86); }
.hero__lead strong { color: var(--mint); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero__chips li { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); font-size: 13px; font-weight: 600; }
.hero__chips li.is-closed .dot--live { background: var(--amber); animation: none; box-shadow: none; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; transform: translateX(-50%); z-index: 1; }
.hero__scroll::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--mint); animation: drop 1.6s infinite; }
@keyframes drop { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }

/* Полоса доверия */
.trust { background: var(--ink); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.trust__in { display: flex; align-items: center; gap: 40px; padding: 26px 0; flex-wrap: wrap; }
.trust__rating { display: grid; grid-template-columns: auto auto; column-gap: 14px; align-items: center; text-decoration: none; padding-right: 40px; border-right: 1px solid rgba(255,255,255,.14); }
.trust__num { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--mint-bright); grid-row: 1 / 3; line-height: 1; }
.trust__stars { color: var(--amber); letter-spacing: 2px; font-size: 18px; }
.trust__cap { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.3; }
.trust__facts { display: flex; gap: 36px; flex-wrap: wrap; }
.trust__facts li { display: flex; flex-direction: column; }
.trust__facts b { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: #fff; }
.trust__facts span { font-size: 13px; color: rgba(255,255,255,.65); }

/* Почему мы */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform .2s, border-color .2s; }
.card:hover { transform: translateY(-4px); border-color: var(--mint-bright); }
.card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, #E4F8EF, #C9F0DF); font-size: 26px; margin-bottom: 18px; }
.card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* Меню */
.menu { background: var(--cream-2); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; max-width: 420px; justify-content: flex-end; }
.tags li { padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--green); }
.menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dish { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative; }
.dish--wide { grid-column: span 2; flex-direction: row; }
.dish--wide .dish__img { flex: 1 1 55%; aspect-ratio: auto; min-height: 280px; }
.dish--wide .dish__body { flex: 1 1 45%; }
.dish__img { aspect-ratio: 4 / 3; background: linear-gradient(135deg, #1E6B52, #5A2D82); position: relative; overflow: hidden; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish:hover .dish__img img { transform: scale(1.04); }
.dish__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.dish__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.dish h3 { font-size: 17px; font-weight: 600; }
.price { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--green); white-space: nowrap; }
.price--ask { font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--muted); padding-top: 3px; }
.dish p { color: var(--muted); font-size: 14.5px; }
.badge { position: absolute; top: 16px; left: 16px; background: var(--amber); color: var(--ink); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 5px 10px; border-radius: 999px; }
.menu__cta { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: #fff; border: 1px dashed var(--green); border-radius: var(--radius); padding: 22px 28px; }
.menu__cta p { font-weight: 600; }

/* Веранда */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg, #2B7A5C, #14211C); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption { position: absolute; left: 16px; bottom: 14px; color: #fff; font-weight: 700; font-size: 14px; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.features li { padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; }
.features li::before { content: "✓ "; color: var(--green); }

/* Праздники + форма */
.events { background: var(--ink); color: #fff; background-image: radial-gradient(800px 500px at 90% 10%, rgba(90,45,130,.55), transparent 60%), radial-gradient(700px 500px at 0% 100%, rgba(30,107,82,.55), transparent 60%); }
.events__in { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.events .lead { color: rgba(255,255,255,.78); }
.checks { margin-top: 28px; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; font-weight: 600; }
.checks li::before { content: "✓"; flex: 0 0 26px; height: 26px; border-radius: 50%; background: var(--mint-bright); color: var(--ink); display: grid; place-items: center; font-size: 14px; font-weight: 800; }
.note { margin-top: 26px; font-size: 14px; color: rgba(255,255,255,.6); }
.form { background: #fff; color: var(--text); border-radius: 22px; padding: 32px; box-shadow: 0 30px 60px rgba(0,0,0,.35); display: grid; gap: 14px; }
.form h3 { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--muted); }
.form input, .form textarea { font: 500 16px var(--font-body); padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--text); width: 100%; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--mint-bright); background: #fff; box-shadow: 0 0 0 4px rgba(67,211,154,.2); }
.form input.is-invalid { border-color: #D9534F; }
.form textarea { resize: vertical; }
.form__row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }
.form .btn { width: 100%; margin-top: 6px; }
.form__hint { font-size: 13px; color: var(--muted); text-align: center; }
.form__error { font-size: 13px; color: #D9534F; text-align: center; font-weight: 700; }

/* Отзывы */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; }
.review__stars { color: var(--amber); letter-spacing: 2px; }
.review p { font-size: 15.5px; }
.review footer { margin-top: auto; font-size: 13px; color: var(--muted); }

/* Доставка */
.delivery { background: var(--cream-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.steps li { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.steps span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--mint-bright); font-family: var(--font-display); font-weight: 700; margin-bottom: 16px; }
.steps h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 14.5px; }
.steps a { color: var(--green); font-weight: 700; text-decoration: none; }
.delivery__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* FAQ */
.faq__in { max-width: 820px; }
.faq__list { margin-top: 32px; display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 22px; }
.faq summary { cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--green); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--muted); }

/* Контакты */
.contacts { background: var(--ink); color: #fff; }
.contacts__in { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: stretch; }
.contacts__row { display: grid; grid-template-columns: 110px 1fr; align-items: baseline; gap: 4px 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 16px; }
.contacts__row small { grid-column: 2; color: rgba(255,255,255,.55); font-size: 13px; }
.contacts__row a { color: var(--mint); font-weight: 700; text-decoration: none; }
.contacts__label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); font-weight: 700; }
.contacts address { margin-top: 24px; }
.contacts__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.contacts .btn--ghost-dark { color: #fff; border-color: rgba(255,255,255,.5); }
.contacts .btn--ghost-dark:hover { background: #fff; color: var(--ink); }
.contacts__map { border-radius: var(--radius); overflow: hidden; min-height: 420px; background: #223; }
.contacts__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Подвал */
.footer { background: #0D1613; color: rgba(255,255,255,.65); font-size: 13px; padding: 28px 0 100px; }
.footer__in { display: grid; gap: 12px; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { color: var(--mint); text-decoration: none; }
.footer__copy { color: rgba(255,255,255,.4); }

/* Мобильная панель */
.dock { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: rgba(20,33,28,.95); backdrop-filter: blur(10px); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 8px; border-top: 1px solid rgba(255,255,255,.1); }
.dock a { flex: 1; text-align: center; text-decoration: none; color: #fff; font-weight: 700; font-size: 13px; padding: 12px 6px; border-radius: 12px; background: rgba(255,255,255,.08); }
.dock__main { background: var(--mint-bright) !important; color: var(--ink) !important; flex: 1.4 !important; }

/* Появление при прокрутке */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Адаптив */
@media (max-width: 1024px) {
  .why__grid, .menu__grid, .reviews__grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .dish--wide { grid-column: span 2; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .events__in, .contacts__in { grid-template-columns: 1fr; gap: 40px; }
  .nav { display: none; }
  .header__cta .btn { display: none; }
}
@media (max-width: 720px) {
  .container { width: calc(100% - 32px); }
  .header__in { height: 64px; gap: 12px; }
  .header__phone { display: none; }
  .burger { display: flex; }
  .nav { position: fixed; inset: 64px 0 auto 0; background: var(--ink); flex-direction: column; padding: 16px 20px 24px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,.1); display: none; }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero { min-height: auto; }
  .hero__in { padding: 64px 0 80px; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }
  .trust__in { gap: 20px; }
  .trust__rating { border-right: 0; padding-right: 0; width: 100%; }
  .trust__facts { gap: 18px 28px; }
  .why__grid, .menu__grid, .reviews__grid, .steps { grid-template-columns: 1fr; }
  .dish--wide { grid-column: span 1; flex-direction: column; }
  .dish--wide .dish__img { min-height: 0; aspect-ratio: 4 / 3; }
  .tags { justify-content: flex-start; max-width: none; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 2; }
  .form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .menu__cta { flex-direction: column; align-items: stretch; text-align: center; }
  .contacts__row { grid-template-columns: 1fr; gap: 2px; }
  .contacts__row small { grid-column: 1; }
  .contacts__map, .contacts__map iframe { min-height: 320px; }
  .dock { display: flex; }
  .footer { padding-bottom: 110px; }
}

/* =========================================================
 * Взрыв куста мяты (GSAP + ScrollTrigger, js/mint-explode.js)
 * ======================================================= */
:root { --header-h: 72px; }
.mint-explode {
  position: relative; overflow: hidden;
  min-height: calc(100svh - var(--header-h)); /* ровно один экран под липкой шапкой */
  background: var(--ink); color: #fff;
  background-image: radial-gradient(900px 600px at 50% 60%, rgba(30,107,82,.55), transparent 65%);
}
.mint-explode__stage { position: relative; height: calc(100svh - var(--header-h)); display: grid; place-items: center; }
.mint-explode__bush { position: relative; width: min(72vw, 620px); aspect-ratio: 1400 / 1189; }
.mint-explode__bush-img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); will-change: transform, opacity; }
/* Листья: позиция в кусте задаётся через --x/--y, угол --r, размер --s (см. index.html) */
.mint-explode__leaf {
  position: absolute; left: var(--x); top: var(--y);
  width: calc(17% * var(--s, 1));
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.35));
  will-change: transform, opacity; pointer-events: none;
}
.mint-explode__text { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 0 20px; pointer-events: none; }
.mint-explode__text > div { pointer-events: auto; max-width: 640px; }
.mint-explode__text .h2 { max-width: none; margin-top: 10px; }
.mint-explode__text .lead { color: rgba(255,255,255,.78); margin: 14px auto 28px; }

/* =========================================================
 * Листик на каждом экране
 * ======================================================= */
.has-leaf { position: relative; overflow: hidden; }
.has-leaf > .container { position: relative; z-index: 1; }
.leaf-deco {
  position: absolute; z-index: 0; pointer-events: none;
  width: clamp(80px, 11vw, 170px);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.28));
  will-change: transform;
}
.leaf-deco img { width: 100%; height: auto; }
.leaf-deco--tl { left: -2%; top: 6%; }
.leaf-deco--tr { right: -2%; top: 6%; }
.leaf-deco--bl { left: -1%; bottom: 6%; }
.leaf-deco--br { right: -1%; bottom: 6%; }
.leaf-deco--lg { width: clamp(140px, 22vw, 360px); }
.hero .leaf-deco { z-index: 0; opacity: .9; right: 4%; top: 18%; }

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .mint-explode__bush { width: 86vw; }
  .leaf-deco { width: clamp(64px, 18vw, 110px); }
  .leaf-deco--lg { width: clamp(110px, 32vw, 180px); }
  .hero .leaf-deco { right: -6%; top: 8%; opacity: .6; }
}
