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

:root {
  --pink: #d800a8;
  --pink-dark: #b5008d;
  --pink-light: #fae8f7;
  --pink-pale: #fff7fd;
  --dark: #262127;
  --muted: #8b858b;
  --gray: #f5f4f5;
  --border: #d0c8d0;
  --white: #ffffff;
  --container: 1180px;
  --radius: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

button, input, select, textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: none;
}

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

.section {
  padding: 100px 0;
}

.section-label {
  display: block;
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(42px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 530px;
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: white;
  background: var(--pink);
}

.btn-primary:hover {
  background: var(--pink-dark);
}

.btn-outline {
  border: 1px solid var(--pink);
  color: var(--pink);
  background: transparent;
}

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

/* header */

.site-header {
  position: relative;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid var(--border);
  background: white;
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--pink);
  font-size: 18px;
  border-radius: 0;
}

.logo span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: #6f696f;
  font-size: 16px;
  font-weight: 700;
  transition: color .25s ease;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-book {
  padding: 12px 22px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 22px;
  border-radius: 0;
}

/* hero */

.hero {
  min-height: 620px;
  background: var(--pink-pale);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 70px 70px 0;
}

.hero-content h1 {
  max-width: 580px;
  font-size: clamp(64px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.08em;
  margin-bottom: 28px;
}

.hero-content h1 strong {
  color: var(--pink);
}

.hero-content p {
  max-width: 450px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-link {
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -30px;
  bottom: 50px;
  width: 90px;
  height: 90px;
  background: var(--pink);
  opacity: .9;
  border-radius: 0;
}

.hero-visual img {
  height: 100%;
  min-height: 620px;
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 35px;
  width: 210px;
  padding: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
  border-radius: 0;
}

.hero-floating-card strong {
  display: block;
  color: var(--pink);
  font-size: 28px;
  margin-bottom: 5px;
}

.hero-floating-card span {
  color: var(--muted);
  font-size: 16px;
}

/* experience features */

.experience {
  background: white;
}

.center-heading {
  text-align: center;
  margin-bottom: 55px;
}

.center-heading .section-description {
  margin: 18px auto 0;
}

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

.feature-card {
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  background: white;
  border-radius: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--pink);
  background: var(--pink-light);
  font-size: 26px;
  border-radius: 0;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* services */

.services {
  background: var(--pink-pale);
}

.services-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.services-header .section-description {
  margin-top: 17px;
}

.service-slider {
  position: relative;
}

.service-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  flex: 0 0 calc(25% - 12px);
  height: 320px;
  overflow: hidden;
  border-radius: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent 60%);
}

.service-card img {
  height: 100%;
  transition: none;
}

.service-card-content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: white;
}

.service-card-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.service-card-content span {
  font-size: 16px;
  opacity: .8;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 0;
  font-size: 20px;
  transition: background 0.25s, color 0.25s;
}

.slider-btn:hover {
  color: white;
  background: var(--pink);
}

/* about */

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 470px;
}

.about-collage img {
  position: absolute;
  border-radius: 0;
}

.about-collage img:nth-child(1) {
  top: 0;
  left: 0;
  width: 48%;
  height: 260px;
}

.about-collage img:nth-child(2) {
  top: 55px;
  right: 0;
  width: 46%;
  height: 310px;
}

.about-collage img:nth-child(3) {
  bottom: 0;
  left: 15%;
  width: 42%;
  height: 220px;
}

.about-copy h2 {
  max-width: 480px;
  margin-bottom: 24px;
}

.about-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* stats */

.stats {
  padding: 65px 0;
  background: var(--gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid #dedade;
  border-radius: 0;
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  color: var(--pink);
  font-size: 44px;
  letter-spacing: -.06em;
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 16px;
}

/* pricing – menu style */

.pricing {
  background: var(--pink-pale);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.pricing-copy h2 {
  max-width: 490px;
  margin-bottom: 20px;
}

.pricing-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-list li {
  color: #686168;
  font-size: 16px;
  margin: 14px 0;
}

.pricing-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: var(--pink);
  background: var(--pink-light);
  font-size: 14px;
  border-radius: 0;
}

.menu-pricing {
  background: white;
  border: 1px solid var(--border);
  padding: 24px 28px;
}

.menu-pricing .menu-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #ece8ec;
  font-size: 17px;
}

.menu-pricing .menu-item:last-child {
  border-bottom: 0;
}

.menu-pricing .menu-item .price {
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
}

.menu-pricing .menu-item .desc {
  color: var(--muted);
  font-size: 15px;
  display: block;
  margin-top: 4px;
}

/* team */

.team {
  background: white;
}

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

.team-card {
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  padding-bottom: 24px;
}

.team-image {
  overflow: hidden;
  height: 340px;
  margin-bottom: 18px;
}

.team-image img {
  height: 100%;
  transition: none;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-card p {
  color: var(--pink);
  font-size: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.social-links a {
  color: var(--muted);
  font-size: 20px;
  transition: color 0.25s;
}

.social-links a:hover {
  color: var(--pink);
}

/* testimonial */

.testimonial {
  background: var(--pink-pale);
}

.testimonial-box {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.quote-mark {
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 105px;
  line-height: .5;
}

.testimonial blockquote {
  color: #5f585f;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.45;
  letter-spacing: -.03em;
  margin: 25px auto 30px;
}

.client {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.client img {
  width: 56px;
  height: 56px;
  border-radius: 0;
}

.client-info {
  text-align: left;
}

.client-info strong {
  display: block;
  font-size: 18px;
}

.client-info span {
  color: var(--muted);
  font-size: 16px;
}

/* feature image */

.feature-image {
  position: relative;
  min-height: 510px;
  overflow: hidden;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25,18,23,.65), rgba(25,18,23,0));
}

.feature-image img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.feature-image-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 510px;
  color: white;
}

.feature-image-content h2 {
  max-width: 500px;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 20px;
}

.feature-image-content p {
  max-width: 420px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.8;
}

/* faq */

.faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.faq-image {
  position: relative;
}

.faq-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  right: -20px;
  top: -20px;
  background: var(--pink-light);
  border-radius: 0;
}

.faq-image img {
  height: 430px;
  border-radius: 0;
}

.faq-list {
  margin-top: 30px;
}

.faq .accordion {
  --bs-accordion-border-width: 0 0 1px 0;
  --bs-accordion-border-color: var(--border);
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 22px;
  --bs-accordion-btn-font-size: 18px;
  --bs-accordion-btn-font-weight: 700;
  --bs-accordion-btn-color: var(--dark);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-color: var(--dark);
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon-width: 1.1rem;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
  --bs-accordion-body-color: var(--muted);
  --bs-accordion-body-font-size: 16px;
}

.faq .accordion-button::after {
  background-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq .accordion-body {
  padding-bottom: 22px;
  line-height: 1.7;
}

/* news */

.news {
  background: var(--pink-pale);
}

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

.news-card {
  overflow: hidden;
  background: white;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
}

.news-card img {
  height: 220px;
  object-fit: cover;
}

.news-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-content small {
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.news-content h3 {
  font-size: 19px;
  line-height: 1.3;
  margin: 9px 0;
}

.news-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
}

/* booking */

.booking {
  background: white;
}

.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.booking-copy h2 {
  max-width: 480px;
  margin-bottom: 20px;
}

.booking-copy p {
  max-width: 450px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.booking-details {
  margin-top: 28px;
  background: var(--pink-pale);
  padding: 22px 26px;
  border-left: 4px solid var(--pink);
}

.booking-details p {
  margin: 8px 0;
  font-size: 17px;
}

.booking-details i {
  width: 28px;
  color: var(--pink);
  font-size: 18px;
}

.cal-embed {
  background: var(--pink-pale);
  padding: 20px 0;
  border: 1px solid var(--border);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}

.cal-embed iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

/* footer */

.footer {
  padding: 70px 0 25px;
  color: white;
  background: #29232a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer .logo {
  color: white;
  font-size: 24px;
}

.footer-description {
  max-width: 280px;
  color: #aaa3aa;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 18px;
}

.footer h3 {
  font-size: 17px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer li {
  color: #aaa3aa;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid #484149;
  color: #888188;
  font-size: 15px;
}

/* responsive adjustments */

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, var(--container));
  }
}

@media (max-width: 767.98px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    background: white;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 767.98px) {
  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 767.98px) {
  .nav-actions .nav-book {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }
}

/* ── compact nav for the 768–899px transition zone ── */

@media (min-width: 768px) and (max-width: 899px) {
  .logo {
    font-size: 18px;
    gap: 6px;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .logo-mark {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .nav-links {
    gap: 12px;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .nav-links a {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .nav-actions {
    gap: 8px;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .nav-book {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .pricing-grid, .faq-grid, .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding: 80px 0;
  }
}

@media (max-width: 900px) {
  .hero-visual, .hero-visual img {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .about-collage {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .service-card {
    flex-basis: calc(50% - 8px);
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-visual, .hero-visual img {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .feature-grid, .team-grid, .stats-grid, .news-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-header {
    display: block;
  }
}

@media (max-width: 600px) {
  .service-card {
    flex-basis: 85%;
  }
}

@media (max-width: 600px) {
  .about-collage {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(1) {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(2) {
    height: 210px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(3) {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .stat {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
}

@media (max-width: 600px) {
  .stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .news-card img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

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

:root {
  --pink: #d800a8;
  --pink-dark: #b5008d;
  --pink-light: #fae8f7;
  --pink-pale: #fff7fd;
  --dark: #262127;
  --muted: #8b858b;
  --gray: #f5f4f5;
  --border: #d0c8d0;
  --white: #ffffff;
  --container: 1180px;
  --radius: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

button, input, select, textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: none;
}

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

.section {
  padding: 100px 0;
}

.section-label {
  display: block;
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(42px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 530px;
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: white;
  background: var(--pink);
}

.btn-primary:hover {
  background: var(--pink-dark);
}

.btn-outline {
  border: 1px solid var(--pink);
  color: var(--pink);
  background: transparent;
}

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

/* header */

.site-header {
  position: relative;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid var(--border);
  background: white;
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--pink);
  font-size: 18px;
  border-radius: 0;
}

.logo span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #6f696f;
  font-size: 16px;
  font-weight: 700;
  transition: color .25s ease;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-book {
  padding: 12px 22px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 22px;
  border-radius: 0;
}

/* hero */

.hero {
  min-height: 620px;
  background: var(--pink-pale);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 70px 70px 0;
}

.hero-content h1 {
  max-width: 580px;
  font-size: clamp(64px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.08em;
  margin-bottom: 28px;
}

.hero-content h1 strong {
  color: var(--pink);
}

.hero-content p {
  max-width: 450px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-link {
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -30px;
  bottom: 50px;
  width: 90px;
  height: 90px;
  background: var(--pink);
  opacity: .9;
  border-radius: 0;
}

.hero-visual img {
  height: 100%;
  min-height: 620px;
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 35px;
  width: 210px;
  padding: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
  border-radius: 0;
}

.hero-floating-card strong {
  display: block;
  color: var(--pink);
  font-size: 28px;
  margin-bottom: 5px;
}

.hero-floating-card span {
  color: var(--muted);
  font-size: 16px;
}

/* experience features */

.experience {
  background: white;
}

.center-heading {
  text-align: center;
  margin-bottom: 55px;
}

.center-heading .section-description {
  margin: 18px auto 0;
}

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

.feature-card {
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  background: white;
  border-radius: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--pink);
  background: var(--pink-light);
  font-size: 26px;
  border-radius: 0;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* services */

.services {
  background: var(--pink-pale);
}

.services-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.services-header .section-description {
  margin-top: 17px;
}

.service-slider {
  position: relative;
}

.service-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  flex: 0 0 calc(25% - 12px);
  height: 320px;
  overflow: hidden;
  border-radius: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent 60%);
}

.service-card img {
  height: 100%;
  transition: none;
}

.service-card-content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: white;
}

.service-card-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.service-card-content span {
  font-size: 16px;
  opacity: .8;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 0;
  font-size: 20px;
  transition: background 0.25s, color 0.25s;
}

.slider-btn:hover {
  color: white;
  background: var(--pink);
}

/* about */

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 470px;
}

.about-collage img {
  position: absolute;
  border-radius: 0;
}

.about-collage img:nth-child(1) {
  top: 0;
  left: 0;
  width: 48%;
  height: 260px;
}

.about-collage img:nth-child(2) {
  top: 55px;
  right: 0;
  width: 46%;
  height: 310px;
}

.about-collage img:nth-child(3) {
  bottom: 0;
  left: 15%;
  width: 42%;
  height: 220px;
}

.about-copy h2 {
  max-width: 480px;
  margin-bottom: 24px;
}

.about-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* stats */

.stats {
  padding: 65px 0;
  background: var(--gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid #dedade;
  border-radius: 0;
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  color: var(--pink);
  font-size: 44px;
  letter-spacing: -.06em;
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 16px;
}

/* pricing – menu style */

.pricing {
  background: var(--pink-pale);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.pricing-copy h2 {
  max-width: 490px;
  margin-bottom: 20px;
}

.pricing-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-list li {
  color: #686168;
  font-size: 16px;
  margin: 14px 0;
}

.pricing-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: var(--pink);
  background: var(--pink-light);
  font-size: 14px;
  border-radius: 0;
}

.menu-pricing {
  background: white;
  border: 1px solid var(--border);
  padding: 24px 28px;
}

.menu-pricing .menu-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #ece8ec;
  font-size: 17px;
}

.menu-pricing .menu-item:last-child {
  border-bottom: 0;
}

.menu-pricing .menu-item .price {
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
}

.menu-pricing .menu-item .desc {
  color: var(--muted);
  font-size: 15px;
  display: block;
  margin-top: 4px;
}

/* team */

.team {
  background: white;
}

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

.team-card {
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  padding-bottom: 24px;
}

.team-image {
  overflow: hidden;
  height: 340px;
  margin-bottom: 18px;
}

.team-image img {
  height: 100%;
  transition: none;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-card p {
  color: var(--pink);
  font-size: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.social-links a {
  color: var(--muted);
  font-size: 20px;
  transition: color 0.25s;
}

.social-links a:hover {
  color: var(--pink);
}

/* testimonial */

.testimonial {
  background: var(--pink-pale);
}

.testimonial-box {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.quote-mark {
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 105px;
  line-height: .5;
}

.testimonial blockquote {
  color: #5f585f;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.45;
  letter-spacing: -.03em;
  margin: 25px auto 30px;
}

.client {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.client img {
  width: 56px;
  height: 56px;
  border-radius: 0;
}

.client-info {
  text-align: left;
}

.client-info strong {
  display: block;
  font-size: 18px;
}

.client-info span {
  color: var(--muted);
  font-size: 16px;
}

/* feature image */

.feature-image {
  position: relative;
  min-height: 510px;
  overflow: hidden;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25,18,23,.65), rgba(25,18,23,0));
}

.feature-image img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.feature-image-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 510px;
  color: white;
}

.feature-image-content h2 {
  max-width: 500px;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 20px;
}

.feature-image-content p {
  max-width: 420px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.8;
}

/* faq */

.faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.faq-image {
  position: relative;
}

.faq-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  right: -20px;
  top: -20px;
  background: var(--pink-light);
  border-radius: 0;
}

.faq-image img {
  height: 430px;
  border-radius: 0;
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 0;
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* news */

.news {
  background: var(--pink-pale);
}

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

.news-card {
  overflow: hidden;
  background: white;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
}

.news-card img {
  height: 220px;
  object-fit: cover;
}

.news-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-content small {
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.news-content h3 {
  font-size: 19px;
  line-height: 1.3;
  margin: 9px 0;
}

.news-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
}

/* booking */

.booking {
  background: white;
}

.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.booking-copy h2 {
  max-width: 480px;
  margin-bottom: 20px;
}

.booking-copy p {
  max-width: 450px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.booking-details {
  margin-top: 28px;
  background: var(--pink-pale);
  padding: 22px 26px;
  border-left: 4px solid var(--pink);
}

.booking-details p {
  margin: 8px 0;
  font-size: 17px;
}

.booking-details i {
  width: 28px;
  color: var(--pink);
  font-size: 18px;
}

.cal-embed {
  background: var(--pink-pale);
  padding: 20px 0;
  border: 1px solid var(--border);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}

.cal-embed iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

/* footer */

.footer {
  padding: 70px 0 25px;
  color: white;
  background: #29232a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer .logo {
  color: white;
  font-size: 24px;
}

.footer-description {
  max-width: 280px;
  color: #aaa3aa;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 18px;
}

.footer h3 {
  font-size: 17px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer li {
  color: #aaa3aa;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid #484149;
  color: #888188;
  font-size: 15px;
}

/* responsive adjustments */

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, var(--container));
  }
}

@media (max-width: 767.98px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    background: white;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 767.98px) {
  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 767.98px) {
  .nav-actions .nav-book {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }
}

/* ── compact nav for MD (768–991px) ── */

@media (min-width: 768px) and (max-width: 991.98px) {
  .logo {
    font-size: 20px;
    gap: 6px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .nav-links {
    gap: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .nav-links a {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .nav-actions {
    gap: 8px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .nav-book {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .pricing-grid, .faq-grid, .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding: 80px 0;
  }
}

@media (max-width: 900px) {
  .hero-visual, .hero-visual img {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .about-collage {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .service-card {
    flex-basis: calc(50% - 8px);
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-visual, .hero-visual img {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .feature-grid, .team-grid, .stats-grid, .news-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-header {
    display: block;
  }
}

@media (max-width: 600px) {
  .service-card {
    flex-basis: 85%;
  }
}

@media (max-width: 600px) {
  .about-collage {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(1) {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(2) {
    height: 210px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(3) {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .stat {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
}

@media (max-width: 600px) {
  .stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .news-card img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

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

:root {
  --pink: #d800a8;
  --pink-dark: #b5008d;
  --pink-light: #fae8f7;
  --pink-pale: #fff7fd;
  --dark: #262127;
  --muted: #8b858b;
  --gray: #f5f4f5;
  --border: #d0c8d0;
  --white: #ffffff;
  --container: 1180px;
  --radius: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

button, input, select, textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: none;
}

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

.section {
  padding: 100px 0;
}

.section-label {
  display: block;
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(42px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 530px;
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: white;
  background: var(--pink);
}

.btn-primary:hover {
  background: var(--pink-dark);
}

.btn-outline {
  border: 1px solid var(--pink);
  color: var(--pink);
  background: transparent;
}

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

/* header */

.site-header {
  position: relative;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid var(--border);
  background: white;
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--pink);
  font-size: 18px;
  border-radius: 0;
}

.logo span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #6f696f;
  font-size: 16px;
  font-weight: 700;
  transition: color .25s ease;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-book {
  padding: 12px 22px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 22px;
  border-radius: 0;
}

/* hero */

.hero {
  min-height: 620px;
  background: var(--pink-pale);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 70px 70px 0;
}

.hero-content h1 {
  max-width: 580px;
  font-size: clamp(64px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.08em;
  margin-bottom: 28px;
}

.hero-content h1 strong {
  color: var(--pink);
}

.hero-content p {
  max-width: 450px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-link {
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -30px;
  bottom: 50px;
  width: 90px;
  height: 90px;
  background: var(--pink);
  opacity: .9;
  border-radius: 0;
}

.hero-visual img {
  height: 100%;
  min-height: 620px;
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 35px;
  width: 210px;
  padding: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
  border-radius: 0;
}

.hero-floating-card strong {
  display: block;
  color: var(--pink);
  font-size: 28px;
  margin-bottom: 5px;
}

.hero-floating-card span {
  color: var(--muted);
  font-size: 16px;
}

/* experience features */

.experience {
  background: white;
}

.center-heading {
  text-align: center;
  margin-bottom: 55px;
}

.center-heading .section-description {
  margin: 18px auto 0;
}

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

.feature-card {
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  background: white;
  border-radius: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--pink);
  background: var(--pink-light);
  font-size: 26px;
  border-radius: 0;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* services */

.services {
  background: var(--pink-pale);
}

.services-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.services-header .section-description {
  margin-top: 17px;
}

.service-slider {
  position: relative;
}

.service-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  flex: 0 0 calc(25% - 12px);
  height: 320px;
  overflow: hidden;
  border-radius: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent 60%);
}

.service-card img {
  height: 100%;
  transition: none;
}

.service-card-content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: white;
}

.service-card-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.service-card-content span {
  font-size: 16px;
  opacity: .8;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 0;
  font-size: 20px;
  transition: background 0.25s, color 0.25s;
}

.slider-btn:hover {
  color: white;
  background: var(--pink);
}

/* about */

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 470px;
}

.about-collage img {
  position: absolute;
  border-radius: 0;
}

.about-collage img:nth-child(1) {
  top: 0;
  left: 0;
  width: 48%;
  height: 260px;
}

.about-collage img:nth-child(2) {
  top: 55px;
  right: 0;
  width: 46%;
  height: 310px;
}

.about-collage img:nth-child(3) {
  bottom: 0;
  left: 15%;
  width: 42%;
  height: 220px;
}

.about-copy h2 {
  max-width: 480px;
  margin-bottom: 24px;
}

.about-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* stats */

.stats {
  padding: 65px 0;
  background: var(--gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid #dedade;
  border-radius: 0;
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  color: var(--pink);
  font-size: 44px;
  letter-spacing: -.06em;
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 16px;
}

/* pricing – menu style */

.pricing {
  background: var(--pink-pale);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.pricing-copy h2 {
  max-width: 490px;
  margin-bottom: 20px;
}

.pricing-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-list li {
  color: #686168;
  font-size: 16px;
  margin: 14px 0;
}

.pricing-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: var(--pink);
  background: var(--pink-light);
  font-size: 14px;
  border-radius: 0;
}

.menu-pricing {
  background: white;
  border: 1px solid var(--border);
  padding: 24px 28px;
}

.menu-pricing .menu-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #ece8ec;
  font-size: 17px;
}

.menu-pricing .menu-item:last-child {
  border-bottom: 0;
}

.menu-pricing .menu-item .price {
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
}

.menu-pricing .menu-item .desc {
  color: var(--muted);
  font-size: 15px;
  display: block;
  margin-top: 4px;
}

/* team */

.team {
  background: white;
}

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

.team-card {
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  padding-bottom: 24px;
}

.team-image {
  overflow: hidden;
  height: 340px;
  margin-bottom: 18px;
}

.team-image img {
  height: 100%;
  transition: none;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-card p {
  color: var(--pink);
  font-size: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.social-links a {
  color: var(--muted);
  font-size: 20px;
  transition: color 0.25s;
}

.social-links a:hover {
  color: var(--pink);
}

/* testimonial */

.testimonial {
  background: var(--pink-pale);
}

.testimonial-box {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.quote-mark {
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 105px;
  line-height: .5;
}

.testimonial blockquote {
  color: #5f585f;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.45;
  letter-spacing: -.03em;
  margin: 25px auto 30px;
}

.client {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.client img {
  width: 56px;
  height: 56px;
  border-radius: 0;
}

.client-info {
  text-align: left;
}

.client-info strong {
  display: block;
  font-size: 18px;
}

.client-info span {
  color: var(--muted);
  font-size: 16px;
}

/* feature image */

.feature-image {
  position: relative;
  min-height: 510px;
  overflow: hidden;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25,18,23,.65), rgba(25,18,23,0));
}

.feature-image img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.feature-image-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 510px;
  color: white;
}

.feature-image-content h2 {
  max-width: 500px;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 20px;
}

.feature-image-content p {
  max-width: 420px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.8;
}

/* faq */

.faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.faq-image {
  position: relative;
}

.faq-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  right: -20px;
  top: -20px;
  background: var(--pink-light);
  border-radius: 0;
}

.faq-image img {
  height: 430px;
  border-radius: 0;
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 0;
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* news */

.news {
  background: var(--pink-pale);
}

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

.news-card {
  overflow: hidden;
  background: white;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
}

.news-card img {
  height: 220px;
  object-fit: cover;
}

.news-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-content small {
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.news-content h3 {
  font-size: 19px;
  line-height: 1.3;
  margin: 9px 0;
}

.news-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
}

/* booking */

.booking {
  background: white;
}

.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.booking-copy h2 {
  max-width: 480px;
  margin-bottom: 20px;
}

.booking-copy p {
  max-width: 450px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.booking-details {
  margin-top: 28px;
  background: var(--pink-pale);
  padding: 22px 26px;
  border-left: 4px solid var(--pink);
}

.booking-details p {
  margin: 8px 0;
  font-size: 17px;
}

.booking-details i {
  width: 28px;
  color: var(--pink);
  font-size: 18px;
}

.cal-embed {
  background: var(--pink-pale);
  padding: 20px 0;
  border: 1px solid var(--border);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}

.cal-embed iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

/* footer */

.footer {
  padding: 70px 0 25px;
  color: white;
  background: #29232a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer .logo {
  color: white;
  font-size: 24px;
}

.footer-description {
  max-width: 280px;
  color: #aaa3aa;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 18px;
}

.footer h3 {
  font-size: 17px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer li {
  color: #aaa3aa;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid #484149;
  color: #888188;
  font-size: 15px;
}

/* responsive adjustments */

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, var(--container));
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    background: white;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 900px) {
  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 900px) {
  .nav-actions .nav-book {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .pricing-grid, .faq-grid, .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding: 80px 0;
  }
}

@media (max-width: 900px) {
  .hero-visual, .hero-visual img {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .about-collage {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .service-card {
    flex-basis: calc(50% - 8px);
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-visual, .hero-visual img {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .feature-grid, .team-grid, .stats-grid, .news-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-header {
    display: block;
  }
}

@media (max-width: 600px) {
  .service-card {
    flex-basis: 85%;
  }
}

@media (max-width: 600px) {
  .about-collage {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(1) {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(2) {
    height: 210px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(3) {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .stat {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
}

@media (max-width: 600px) {
  .stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .news-card img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

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

:root {
  --pink: #d800a8;
  --pink-dark: #b5008d;
  --pink-light: #fae8f7;
  --pink-pale: #fff7fd;
  --dark: #262127;
  --muted: #8b858b;
  --gray: #f5f4f5;
  --border: #d0c8d0;
  --white: #ffffff;
  --container: 1180px;
  --radius: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

button, input, select, textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: none;
}

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

.section {
  padding: 100px 0;
}

.section-label {
  display: block;
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(42px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 530px;
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: white;
  background: var(--pink);
}

.btn-primary:hover {
  background: var(--pink-dark);
}

.btn-outline {
  border: 1px solid var(--pink);
  color: var(--pink);
  background: transparent;
}

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

/* header */

.site-header {
  position: relative;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid var(--border);
  background: white;
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--pink);
  font-size: 18px;
  border-radius: 0;
}

.logo span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #6f696f;
  font-size: 16px;
  font-weight: 700;
  transition: color .25s ease;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-book {
  padding: 12px 22px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 22px;
  border-radius: 0;
}

/* hero */

.hero {
  min-height: 620px;
  background: var(--pink-pale);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 70px 70px 0;
}

.hero-content h1 {
  max-width: 580px;
  font-size: clamp(64px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.08em;
  margin-bottom: 28px;
}

.hero-content h1 strong {
  color: var(--pink);
}

.hero-content p {
  max-width: 450px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-link {
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -30px;
  bottom: 50px;
  width: 90px;
  height: 90px;
  background: var(--pink);
  opacity: .9;
  border-radius: 0;
}

.hero-visual img {
  height: 100%;
  min-height: 620px;
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 35px;
  width: 210px;
  padding: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
  border-radius: 0;
}

.hero-floating-card strong {
  display: block;
  color: var(--pink);
  font-size: 28px;
  margin-bottom: 5px;
}

.hero-floating-card span {
  color: var(--muted);
  font-size: 16px;
}

/* experience features */

.experience {
  background: white;
}

.center-heading {
  text-align: center;
  margin-bottom: 55px;
}

.center-heading .section-description {
  margin: 18px auto 0;
}

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

.feature-card {
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  background: white;
  border-radius: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--pink);
  background: var(--pink-light);
  font-size: 26px;
  border-radius: 0;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* services */

.services {
  background: var(--pink-pale);
}

.services-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.services-header .section-description {
  margin-top: 17px;
}

.service-slider {
  position: relative;
}

.service-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  flex: 0 0 calc(25% - 12px);
  height: 320px;
  overflow: hidden;
  border-radius: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent 60%);
}

.service-card img {
  height: 100%;
  transition: none;
}

.service-card-content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: white;
}

.service-card-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.service-card-content span {
  font-size: 16px;
  opacity: .8;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 0;
  font-size: 20px;
  transition: background 0.25s, color 0.25s;
}

.slider-btn:hover {
  color: white;
  background: var(--pink);
}

/* about */

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 470px;
}

.about-collage img {
  position: absolute;
  border-radius: 0;
}

.about-collage img:nth-child(1) {
  top: 0;
  left: 0;
  width: 48%;
  height: 260px;
}

.about-collage img:nth-child(2) {
  top: 55px;
  right: 0;
  width: 46%;
  height: 310px;
}

.about-collage img:nth-child(3) {
  bottom: 0;
  left: 15%;
  width: 42%;
  height: 220px;
}

.about-copy h2 {
  max-width: 480px;
  margin-bottom: 24px;
}

.about-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* stats */

.stats {
  padding: 65px 0;
  background: var(--gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid #dedade;
  border-radius: 0;
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  color: var(--pink);
  font-size: 44px;
  letter-spacing: -.06em;
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 16px;
}

/* pricing – menu style */

.pricing {
  background: var(--pink-pale);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.pricing-copy h2 {
  max-width: 490px;
  margin-bottom: 20px;
}

.pricing-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-list li {
  color: #686168;
  font-size: 16px;
  margin: 14px 0;
}

.pricing-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: var(--pink);
  background: var(--pink-light);
  font-size: 14px;
  border-radius: 0;
}

.menu-pricing {
  background: white;
  border: 1px solid var(--border);
  padding: 24px 28px;
}

.menu-pricing .menu-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #ece8ec;
  font-size: 17px;
}

.menu-pricing .menu-item:last-child {
  border-bottom: 0;
}

.menu-pricing .menu-item .price {
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
}

.menu-pricing .menu-item .desc {
  color: var(--muted);
  font-size: 15px;
  display: block;
  margin-top: 4px;
}

/* team */

.team {
  background: white;
}

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

.team-card {
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  padding-bottom: 24px;
}

.team-image {
  overflow: hidden;
  height: 340px;
  margin-bottom: 18px;
}

.team-image img {
  height: 100%;
  transition: none;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-card p {
  color: var(--pink);
  font-size: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.social-links a {
  color: var(--muted);
  font-size: 20px;
  transition: color 0.25s;
}

.social-links a:hover {
  color: var(--pink);
}

/* testimonial */

.testimonial {
  background: var(--pink-pale);
}

.testimonial-box {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.quote-mark {
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 105px;
  line-height: .5;
}

.testimonial blockquote {
  color: #5f585f;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.45;
  letter-spacing: -.03em;
  margin: 25px auto 30px;
}

.client {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.client img {
  width: 56px;
  height: 56px;
  border-radius: 0;
}

.client-info {
  text-align: left;
}

.client-info strong {
  display: block;
  font-size: 18px;
}

.client-info span {
  color: var(--muted);
  font-size: 16px;
}

/* feature image */

.feature-image {
  position: relative;
  min-height: 510px;
  overflow: hidden;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25,18,23,.65), rgba(25,18,23,0));
}

.feature-image img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.feature-image-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 510px;
  color: white;
}

.feature-image-content h2 {
  max-width: 500px;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 20px;
}

.feature-image-content p {
  max-width: 420px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.8;
}

/* faq */

.faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.faq-image {
  position: relative;
}

.faq-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  right: -20px;
  top: -20px;
  background: var(--pink-light);
  border-radius: 0;
}

.faq-image img {
  height: 430px;
  border-radius: 0;
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 0;
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* news */

.news {
  background: var(--pink-pale);
}

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

.news-card {
  overflow: hidden;
  background: white;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
}

.news-card img {
  height: 220px;
  object-fit: cover;
}

.news-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-content small {
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.news-content h3 {
  font-size: 19px;
  line-height: 1.3;
  margin: 9px 0;
}

.news-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
}

/* booking */

.booking {
  background: white;
}

.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.booking-copy h2 {
  max-width: 480px;
  margin-bottom: 20px;
}

.booking-copy p {
  max-width: 450px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.booking-details {
  margin-top: 28px;
  background: var(--pink-pale);
  padding: 22px 26px;
  border-left: 4px solid var(--pink);
}

.booking-details p {
  margin: 8px 0;
  font-size: 17px;
}

.booking-details i {
  width: 28px;
  color: var(--pink);
  font-size: 18px;
}

.cal-embed {
  background: var(--pink-pale);
  padding: 20px 0;
  border: 1px solid var(--border);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}

.cal-embed iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

/* footer */

.footer {
  padding: 70px 0 25px;
  color: white;
  background: #29232a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer .logo {
  color: white;
  font-size: 24px;
}

.footer-description {
  max-width: 280px;
  color: #aaa3aa;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 18px;
}

.footer h3 {
  font-size: 17px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer li {
  color: #aaa3aa;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid #484149;
  color: #888188;
  font-size: 15px;
}

/* responsive adjustments */

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, var(--container));
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    background: white;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 900px) {
  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 900px) {
  .nav-actions .nav-book {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .pricing-grid, .faq-grid, .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding: 80px 0;
  }
}

@media (max-width: 900px) {
  .hero-visual, .hero-visual img {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .about-collage {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .service-card {
    flex-basis: calc(50% - 8px);
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-visual, .hero-visual img {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .feature-grid, .team-grid, .stats-grid, .news-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-header {
    display: block;
  }
}

@media (max-width: 600px) {
  .service-card {
    flex-basis: 85%;
  }
}

@media (max-width: 600px) {
  .about-collage {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(1) {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(2) {
    height: 210px;
  }
}

@media (max-width: 600px) {
  .about-collage img:nth-child(3) {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .stat {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
}

@media (max-width: 600px) {
  .stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .news-card img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

