*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #FFFFFF;
  --milk: #FAF9F7;
  --text: #1D1D1D;
  --text-secondary: #6F6F6F;
  --accent: #E8DDD5;
  --line: #D8D8D8;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  --radius: 12px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container: 1120px;
  --section-gap: 120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 720px;
}

/* Typography */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 520px;
}

.section-text--center {
  margin: 16px auto 0;
  text-align: center;
}

.section-header {
  margin-bottom: 56px;
}

.section {
  padding: var(--section-gap) 0;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn:hover,
.btn:focus-visible {
  color: var(--white);
  outline: none;
  transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: scaleX(1);
}

.btn:active {
  transform: translateY(0);
}

.btn--large {
  width: 100%;
  padding: 18px 32px;
  font-size: 14px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo--footer .logo-img {
  height: 34px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: var(--transition);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-list a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-list a:not(.nav-cta):hover::after,
.nav-list a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--text);
  outline: none;
}

.nav {
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
}

.nav.open .nav-list li {
  animation: navItemIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.nav.open .nav-list li:nth-child(1) { animation-delay: 0.05s; }
.nav.open .nav-list li:nth-child(2) { animation-delay: 0.1s; }
.nav.open .nav-list li:nth-child(3) { animation-delay: 0.15s; }
.nav.open .nav-list li:nth-child(4) { animation-delay: 0.2s; }
.nav.open .nav-list li:nth-child(5) { animation-delay: 0.25s; }
.nav.open .nav-list li:nth-child(6) { animation-delay: 0.3s; }

@keyframes navItemIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.nav-cta {
  padding: 10px 22px !important;
  border: 1px solid var(--text);
  border-radius: var(--radius);
  color: var(--text) !important;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--text) !important;
  color: var(--white) !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -5% 0;
  will-change: transform;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 110%;
  object-fit: cover;
  transition: transform 0.1s linear;
}

.about-image picture {
  display: block;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.55)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 80px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-features li {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
}

.hero-features li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: var(--line);
  transform: translateY(-50%);
}

.hero-illustration {
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: 60px;
  height: auto;
  color: var(--text);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

/* About */
.about {
  background: var(--milk);
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

.about-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.about-card:last-child {
  border-bottom: none;
}

.about-card-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-secondary);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.about-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Services */
.services {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.5s ease,
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
  transform: translateY(-6px);
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  color: var(--text);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}

.service-link:hover {
  border-color: var(--text);
}

.section-illustration {
  position: absolute;
  pointer-events: none;
  color: var(--text);
  opacity: 0.1;
  transition: transform 0.1s linear, opacity 0.6s ease;
}

.draw-illustration path,
.draw-illustration ellipse,
.draw-illustration circle {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.draw-illustration.visible path,
.draw-illustration.visible ellipse,
.draw-illustration.visible circle {
  stroke-dashoffset: 0;
}

.draw-illustration.visible path:nth-child(2) { transition-delay: 0.2s; }
.draw-illustration.visible path:nth-child(3) { transition-delay: 0.4s; }
.draw-illustration.visible path:nth-child(4) { transition-delay: 0.6s; }
.draw-illustration.visible path:nth-child(5) { transition-delay: 0.8s; }

.section-illustration--branch {
  left: 4%;
  bottom: 60px;
  width: 50px;
}

.section-illustration--face {
  right: 5%;
  top: 80px;
  width: 45px;
}

/* Pricing */
.pricing {
  background: var(--milk);
}

.pricing-accordion,
.faq-accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  transition: color var(--transition);
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
  color: var(--text-secondary);
  outline: none;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding-bottom: 0;
}

.accordion-panel > * {
  overflow: hidden;
}

.accordion-panel .price-list,
.accordion-panel p {
  padding-bottom: 24px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.accordion-panel.is-open {
  grid-template-rows: 1fr;
}

.accordion-panel.is-open .price-list,
.accordion-panel.is-open p {
  opacity: 1;
  transform: translateY(0);
}

.accordion-panel[hidden] {
  display: none;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.accordion-panel.is-open .price-item {
  opacity: 1;
  transform: translateX(0);
}

.accordion-panel.is-open .price-item:nth-child(1) { transition-delay: 0.05s; }
.accordion-panel.is-open .price-item:nth-child(2) { transition-delay: 0.1s; }
.accordion-panel.is-open .price-item:nth-child(3) { transition-delay: 0.15s; }
.accordion-panel.is-open .price-item:nth-child(4) { transition-delay: 0.2s; }
.accordion-panel.is-open .price-item:nth-child(5) { transition-delay: 0.25s; }
.accordion-panel.is-open .price-item:nth-child(6) { transition-delay: 0.3s; }
.accordion-panel.is-open .price-item:nth-child(7) { transition-delay: 0.35s; }
.accordion-panel.is-open .price-item:nth-child(9) { transition-delay: 0.45s; }
.accordion-panel.is-open .price-item:nth-child(10) { transition-delay: 0.5s; }
.accordion-panel.is-open .price-item:nth-child(11) { transition-delay: 0.55s; }
.accordion-panel.is-open .price-item:nth-child(12) { transition-delay: 0.6s; }
.accordion-panel.is-open .price-item:nth-child(13) { transition-delay: 0.65s; }

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-name {
  flex-shrink: 0;
  color: var(--text);
}

.price-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  min-width: 20px;
  margin-bottom: 4px;
}

.price-time {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  min-width: 52px;
  text-align: right;
}

.price-value {
  flex-shrink: 0;
  font-weight: 500;
  white-space: nowrap;
  min-width: 72px;
  text-align: right;
}

.price-item--package {
  align-items: flex-start;
}

.package-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  max-width: 55%;
}

.package-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.price-list--packages .price-name {
  font-size: 14px;
  line-height: 1.4;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  background: var(--milk);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.5s ease,
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(var(--delay, 0) * 0.12s);
}

.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.section {
  transition: background-color 0.6s ease;
}

.review-card {
  flex: 0 0 100%;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-slider:hover .review-card {
  box-shadow: var(--shadow);
}

.reviews {
  background: var(--milk);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.btn--reviews {
  flex-shrink: 0;
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.reviews-slider {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.review-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}

.review-stars {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 2px;
}

.review-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition);
}

.reviews-dot.active {
  background: var(--text);
  border-color: var(--text);
}

.reviews-dot:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* FAQ */
.faq .accordion-trigger {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}

.faq .accordion-panel p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-bottom: 8px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.contact-item a {
  border-bottom: 1px solid var(--line);
  transition: border-color var(--transition);
}

.contact-item a:hover {
  border-color: var(--text);
}

.contact-info .btn {
  margin-top: 8px;
}

.contact-phone {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: border-color var(--transition), color var(--transition);
}

.contact-phone:hover {
  border-color: var(--text);
}

.contact-map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-map:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.contact-map iframe {
  border: 0;
}

/* Booking */
.booking-form {
  padding: 48px;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

.booking-form:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-success {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px 48px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.footer-contacts,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contacts a,
.footer-social a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-contacts a:hover,
.footer-social a:hover {
  color: var(--text);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-secondary);
}

.footer-legal a {
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--text);
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --section-gap: 96px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 72px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    border-left: 1px solid var(--line);
    padding: 80px 32px 32px;
    transition: right var(--transition);
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 32px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-features li:not(:last-child)::after {
    display: none;
  }

  .hero-illustration {
    display: none;
  }

  .section-illustration {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .price-item {
    flex-wrap: wrap;
    gap: 4px 8px;
  }

  .price-dots {
    display: none;
  }

  .package-info {
    max-width: 100%;
    width: 100%;
  }

  .price-time,
  .price-value {
    min-width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
