/* ===== МОКРЫЙ НОС — груминг-салон =====
   Шрифты: Unbounded (display), Manrope (текст), Neucha (акценты)
   Палитра: крем, персик, какао, фисташка, небо */

:root {
  --cream: #FFF6EC;
  --cream-deep: #FBEBDC;
  --peach: #FFB08A;
  --peach-strong: #E88C5A;
  --peach-soft: #FFC9A3;
  --cocoa: #3A2B25;
  --cocoa-soft: #6B544A;
  --mint: #B9D8BE;
  --mint-deep: #7FA97F;
  --sky: #BFD8EC;
  --sky-deep: #7FA8C4;
  --white: #FFFFFF;
  --line: rgba(58, 43, 37, 0.12);
  --shadow: 0 18px 44px rgba(58, 43, 37, 0.12);
  --radius: 20px;
  --radius-sm: 14px;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-script: 'Neucha', cursive;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--cocoa);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

/* ===== GRAIN ===== */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== CANVAS PAWS ===== */
#pawCanvas { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  border-radius: 999px; padding: 13px 26px; cursor: pointer; text-decoration: none;
  border: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 13.5px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--accent {
  background: var(--cocoa); color: var(--cream);
  box-shadow: 0 10px 24px rgba(58, 43, 37, 0.22);
}
.btn--accent:hover { background: var(--peach-strong); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(232, 140, 90, 0.35); }
.btn--ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.28); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--cocoa); border: 1.5px solid var(--cocoa); }
.btn--outline:hover { background: var(--cocoa); color: var(--cream); transform: translateY(-2px); }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .3s, box-shadow .3s, padding .3s; padding: 18px 0; }
.header--scrolled { background: rgba(255, 246, 236, 0.92); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(58, 43, 37, 0.08); padding: 10px 0; }
.header__inner { width: min(1240px, calc(100% - 40px)); margin: 0 auto; display: flex; align-items: center; gap: 28px; }
.header__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--cocoa); }
.header--transparent-text .header__brand { color: #fff; }
.header__icon { color: var(--peach-strong); }
.header__logo { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.header__nav { display: flex; gap: 24px; margin-left: auto; }
.header__nav a { text-decoration: none; color: inherit; font-weight: 600; font-size: 14.5px; opacity: 0.85; transition: opacity .2s, transform .2s; }
.header__nav a:hover { opacity: 1; transform: translateY(-1px); }
.header--transparent-text .header__nav a { color: #fff; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2.5px; background: currentColor; margin: 5px 0; border-radius: 2px; transition: transform .3s, opacity .3s; }
.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 49; background: var(--cream); flex-direction: column; gap: 4px; padding: 16px 24px 24px; box-shadow: 0 20px 40px rgba(58,43,37,.12); border-radius: 0 0 20px 20px; }
.mobile-nav a { padding: 12px 8px; text-decoration: none; color: var(--cocoa); font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 12px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 14s ease-in-out infinite alternate; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(58,43,37,0.88) 0%, rgba(58,43,37,0.62) 42%, rgba(58,43,37,0.28) 75%, rgba(58,43,37,0.35) 100%); }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.12); } }
.hero__content { position: relative; z-index: 3; width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 120px 0 90px; }
.hero__eyebrow { display: flex; align-items: center; gap: 10px; color: #FFD9BE; font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px; }
.hero__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--peach-strong); animation: pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(232,140,90,.55); } 50% { box-shadow: 0 0 0 9px rgba(232,140,90,0); } }
.hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 7.2vw, 5.4rem); line-height: 1.04; color: #fff; letter-spacing: -0.02em; margin-bottom: 26px; }
.hero__title-line { display: block; overflow: hidden; }
.hero-word { display: inline-block; transform: translateY(110%); animation: wordUp .8s cubic-bezier(.22,1,.36,1) forwards; }
.hero__title-line:nth-child(2) .hero-word { animation-delay: .18s; color: var(--peach-soft); }
.hero__title-line--script { font-family: var(--font-script); font-weight: 400; font-size: 1.06em; color: #FFD9BE; margin-top: 6px; }
.hero__title-line--script .hero-word { animation-delay: .36s; }
@keyframes wordUp { to { transform: translateY(0); } }
.hero__sub { color: rgba(255, 255, 255, 0.85); font-size: 17.5px; line-height: 1.75; max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255, 246, 236, 0.94); color: var(--cocoa); padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14.5px; box-shadow: 0 12px 30px rgba(0,0,0,.2); animation: floatY 4.5s ease-in-out infinite; }
.hero__badge strong { color: var(--peach-strong); font-size: 16px; }
.hero__badge-paw { animation: pawBounce 1.6s ease-in-out infinite; display: inline-block; }
@keyframes pawBounce { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-4px) rotate(-8deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hero__scroll { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
.hero__scroll-line { width: 2px; height: 44px; background: linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,0)); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ''; position: absolute; left: 0; top: -40%; width: 100%; height: 40%; background: var(--peach-strong); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { top: -40%; } 100% { top: 110%; } }

/* ===== MASCOT ===== */
.mascot { position: absolute; right: 6%; bottom: 12%; z-index: 3; filter: drop-shadow(0 24px 40px rgba(0,0,0,.35)); animation: bob 5s ease-in-out infinite; pointer-events: none; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-16px) rotate(2deg); } }
.mascot__tail { transform-origin: 148px 130px; animation: wag 1.1s ease-in-out infinite; }
@keyframes wag { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(16deg); } 50% { transform: rotate(0deg); } 75% { transform: rotate(-10deg); } }
.mascot__eyes { transform-origin: 100px 80px; animation: blink 4.6s infinite; }
@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 95%, 97% { transform: scaleY(0.08); } }
.mascot__ear--l { transform-origin: 58px 70px; animation: earL 3.4s ease-in-out infinite; }
.mascot__ear--r { transform-origin: 142px 70px; animation: earR 3.4s ease-in-out infinite; }
@keyframes earL { 0%, 88%, 100% { transform: rotate(0); } 92% { transform: rotate(-10deg); } 96% { transform: rotate(0); } }
@keyframes earR { 0%, 88%, 100% { transform: rotate(0); } 92% { transform: rotate(10deg); } 96% { transform: rotate(0); } }

/* ===== MARQUEE ===== */
.marquee { background: var(--cocoa); color: var(--cream); padding: 16px 0; overflow: hidden; position: relative; z-index: 2; transform: rotate(-0.6deg) scale(1.02); margin: -14px 0 0; }
.marquee__track { display: flex; align-items: center; gap: 34px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 500; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.marquee__track i { font-style: normal; color: var(--peach-soft); font-size: 17px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS COMMON ===== */
section { position: relative; z-index: 2; }
.section-kicker { display: inline-block; font-family: var(--font-script); font-size: 21px; color: var(--peach-strong); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.18; letter-spacing: -0.015em; margin-bottom: 18px; }
.section-title em { font-style: normal; font-family: var(--font-script); font-size: 1.12em; color: var(--peach-strong); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-sub { color: var(--cocoa-soft); font-size: 16.5px; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 110px 0 90px; }
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about__image { position: relative; }
.about__image img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about__image-accent { position: absolute; inset: 18px -18px -18px 18px; border: 3px solid var(--peach-soft); border-radius: 26px; z-index: -1; }
.about__image-tag { position: absolute; left: -22px; bottom: 30px; background: var(--cocoa); color: var(--cream); padding: 12px 18px; border-radius: 16px; font-weight: 600; font-size: 14px; max-width: 260px; box-shadow: 0 14px 30px rgba(0,0,0,.2); animation: floatY 5s ease-in-out infinite; }
.about__image-tag-icon { margin-right: 4px; }
.about__text { color: var(--cocoa-soft); font-size: 16.5px; line-height: 1.75; margin-bottom: 16px; }
.about__stats { display: flex; gap: 38px; margin-top: 30px; flex-wrap: wrap; }
.about__stat-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 38px; color: var(--cocoa); line-height: 1; }
.about__stat-label { font-size: 13.5px; color: var(--cocoa-soft); font-weight: 600; }

/* ===== SERVICES ===== */
.services { padding: 70px 0 110px; background: var(--cream-deep); border-radius: 48px 48px 0 0; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius); padding: 34px 30px; border: 1.5px solid var(--line); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; top: -60px; right: -60px; width: 140px; height: 140px; border-radius: 50%; opacity: .55; transition: transform .45s ease; }
.service-card--cream::after { background: radial-gradient(circle, #FFE3C9, transparent 70%); }
.service-card--mint::after { background: radial-gradient(circle, #D9EEDC, transparent 70%); }
.service-card--sky::after { background: radial-gradient(circle, #DCEBF7, transparent 70%); }
.service-card--peach::after { background: radial-gradient(circle, #FFD9BE, transparent 70%); }
.service-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: 0 26px 50px rgba(58, 43, 37, 0.14); }
.service-card:hover::after { transform: scale(1.7); }
.service-card__icon { font-size: 40px; line-height: 1; margin-bottom: 18px; display: inline-block; animation: iconWiggle 5s ease-in-out infinite; }
.service-card:hover .service-card__icon { animation: iconWiggle .5s ease-in-out infinite; }
@keyframes iconWiggle { 0%, 100% { transform: rotate(0); } 20% { transform: rotate(-8deg) scale(1.06); } 40% { transform: rotate(8deg); } 60% { transform: rotate(-4deg); } 80% { transform: rotate(4deg); } }
.service-card__title { font-family: var(--font-display); font-weight: 600; font-size: 17.5px; margin-bottom: 10px; }
.service-card__desc { color: var(--cocoa-soft); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.service-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.service-card__price { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; }

/* ===== BEFORE / AFTER ===== */
.beforeafter { padding: 110px 0; }
.beforeafter__frame { max-width: 860px; margin: 0 auto; }
.beforeafter__slider { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: pan-y; cursor: ew-resize; aspect-ratio: 16/9; background: var(--cocoa); }
.beforeafter__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.beforeafter__img--after { filter: saturate(1.08) contrast(1.04); }
.beforeafter__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0); }
.beforeafter__before .beforeafter__img { filter: sepia(0.45) saturate(0.55) blur(2.2px) contrast(0.9); }
.beforeafter__handle { position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%); width: 4px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 4px rgba(255,255,255,.28), 0 6px 20px rgba(0,0,0,.35); pointer-events: none; }
.beforeafter__handle-grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--peach-strong); color: #fff; border-radius: 999px; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 13px; letter-spacing: -1px; box-shadow: 0 8px 22px rgba(0,0,0,.3); }
.beforeafter__label { position: absolute; top: 18px; z-index: 5; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff; background: rgba(58, 43, 37, 0.65); backdrop-filter: blur(6px); padding: 8px 16px; border-radius: 999px; letter-spacing: .05em; }
.beforeafter__label--before { left: 18px; }
.beforeafter__label--after { right: 18px; }
.beforeafter__hint { text-align: center; color: var(--cocoa-soft); font-size: 14px; margin-top: 20px; }

/* ===== PROCESS ===== */
.process { padding: 100px 0; background: var(--cocoa); color: var(--cream); border-radius: 48px; margin: 0 20px; }
.process .section-kicker { color: var(--peach-soft); }
.process .section-title em { color: var(--peach-soft); }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process__step { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm); padding: 26px 22px; transition: transform .3s, background .3s; }
.process__step:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.09); }
.process__num { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--peach-soft); margin-bottom: 16px; letter-spacing: .03em; }
.process__title { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; margin-bottom: 10px; }
.process__desc { color: rgba(255, 246, 236, 0.72); font-size: 14.5px; line-height: 1.7; }

/* ===== REVIEWS ===== */
.reviews { padding: 110px 0 90px; }
.reviews__slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.review-card:hover { transform: translateY(-6px) rotate(.4deg); box-shadow: var(--shadow); }
.review-card__stars { color: #F2B04A; letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.review-card__text { color: var(--cocoa-soft); font-size: 15px; line-height: 1.75; flex: 1; margin-bottom: 20px; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--peach-soft); display: flex; align-items: center; justify-content: center; font-size: 21px; }
.review-card__author strong { display: block; font-size: 14.5px; }
.review-card__author span { font-size: 13px; color: var(--cocoa-soft); }

/* ===== BOOKING ===== */
.booking { padding: 40px 0 110px; }
.booking__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; background: var(--cream-deep); border-radius: 32px; padding: 56px; }
.booking__text { color: var(--cocoa-soft); font-size: 16px; line-height: 1.75; margin-bottom: 26px; }
.booking__info { display: flex; flex-direction: column; gap: 14px; }
.booking__info-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; color: var(--cocoa); }
.booking__info-item svg { color: var(--peach-strong); flex-shrink: 0; }
.booking__form { background: #fff; border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); position: relative; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--cocoa); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--cocoa);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; background: var(--cream);
  transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--peach-strong); box-shadow: 0 0 0 4px rgba(232, 140, 90, 0.14); }
.booking__consent { font-size: 12px; color: var(--cocoa-soft); text-align: center; margin-top: 12px; }
.booking__form-success { display: none; position: absolute; inset: 0; background: var(--cream); border-radius: var(--radius); flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 30px; z-index: 5; }
.booking__form-success h3 { font-family: var(--font-display); font-size: 20px; }
.booking__form-success p { color: var(--cocoa-soft); }
.booking__form-success-paws { font-size: 26px; letter-spacing: 6px; animation: pawRain 1.2s ease-out; }
@keyframes pawRain { 0% { transform: translateY(-14px); opacity: 0; } 60% { transform: translateY(3px); opacity: 1; } 100% { transform: translateY(0); } }

/* ===== CONTACTS ===== */
.contacts { padding: 0 0 110px; }
.contacts__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
.contacts__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(135deg, var(--mint) 0%, var(--sky) 100%); min-height: 280px; display: flex; }
.contacts__map-placeholder { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; color: var(--cocoa); font-weight: 600; padding: 30px; position: relative; }
.contacts__map-placeholder::before, .contacts__map-placeholder::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.5); }
.contacts__map-placeholder::before { width: 220px; height: 220px; top: -70px; left: -60px; }
.contacts__map-placeholder::after { width: 180px; height: 180px; bottom: -60px; right: -40px; background: rgba(255, 176, 138, 0.4); }
.contacts__map-pin { color: var(--peach-strong); animation: pinBounce 1.6s ease-in-out infinite; position: relative; z-index: 2; }
@keyframes pinBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.contacts__map-placeholder p { position: relative; z-index: 2; font-size: 15.5px; line-height: 1.6; }
.contacts__info { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.contacts__info h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 8px; }
.contacts__link { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--cocoa); font-weight: 600; font-size: 16.5px; transition: color .2s, transform .2s; }
.contacts__link:hover { color: var(--peach-strong); transform: translateX(4px); }
.contacts__link svg { color: var(--peach-strong); }

/* ===== FINAL CTA ===== */
.final-cta { padding: 0 0 120px; }
.final-cta__content { background: linear-gradient(135deg, var(--cocoa) 0%, #5A4138 100%); border-radius: 32px; padding: 70px 40px; text-align: center; color: var(--cream); position: relative; overflow: hidden; }
.final-cta__content::before { content: '🐾'; position: absolute; font-size: 120px; opacity: .1; top: -26px; right: 6%; transform: rotate(20deg); }
.final-cta__content::after { content: '🐾'; position: absolute; font-size: 90px; opacity: .1; bottom: -20px; left: 5%; transform: rotate(-30deg); }
.final-cta .section-kicker { color: var(--peach-soft); }
.final-cta__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.8vw, 2.8rem); line-height: 1.15; margin-bottom: 16px; }
.final-cta__title em { font-style: normal; font-family: var(--font-script); color: var(--peach-soft); font-size: 1.1em; }
.final-cta__sub { color: rgba(255, 246, 236, 0.75); margin-bottom: 28px; font-size: 16.5px; }
.final-cta__content .btn--accent { background: var(--peach-strong); color: #fff; }
.final-cta__content .btn--accent:hover { background: var(--cream); color: var(--cocoa); }

/* ===== FOOTER ===== */
.footer { padding: 44px 0; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.footer__tagline { color: var(--cocoa-soft); font-size: 14px; margin-top: 4px; }
.footer__copy { text-align: right; color: var(--cocoa-soft); font-size: 13.5px; }
.footer__demo a { color: var(--peach-strong); text-decoration: none; font-weight: 700; }
.footer__demo a:hover { text-decoration: underline; }

/* ===== SCROLL REVEAL ===== */
[data-anim] { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); transition-delay: calc(var(--data-delay, 0) * 110ms); }
[data-anim="fade-right"] { transform: translateX(-34px); }
[data-anim="fade-left"] { transform: translateX(34px); }
[data-anim].in { opacity: 1; transform: translate(0, 0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .reviews__slider { grid-template-columns: 1fr; }
  .booking__grid { grid-template-columns: 1fr; padding: 40px 28px; }
  .contacts__grid { grid-template-columns: 1fr; }
  .mascot { right: 3%; bottom: 8%; width: 150px; height: 142px; }
  .mascot svg { width: 150px; height: 142px; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .burger { display: block; color: var(--cocoa); }
  .hero__actions .btn--ghost { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .process { margin: 0 12px; }
  .form-row { grid-template-columns: 1fr; }
  .mascot { display: none; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__copy { text-align: center; }
  .about__image-tag { left: 10px; bottom: 16px; }
  .hero__badge { font-size: 13px; padding: 10px 16px; }
}

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