/* ============================================
   ТОЧКА ПОКОЯ — Massage Studio Demo
   Palette: sage green, warm cream, terracotta
   Fonts: Playfair Display, DM Sans, Caveat
   ============================================ */

:root {
  --sage: #6B8F71;
  --sage-dark: #4A6B50;
  --sage-light: #8FB996;
  --cream: #FDF8F2;
  --cream-deep: #F5EEE2;
  --terracotta: #C4775B;
  --terracotta-light: #D4956E;
  --charcoal: #2C2C2C;
  --warm-gray: #8A8279;
  --warm-gray-light: #B5ADA5;
  --white: #FFFCF7;
  --shadow-sm: 0 2px 8px rgba(44,44,44,0.06);
  --shadow-md: 0 8px 32px rgba(44,44,44,0.08);
  --shadow-lg: 0 16px 48px rgba(44,44,44,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  max-width: 100vw;
}

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

/* PARTICLE CANVAS */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* TYPOGRAPHY */
.section-kicker {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--sage);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
}

.btn--accent {
  background: var(--sage);
  color: var(--white);
  padding: 0.85rem 2rem;
}

.btn--accent:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,143,113,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem;
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn--outline {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
  padding: 0.6rem 1.5rem;
}

.btn--outline:hover {
  background: var(--sage);
  color: var(--white);
}

.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(253,248,242,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
  transition: color var(--transition);
}

.header--scrolled .header__brand { color: var(--charcoal); }

.header__icon { flex-shrink: 0; }

.header__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.header__nav {
  display: flex;
  gap: 2rem;
}

.header__nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}

.header--scrolled .header__nav a { color: var(--warm-gray); }
.header__nav a:hover { color: var(--white); }
.header--scrolled .header__nav a:hover { color: var(--sage); }

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width var(--transition);
}

.header__nav a:hover::after { width: 100%; }

.header .btn--sm {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.header--scrolled .btn--sm {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header--scrolled .burger span { background: var(--charcoal); }

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44,44,44,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--sage-light); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero:hover .hero__bg img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44,44,44,0.4) 0%,
    rgba(44,44,44,0.2) 40%,
    rgba(44,44,44,0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 8rem 2rem 4rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__line {
  width: 40px;
  height: 1px;
  background: var(--sage-light);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
}

.hero__title-line--accent {
  font-weight: 600;
  color: var(--sage-light);
}

.hero__title-line--script {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--terracotta-light);
  margin-top: 0.25rem;
}

.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 8rem 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about__image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--sage-light);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatAccent 6s ease-in-out infinite;
}

@keyframes floatAccent {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}

.about__content { padding: 1rem 0; }

.about__text {
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(107,143,113,0.15);
}

.about__stat { text-align: center; }

.about__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--sage-dark);
  display: block;
  line-height: 1;
}

.about__stat-label {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 0.35rem;
  display: block;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 8rem 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.service-card__duration {
  background: rgba(44,44,44,0.7);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.service-card__body {
  padding: 1.75rem;
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.service-card__desc {
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sage-dark);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 8rem 0;
  background: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
  grid-auto-rows: 320px;
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item--wide {
  grid-row: span 2;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 8rem 0;
  background: var(--cream-deep);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--sage-light));
  opacity: 0.3;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage-light), var(--sage-light), transparent);
  opacity: 0.3;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--sage-light);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.process__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.process__desc {
  color: var(--warm-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 8rem 0;
  background: var(--white);
}

.reviews__slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--sage-light);
  opacity: 0.15;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  color: var(--terracotta);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.review-card__text {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.review-card__author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.review-card__author span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ============================================
   BOOKING
   ============================================ */
.booking {
  padding: 8rem 0;
  background: var(--cream-deep);
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.booking__text {
  color: var(--warm-gray);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.booking__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking__info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.booking__info-item svg { color: var(--sage); flex-shrink: 0; }

.booking__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(107,143,113,0.2);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,143,113,0.1);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.booking__consent {
  font-size: 0.75rem;
  color: var(--warm-gray-light);
  text-align: center;
  margin-top: 0.75rem;
}

.booking__form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease;
}

.booking__form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--sage-dark);
}

.booking__form-success p {
  color: var(--warm-gray);
}

/* ============================================
   CONTACTS
   ============================================ */
.contacts {
  padding: 6rem 0;
  background: var(--white);
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contacts__map-placeholder {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--warm-gray);
  text-align: center;
}

.contacts__map-placeholder svg { color: var(--sage-light); opacity: 0.5; }

.contacts__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.contacts__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(107,143,113,0.1);
  transition: all var(--transition);
}

.contacts__link:hover {
  color: var(--sage);
  padding-left: 0.5rem;
}

.contacts__link svg { color: var(--sage); flex-shrink: 0; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 50%, var(--sage-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, -5%); }
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta .section-kicker { color: var(--terracotta-light); }

.final-cta__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.final-cta__title em {
  font-style: italic;
  color: var(--cream);
}

.final-cta__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.final-cta .btn--accent {
  background: var(--white);
  color: var(--sage-dark);
}

.final-cta .btn--accent:hover {
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0;
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.85rem;
}

.footer__copy {
  text-align: right;
  font-size: 0.85rem;
}

.footer__demo a {
  color: var(--sage-light);
  text-decoration: none;
}

.footer__demo a:hover { text-decoration: underline; }

/* ============================================
   ANIMATIONS
   ============================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-anim="fade-right"] {
  transform: translateX(-40px);
}

[data-anim="fade-left"] {
  transform: translateX(40px);
}

[data-anim].visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process__steps::before { display: none; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 250px; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header .btn--accent { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-accent { display: none; }
  .about__stats { justify-content: center; }

  .services__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .reviews__slider { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .booking__grid { grid-template-columns: 1fr; gap: 3rem; }

  .contacts__grid { grid-template-columns: 1fr; }

  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 1; }

  .process__steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

  .footer__inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer__copy { text-align: center; }

  .hero__title-line { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero__title-line--script { font-size: clamp(1.5rem, 6vw, 2.5rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .about__stats { flex-direction: column; gap: 1.5rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
}
