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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, Arial, sans-serif;
  color: #241713;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.9), transparent 30%),
    radial-gradient(circle at 85% 8%, rgba(220,184,139,0.28), transparent 34%),
    linear-gradient(135deg, #fffaf4 0%, #f4e6d8 45%, #e8d0bd 100%);
  overflow-x: hidden;
}

.navbar {
  width: min(1180px, 92%);
  margin: 22px auto;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,250,244,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 22px 60px rgba(93,57,38,0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  color: #241713;
  text-decoration: none;
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.logo span { color: #a56f45; }

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #5b4238;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover { color: #a56f45; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.socials,
.footer-socials {
  display: flex;
  gap: 8px;
}

.socials a,
.footer-socials a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  color: #241713;
  border: 1px solid rgba(165,111,69,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.socials a:hover,
.footer-socials a:hover {
  background: #241713;
  color: white;
}

.lang {
  display: flex;
  gap: 5px;
  padding-left: 14px;
  border-left: 1px solid rgba(165,111,69,0.25);
}

.lang button {
  border: none;
  background: transparent;
  color: #241713;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  opacity: 0.45;
  padding: 6px 4px;
}

.lang button.active,
.lang button:hover { opacity: 1; }

.lang button.active {
  border-bottom: 2px solid #a56f45;
}

.hero {
  min-height: 100vh;
  padding: 90px 7% 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-block;
  color: #a56f45;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -5px;
  max-width: 850px;
}

.hero p {
  margin-top: 28px;
  color: #6b5147;
  font-size: 19px;
  line-height: 1.8;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: 0.3s;
}

.btn-dark {
  background: linear-gradient(135deg, #241713, #4c3024);
  color: white;
  box-shadow: 0 20px 45px rgba(72,43,31,0.22);
}

.btn-light {
  background: rgba(255,255,255,0.78);
  color: #241713;
  border: 1px solid rgba(255,255,255,0.9);
}

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

.hero-visual { position: relative; }

.hero-image {
  height: 620px;
  border-radius: 48px;
  background:
    linear-gradient(rgba(36,23,19,0.08), rgba(36,23,19,0.2)),
    url("images/cover.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 40px 100px rgba(93,57,38,0.22);
  border: 1px solid rgba(255,255,255,0.9);
}

.floating-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: auto;
}

.floating-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: auto;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 14px;

  max-width: 320px;
  padding: 18px 20px;
  border-radius: 24px;

  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 22px 60px rgba(36, 23, 19, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  animation: premiumFloat 3.5s ease-in-out infinite;
}

.floating-card i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 16px;

  background: linear-gradient(135deg, #241713, #5a3829);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 26px rgba(36, 23, 19, 0.25);
}

.floating-card strong {
  display: block;
  color: #241713;
  font-size: 16px;
  font-weight: 950;
}

.floating-card span {
  display: block;
  color: #6b5147;
  font-size: 13px;
  margin-top: 3px;
}

@keyframes premiumFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floating-card strong { display: block; }
.floating-card span { color: #6b5147; font-size: 13px; }

.section { padding: 110px 7%; }

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.section-head h2,
.shop-inner h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -2.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 255px;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255,250,244,0.78);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 24px 70px rgba(93,57,38,0.08);
  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #241713, #4c3024);
  color: white;
}

.service-card:hover p { color: #eadbd1; }

.service-card span {
  color: #a56f45;
  font-weight: 950;
  font-size: 14px;
}

.service-card h3 {
  margin: 28px 0 16px;
  font-size: 28px;
}

.service-card p {
  color: #6b5147;
  line-height: 1.75;
}

.service-card.wide { grid-column: span 2; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  height: 380px;
  border-radius: 34px;
  overflow: hidden;
  background: #241713;
  cursor: pointer;
  box-shadow: 0 26px 70px rgba(93,57,38,0.14);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,250,244,0.88);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.35s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay span {
  display: block;
  color: #a56f45;
  font-weight: 950;
  margin-bottom: 6px;
}

.gallery-overlay p {
  color: #241713;
  font-size: 14px;
  font-weight: 700;
}

.shop {
  padding: 120px 7%;
}

.shop-inner {
  text-align: center;
  padding: 84px 8%;
  border-radius: 52px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.55), transparent 30%),
    linear-gradient(135deg, #fffaf4, #d9b891);
  box-shadow: 0 28px 80px rgba(93,57,38,0.16);
}

.shop-inner p {
  max-width: 760px;
  margin: 26px auto 34px;
  color: #6b5147;
  line-height: 1.85;
}

.shop-inner button {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 18px;
  border: none;
  background: #241713;
  color: white;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
}

.contact-card {
  padding: 42px;
  border-radius: 34px;
  background: rgba(255,250,244,0.8);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 24px 70px rgba(93,57,38,0.08);
}

.contact-card h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.contact-card p {
  color: #6b5147;
  line-height: 1.75;
  margin-bottom: 26px;
}

.map-btn {
  margin-top: 12px;
}

.contact iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  border-radius: 34px;
  box-shadow: 0 22px 55px rgba(93,57,38,0.11);
}

.media-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.media-modal.active {
  display: flex;
}

.modal-content img,
.modal-content video {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 24px;
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  color: #241713;
  font-size: 30px;
  cursor: pointer;
}

footer {
  margin-top: 40px;
  padding: 48px 7%;
  background: #241713;
  color: #eadbd1;
  text-align: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: 950;
  margin-bottom: 20px;
}

.footer-socials {
  justify-content: center;
  margin-bottom: 20px;
}

.footer-socials a {
  background: rgba(255,255,255,0.08);
  color: #eadbd1;
  border-color: rgba(255,255,255,0.12);
}

footer p {
  font-size: 14px;
  color: #bfa99c;
}

@media (max-width: 1100px) {
  .hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    height: 520px;
  }

  .floating-card {
    left: 24px;
  }
}

@media (max-width: 820px) {
  .navbar {
    border-radius: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
  }

  .lang {
    border-left: none;
    padding-left: 0;
  }

  .hero {
    padding-top: 55px;
    text-align: center;
  }

  .hero h1 {
    letter-spacing: -2px;
    font-size: clamp(46px, 13vw, 72px);
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .hero-actions {
    justify-content: center;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card.wide {
    grid-column: span 1;
  }

  .section {
    padding: 85px 4%;
  }

  .hero-image {
    height: 390px;
    border-radius: 34px;
  }

 .floating-card {
  position: relative;
  right: auto;
  bottom: auto;
  margin: -34px auto 0;
  max-width: 90%;
  animation: none;
}

  .gallery-item {
    height: 340px;
  }

  .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .shop {
    padding: 80px 4%;
  }

  .shop-inner {
    padding: 54px 24px;
    border-radius: 36px;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48px;
}

.hero-image {
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  border-radius: 48px;
}

.hero-image {
  position: relative;
  height: 620px;
  border-radius: 48px;
  overflow: hidden;
  background: #241713;
  box-shadow:
    0 45px 120px rgba(93,57,38,0.28),
    inset 0 1px 0 rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.9);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(36,23,19,0.08), rgba(36,23,19,0.28)),
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.22), transparent 30%);
  z-index: 1;
  pointer-events: none;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 34px;
  z-index: 2;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.hero-image-badge {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,250,244,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(36,23,19,0.16);
}

.hero-image-badge span {
  display: block;
  color: #a56f45;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hero-image-badge strong {
  color: #241713;
  font-size: 16px;
}

@media (max-width: 820px) {
  .hero-image {
    height: 390px;
    border-radius: 34px;
  }

  .hero-image::after {
    inset: 12px;
    border-radius: 24px;
  }

  .hero-image-badge {
    left: 18px;
    top: 18px;
    padding: 13px 15px;
  }
}

.booking-card {
  text-decoration: none;
  cursor: pointer;
}

.booking-card small {
  position: absolute;
  right: 18px;
  top: -14px;
  background: #25d366;
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.28);
}

.booking-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.booking-card:hover i {
  background: #25d366;
}

.nav-btn {
  padding: 8px 16px;
  border-radius: 20px;
  background: #241713;
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.nav-book {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #241713, #4c3024);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(72,43,31,0.22);
}

.before-after-section,
.reviews-section,
.business-section {
  padding: 110px 7%;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.before-after-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 42px;
  background: rgba(255,250,244,0.8);
  box-shadow: 0 26px 70px rgba(93,57,38,0.12);
}

.before-after-card div {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: 30px;
}

.before-after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-card span {
  position: absolute;
  left: 16px;
  top: 16px;
  background: #241713;
  color: white;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.before-after-text h3 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  margin-bottom: 20px;
}

.before-after-text p {
  color: #6b5147;
  line-height: 1.8;
  margin-bottom: 28px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,250,244,0.82);
  box-shadow: 0 24px 70px rgba(93,57,38,0.1);
}

.stars {
  color: #a56f45;
  font-size: 20px;
  margin-bottom: 18px;
}

.review-card p {
  color: #6b5147;
  line-height: 1.8;
  margin-bottom: 18px;
}

.business-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.business-card,
.hours-card {
  padding: 50px;
  border-radius: 42px;
  background: linear-gradient(135deg, #241713, #4c3024);
  color: white;
  box-shadow: 0 30px 80px rgba(72,43,31,0.22);
}

.business-card h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  margin-bottom: 20px;
}

.business-card p {
  color: #eadbd1;
  line-height: 1.8;
  margin-bottom: 28px;
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.business-card .btn-light {
  background: white;
}

.hours-card h3 {
  font-size: 30px;
  margin-bottom: 26px;
}

.hours-card p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: #eadbd1;
}

@media (max-width: 900px) {
  .before-after-grid,
  .business-section,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .before-after-card {
    grid-template-columns: 1fr;
  }

  .before-after-card div {
    height: 340px;
  }

  .business-card,
  .hours-card {
    padding: 34px 24px;
  }

  .nav-book {
    order: -1;
  }
}

.transformations-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.transformation-item {
  min-width: 480px;
  scroll-snap-align: center;
}

.premium-card {
  background: rgba(255,250,244,0.84);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: -120%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  animation: shine 5s linear infinite;
}

@keyframes shine {
  100% {
    transform: translateX(250%);
  }
}

.booking-section {
  padding: 120px 7%;
}

.booking-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  padding: 60px;

  border-radius: 42px;

  background:
    linear-gradient(
      135deg,
      rgba(255,250,244,0.95),
      rgba(232,208,189,0.88)
    );

  box-shadow:
    0 35px 90px rgba(93,57,38,0.14);
}

.booking-content h2 {
  font-size: clamp(42px,5vw,72px);
  line-height: 1;
  margin: 20px 0;
}

.booking-content p {
  color: #6b5147;
  line-height: 1.9;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {

  width: 100%;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(165,111,69,0.15);
  background: rgba(255,255,255,0.92);
  font-size: 15px;
  outline: none;
}

.booking-form textarea {
  min-height: 130px;
  resize: none;
}

.booking-form button {

  border: none;
  min-height: 58px;
  border-radius: 18px;

  background:
  linear-gradient(
    135deg,
    #241713,
    #4c3024
  );

  color: white;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.form-message {
  color: #a56f45;
  font-weight: 800;
}

@media (max-width: 900px) {

  .booking-box {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .transformation-item {
    min-width: 88%;
  }

}

.luxury-video{

  width:90vw;
  max-width:1200px;

  max-height:85vh;

  border-radius:28px;

  object-fit:cover;

  background:#000;

  box-shadow:
  0 40px 100px rgba(0,0,0,.45);

}

.modal-content{

  display:flex;
  align-items:center;
  justify-content:center;

}