:root {
  --charcoal: #000000;
  --ink: #0c0c0f;
  --ivory: #fff7fb;
  --champagne: #ff4da6;
  --blush: #ff8bc8;
  --teal: #000000;
  --sage: #070707;
  --paper: #ffffff;
  --line: rgba(0, 0, 0, 0.14);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ivory);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--paper);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: 86px !important;
  height: 86px !important;
  min-width: 86px;
  max-width: 86px !important;
  flex: 0 0 86px;
  padding: 0;
  border-radius: 50%;
  background: var(--charcoal);
  box-shadow: 0 0 0 1px rgba(255, 77, 166, 0.5), 0 8px 24px rgba(0, 0, 0, 0.28);
  object-fit: contain;
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-visible .brand-logo {
  background: var(--charcoal);
  box-shadow: 0 0 0 1px rgba(255, 77, 166, 0.72), 0 8px 24px rgba(0, 0, 0, 0.32);
}

.brand-name {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding-block: 6px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(78svh, 760px);
  padding: 112px clamp(20px, 6vw, 84px) 76px;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.38) 44%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(255, 77, 166, 0.04) 48%, rgba(0, 0, 0, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7.2vw, 7.6rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  width: min(600px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--charcoal);
  background: var(--champagne);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 250, 243, 0.68);
}

.button-ghost:hover {
  color: var(--charcoal);
  border-color: var(--champagne);
  background: var(--champagne);
}

.quick-book {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(1120px, calc(100% - 36px));
  margin: -36px auto 0;
  padding: 22px clamp(18px, 4vw, 34px);
  position: relative;
  z-index: 3;
  color: var(--paper);
  background: var(--teal);
  border: 1px solid rgba(255, 77, 166, 0.58);
  box-shadow: var(--shadow);
}

.quick-book span {
  display: block;
  margin-bottom: 6px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.quick-book strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.quick-calendar {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.quick-calendar span {
  margin-bottom: 0;
}

.quick-calendar input {
  box-sizing: border-box;
  width: min(260px, 100%);
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 77, 166, 0.78);
  border-radius: 4px;
  color: var(--paper);
  color-scheme: dark;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 760;
  cursor: pointer;
  outline: 2px solid transparent;
  transition: background 160ms ease, outline-color 160ms ease;
}

.quick-calendar input:focus-visible {
  outline-color: rgba(255, 77, 166, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.quick-calendar input::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.quick-book a {
  display: inline-flex;
  justify-content: center;
  min-width: 116px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 77, 166, 0.78);
  border-radius: 4px;
  font-weight: 760;
}

.quick-book a:hover {
  color: var(--charcoal);
  background: var(--champagne);
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 70px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 42px;
  text-transform: uppercase;
}

.section-heading h2,
.feature-copy h2,
.booking-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4.45rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;

}

.services-section {
  background: var(--ivory);
}

.services-inner {
  width: min(1290px, 100%);
  margin: 0 auto;
  
}

.services-heading {
  margin-bottom: 24px;
}

.services-heading h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 360;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-tabs {
  display: flex;
  align-items: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
  width: fit-content;
  max-width: 100%;
  margin-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  overflow-x: auto;
  scrollbar-width: none;
}

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

.service-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 13px;
  border: 0;
  color: var(--charcoal);
  background: transparent;
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
  line-height: 1.2;
  cursor: pointer;
}

.service-tab::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--champagne);
  transition: transform 180ms ease;
}

.service-tab:hover,
.service-tab.is-active {
  color: var(--champagne);
}

.service-tab:hover::after,
.service-tab.is-active::after {
  transform: scaleX(1);
}

.service-panel[hidden] {
  display: none;
}

.service-panel.is-active {
  animation: serviceFade 180ms ease;
}

@keyframes serviceFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 30px);
}

.service-menu-card {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  color: var(--charcoal);
}

.service-menu-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--charcoal);
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ivory);
}

.service-card-stage > img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.service-card-price-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(12px, 1.35vw, 16px);
  color: var(--charcoal);
  background: rgba(255, 247, 251, 0.97);
  border: 1px solid rgba(255, 77, 166, 0.32);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-card-price-panel h4 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.15;
}

.service-card-price-heading,
.service-card-price-panel li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 6px;
}

.service-card-price-heading {
  padding-bottom: 6px;
  color: var(--champagne);
  font-size: clamp(0.5rem, 0.62vw, 0.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

.service-card-price-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card-price-panel li {
  padding: 5px 0;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
  color: var(--charcoal);
  font-size: clamp(0.58rem, 0.78vw, 0.74rem);
  font-weight: 560;
  line-height: 1.15;
}

.service-card-price-heading span:not(:first-child),
.service-card-price-panel li span:not(:first-child) {
  text-align: right;
  white-space: nowrap;
  font-weight: 800;
}

.service-menu-card-price:hover .service-card-stage > img,
.service-menu-card-price:focus-within .service-card-stage > img,
.service-menu-card-price:focus .service-card-stage > img {
  filter: none;
  transform: none;
  box-shadow: none;
  opacity: 0;
}

.service-menu-card-price:hover .service-card-price-panel,
.service-menu-card-price:focus-within .service-card-price-panel,
.service-menu-card-price:focus .service-card-price-panel {
  opacity: 1;
  transform: translateY(0);
}

.service-menu-card-price:hover > span,
.service-menu-card-price:focus-within > span,
.service-menu-card-price:focus > span {
  opacity: 0;
}

.service-menu-card > span {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  color: var(--charcoal);
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.service-menu-card h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  font-weight: 420;
  line-height: 1.2;
  transition: color 180ms ease;
}

.service-menu-card:hover img,
.service-menu-card:focus-within img {
  filter: saturate(1.1) contrast(1.06);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.service-menu-card:hover > span,
.service-menu-card:focus-within > span {
  z-index: 3;
  color: var(--paper);
  background: var(--champagne);
}

.service-menu-card:hover h3,
.service-menu-card:focus-within h3 {
  color: var(--champagne);
}

.service-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(28px, 3vw, 42px);
  align-items: start;
}

.service-price-group {
  min-width: 0;
  padding-top: 14px;
  border-top: 2px solid var(--champagne);
}

.service-price-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  object-fit: cover;
  object-position: center;
}

.service-price-group h3 {
  margin: 0 0 14px;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  font-weight: 500;
}

.service-price-heading,
.service-price-group li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.service-price-heading.service-price-columns-3,
.service-price-group li.service-price-columns-3 {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.service-price-heading {
  padding-bottom: 8px;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-price-heading span:not(:first-child),
.service-price-group li span:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}

.service-price-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-price-group li {
  padding: 10px 0;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.35;
}

.service-price-group li span:not(:first-child) {
  font-weight: 700;
}

.browse-link {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--champagne);
  font-size: 0.85rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}
.link {
  display: inline-flex;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--champagne);
  font-size: 0.85rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}


.testimonial-marquee-section {
  display: flex;
  align-items: center;
  min-height: 64px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(12, 12, 15, 0.06);
  border-bottom: 1px solid rgba(12, 12, 15, 0.06);
}

.testimonial-marquee-track {
  display: flex;
  width: max-content;
  animation: testimonialMarquee 28s linear infinite;
  will-change: transform;
}

.testimonial-marquee-section:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.testimonial-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(76px, 13vw, 260px);
  padding-right: clamp(76px, 13vw, 260px);
  white-space: nowrap;
}

.testimonial-marquee-group span {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  color: rgba(12, 12, 15, 0.72);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
}

.testimonial-marquee-group strong,
.testimonial-marquee-group em {
  font-style: normal;
  font-weight: 430;
}

.testimonial-marquee-group em {
  color: rgba(12, 12, 15, 0.42);
}

@keyframes testimonialMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee-track {
    animation-duration: 80s;
  }
}

.popular-services-section {
  padding: clamp(48px, 6vw, 78px) clamp(20px, 6vw, 86px);
  background: var(--ivory);
}

.popular-services-inner {
  width: min(1290px, 100%);
  margin: 0 auto;
}

.popular-services-heading {
  margin-bottom: clamp(26px, 4vw, 38px);
}

.popular-services-heading .eyebrow {
  color: rgba(12, 12, 15, 0.62);
}

.popular-services-heading h2 {
  margin: 0;
  max-width: 520px;
  color: var(--charcoal);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  font-weight: 360;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.popular-service-card a {
  display: grid;
  align-content: start;
  color: var(--charcoal);
}

.popular-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 1 / 1.05;
}

.popular-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.popular-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 26px;
  color: var(--paper);
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
  transition: opacity 220ms ease;
}

.popular-hover strong {
  max-width: 12ch;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 520;
  line-height: 1.05;
}

.popular-hover em {
  display: inline-flex;
  width: fit-content;
  padding: 14px 22px;
  color: var(--charcoal);
  background: var(--champagne);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 840;
  text-transform: uppercase;
}

.popular-title {
  display: block;
  margin-top: 16px;
  color: rgba(12, 12, 15, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 420;
  line-height: 1.22;
  transition: color 180ms ease;
}

.popular-button {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 17px 24px;
  color: var(--paper);
  background: var(--champagne);
  font-size: 0.78rem;
  font-weight: 840;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.popular-service-card:hover img,
.popular-service-card:focus-within img,
.popular-service-card.is-preview-hover img {
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.popular-service-card:hover .popular-hover,
.popular-service-card:focus-within .popular-hover,
.popular-service-card.is-preview-hover .popular-hover {
  opacity: 1;
}

.popular-service-card:hover .popular-title,
.popular-service-card:focus-within .popular-title,
.popular-service-card.is-preview-hover .popular-title {
  color: var(--champagne);
}

.popular-service-card:hover .popular-button,
.popular-service-card:focus-within .popular-button,
.popular-service-card.is-preview-hover .popular-button {
  color: var(--paper);
  background: var(--charcoal);
  transform: translateY(-2px);
}

.about-section {
  padding: clamp(52px, 7vw, 90px) clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(34px, 5vw, 72px);
  width: min(1290px, 100%);
  margin: 0 auto;
}

.about-tabs {
  position: relative;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  align-content: start;
  padding-left: clamp(28px, 3.2vw, 46px);
}

.about-tabs::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.14);
}

.about-tab {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  color: rgba(0, 0, 0, 0.22);
  background: transparent;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 340;
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.about-tab::before {
  position: absolute;
  top: 0.06em;
  bottom: 0.08em;
  left: calc(-1 * clamp(28px, 3.2vw, 46px));
  width: 2px;
  content: "";
  transform: scaleY(0);
  transform-origin: center;
  background: var(--champagne);
  transition: transform 180ms ease;
}

.about-tab:hover,
.about-tab.is-active {
  color: var(--champagne);
}

.about-tab:hover {
  transform: translateX(4px);
}

.about-tab.is-active::before {
  transform: scaleY(1);
}

.about-panel[hidden] {
  display: none;
}

.about-panel.is-active {
  animation: serviceFade 180ms ease;
}

.about-panel h2 {
  max-width: 900px;
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 360;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-panel p {
  max-width: 880px;
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.about-panel p + p {
  margin-top: 18px;
}

.about-stats-section {
  padding: clamp(34px, 4vw, 54px) clamp(20px, 6vw, 86px) clamp(16px, 2vw, 26px);
  background: var(--ivory);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: clamp(22px, 3vw, 36px);
  column-gap: clamp(34px, 5vw, 84px);
  width: min(980px, 100%);
  margin: 0 auto;
}

.about-stat {
  min-height: 58px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 77, 166, 0.52);
}

.about-stat strong {
  display: block;
  color: var(--charcoal);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 360;
  line-height: 1;
}

.about-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.82);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.35;
}

.ratings-section {
  padding: clamp(26px, 4vw, 48px) clamp(20px, 6vw, 86px) clamp(20px, 3vw, 34px);
  background: var(--ivory);
}

.ratings-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.8fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: stretch;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ratings-score {
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--paper);
  background: var(--charcoal);
  border: 1px solid rgba(255, 77, 166, 0.55);
}

.ratings-score .eyebrow {
  color: var(--champagne);
}

.ratings-score h2 {
  margin: 18px 0 8px;
  color: var(--paper);
  font-size: clamp(3.8rem, 8vw, 6.4rem);
  font-weight: 360;
  line-height: 0.9;
  letter-spacing: 0;
}

.ratings-score h2 span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.ratings-stars {
  color: var(--champagne);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.ratings-score p:last-child {
  max-width: 290px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.ratings-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 77, 166, 0.34);
}

.rating-review-card {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.74);
  transition: background 180ms ease, transform 180ms ease;
}

.rating-review-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rating-review-card h3 {
  margin: 0 0 14px;
  color: var(--charcoal);
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  line-height: 1.18;
  font-weight: 520;
  letter-spacing: 0;
}

.rating-review-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.rating-review-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.about-family-section {
  padding: clamp(14px, 2vw, 24px) clamp(20px, 5vw, 70px) clamp(48px, 6vw, 78px);
  background: var(--ivory);
}

.about-family-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.about-family-inner h2 {
  margin: 0 0 clamp(24px, 4vw, 34px);
  color: var(--charcoal);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 360;
  line-height: 1.05;
  letter-spacing: 0;
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
}

.family-card {
  position: relative;
  min-height: clamp(360px, 32vw, 470px);
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
}

.family-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.family-card::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
  transition: opacity 220ms ease;
}

.family-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 34px);
  opacity: 0;
  background: rgba(255, 247, 251, 0.9);
  transition: opacity 220ms ease;
}

.family-overlay p {
  margin: 0;
  color: rgba(0, 0, 0, 0.74);
  font-size: clamp(0.96rem, 1.25vw, 1.1rem);
  line-height: 1.62;
}

.family-caption {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 2.3vw, 28px);
  right: clamp(18px, 2.3vw, 28px);
  bottom: clamp(18px, 2.2vw, 28px);
  transition: color 220ms ease, transform 220ms ease;
}

.family-caption h3 {
  margin: 0 0 8px;
  color: currentColor;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 360;
  line-height: 1.1;
}

.family-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.35;
  transition: color 220ms ease;
}

.family-card:hover img,
.family-card:focus-within img,
.family-card.is-preview-hover img {
  opacity: 0.22;
  filter: saturate(0.65);
  transform: scale(1.035);
}

.family-card:hover::after,
.family-card:focus-within::after,
.family-card.is-preview-hover::after {
  opacity: 0;
}

.family-card:hover .family-overlay,
.family-card:focus-within .family-overlay,
.family-card.is-preview-hover .family-overlay {
  opacity: 1;
}

.family-card:hover .family-caption,
.family-card:focus-within .family-caption,
.family-card.is-preview-hover .family-caption {
  color: var(--champagne);
  transform: translateY(-4px);
}

.family-card:hover .family-caption span,
.family-card:focus-within .family-caption span,
.family-card.is-preview-hover .family-caption span {
  color: rgba(0, 0, 0, 0.76);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 276px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper);
}

.service-index {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--champagne);
  font-weight: 800;
}

.service-card h3,
.spaces-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.18;
}

.service-card p,
.spaces-grid p,
.feature-copy p,
.booking-copy p {
  margin: 0;
  color: rgba(34, 32, 29, 0.72);
  line-height: 1.72;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(20px, 6vw, 86px);
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 77, 166, 0.18), transparent 28%),
    linear-gradient(135deg, #000 0%, #090408 52%, #000 100%);
  border-top: 1px solid rgba(255, 77, 166, 0.35);
  border-bottom: 1px solid rgba(255, 77, 166, 0.35);

}

.feature-copy {
  max-width: 660px;
}

.feature-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 250, 243, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 20px;
  border: 1px solid rgba(255, 77, 166, 0.78);
  color: var(--paper);
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.feature-cta:hover {
  color: var(--charcoal);
  background: var(--champagne);
  transform: translateY(-2px);
}

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

.premium-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(300px, 24vw, 380px);
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 77, 166, 0.12), rgba(255, 77, 166, 0) 42%),
    rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 77, 166, 0.34);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.premium-service-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 118px;
  height: 118px;
  content: "";
  border: 1px solid rgba(255, 77, 166, 0.42);
  border-radius: 50%;
}

.premium-service-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-service-card h3 {
  margin: auto 0 14px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  font-weight: 420;
  line-height: 1;
  letter-spacing: 0;
}

.premium-service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.premium-service-card:hover {
  border-color: rgba(255, 77, 166, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 77, 166, 0.2), rgba(255, 77, 166, 0.03) 48%),
    rgba(0, 0, 0, 0.88);
  transform: translateY(-5px);
}

.ritual-list {
  border-top: 1px solid rgba(255, 250, 243, 0.2);
}

.ritual-list div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid rgba(255, 250, 243, 0.2);
}

.ritual-list span {
  color: var(--champagne);
  font-weight: 800;
}

.ritual-list strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.spaces-section {
  background: var(--sage);
  color: var(--paper);
}

.spaces-section .section-heading h2,
.spaces-grid h3 {
  color: var(--paper);
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: 0;
}

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

.spaces-grid article {
  min-height: 214px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 77, 166, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.spaces-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-band {
  padding: clamp(46px, 7vw, 84px) clamp(20px, 8vw, 120px);
  color: var(--charcoal);
  background: var(--champagne);
}

.testimonial-band blockquote {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 5rem);
  line-height: 1.05;
}

.testimonial-band cite {
  display: block;
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.68);
  font-style: normal;
  font-weight: 750;
}

.instagram-gallery-section {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 6vw, 86px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 77, 166, 0.18), rgba(255, 77, 166, 0) 38%),
    var(--charcoal);
  border-top: 1px solid rgba(255, 77, 166, 0.4);
  border-bottom: 1px solid rgba(255, 77, 166, 0.4);
}

.instagram-gallery-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.instagram-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.instagram-gallery-heading .eyebrow {
  color: var(--champagne);
}

.instagram-gallery-heading h2 {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 360;
  line-height: 0.98;
  letter-spacing: 0;
}

.instagram-gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 77, 166, 0.8);
  color: var(--paper);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.instagram-gallery-link:hover {
  color: var(--charcoal);
  background: var(--champagne);
  transform: translateY(-2px);
}

.instagram-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, 24vw);
  gap: 8px;
}

.instagram-gallery-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255, 77, 166, 0.24);
}

.instagram-gallery-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.instagram-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.98) contrast(1.04);
  transition: transform 260ms ease, opacity 260ms ease, filter 260ms ease;
}

.instagram-gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 20%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(135deg, rgba(255, 77, 166, 0.18), rgba(0, 0, 0, 0) 44%);
}

.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 10px;
  color: var(--charcoal);
  background: var(--champagne);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
}

.gallery-play::after {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--paper);
  transform: translate(-50%, -50%);
}

.gallery-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.gallery-caption small,
.gallery-caption strong {
  display: block;
}

.gallery-caption small {
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-caption strong {
  max-width: 14ch;
  color: var(--paper);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.05;
}

.instagram-gallery-card:hover img {
  opacity: 1;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.045);
}

.appointment-section {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: clamp(38px, 6vw, 64px) clamp(18px, 5vw, 70px);
  overflow: hidden;
  background: var(--charcoal);
}

.appointment-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.58;
}

.appointment-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.34);
}

.appointment-panel {
  position: relative;
  z-index: 1;
  width: min(1270px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px) clamp(22px, 5.2vw, 84px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(4px);
}

.appointment-panel h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto clamp(22px, 3vw, 32px);
  color: #9c1b72;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.appointment-panel h2::after {
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 78px;
  height: 2px;
  content: "";
  transform: translateX(-50%);
  background: var(--champagne);
}

.appointment-status {
  width: min(640px, 100%);
  margin: 0 auto 24px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.72);
  text-align: center;
  font-weight: 760;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 30px);
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  outline: 2px solid transparent;
  transition: outline-color 160ms ease, background 160ms ease;
}

.appointment-form textarea {
  grid-column: 1 / -1;
  min-height: 100px;
  padding-block: 16px;
  border-radius: 26px;
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  outline-color: rgba(255, 77, 166, 0.72);
  background: var(--paper);
}

.appointment-form button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 256px;
  min-height: 44px;
  padding: 0 36px;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: #9c1b72;
  font-weight: 860;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.appointment-form button:hover,
.appointment-form button:focus-visible {
  background: var(--champagne);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--paper);
  background: #25d366;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.7fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
  padding: clamp(74px, 10vw, 128px) clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.booking-copy {
  max-width: 610px;
}

.booking-copy p:not(.eyebrow) {
  margin-top: 18px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 77, 166, 0.34);
  border-radius: 8px;
  background: var(--ivory);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(34, 32, 29, 0.72);
  font-size: 0.86rem;
  font-weight: 760;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 77, 166, 0.36);
  border-radius: 4px;
  color: var(--charcoal);
  background: var(--paper);
}

.booking-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: clamp(42px, 6vw, 72px) clamp(20px, 6vw, 88px) 24px;
  color: var(--ink);
  background: var(--ivory);
  border-top: 4px solid var(--charcoal);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) repeat(3, minmax(130px, 0.65fr)) minmax(130px, 0.7fr);
  gap: clamp(34px, 5vw, 78px);
  width: min(1380px, 100%);
  margin: 0 auto;
}

.footer-brand-column {
  max-width: 460px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--charcoal);
  box-shadow: 0 0 0 2px rgba(255, 77, 166, 0.28);
}

.footer-brand strong,
.footer-brand em {
  display: block;
  font-style: normal;
}

.footer-brand strong {
  color: var(--charcoal);
  font-size: 1.5rem;
  font-weight: 860;
  line-height: 1;
}

.footer-brand em {
  margin-top: 6px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand-column p {
  margin: 0;
  color: rgba(12, 12, 15, 0.78);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin: 44px 0 30px;
}

.footer-social a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: rgba(12, 12, 15, 0.72);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--champagne);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-social path {
  fill: currentColor;
  stroke: none;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: rgba(12, 12, 15, 0.84);
}

.footer-contact span {
  width: 1px;
  height: 18px;
  background: rgba(12, 12, 15, 0.46);
}

.footer-help a,
.footer-contact a,
.footer-column a {
  transition: color 180ms ease;
}

.footer-help a:hover,
.footer-help a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--champagne);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 15px;
  font-size: 0.95rem;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: rgba(12, 12, 15, 0.52);
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(12, 12, 15, 0.88);
  line-height: 1.2;
}

.footer-column-resource {
  grid-column: 3;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1380px, 100%);
  margin: 74px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(12, 12, 15, 0.1);
  color: rgba(12, 12, 15, 0.82);
  font-size: 0.94rem;
}

.footer-bottom .link {
  text-transform: none;
}

@media (max-width: 860px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px;
    min-height: 66px;
  }

  .brand {
    max-width: calc(100vw - 96px);
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    margin-left: 0;
    position: relative;
    z-index: 22;
  }

  .menu-toggle span {
    margin: 2px 0;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 21;
    display: grid;
    gap: 0;
    padding: 82px 24px 28px;
    color: var(--paper);
    background: var(--charcoal);
    transform: translateY(-105%);
    transition: transform 200ms ease;
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.14);
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 77, 166, 0.28);
    font-size: 1.15rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 74svh;
    padding-top: 112px;
    padding-bottom: 62px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.46) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.5) 100%);
  }

  .quick-book,
  .section-heading,
  .about-inner,
  .feature-band,
  .spaces-grid,
  .booking-section,
  .appointment-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-book {
    margin-top: 0;
    width: 100%;
  }

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

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

  .popular-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

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

  .ratings-inner {
    grid-template-columns: 1fr;
  }

  .instagram-gallery-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .instagram-gallery-link {
    width: max-content;
  }

  .instagram-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(240px, 34vw);
  }

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

  .service-card {
    min-height: 244px;
  }

  .about-inner {
    gap: 42px;
  }

  .about-tabs {
    gap: 22px;
    padding-left: 24px;
  }

  .about-tab::before {
    left: -24px;
  }

  .appointment-panel {
    border-radius: 22px;
  }

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

  .footer-brand-column {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .footer-column-resource {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 38px;
    padding: 14px 28px 14px 16px;
  }

  .brand-logo {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px;
    max-width: 68px !important;
    flex-basis: 68px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: 72svh;
    padding-inline: 18px;
  }

  h1 {
    max-width: 8.2ch;
    font-size: clamp(2.7rem, 15vw, 4rem);
    line-height: 0.96;
  }

  .hero-copy {
    width: min(33ch, 100%);
    font-size: 1rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .quick-book {
    padding: 20px 18px;
  }

  .quick-book a {
    width: 100%;
  }

  .quick-calendar input {
    width: 100%;
  }

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

  .service-tabs {
    gap: 22px;
    width: 100%;
    margin-bottom: 32px;
    padding-bottom: 2px;
  }

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

  .service-price-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .service-price-heading,
  .service-price-group li {
    gap: 6px;
  }

  .service-price-heading {
    font-size: 0.54rem;
  }

  .service-price-group li {
    font-size: 0.72rem;
  }

  .service-price-heading.service-price-columns-3,
  .service-price-group li.service-price-columns-3 {
    grid-template-columns: minmax(0, 1fr) 56px 56px;
    gap: 4px;
  }

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

  .about-stats-grid,
  .family-grid {
    grid-template-columns: 1fr;
  }

  .ratings-review-grid {
    grid-template-columns: 1fr;
  }

  .ratings-score,
  .rating-review-card {
    min-height: auto;
  }

  .instagram-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(300px, 92vw);
  }

  .instagram-gallery-card.is-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .instagram-gallery-link {
    width: 100%;
  }

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

  .premium-service-card {
    min-height: auto;
  }

  .feature-cta {
    width: 100%;
  }

  .about-family-inner h2 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .family-card {
    min-height: 430px;
  }

  .service-card {
    min-height: 220px;
  }

  .service-index {
    margin-bottom: 28px;
  }

  .section,
  .popular-services-section,
  .about-section,
  .about-stats-section,
  .ratings-section,
  .about-family-section,
  .feature-band,
  .instagram-gallery-section,
  .booking-section,
  .testimonial-band {
    padding-inline: 18px;
  }

  .appointment-section {
    min-height: 640px;
    padding: 34px 14px;
  }

  .appointment-panel {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .appointment-form {
    gap: 14px;
  }

  .appointment-form input,
  .appointment-form select {
    min-height: 48px;
  }

  .appointment-form button {
    width: 100%;
    min-width: 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .about-section {
    padding-block: 52px;
  }

  .about-tab {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .booking-form {
    padding: 18px;
  }

  .site-footer {
    padding: 38px 20px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 74px;
    height: 74px;
  }

  .footer-brand strong {
    font-size: 1.25rem;
  }

  .footer-social {
    margin: 22px 0 18px;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-contact span {
    display: none;
  }

  .footer-column {
    gap: 12px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 46px;
  }
}
