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

:root {
  --navy: #17162f;
  --pink: #f3a99d;
  --text: #262533;
  --white: #fff;
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1280px, calc(100% - 60px));
  margin: auto;
}

.site-header {
  height: 108px;
 position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.nav-wrap {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.logo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 39px;
  font-size: 16px;
  color: #ffffff;
  flex: 1;
}

.main-nav > a,
.nav-dropdown > a,
.book-dropdown > a {
  transition: .2s ease;
}

.main-nav > a:hover,
.nav-dropdown > a:hover {
  color: #f3958a;
}

.main-nav .active {
  color: #f3958a;
  position: relative;
}

.main-nav .active::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #222;
  left: 0;
  right: 0;
  bottom: -12px;
}

.nav-dropdown,
.book-dropdown {
  position: relative;
}

.nav-dropdown > a,
.book-dropdown > a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f7f7f7;
}

.nav-dropdown:hover .dropdown-menu,
.book-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pill-btn {
  background: var(--pink);
  border-radius: 28px;
  padding: 13px 23px;
  color: #27242a;
  white-space: nowrap;
}

.gift-btn {
  padding-left: 27px;
  padding-right: 27px;
}

.book-menu {
  right: 0;
  left: auto;
}

.hero {
  height: calc(100vh - 108px);
  min-height: 540px;
  max-height: 760px;
  position: relative;
  overflow: hidden;
  background: #777;
}

.slides,
.slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background: rgba(15, 12, 8, .30);
  z-index: 2;
}

.hero-content {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -38%);
  width: min(850px, 90%);
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 24px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--pink);
  border-radius: 28px;
  color: #24212a;
  transition: transform .2s ease, background .2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: #f6b7ad;
}

.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  color: #fff;
  font-size: 35px;
  line-height: 35px;
  cursor: pointer;
  opacity: .7;
}

.slider-arrow:hover {
  background: rgba(255,255,255,.45);
  opacity: 1;
}

.prev { left: 25px; }
.next { right: 25px; }

.dots {
  position: absolute;
  z-index: 6;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}

.dot.active {
  background: #fff;
  transform: scale(1.25);
}

.chat-button {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,.12);
}

.chat-button span {
  width: 22px;
  height: 17px;
  border-radius: 4px 4px 8px 8px;
  background: #fff;
  position: relative;
}

.chat-button span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 4px;
  border-width: 4px 4px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
      background-color: white;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  background: #222;
  margin: 5px 0;
}

@media (max-width: 1150px) {
  .main-nav {
    gap: 21px;
    font-size: 14px;
  }

  .logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .nav-wrap {
    height: 82px;
  }

  .container {
    width: min(100% - 30px, 700px);
  }

  .logo {
    width: 62px;
    height: 62px;
  }

  .menu-toggle {
    display: block;
    z-index: 25;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #000;
    padding: 20px 25px 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-dropdown > a,
  .book-dropdown > a {
    padding: 13px 4px;
  }

  .main-nav .active::after {
    display: none;
  }

  .nav-dropdown .dropdown-menu,
  .book-dropdown .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0 0 5px 15px;
  }

  .nav-dropdown:hover .dropdown-menu,
  .book-dropdown:hover .dropdown-menu {
    display: block;
	background-color: #000;
  }

  .pill-btn {
    justify-content: center;
    margin-top: 7px;
  }

  .hero {
    height: calc(100vh - 82px);
  }

  .hero-content {
    transform: translate(-50%, -42%);
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 560px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .chat-button {
    width: 55px;
    height: 55px;
    right: 15px;
    bottom: 15px;
  }

  .dots {
    bottom: 18px;
  }
}

.services-section{padding:27px 0 18px}
.services-container{width:calc(100% - 78px);max-width:1400px;margin:auto}
h2{text-align:center;font-family:"Playfair Display",Georgia,serif;font-weight:500;font-size:32px;line-height:1.2;margin-bottom:48px}

.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.service-card{display:block;min-width:0}
.service-card img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover;border:2px solid var(--border)}
.service-title{display:flex;justify-content:space-between;align-items:center;gap:10px;font-family:"Playfair Display",Georgia,serif;font-size:27px;line-height:1.15;padding-top:6px}
.arrow{font-family:Arial,sans-serif;font-size:27px;font-weight:400;flex-shrink:0}

.discover-wrap{text-align:center;margin-top:27px}
.discover-btn{display:inline-block;background:var(--pink);border-radius:28px;padding:12px 25px;font-size:15px;color:#302b35;transition:.2s}
.discover-btn:hover{transform:translateY(-2px);filter:brightness(1.03)}

.chat-button{position:fixed;right:22px;bottom:20px;width:68px;height:68px;border-radius:50%;background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.12);display:flex;align-items:center;justify-content:center;z-index:10}
.chat-button span{width:24px;height:18px;background:#fff;border-radius:4px 4px 8px 8px;box-shadow:0 0 0 1px #eee}
.chat-button span:after{content:"";display:block;width:7px;height:7px;background:#fff;transform:translate(4px,14px) rotate(25deg)}

@media(max-width:1000px){
  .services-container{width:calc(100% - 40px)}
  h2{font-size:30px;margin-bottom:35px}
  .services-grid{grid-template-columns:repeat(2,1fr);gap:24px 16px}
  .service-title{font-size:24px}
}

@media(max-width:600px){
  .services-section{padding:25px 0 20px}
  .services-container{width:calc(100% - 28px)}
  h2{font-size:28px;margin-bottom:28px}
  .services-grid{grid-template-columns:repeat(2,1fr);gap:22px 10px}
  .service-card img{border-width:1px}
  .service-title{font-size:19px;padding-top:5px;gap:5px}
  .arrow{font-size:21px}
  .discover-wrap{margin-top:25px}
  .discover-btn{padding:11px 22px;font-size:14px}
  .chat-button{width:55px;height:55px;right:14px;bottom:14px}
}

@media(max-width:360px){
  .services-container{width:calc(100% - 20px)}
  .service-title{font-size:17px}
  .arrow{font-size:19px}
}

