:root {
  --color-bg: #f5f5f5;
  --color-line: #b4b4b3;
  --color-accent: #d4adcf;
  --color-accent-dark: #9d7b98;
  --color-dark: #000;
  --color-gray: #363636;
  --color-light: #f0f0f0;
  --color-card-overlay: rgba(212, 173, 207, 0.5);
  --color-white: #fff;
  --font-main: 'Roboto', sans-serif;
  --container-max-width: 1315px;
  --grid-size: 50px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  background-image: linear-gradient(var(--color-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  color: var(--color-dark);
  line-height: 1.15;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}

.topmenu {
  position: relative;
  z-index: 100;
  user-select: none;
}

.topmenu.inner {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 60px;
}

.burger-menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 102;
  background: transparent;
  border: none;
  padding: 0;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-accent);
  position: absolute;
  transition: all 0.3s ease;
}

.burger-menu span:nth-child(1) {
  top: 0;
}

.burger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-menu span:nth-child(3) {
  bottom: 0;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(12px, -12px);
}

.nav-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
  transition: all 0.3s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  display: block;
  margin: 0 10px;
  font-size: 24px;
  background-color: var(--color-light);
  border: 1px solid var(--color-line);
  transition: var(--transition-fast);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.nav-menu li a {
  display: block;
  padding: 6px 20px;
  color: var(--color-accent);
  text-decoration: none;
}

.nav-menu li.active {
  box-shadow: 6px 6px 0 0 var(--color-accent);
}

.nav-menu li.active a {
  color: #000;
}

.nav-menu li:hover a {
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 80px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 101;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    text-align: center;
  }

  .nav-menu li a {
    padding: 12px 20px;
    display: block;
    width: 100%;
  }

  .topmenu.inner {
    padding-top: 15px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    width: 100%;
  }

  .burger-menu {
    width: 25px;
    height: 25px;
    top: 15px;
    right: 15px;
  }

  .burger-menu span {
    height: 2px;
  }

  .nav-menu li {
    max-width: 250px;
  }
}

.main-component {
  z-index: 1;
  padding-bottom: 80px;
  height: 800px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.main-content {
  z-index: 2;
  width: 100%;
  flex: 1;
  padding: 30px 0;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto 1fr;
  justify-content: space-between;
  user-select: none;
  box-sizing: border-box;
}

.about-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2em;
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}

.about-txt {
  font-size: 40px;
  font-weight: 300;
  color: var(--color-gray);
  line-height: 1.4em;
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
  padding-top: 30px;
}

.about-btns {
  grid-column: 2 / span 1;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 68px;
}

.about-btn {
  line-height: 1em;
  width: 100%;
  max-width: 300px;
  margin: 11px auto;
  display: block;
}

.btn {
  padding: 10px 20px;
  font-size: 30px;
  cursor: pointer;
  text-align: center;
  border: none;
  outline: none;
  text-decoration: none;
  user-select: none;
  transition: var(--transition-medium);
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-1 {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.btn-2 {
  background-color: var(--color-dark);
  color: var(--color-accent);
}

.about-anim {
  z-index: 1;
  left: 50%;
  transform: translateX(-57%);
  width: 800px;
  height: 100%;
  position: absolute;
}

@media (min-width: 768px) {
  .hand1 {
    position: absolute;
    z-index: 4;
    width: 334px;
    height: 397px;
    background-image: url(/img/hand22.png);
    background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 50px;
    left: 156px;
    transition: transform 0.3s ease-out;
  }

  .hand2 {
    position: absolute;
    z-index: 3;
    width: 324px;
    height: 478px;
    background-image: url(/img/hand11.png);
    background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 111px;
    left: 450px;
    transition: transform 0.3s ease-out;
  }
}

@media (max-width: 768px) {
  .hand1 {
    animation: hand1Float 4s ease-in-out infinite;
  }

  .hand2 {
    animation: hand2Float 4s ease-in-out infinite;
    animation-delay: 0.5s;
  }

  @keyframes hand1Float {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(-3px, -3px) rotate(-1deg);
    }
  }

  @keyframes hand2Float {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(3px, 3px) rotate(1deg);
    }
  }
}

.head {
  z-index: 2;
  width: 315px;
  height: 354px;
  background-image: url(/img/head.png);
  background-size: contain;
  top: 40px;
  left: 300px;
  position: absolute;
  background-position: 50%;
  background-repeat: no-repeat;
}

.anim-scale {
  animation-name: anim_scale;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 2s;
}

@keyframes anim_scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes rotation {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.ring {
  position: absolute;
  background-size: contain;
  width: 190px;
  height: 190px;
  top: 250px;
  left: 200px;
  transform: translate(-50%, -50%);
  background-image: url(img/ring.png);
  animation: rotation 20s linear infinite;
}

.accent-section {
  background-color: var(--color-accent);
  padding: 80px 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accent-section .inner {
  margin-bottom: 80px;
}

.accent-section .inner:last-child {
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-suptitle {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 auto;
  max-width: 800px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title.white::after {
  background-color: var(--color-white);
}

.accent-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.accent-text {
  flex: 1;
}

.location {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.brand-name {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 25px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.intro-text {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 35px;
  font-weight: 300;
  max-width: 90%;
  letter-spacing: 0.3px;
}

.features-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.features-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  transition: transform var(--transition-fast);
}

.features-list li:hover {
  transform: translateX(5px);
}

.feature-icon {
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: var(--color-white);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.accent-image {
  flex: 1;
  position: relative;
  transform-style: preserve-3d;
}

.accent-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-out;
  will-change: transform;
  transform-origin: center;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  position: relative;
  height: 370px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-medium);
  transform: translateY(0);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.7)
  );
  transition: background var(--transition-medium);
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    to bottom,
    rgba(212, 173, 207, 0.4),
    rgba(157, 123, 152, 0.8)
  );
}

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

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  color: white;
  z-index: 2;
  transition: transform var(--transition-medium);
}

.service-card:hover .service-content {
  transform: translateY(-10px);
}

.service-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 12px;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width var(--transition-medium);
}

.service-card:hover .service-title::after {
  width: 80px;
}

.service-btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  text-decoration: none;
  font-weight: 400;
  transition: all var(--transition-fast);
  border-radius: 4px;
  letter-spacing: 1px;
}

.service-btn:hover {
  background-color: white;
  border-color: white;
  color: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-section {
  padding: 80px 0;
  background-color: var(--color-bg);
  position: relative;
}

.reviews-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.reviews-section .section-header {
  margin-bottom: 50px;
}

.reviews-section .section-title {
  color: var(--color-white);
}

.reviews-slider {
  position: relative;
  padding: 20px 0 100px;
  overflow: visible;
}

.swiper-slide {
  height: auto;
  display: flex;
  padding-bottom: 20px;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.review-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 30px;
  margin: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  height: 400px;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-service {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.review-stars {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-time {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 15px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 15px;
  font-style: italic;
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
  max-height: calc(100% - 150px);
}

.review-text::-webkit-scrollbar {
  width: 4px;
}

.review-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.review-text::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 2px;
}

.review-author {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-accent-dark);
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid var(--color-line);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-accent) !important;
  background: var(--color-white);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-pagination {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.swiper-pagination-bullet {
  background: var(--color-white) !important;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 !important;
  pointer-events: auto;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.reservation-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.reservation-section .section-header {
  margin-bottom: 40px;
}

.reservation-section .section-title {
  color: var(--color-dark);
}

.reservation-section .section-title::after {
  background-color: var(--color-accent);
}

.info-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-line);
}

.info-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  position: relative;
  padding-bottom: 10px;
}

.info-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

.info-section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray);
  margin-bottom: 10px;
}

.map-section {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(212, 173, 207, 0.2),
    rgba(157, 123, 152, 0.3)
  );
  z-index: 1;
  pointer-events: none;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.1) brightness(0.95);
}

.footer {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 40px 0 15px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer .inner {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 25px;
  position: relative;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
  position: relative;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer-nav li {
  margin-bottom: 6px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
  position: relative;
}

@media (max-width: 1536px) {
  .inner {
    padding: 0 15px;
  }
}

@media (max-width: 1280px) {
  .main-component {
    min-height: 530px;
    height: auto;
    position: relative;
  }

  .about-anim {
    top: -113px;
    transform: translateX(-57%) scale(0.7);
    height: 800px;
  }
}

@media (max-width: 1024px) {
  .main-component {
    max-width: 800px;
    margin: 0 auto;
    min-height: 700px;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
  }

  .about-anim {
    top: -73px;
    right: -120px;
    left: auto;
    transform: translateX(0) scale(0.7);
  }

  .about-btns {
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .footer-section p {
    font-size: 13px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    font-size: 13px;
  }

  .hand1 {
    animation: hand1Float 3s ease-in-out infinite;
  }

  .hand2 {
    animation: hand2Float 3s ease-in-out infinite;
    animation-delay: 0.5s;
  }

  @keyframes hand1Float {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(-5px, -5px) rotate(-2deg);
    }
  }

  @keyframes hand2Float {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(5px, 5px) rotate(2deg);
    }
  }
}

@media (max-width: 768px) {
  .accent-section .inner {
    margin-bottom: 60px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .accent-content {
    flex-direction: column;
    gap: 40px;
  }

  .accent-image {
    width: 100%;
    margin-top: 30px;
  }

  .accent-image img {
    width: 100%;
  }

  .section-title {
    font-size: 48px;
  }

  .footer {
    padding: 20px 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-section {
    text-align: center;
    padding: 0 15px;
  }

  .social-links {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: center;
  }

  .footer-nav li {
    margin-bottom: 4px;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .footer-section p {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .footer-bottom {
    padding-top: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card {
    height: 320px;
  }

  .section-title {
    font-size: 42px;
  }

  .brand-name {
    font-size: 48px;
  }

  .accent-section {
    padding: 60px 0;
  }

  .accent-section .inner {
    margin-bottom: 40px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .accent-content {
    margin-bottom: 60px;
  }

  .info-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .info-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .info-section p {
    font-size: 14px;
  }

  .map-section {
    height: 400px;
  }

  .hand1 {
    animation: hand1Float 4s ease-in-out infinite;
  }

  .hand2 {
    animation: hand2Float 4s ease-in-out infinite;
    animation-delay: 0.5s;
  }

  @keyframes hand1Float {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(-3px, -3px) rotate(-1deg);
    }
  }

  @keyframes hand2Float {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(3px, 3px) rotate(1deg);
    }
  }
}

@media (max-width: 640px) {
  .main-component {
    height: auto;
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-anim {
    display: none;
  }

  .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    gap: 30px;
    min-height: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .about-title {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0;
    font-weight: 700;
    color: var(--color-dark);
  }

  .about-txt {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.3px;
    margin: 0;
    font-weight: 300;
    color: var(--color-gray);
    opacity: 0.9;
    max-width: 90%;
  }

  .about-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
  }

  .about-btn {
    width: 100%;
    max-width: 280px;
    margin: 0;
    transition: transform 0.2s ease;
  }

  .about-btn:hover {
    transform: translateY(-2px);
  }

  .btn {
    font-size: 16px;
    padding: 12px 24px;
    letter-spacing: 0.5px;
    border-radius: 4px;
  }

  .btn-1 {
    background-color: var(--color-accent);
    color: var(--color-dark);
  }

  .btn-2 {
    background-color: var(--color-dark);
    color: var(--color-accent);
  }

  .service-card {
    height: 280px;
  }

  .service-title {
    font-size: 24px;
  }

  .brand-name {
    font-size: 42px;
  }

  .intro-text {
    font-size: 18px;
  }

  .features-list li {
    font-size: 16px;
  }

  .footer {
    padding: 15px 0 10px;
  }

  .footer-content {
    gap: 15px;
  }

  .footer-section {
    padding: 0 10px;
  }

  .footer-section h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .footer-section p {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .social-link {
    font-size: 12px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .map-section {
    height: 300px;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('img/STUDIO.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  color: var(--color-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

.hero-section .topmenu {
  position: relative;
  z-index: 100;
  padding-top: 20px;
  margin-bottom: 0;
}

.hero-section .topmenu ul {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.hero-section .topmenu ul li {
  display: block;
  margin: 0 20px;
  font-size: 24px;
  background-color: var(--color-light);
  border: 1px solid var(--color-line);
  list-style: none;
  transition: var(--transition-fast);
  font-weight: 400;
  line-height: 1;
}

.hero-section .topmenu ul li a {
  display: block;
  padding: 6px 26px;
  color: var(--color-accent);
  text-decoration: none;
}

.hero-section .topmenu ul li.active {
  box-shadow: 6px 6px 0 0 var(--color-accent);
}

.hero-section .topmenu ul li.active a {
  color: var(--color-dark);
}

.hero-section .topmenu li:hover a {
  color: var(--color-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-section {
  padding: 80px 0;
  background-color: var(--color-white);
  position: relative;
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.info-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 40px;
  position: relative;
}

.booking-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  border-radius: 4px;
  transition: all var(--transition-medium);
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(212, 173, 207, 0.3);
}

.booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 173, 207, 0.4);
  background-color: var(--color-accent-dark);
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 173, 207, 0.1) 0%,
    rgba(157, 123, 152, 0.1) 100%
  );
  z-index: 0;
}

.info-content {
  position: relative;
  z-index: 1;
}

.pricing-section {
  padding: 80px 0;
  background-color: var(--color-accent);
  color: var(--color-white);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 0 20px;
}

.pricing-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  transition: transform var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-white);
}

.pricing-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 20px;
  }

  .pricing-title {
    font-size: 20px;
  }

  .pricing-description {
    font-size: 14px;
  }

  .pricing-price {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .info-text {
    font-size: 16px;
  }
}

.cta-section {
  margin-top: 60px;
}

.question-section {
  position: relative;
  padding: 100px 0;
  background-image: url('img/question.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.question-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 1;
}

.question-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.question-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.question-text {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
}

.question-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.question-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: var(--color-accent);
  color: var(--color-white);
}

.question-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .question-section {
    padding: 70px 0;
    min-height: 400px;
  }

  .question-title {
    font-size: 36px;
  }

  .question-text {
    font-size: 20px;
  }

  .question-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .question-section {
    padding: 50px 0;
    min-height: 350px;
  }

  .question-title {
    font-size: 32px;
  }

  .question-text {
    font-size: 18px;
  }

  .question-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .question-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

.gallery-section {
  padding: 80px 0;
  background-color: var(--color-bg);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item img {
    height: 300px;
  }

  .gallery-caption {
    font-size: 16px;
    padding: 10px;
  }
}
