﻿:root {
  --bg-shell: #ffffff;
  --header-glass: rgba(230 , 130, 175, 0.28);
  --teal: #b22b6e;
  --teal-dark: #b22b6e;
  --text-hero: #fff;
  --font-ui: "Baskervville", serif;
  --font-menu: "Manrope", sans-serif;
  --font-display: "Baskervville", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-shell);
  font-family: var(--font-ui);
  color: #fff;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  margin: 0.75rem;
  border-radius: 2.25rem;
  overflow: visible;
  /* background-image: linear-gradient(to right, rgba(235, 225, 229, 0.72) 20%, rgba(230 , 130, 175, 0.22) 65%), url('/assets/images/banner_home.png'); */
  background-image: url('/assets/images/banner_home.png');
  background-size: cover;
  background-position: center;
}

.hero-header {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: var(--header-glass);
  backdrop-filter: blur(8px);
}

.brand-mark {
  min-width: 130px;
  display: inline-flex;
  align-items: center;
}

.brand-mark img {
  display: block;
  width: 110px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex: 1;
}

.site-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.92;
  font-family: var(--font-menu);
}

.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-actions a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  font-family: var(--font-menu);
}

.btn-call,
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.2rem;
  background: var(--teal);
}

.btn-call span,
.btn-book span,
.hero-cta span {
  display: inline-flex;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-dark);
}

.icon {
  font-family: "Material Icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}



.icon-arrow::before {
  content: "\e5c8";
}

.icon-phone::before {
  content: "\e0b0";
}

.icon-pin::before {
  content: "\e55f";
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  margin-left: auto;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}



.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 1rem 4rem;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-hero);
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.1;
  width: min(1600px, 92%);
}

.hero-content h1 em {
  font-style: italic;
}

.hero-content h1 strong {
  font-weight: 600;
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 span:nth-child(1) {
  text-align: left;
  padding-left: 6%;
}

.hero-content h1 span:nth-child(2) {
  text-align: right;
  /* padding-right: 24%; */
  margin-top: 0.7rem;
}

.hero-content h1 span:nth-child(3) {
  text-align: center;
  padding-left: 14%;
  margin-top: 0.7rem;
}

.hero-content p {
  margin: 1.5rem 0 2rem;
  letter-spacing: 0.26em;
  font-size: clamp(0.65rem, 1.2vw, 0.86rem);
  font-weight: 700;
  font-family: var(--font-menu);
}

.hero-cta {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-menu);
  padding: 0.62rem 0.7rem 0.62rem 1.8rem;
  border-radius: 999px;
  border: 7px solid rgba(231, 242, 241, 0.95);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(22, 74, 82, 0.28);
  min-width: 176px;
  justify-content: space-between;
}

.hero-cta-floating {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 60;
}

.home-about {
  margin: 5.5rem auto 1.5rem;
  max-width: 1200px;
  padding: 3.2rem 2.2rem;
  border-radius: 2rem;
  background: #fef5f9;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 430px);
  gap: 2.5rem;
  align-items: center;
  color: #443d57;
}

.about-content {
  max-width: 760px;
}

.about-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-menu);
  letter-spacing: 0.26em;
  font-size: 0.74rem;
  color: #4a4b56;
}

.about-content h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  font-weight: 400;
  color: #3e3653;
}

.about-content p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.45;
  color: #565468;
}

.about-cta {
  margin-top: 0.7rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-family: var(--font-menu);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  padding: 0.62rem 0.68rem 0.62rem 1.45rem;
  border-radius: 999px;
  border: 6px solid rgba(231, 242, 241, 0.95);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(22, 74, 82, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(22, 74, 82, 0.28);
}

.about-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 1.7rem;
  object-fit: cover;
  min-height: 520px;
}

.home-services {
  margin: 1.6rem auto 2.2rem;
  max-width: 1200px;
  padding: 2rem 1.2rem 2.4rem;
  border-radius: 1.6rem;
  background: #fef5f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-card {
  border-radius: 1.55rem;
  padding: 1.35rem;
  border: 1px solid rgba(152, 203, 212, 0.52);
  background: rgba(236, 245, 247, 0.7);
  color: #443d57;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 32px rgba(56, 88, 99, 0.2);
  border-color: rgba(70, 155, 171, 0.5);
}

.service-kicker {
  margin: 0 0 0.9rem;
  font-family: var(--font-menu);
  letter-spacing: 0.3em;
  font-size: 0.74rem;
  color: #1e7384;
}

.service-card h3 {
  margin: 0 0 1.25rem;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.08;
}

.service-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 1.35rem;
  display: block;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.services-link {
  margin: 1.55rem auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--font-menu);
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  padding: 0.72rem 0.75rem 0.72rem 1.3rem;
  border: 6px solid rgba(231, 242, 241, 0.95);
  box-shadow: 0 10px 24px rgba(22, 74, 82, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(22, 74, 82, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .reveal-child:nth-child(1) { transition-delay: 0.08s; }
.reveal.is-visible .reveal-child:nth-child(2) { transition-delay: 0.18s; }
.reveal.is-visible .reveal-child:nth-child(3) { transition-delay: 0.28s; }
.reveal.is-visible .reveal-child:nth-child(4) { transition-delay: 0.38s; }

.home-booking-steps {
  margin: 1.6rem auto 2.8rem;
  max-width: 1200px;
  padding: 2.4rem 1.4rem 2rem;
  border-radius: 1.4rem;
  background: #f5f5f5;
  color: #2f2744;
  text-align: center;
}

.steps-title {
  margin: 0 0 1.4rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
}

.steps-title em {
  font-style: italic;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0.7rem;
}

.step-item {
  padding: 0.5rem 1.25rem 0.6rem;
}

.step-item:not(:last-child) {
  border-right: 1px solid rgba(64, 63, 79, 0.16);
}

.step-number {
  display: inline-block;
  margin-bottom: 0.95rem;
  font-family: var(--font-menu);
  font-size: 1rem;
  color: #282538;
}

.step-item h3 {
  margin: 0 0 0.65rem;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.12;
}

.step-item p {
  margin: 0;
  font-family: var(--font-menu);
  font-size: 0.9rem;
  line-height: 1.45;
  color: #2e2f3f;
}

.steps-cta {
  margin: 1.6rem auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--font-menu);
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  border: 6px solid rgba(231, 242, 241, 0.95);
  box-shadow: 0 10px 24px rgba(22, 74, 82, 0.24);
  padding: 0.72rem 0.75rem 0.72rem 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.steps-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(22, 74, 82, 0.3);
}

.home-video-cta {
  margin: 1.6rem auto 2.8rem;
  max-width: 1900px;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #f5f5f5;
  color: #3b2d55;
}

.video-shell {
  position: relative;
  min-height: 540px;
}

.video-frame-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-frame-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.video-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, #f5f5f5 95%);
}

.video-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: -18px auto 0;
  padding: 0 1rem 2.3rem;
}

.video-cta-content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.06;
}

.video-cta-content p {
  margin: 0.7rem 0 1.3rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: #4e4463;
}

.video-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-menu);
}

.video-phone,
.video-book {
  text-decoration: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.video-phone {
  color: var(--teal);
  background: #ececec;
  padding: 0.52rem 0.95rem 0.52rem 0.5rem;
}

.video-book {
  color: #fff;
  background: var(--teal);
  padding: 0.52rem 0.55rem 0.52rem 0.98rem;
}

.video-or {
  font-family: var(--font-menu);
  font-size: 0.83rem;
  font-weight: 700;
  color: #2f2a3d;
}

.site-footer {
  margin: 0 auto;
  max-width: 1900px;
  border-radius: 1.4rem 1.4rem 0 0;
  overflow: hidden;
  background: linear-gradient(90deg, #f8f8f8 40%, #fcecf3 100%);
  color: #3a324a;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.6rem 1.4rem 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 2rem;
}

.footer-left h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.7vw, 4.2rem);
  line-height: 1.02;
  color: #3b2d55;
  font-weight: 400;
}

.footer-left p {
  margin: 1.6rem 0 0;
  max-width: 580px;
  font-family: var(--font-menu);
  font-size: 0.96rem;
  line-height: 1.55;
  color: #3f3f50;
}

.footer-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-book,
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-menu);
  font-weight: 700;
}

.footer-book {
  color: #fff;
  background: var(--teal);
  padding: 0.62rem 0.7rem 0.62rem 1.35rem;
}

.footer-phone {
  color: var(--teal);
  background: #ededed;
  padding: 0.62rem 1rem 0.62rem 0.5rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 2rem;
}

.footer-contact p {
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-menu);
  color: #454559;
}

.footer-hours {
  margin-top: 0.2rem;
  padding-left: 1.7rem;
}

.footer-hours p {
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
  color: #3f3f50;
}

.footer-links {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.2rem;
}

.footer-links a {
  text-decoration: none;
  font-family: var(--font-menu);
  font-weight: 600;
  color: #4a4a5b;
}

.footer-map {
  margin-top: 1rem;
  border-radius: 0.9rem;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  min-height: 240px;
  display: block;
}

.footer-bottom {
  background: #424242;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: calc(100% - 3rem);
  max-width: 1860px;
  margin: 0 auto;
  border-radius: 1.1rem 1.1rem 0 0;
  padding: 1rem 1.6rem;
}

.footer-bottom p {
  margin: 0;
  font-family: var(--font-menu);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social a,
.footer-legal a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-menu);
  font-weight: 600;
}

.footer-social a {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.footer-social a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover img {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-legal {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about-hero-wrap {
  position: relative;
  margin: 0.75rem;
  padding: 8.6rem 1rem 2rem;
  border-radius: 2rem;
  background: #f5f4f1;
}

.about-hero-title {
  text-align: center;
}

.about-hero-title h1 {
  margin: 0;
  color: #3b2f50;
  font-size: clamp(2.7rem, 5.8vw, 4.7rem);
  font-weight: 400;
}

.about-story-section {
  max-width: 1200px;
  margin: 1.8rem auto 2.4rem;
  padding: 0 1.1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 430px);
  gap: 2.2rem;
  align-items: start;
  background: #fef5f9;
}

.about-story-content {
  padding-top: 1.8rem;
  color: #3b2f50;
}

.about-story-kicker {
  margin: 0 0 0.7rem;
  font-family: var(--font-menu);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: #4a4560;
}

.about-story-content h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
}

.about-story-content p {
  margin: 0 0 1.4rem;
  font-family: var(--font-menu);
  font-size: 1rem;
  line-height: 1.55;
  color: #2f2f3d;
  max-width: 560px;
}

.about-story-content hr {
  border: 0;
  border-top: 1px solid rgba(67, 66, 79, 0.15);
  margin: 0;
  max-width: 560px;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 1.3rem;
  display: block;
}

.about-story-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  border-radius: 0 0 1.3rem 1.3rem;
  background: linear-gradient(to bottom, rgba(218, 233, 227, 0), rgba(218, 233, 227, 0.95));
  pointer-events: none;
}

.about-story-cta {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--font-menu);
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  border: 5px solid rgba(231, 242, 241, 0.95);
  padding: 0.52rem 0.58rem 0.52rem 1rem;
}

.about-values-section {
  max-width: 1200px;
  margin: 0 auto 2.7rem;
  padding: 0 1.1rem;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: start;
}

.about-values-media {
  position: relative;
}

.about-values-sticky {
  position: sticky;
  top: 6.8rem;
}

.about-values-sticky img {
  width: 100%;
  display: block;
  min-height: 560px;
  object-fit: cover;
  border-radius: 1.3rem;
}

.about-values-content {
  color: #3b2f50;
}

.about-values-block {
  padding: 0.2rem 0 2rem;
  border-bottom: 1px solid rgba(67, 66, 79, 0.15);
}

.about-values-block + .about-values-block {
  margin-top: 1.5rem;
}

.about-values-block h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  font-weight: 400;
  line-height: 1.08;
}

.about-values-block p {
  margin: 0;
  font-family: var(--font-menu);
  font-size: 1rem;
  line-height: 1.55;
  color: #2f2f3d;
  max-width: 620px;
}

.about-promo-banner {
  max-width: 1900px;
  margin: 0 auto 2.3rem;
  padding: 0 1.1rem;
}

.about-promo-inner {
  position: relative;
  min-height: 440px;
  border-radius: 1.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1.5rem 2.8rem 15%;
  /* background-image:
    linear-gradient(to bottom, rgba(239, 248, 255, 0.45) 0%, rgba(240, 244, 243, 0.72) 56%, rgba(240, 244, 243, 0.95) 100%),
    url('/assets/images/about/about-3.jpg'); */
    background-image: url('/assets/images/about/about-3.jpg');
  background-size: cover;
  background-position: center;
}

.about-promo-inner h2 {
  margin: 0 0 2rem;
  color: #3b2f50;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
}

.about-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--font-menu);
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  border: 5px solid rgba(231, 242, 241, 0.95);
  border-radius: 999px;
  padding: 0.52rem 0.58rem 0.52rem 1rem;
}

.gallery-grid-section {
  max-width: 1320px;
  margin: 1.2rem auto 2.6rem;
  padding: 0 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.8rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover img {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(50, 67, 80, 0.22);
}

.services-page-grid {
  max-width: 1320px;
  margin: 1.2rem auto 2.7rem;
  padding: 0 1.1rem;
  column-count: 2;
  column-gap: 1.6rem;
}

.service-menu-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.6rem;
  break-inside: avoid;
  background: #f4f7f7;
  border: 1px solid rgba(155, 203, 211, 0.4);
  border-radius: 1.2rem;
  padding: 1.15rem;
  color: #22404a;
}

.service-menu-card h2 {
  margin: 0 0 0.95rem;
  color: #1f3f49;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 600;
}

.service-chip {
  margin: 1rem 0 0.8rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-menu);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.service-line {
  background: #f8fbfb;
  border: 1px solid rgba(169, 209, 215, 0.45);
  border-radius: 1rem;
  padding: 1.05rem 0.9rem;
  margin-bottom: 0.75rem;
}

.service-line-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.service-line h4 {
  margin: 0;
  color: #23424d;
  font-size: 1.15rem;
}

.service-line p {
  margin: 0.62rem 0 0;
  color: #5a6c73;
  font-family: var(--font-menu);
  font-size: 0.95rem;
  line-height: 1.45;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-width: 74px;
  height: 38px;
  padding: 0 0.85rem;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-menu);
  font-weight: 700;
  white-space: nowrap;
}

.service-submenu {
  margin-bottom: 1.3rem;
}

.service-submenu-banner {
  min-height: 240px;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  padding: 1rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  background: rgba(246, 250, 251, 0.95);
  color: #2b4a55;
  padding: 0.46rem 0.9rem;
  font-family: var(--font-menu);
  font-weight: 700;
}



.service-mini-line {
  background: #f8fbfb;
  border: 1px solid rgba(169, 209, 215, 0.45);
  border-radius: 1rem;
  padding: 0.95rem 0.85rem;
  margin-bottom: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-mini-line span:first-child {
  color: #23424d;
  font-size: 1rem;
  font-weight: 600;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-menu-intro {
  margin: -0.2rem 0 1rem;
  color: #5d7279;
  font-family: var(--font-menu);
  font-size: 1rem;
  line-height: 1.5;
}

.service-menu-intro-strong {
  color: #22404a;
  font-weight: 700;
}

.contact-panel {
  max-width: 1320px;
  margin: 1.4rem auto 2.8rem;
  padding: 2.2rem;
  border-radius: 1.6rem;
  background: #f2f2f2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.95fr);
  gap: 2.4rem;
  align-items: start;
}

.contact-map-wrap iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 0.4rem;
  display: block;
}

.contact-info {
  color: #2f2744;
}

.contact-info h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 400;
}

.contact-info h2 em {
  font-style: italic;
}

.contact-info hr {
  border: 0;
  border-top: 1px solid rgba(48, 43, 67, 0.14);
  margin: 0 0 2rem;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 1.8rem;
  margin-bottom: 1.7rem;
}

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #2f2744;
  font-family: var(--font-menu);
  font-size: 1.05rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(47, 39, 68, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #49415c;
}

.contact-info h3 {
  margin: 0 0 1rem;
  font-family: var(--font-menu);
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  color: #222;
}

.hours-list {
  display: grid;
  gap: 0.85rem;
}

.hours-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-menu);
  color: #2f2f3d;
  font-size: 1.03rem;
}

.hours-row .line {
  height: 1px;
  background: var(--teal);
}

.contact-direction-btn {
  margin-top: 1.8rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-menu);
  font-weight: 700;
  padding: 0.72rem 0.72rem 0.72rem 1.5rem;
}

.contact-direction-btn .round-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #d8e7ea;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .contact-map-wrap iframe {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .contact-panel {
    margin-top: 0.8rem;
    padding: 1rem;
    border-radius: 1rem;
  }

  .contact-map-wrap iframe {
    min-height: 300px;
    border-radius: 0.8rem;
  }

  .contact-info h3 {
    font-size: 2.4rem;
  }

  .hours-row {
    gap: 0.7rem;
    font-size: 0.95rem;
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 22, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.gallery-lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  border-radius: 0.6rem;
  object-fit: contain;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.lightbox-close {
  top: 1.05rem;
  right: 1.05rem;
}

.lightbox-nav.prev {
  left: 1.05rem;
}

.lightbox-nav.next {
  right: 1.05rem;
}

@media (min-width: 1025px) {
  .hero-header {
    position: fixed;
    top: 1rem;
  }
}

@media (max-width: 1024px) {
  .home-hero {
    min-height: 50vh;
    border-radius: 1.5rem;
  }
.hero-content{
    min-height: 50vh;

}
  .hero-header {
    border-radius: 1.2rem;
    padding: 0.9rem;
    flex-wrap: wrap;
  }

  .site-nav {
    gap: 0.8rem;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .header-actions a {
    padding: 0.62rem 0.9rem;
  }

  .hero-content h1 span:nth-child(1) {
    padding-left: 0;
    text-align: center;
  }

  .hero-content h1 span:nth-child(2) {
    padding-right: 0;
    text-align: center;
  }

  .hero-content h1 span:nth-child(3) {
    padding-left: 0;
    text-align: center;
  }

  .home-about {
    margin-top: 4.5rem;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 2.2rem 1.4rem;
  }

  .about-image-wrap {
    order: -1;
  }

  .about-image-wrap img {
    min-height: 380px;
    max-height: 540px;
  }

  .home-services {
    margin-top: 1.2rem;
    padding: 1.4rem 1rem 1.7rem;
  }

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

  .service-card img {
    min-height: 340px;
  }

  .home-booking-steps {
    padding: 2rem 1.1rem 1.8rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 0;
  }

  .step-item:nth-child(2n) {
    border-right: 0;
  }

  .video-shell {
    min-height: 460px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-right {
    margin-left: 0;
  }

  .about-hero-wrap {
    padding-top: 7.8rem;
  }

  .about-story-section {
    grid-template-columns: 1fr;
  }

  .about-story-content {
    padding-top: 0.5rem;
  }

  .about-values-section {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .about-values-sticky {
    position: static;
  }

  .about-values-sticky img {
    min-height: 430px;
  }

  .about-promo-inner {
    min-height: 360px;
    padding-left: 9%;
  }

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

  .services-page-grid {
    column-count: 1;
  }
}

@media (max-width: 768px) {
  .hero-header {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    z-index: 70;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    border-radius: 1rem;
    padding: 0.8rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex: none;
    width: 100%;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.35rem;
    background: rgba(25, 64, 73, 0.94);
    border-radius: 0.9rem;
    padding: 0.75rem;
    align-self: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav a.is-active {
    width: 100%;
    display: block;
    text-align: left;
    padding: 0.58rem 0.7rem;
    border-radius: 0.6rem;
    background: transparent;
  }

  .header-actions {
    display: none;
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.15rem;
    gap: 0.55rem;
    align-self: stretch;
  }

  .hero-header.menu-open .header-actions {
    display: flex;
  }

  .header-actions a {
    padding: 0.58rem 0.9rem;
  }

  .hero-content {
    padding-top: 10.5rem;
    padding-bottom: 6.5rem;
  }

  .hero-content p {
    letter-spacing: 0.16em;
    line-height: 1.5;
  }

  .home-about {
    margin-top: 4.3rem;
    padding: 1.5rem 1rem 1.7rem;
    border-radius: 1.35rem;
  }

  .about-content h2 {
    margin-bottom: 0.9rem;
    font-size: 2.08rem;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .about-kicker {
    letter-spacing: 0.19em;
    font-size: 0.68rem;
  }

  .about-cta {
    font-size: 1rem;
    padding: 0.55rem 0.58rem 0.55rem 1.15rem;
  }

  .about-image-wrap img {
    min-height: 300px;
    border-radius: 1.1rem;
  }

  .service-card {
    padding: 1rem;
    border-radius: 1.05rem;
  }

  .service-card h3 {
    font-size: 2rem;
  }

  .service-card img {
    min-height: 270px;
    border-radius: 0.95rem;
  }

  .services-link {
    font-size: 0.92rem;
  }

  .home-booking-steps {
    margin-top: 1.2rem;
    padding: 1.5rem 0.9rem 1.5rem;
    border-radius: 1rem;
  }

  .steps-title {
    margin-bottom: 1rem;
    font-size: 2.1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-item {
    padding: 0.8rem 0.5rem;
  }

  .step-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(64, 63, 79, 0.16);
  }

  .step-item h3 {
    font-size: 2rem;
  }

  .home-video-cta {
    margin-top: 1.2rem;
    border-radius: 1rem;
  }

  .video-shell {
    min-height: 280px;
  }

  .video-fade {
    height: 120px;
  }

  .video-cta-content {
    margin-top: -6px;
    padding-bottom: 1.5rem;
  }

  .video-cta-content h2 {
    font-size: 2.2rem;
  }

  .video-cta-actions {
    flex-wrap: wrap;
  }

  .site-footer {
    border-radius: 1rem 1rem 0 0;
  }

  .footer-main {
    padding: 1.6rem 1rem 1.4rem;
    gap: 1.2rem;
  }

  .footer-left h2 {
    font-size: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    text-align: center;
    width: calc(100% - 1.2rem);
    border-radius: 0.9rem 0.9rem 0 0;
  }

  .footer-bottom p {
    order: 2;
  }

  .footer-social {
    order: 1;
  }

  .footer-legal {
    justify-self: center;
  }

  .about-hero-wrap {
    border-radius: 1.2rem;
    padding: 7.3rem 0.8rem 1.3rem;
  }

  .about-story-section {
    margin-top: 1.1rem;
    padding: 0 0.8rem;
    gap: 1.3rem;
  }

  .about-story-content h2 {
    font-size: 2.6rem;
  }

  .about-story-image img {
    min-height: 430px;
    border-radius: 1rem;
  }

  .about-story-image::after {
    border-radius: 0 0 1rem 1rem;
  }

  .about-values-section {
    margin-bottom: 2rem;
    padding: 0 0.8rem;
  }

  .about-values-block {
    padding-bottom: 1.4rem;
  }

  .about-values-block + .about-values-block {
    margin-top: 1rem;
  }

  .about-values-block h3 {
    font-size: 2.2rem;
  }

  .about-values-sticky img {
    min-height: 300px;
    border-radius: 1rem;
  }

  .about-promo-banner {
    padding: 0 0.8rem;
    margin-bottom: 1.8rem;
  }

  .about-promo-inner {
    min-height: 290px;
    border-radius: 1rem;
    padding: 1.5rem 1rem 1.8rem;
  }

  .about-promo-inner h2 {
    margin-bottom: 1.2rem;
    font-size: 2.65rem;
  }

  .gallery-grid-section {
    margin-top: 0.8rem;
    padding: 0 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .services-page-grid {
    margin-top: 0.8rem;
    padding: 0 0.8rem;
    column-count: 1;
    column-gap: 0;
  }

  .service-menu-card {
    border-radius: 1rem;
    padding: 0.9rem;
  }

  .service-columns {
    grid-template-columns: 1fr;
  }

  .service-submenu-banner {
    min-height: 190px;
  }

  .service-line h4,
  .service-mini-line span:first-child {
    font-size: 1.02rem;
  }
}


.booking-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 8px 20px 12px;
  background-color: #fff;
  min-height: calc(100dvh - 180px);
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px;
  height: calc(100dvh - 200px);
  min-height: 460px;
  max-height: calc(100dvh - 180px);
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 6px;
    min-height: calc(100dvh - 120px);
  }

  .iframe-wrapper {
    height: calc(100dvh - 132px);
    min-height: 0;
    border-radius: 6px;
    max-height: calc(100dvh - 120px);
  }
}


/* Membership Popup Styles */
.membership-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* For mobile viewport */
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  background-color: rgb(31 29 29 / 50%);
z-index: 9999;
}
.membership-popup .popup-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.membership-popup .popup-slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-popup .popup-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}
.membership-popup .popup-slider .slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.membership-popup.show {
  display: flex;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.popup-content {
  position: relative;
  width: 640px;
  height: 800px;
  /* width: 90vw;
  max-width: 610px;
  height: 90vw; */
  max-height: 90vh;
  aspect-ratio: 1;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
  background: white;
  transform: scale(1.1);
  color: #8B1538;
}
@media (max-width: 768px) {
  .membership-popup .popup-content {
    width: 90vw;
    height: auto;
    max-width: 500px;
    aspect-ratio: 1;
  }
  .membership-popup .popup-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
