﻿:root {
  --cream: #f8f3ed;
  --sand: #e9dfd2;
  --ink: #1f1b16;
  --mocha: #4b3b2f;
  --gold: #8a6f5a;
  --blush: #f2d8c7;
  --rose: #8a6f5a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(31, 27, 22, 0.12);
  --page-width: 1400px;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, #fdfbf8 0%, #f5ebe0 45%, #efe3d7 100%);
  min-height: 100vh;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(248, 243, 237, 0.85);
  border-bottom: 1px solid rgba(31, 27, 22, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6vw 0.8rem;
  gap: 2rem;
  max-width: var(--page-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Playfair Display", serif;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--cream);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.brand-text span {
  display: block;
  font-size: 1.2rem;
}

.brand-text small {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.65rem;
  color: var(--mocha);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-section {
  display: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.65rem;
  color: var(--mocha);
  margin-top: 0.8rem;
}

.nav-tech {
  display: none;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(31, 27, 22, 0.2);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav a:not(.nav-cta) {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.1rem;
  line-height: 1.1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  min-height: 40px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-weight: 600;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  transition: color 0.25s ease;
}

.nav-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--gold);
  transition: height 0.25s ease;
  z-index: -1;
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after {
  height: 100%;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--cream);
}

.secondary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  row-gap: 0.55rem;
  padding: 0.55rem 6vw 0.9rem;
  background: var(--cream);
  border-top: 1px solid rgba(31, 27, 22, 0.05);
  font-size: 0.72rem;
  max-width: var(--page-width);
  margin: 0 auto;
  overflow: visible;
  white-space: normal;
}

.secondary-nav a {
  flex: 0 0 auto;
  padding: 0.28rem 0.46rem;
  border-radius: 999px;
  background: var(--sand);
  white-space: nowrap;
}

.secondary-nav a.active {
  background: var(--ink);
  color: var(--cream);
}

.secondary-label {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.58rem;
  font-weight: 700;
}

@media (max-width: 1280px) {
  .secondary-nav {
    gap: 0.5rem;
    padding-inline: 6vw;
    font-size: 0.66rem;
  }

  .secondary-nav a {
    padding: 0.26rem 0.4rem;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6vw 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--blush) 0%, rgba(242, 216, 199, 0) 70%);
  opacity: 0.7;
  z-index: 1;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 3;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.ns-hero {
  background: #f5ede3;
}

.ns-hero .hero-photo {
  object-position: 0% 20%;
}

.alice-hero {
  background: #f5ede3;
}

.alice-hero .hero-photo {
  object-position: center 20%;
}

.alice-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.34) 0%,
      rgba(31, 27, 22, 0.28) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.58) 0%,
      rgba(242, 216, 199, 0.34) 48%,
      rgba(31, 27, 22, 0.4) 100%
    );
  z-index: 1;
}

.alice-hero .content-wrap {
  position: relative;
  z-index: 3;
}

.julie-hero {
  background: #f5ede3;
}

.julie-hero .hero-photo {
  object-position: 38% 18%;
}

.julie-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.36) 0%,
      rgba(31, 27, 22, 0.3) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.62) 0%,
      rgba(242, 216, 199, 0.36) 48%,
      rgba(31, 27, 22, 0.42) 100%
    );
  z-index: 1;
}

.julie-hero .content-wrap {
  position: relative;
  z-index: 3;
}

.jennifer-hero {
  background:
    radial-gradient(circle at top left, rgba(242, 216, 199, 0.72) 0%, rgba(242, 216, 199, 0) 46%),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.96) 0%,
      rgba(236, 224, 215, 0.92) 55%,
      rgba(248, 243, 237, 0.96) 100%
    );
}

.jennifer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.16) 0%,
      rgba(31, 27, 22, 0.14) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.44) 0%,
      rgba(242, 216, 199, 0.2) 48%,
      rgba(31, 27, 22, 0.16) 100%
    );
  z-index: 1;
}

.jennifer-hero .content-wrap {
  position: relative;
  z-index: 3;
}

.ns-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.32) 0%,
      rgba(31, 27, 22, 0.3) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.58) 0%,
      rgba(242, 216, 199, 0.36) 48%,
      rgba(31, 27, 22, 0.42) 100%
    );
  z-index: 1;
}

.ns-hero .content-wrap {
  position: relative;
  z-index: 3;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  color: var(--mocha);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.05;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-copy {
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.home-hero .content-wrap {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.home-hero .hero-content {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero .eyebrow {
  color: var(--rose);
}

.home-hero h1 span {
  color: var(--rose);
  font-style: italic;
}

.home-hero .hero-copy {
  max-width: 36rem;
}

.home-hero .hero-actions {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.home-hero .btn {
  border-radius: 12px;
  padding: 0.9rem 1.9rem;
}

.home-hero .btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(216, 139, 138, 0.35);
}

.home-hero .btn-ghost {
  border: 1px solid rgba(31, 27, 22, 0.25);
  background: rgba(255, 255, 255, 0.7);
}

.landing-hero .content-wrap {
  position: relative;
  z-index: 3;
}

.landing-hero h1 span {
  color: #8c6a53;
  font-style: italic;
  text-shadow: 0 8px 24px rgba(248, 243, 237, 0.22);
}

.landing-hero .hero-copy {
  max-width: 36rem;
  color: rgba(31, 27, 22, 0.96);
  text-shadow: 0 2px 12px rgba(248, 243, 237, 0.28);
}

.landing-hero .hero-actions {
}

.landing-hero .btn-ghost {
  border: 1px solid rgba(31, 27, 22, 0.25);
  background: rgba(255, 255, 255, 0.88);
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.62) 0%,
      rgba(31, 27, 22, 0.46) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.68) 0%,
      rgba(242, 216, 199, 0.44) 48%,
      rgba(31, 27, 22, 0.52) 100%
    );
  z-index: 1;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.65rem;
  color: var(--mocha);
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 26px;
  background: rgba(31, 27, 22, 0.3);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--mocha);
}

.hero-features span {
  position: relative;
  padding-left: 0.9rem;
}

.hero-features span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.landing-hero .hero-features {
  color: rgba(31, 27, 22, 0.96);
  text-shadow: 0 2px 10px rgba(248, 243, 237, 0.5);
}

.landing-hero .hero-features span::before {
  background: #9d7457;
}

.hero-socials {
  margin-top: 1.4rem;
}

.home-hero .socials {
  justify-content: center;
  margin-top: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

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

.hero-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.hero-card-copy {
  color: var(--mocha);
  line-height: 1.6;
}

.hero-card-meta {
  display: flex;
  gap: 2rem;
}

.meta-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.65rem;
  color: var(--mocha);
}

section {
  padding: 6vw 0;
}

.content-wrap {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 6vw;
}

.section-intro {
  max-width: 34rem;
  margin-bottom: 3rem;
}

.section-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.section-intro p,
.service-info p,
.service-split-body p,
.service-card-body p,
.service-block p {
  line-height: 1.7;
}

.section-intro p + p,
.service-info p + p,
.service-split-body p + p,
.service-card-body p + p,
.service-block p + p {
  margin-top: 0.85rem;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.team {
  background: linear-gradient(180deg, #f5ede3 0%, #fff 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}

.team-card.muted {
  background: #f9f4ee;
  border: 1px dashed rgba(31, 27, 22, 0.2);
  box-shadow: none;
}

.team-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.team-card-top h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.15;
  overflow-wrap: break-word;
}

.team-card-top p {
  color: var(--mocha);
  overflow-wrap: break-word;
}

.team-role {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 0.6rem;
}

.contact {
  text-align: center;
}

.contact .section-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, rgba(248, 243, 237, 0.95) 0%, rgba(233, 223, 210, 0.9) 100%);
  color: var(--mocha);
  border-top: 1px solid rgba(31, 27, 22, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-block {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.08);
}

.footer-block p,
.footer-block li {
  line-height: 1.65;
}

.footer-block a + a,
.footer-block a + p,
.footer-block p + p {
  margin-top: 0.55rem;
}

.footer-location-copy .footer-note {
  margin-top: 0.8rem;
}

.footer-block a {
  margin-top: 0.2rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 27, 22, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.45;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.footer-block a::before {
  content: "";
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  background-color: var(--gold);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.footer-block a[href^="mailto:"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6.75A1.75 1.75 0 0 1 4.75 5h14.5A1.75 1.75 0 0 1 21 6.75v10.5A1.75 1.75 0 0 1 19.25 19H4.75A1.75 1.75 0 0 1 3 17.25V6.75Zm1.9-.25 7.1 5.44 7.1-5.44H4.9Zm14.6 11V8.39l-6.9 5.29a1 1 0 0 1-1.2 0L4.5 8.39v9.11c0 .28.22.5.5.5h14c.28 0 .5-.22.5-.5Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6.75A1.75 1.75 0 0 1 4.75 5h14.5A1.75 1.75 0 0 1 21 6.75v10.5A1.75 1.75 0 0 1 19.25 19H4.75A1.75 1.75 0 0 1 3 17.25V6.75Zm1.9-.25 7.1 5.44 7.1-5.44H4.9Zm14.6 11V8.39l-6.9 5.29a1 1 0 0 1-1.2 0L4.5 8.39v9.11c0 .28.22.5.5.5h14c.28 0 .5-.22.5-.5Z'/%3E%3C/svg%3E");
}

.footer-block a[href^="tel:"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 2.93c.4-.38.98-.5 1.49-.3l2.18.87c.66.26 1.03.97.87 1.66l-.47 2.02a1.5 1.5 0 0 1-.93 1.05l-1.08.43a13.02 13.02 0 0 0 6.66 6.66l.43-1.08c.19-.48.6-.83 1.05-.93l2.02-.47c.69-.16 1.4.21 1.66.87l.87 2.18c.2.5.08 1.09-.3 1.49l-1.2 1.26c-.51.54-1.29.75-2 .54A19.5 19.5 0 0 1 3.48 5.13c-.21-.71 0-1.49.54-2l1.26-1.2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 2.93c.4-.38.98-.5 1.49-.3l2.18.87c.66.26 1.03.97.87 1.66l-.47 2.02a1.5 1.5 0 0 1-.93 1.05l-1.08.43a13.02 13.02 0 0 0 6.66 6.66l.43-1.08c.19-.48.6-.83 1.05-.93l2.02-.47c.69-.16 1.4.21 1.66.87l.87 2.18c.2.5.08 1.09-.3 1.49l-1.2 1.26c-.51.54-1.29.75-2 .54A19.5 19.5 0 0 1 3.48 5.13c-.21-.71 0-1.49.54-2l1.26-1.2Z'/%3E%3C/svg%3E");
}

.footer-block a[href*="wa.me"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3C7.03 3 3 6.8 3 11.5c0 1.8.6 3.47 1.62 4.84L3.5 21l4.94-1.08A9.4 9.4 0 0 0 12 20c4.97 0 9-3.8 9-8.5S16.97 3 12 3Zm0 15.2c-1.14 0-2.24-.27-3.22-.8l-.46-.24-2.92.64.63-2.75-.3-.47A6.4 6.4 0 0 1 5 11.5C5 7.9 8.13 5 12 5s7 2.9 7 6.5-3.13 6.7-7 6.7Zm3.84-4.98c-.21-.1-1.24-.6-1.43-.67-.19-.07-.33-.1-.47.1-.14.2-.54.67-.66.8-.12.13-.24.15-.45.05-.21-.1-.87-.31-1.66-1-.61-.54-1.02-1.2-1.14-1.4-.12-.2-.01-.3.09-.4.09-.09.21-.24.31-.36.1-.12.14-.2.21-.34.07-.13.03-.25-.02-.36-.05-.1-.47-1.12-.64-1.54-.17-.4-.34-.35-.47-.35h-.4c-.14 0-.36.05-.55.25-.19.2-.72.7-.72 1.71 0 1 .74 1.97.84 2.1.1.13 1.46 2.3 3.6 3.13 2.14.83 2.14.55 2.53.52.39-.03 1.24-.5 1.42-.97.18-.47.18-.88.13-.97-.05-.08-.19-.13-.4-.23Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3C7.03 3 3 6.8 3 11.5c0 1.8.6 3.47 1.62 4.84L3.5 21l4.94-1.08A9.4 9.4 0 0 0 12 20c4.97 0 9-3.8 9-8.5S16.97 3 12 3Zm0 15.2c-1.14 0-2.24-.27-3.22-.8l-.46-.24-2.92.64.63-2.75-.3-.47A6.4 6.4 0 0 1 5 11.5C5 7.9 8.13 5 12 5s7 2.9 7 6.5-3.13 6.7-7 6.7Zm3.84-4.98c-.21-.1-1.24-.6-1.43-.67-.19-.07-.33-.1-.47.1-.14.2-.54.67-.66.8-.12.13-.24.15-.45.05-.21-.1-.87-.31-1.66-1-.61-.54-1.02-1.2-1.14-1.4-.12-.2-.01-.3.09-.4.09-.09.21-.24.31-.36.1-.12.14-.2.21-.34.07-.13.03-.25-.02-.36-.05-.1-.47-1.12-.64-1.54-.17-.4-.34-.35-.47-.35h-.4c-.14 0-.36.05-.55.25-.19.2-.72.7-.72 1.71 0 1 .74 1.97.84 2.1.1.13 1.46 2.3 3.6 3.13 2.14.83 2.14.55 2.53.52.39-.03 1.24-.5 1.42-.97.18-.47.18-.88.13-.97-.05-.08-.19-.13-.4-.23Z'/%3E%3C/svg%3E");
}

.footer-block a[href*="instagram.com"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4Zm5 5.5A4.5 4.5 0 1 0 16.5 13 4.5 4.5 0 0 0 12 8.5Zm7-2.75a1.25 1.25 0 1 0 1.25 1.25A1.25 1.25 0 0 0 19 5.75Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4Zm5 5.5A4.5 4.5 0 1 0 16.5 13 4.5 4.5 0 0 0 12 8.5Zm7-2.75a1.25 1.25 0 1 0 1.25 1.25A1.25 1.25 0 0 0 19 5.75Z'/%3E%3C/svg%3E");
}

.footer-block a:hover,
.footer-block a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(31, 27, 22, 0.1);
  border-color: rgba(150, 113, 88, 0.26);
  background: rgba(255, 255, 255, 0.98);
}

.footer-block a:focus-visible {
  outline: 2px solid rgba(150, 113, 88, 0.24);
  outline-offset: 2px;
}

.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.footer-hours {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 1.1fr);
  gap: 1.25rem;
}

.footer-location-copy {
  min-width: 0;
}

.footer-map {
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(31, 27, 22, 0.06);
  background: rgba(255, 255, 255, 0.92);
}

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

.footer-bottom {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-note {
  font-size: 0.95rem;
}

.about-link-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.info-card p,
.info-card li {
  line-height: 1.7;
}

.info-card p + p {
  margin-top: 1rem;
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.quote-panel {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 216, 199, 0.72) 100%);
  box-shadow: var(--shadow);
  text-align: center;
}

.quote-panel p {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.3;
}

.hours-card,
.policy-card {
  height: 100%;
}

.hours-card li span {
  display: block;
  font-weight: 700;
  color: var(--ink);
}

.about-clinic-hero {
  background: #f5ede3;
}

.about-clinic-hero .hero-photo {
  object-position: center;
}

.about-clinic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.46) 0%,
      rgba(31, 27, 22, 0.38) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.66) 0%,
      rgba(242, 216, 199, 0.32) 48%,
      rgba(31, 27, 22, 0.34) 100%
    );
  z-index: 1;
}

.about-clinic-hero .content-wrap {
  position: relative;
  z-index: 3;
}

.tech-hero {
  background:
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.9) 0%,
      rgba(242, 216, 199, 0.75) 55%,
      rgba(248, 243, 237, 0.9) 100%
    ),
    url("techs/kelsieBeauty/kelsie.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.amoura-hero {
  background:
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.9) 0%,
      rgba(242, 216, 199, 0.75) 55%,
      rgba(248, 243, 237, 0.9) 100%
    ),
    url("techs/amoura/hero.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lucie-hero {
  background:
    radial-gradient(circle at top left, rgba(242, 216, 199, 0.7) 0%, rgba(242, 216, 199, 0) 45%),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.95) 0%,
      rgba(236, 224, 215, 0.92) 55%,
      rgba(248, 243, 237, 0.95) 100%
    );
}

.lucie-hero .hero-photo {
  object-position: center 18%;
}

.lucie-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.36) 0%,
      rgba(31, 27, 22, 0.28) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.62) 0%,
      rgba(242, 216, 199, 0.34) 48%,
      rgba(31, 27, 22, 0.38) 100%
    );
  z-index: 1;
}

.lucie-hero .content-wrap {
  position: relative;
  z-index: 3;
}

.fbb-hero {
  background:
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.9) 0%,
      rgba(242, 216, 199, 0.75) 55%,
      rgba(248, 243, 237, 0.9) 100%
    ),
    url("techs/fbb/hero.jpeg");
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
}

.gemma-hero {
  background:
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.96) 0%,
      rgba(242, 216, 199, 0.82) 52%,
      rgba(248, 243, 237, 0.96) 100%
    ),
    radial-gradient(circle at top right, rgba(242, 216, 199, 0.7) 0%, rgba(242, 216, 199, 0) 45%);
}

.gemma-hero .hero-photo {
  object-position: 22% 18%;
}

.gemma-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.34) 0%,
      rgba(31, 27, 22, 0.28) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.58) 0%,
      rgba(242, 216, 199, 0.34) 48%,
      rgba(31, 27, 22, 0.4) 100%
    );
  z-index: 1;
}

.gemma-hero .content-wrap {
  position: relative;
  z-index: 3;
  justify-items: end;
}

.gemma-hero .hero-content {
  margin-left: auto;
  align-items: flex-end;
  text-align: right;
}

.jaq-hero {
  background: #f5ede3;
}

.jaq-hero .hero-photo {
  object-position: right 59%;
}

.jaq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.34) 0%,
      rgba(31, 27, 22, 0.3) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 243, 237, 0.62) 0%,
      rgba(242, 216, 199, 0.36) 48%,
      rgba(31, 27, 22, 0.42) 100%
    );
  z-index: 1;
}

.jaq-hero .content-wrap {
  position: relative;
  z-index: 3;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.social-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--mocha);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  transition: transform 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-orbit {
  position: relative;
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-orbit-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--mocha);
  pointer-events: none;
}

.social-orbit text {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}

.social-orbit .social-link {
  position: relative;
  z-index: 1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-row {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

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

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 27, 22, 0.06);
}

.service-split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.service-split.reverse .service-split-media {
  order: 2;
}

.service-split-media {
  min-height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-split-media.service-split-icon {
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background:
    radial-gradient(circle at top right, rgba(242, 216, 199, 0.7) 0%, rgba(242, 216, 199, 0) 42%),
    linear-gradient(160deg, rgba(248, 243, 237, 0.98) 0%, rgba(233, 223, 210, 0.9) 100%);
}

.service-split-media.service-split-icon[data-tone="rose"] {
  background:
    radial-gradient(circle at top right, rgba(242, 216, 199, 0.8) 0%, rgba(242, 216, 199, 0) 42%),
    linear-gradient(160deg, rgba(255, 248, 243, 0.98) 0%, rgba(244, 224, 214, 0.92) 100%);
}

.service-split-media.service-split-icon[data-tone="sand"] {
  background:
    radial-gradient(circle at top right, rgba(233, 223, 210, 0.76) 0%, rgba(233, 223, 210, 0) 42%),
    linear-gradient(160deg, rgba(249, 244, 238, 0.98) 0%, rgba(236, 226, 214, 0.92) 100%);
}

.service-split-media.service-split-icon[data-tone="cream"] {
  background:
    radial-gradient(circle at top right, rgba(248, 243, 237, 0.92) 0%, rgba(248, 243, 237, 0) 42%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.98) 0%, rgba(240, 230, 219, 0.92) 100%);
}

.service-split-media.service-split-icon svg {
  width: 86px;
  height: 86px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.service-split-body {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-split-body p,
.service-card-body p {
  line-height: 1.6;
  color: var(--mocha);
}

.service-card-body ul,
.service-card-body ol {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  line-height: 1.55;
  color: var(--mocha);
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 27, 22, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  display: block;
  height: 160px;
  background-image:
    linear-gradient(160deg, rgba(248, 243, 237, 0.2), rgba(248, 243, 237, 0.55)),
    var(--card-image, none);
  background-size: cover;
  background-position: center;
}

.service-card.text-only::before {
  display: none;
}

.service-card.tier-card::before {
  display: block;
  background-image: none;
  background: var(--tier-bg, linear-gradient(160deg, rgba(248, 243, 237, 0.98) 0%, rgba(233, 223, 210, 0.92) 100%));
}

.service-card.tier-bronze {
  --tier-bg:
    radial-gradient(circle at top right, rgba(244, 202, 166, 0.55) 0%, rgba(244, 202, 166, 0) 42%),
    linear-gradient(160deg, #e5c2a4 0%, #c89163 100%);
}

.service-card.tier-silver {
  --tier-bg:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(160deg, #e4e6ea 0%, #b6bcc6 100%);
}

.service-card.tier-gold {
  --tier-bg:
    radial-gradient(circle at top right, rgba(255, 243, 199, 0.58) 0%, rgba(255, 243, 199, 0) 42%),
    linear-gradient(160deg, #ecd48b 0%, #c69b3d 100%);
}

.service-card.tier-platinum {
  --tier-bg:
    radial-gradient(circle at top right, rgba(245, 247, 251, 0.6) 0%, rgba(245, 247, 251, 0) 42%),
    linear-gradient(160deg, #d9dde5 0%, #9fa7b5 100%);
}

.service-card.has-photo::before {
  display: none;
}

.service-card.has-icon::before {
  display: none;
}

.service-card.single {
  margin: 2rem auto 0;
  max-width: 520px;
}

.service-card-body {
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
  overflow-wrap: break-word;
}

.service-card-photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5efe6;
}

.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-icon-panel {
  width: 100%;
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(242, 216, 199, 0.68) 0%, rgba(242, 216, 199, 0) 42%),
    linear-gradient(160deg, rgba(248, 243, 237, 0.98) 0%, rgba(233, 223, 210, 0.88) 100%);
  color: var(--gold);
}

.service-card-icon-panel[data-tone="rose"] {
  background:
    radial-gradient(circle at top right, rgba(242, 216, 199, 0.8) 0%, rgba(242, 216, 199, 0) 42%),
    linear-gradient(160deg, rgba(255, 248, 243, 0.98) 0%, rgba(244, 224, 214, 0.92) 100%);
}

.service-card-icon-panel[data-tone="sand"] {
  background:
    radial-gradient(circle at top right, rgba(233, 223, 210, 0.76) 0%, rgba(233, 223, 210, 0) 42%),
    linear-gradient(160deg, rgba(249, 244, 238, 0.98) 0%, rgba(236, 226, 214, 0.92) 100%);
}

.service-card-icon-panel[data-tone="cream"] {
  background:
    radial-gradient(circle at top right, rgba(248, 243, 237, 0.92) 0%, rgba(248, 243, 237, 0) 42%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.98) 0%, rgba(240, 230, 219, 0.92) 100%);
}

.service-card-icon-panel svg,
.carousel-card-icon svg {
  width: 60px;
  height: 60px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.service-card .service-meta,
.service-split-body .service-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--sand);
  width: fit-content;
}

.service-group {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.brow-group .service-group-header {
  margin-bottom: 0.5rem;
}

.brow-layout {
  display: block;
}

.brow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 27, 22, 0.06);
}

.brow-panel-media {
  background-image: var(--brow-image);
  background-size: cover;
  background-position: center;
  min-height: 420px;
  position: relative;
}


.brow-panel-content {
  padding: 2.6rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.brow-essentials-header h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.brow-essentials-header p {
  color: var(--mocha);
  margin-top: 0.4rem;
}

.brow-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.brow-item {
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(31, 27, 22, 0.08);
}

.brow-item:first-child {
  border-top: none;
  padding-top: 0;
}

.brow-item h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.brow-item p + p,
.bundle-item p + p {
  margin-top: 0.85rem;
}

.brow-item .service-block {
  margin-top: 0.8rem;
}

.brow-price {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--sand);
  font-weight: 600;
  white-space: nowrap;
}

.bundle-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 27, 22, 0.06);
}

.bundle-panel-content {
  padding: 2.6rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.bundle-panel-media {
  background-size: cover;
  background-position: center;
  min-height: 100%;
  position: relative;
}


.bundle-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.bundle-item {
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(31, 27, 22, 0.08);
}

.bundle-item:first-child {
  border-top: none;
  padding-top: 0;
}

.bundle-item h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.bundle-price {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--sand);
  font-weight: 600;
  white-space: nowrap;
}

.service-group-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 0.9rem;
}

.bundle-group .service-group-header {
  grid-template-columns: auto minmax(0, 1fr);
}

.bundle-group .service-group-title {
  justify-self: start;
  text-align: left;
  order: -1;
}

.service-group-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(31, 27, 22, 0.12);
}

.service-group-title {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  justify-self: end;
  text-align: right;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
  align-items: stretch;
}

.lucie-booking-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.lucie-photo-grid .service-card-photo {
  aspect-ratio: 3 / 4;
}

.lucie-photo-grid .service-card-photo img {
  object-position: right top;
}

.julie-photo-grid .service-card-photo {
  aspect-ratio: 4 / 5;
}

.julie-photo-grid .service-card-photo img {
  object-position: center top;
}

.alice-photo-grid .service-card-photo {
  aspect-ratio: 4 / 5;
}

.alice-photo-grid .service-card-photo img {
  object-position: center top;
}

.ns-photo-grid .service-card-photo {
  aspect-ratio: 4 / 3;
}

.ns-photo-grid .service-card-photo img {
  object-position: center top;
}

.jaq-photo-grid .service-card-photo {
  aspect-ratio: 4 / 3;
}

.jaq-photo-grid .service-card-photo img {
  object-position: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin: 0 0 3rem;
}

.photo-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  min-height: 280px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 1180px) {
  .lucie-booking-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.profile-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.profile-split .section-intro {
  max-width: none;
  margin-bottom: 0;
}

.profile-split-single {
  grid-template-columns: 1fr;
}

.profile-side-photo {
  min-height: 100%;
  height: 100%;
}

.service-grid.service-scroll {
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.8rem;
}

.service-grid.service-scroll > .service-card {
  scroll-snap-align: start;
}

.service-grid.service-scroll::-webkit-scrollbar {
  height: 6px;
}

.service-grid.service-scroll::-webkit-scrollbar-thumb {
  background: rgba(31, 27, 22, 0.2);
  border-radius: 999px;
}

.service-row:nth-child(n + 5),
.service-row:nth-child(n + 5).reverse {
  flex-direction: column;
}

.service-row:nth-child(n + 5) .service-media,
.service-row:nth-child(n + 5).reverse .service-media {
  min-height: 220px;
}

.service-media {
  flex: 0.9;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f5efe6;
}

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

.service-info {
  flex: 1.1;
  background: var(--white);
  padding: 2.2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.waxing-carousel {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.carousel-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-top: 0.4rem;
}

.carousel-controls {
  display: flex;
  gap: 0.6rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(31, 27, 22, 0.2);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.8rem;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(31, 27, 22, 0.2);
  border-radius: 999px;
}

.carousel-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.carousel-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.carousel-card-icon {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(242, 216, 199, 0.7) 0%, rgba(242, 216, 199, 0) 40%),
    linear-gradient(160deg, rgba(248, 243, 237, 0.98) 0%, rgba(233, 223, 210, 0.88) 100%);
  color: var(--gold);
}

.carousel-card-icon svg {
}

.carousel-card-icon[data-tone="rose"] {
  background:
    radial-gradient(circle at top right, rgba(242, 216, 199, 0.8) 0%, rgba(242, 216, 199, 0) 42%),
    linear-gradient(160deg, rgba(255, 248, 243, 0.98) 0%, rgba(244, 224, 214, 0.92) 100%);
}

.carousel-card-icon[data-tone="sand"] {
  background:
    radial-gradient(circle at top right, rgba(233, 223, 210, 0.76) 0%, rgba(233, 223, 210, 0) 42%),
    linear-gradient(160deg, rgba(249, 244, 238, 0.98) 0%, rgba(236, 226, 214, 0.92) 100%);
}

.carousel-card-icon[data-tone="cream"] {
  background:
    radial-gradient(circle at top right, rgba(248, 243, 237, 0.92) 0%, rgba(248, 243, 237, 0) 42%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.98) 0%, rgba(240, 230, 219, 0.92) 100%);
}

.carousel-card-body {
  padding: 1.2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.service-category {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.65rem;
  color: var(--mocha);
}

.service-meta {
  font-weight: 600;
  color: var(--mocha);
}

.service-info p {
  line-height: 1.6;
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}

.service-subitem {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 27, 22, 0.12);
  background: #fffaf4;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-subitem h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.service-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mocha);
  margin-top: 1rem;
}

.service-info ul {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
  line-height: 1.5;
}

.service-notes {
  list-style: disc;
  margin-top: 0.9rem;
  padding-left: 1.35rem;
  gap: 0.75rem;
}

.service-notes li {
  line-height: 1.65;
}

.service-item {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.bundles {
  background: var(--cream);
}

.bundles .section-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.spmu-booking-shell {
  max-width: 860px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.spmu-booking-note {
  padding: 1.8rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 27, 22, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  gap: 0.9rem;
  text-align: left;
}

.spmu-booking-note .service-label {
  margin-top: 0;
}

.spmu-booking-note p {
  max-width: none;
}

.spmu-booking-actions {
  justify-content: center;
  margin-top: 0;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.bundle-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

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

@media (max-width: 980px) {
  .nav-shell {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .primary-nav {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    background: linear-gradient(140deg, #fdfbf8 0%, #f3e7db 55%, #efe3d7 100%);
    z-index: 20;
    text-align: center;
    font-size: 1.2rem;
    padding: 6rem 2rem 3rem;
    overflow-y: auto;
  }

  .primary-nav a {
    padding-bottom: 0.1rem;
  }

  .nav-toggle-label {
    display: inline-flex;
    margin-left: auto;
    z-index: 30;
  }

  .nav-toggle:checked + .nav-toggle-label + .primary-nav {
    display: flex;
  }

  .nav-section,
  .nav-tech {
    display: inline-flex;
  }

  .nav-cta {
    border-radius: 14px;
    padding: 0.9rem 1.8rem;
  }

  .secondary-nav {
    display: none;
  }

  .hero .content-wrap {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

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

  .service-info {
    padding: 1.8rem;
  }

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

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

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

  .service-split.reverse .service-split-media {
    order: 0;
  }

  .service-card::before {
    height: 140px;
  }

  .service-group-header {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .service-group-title {
    justify-self: start;
    text-align: left;
  }

  .brow-panel {
    grid-template-columns: 1fr;
  }

  .brow-panel-media {
    min-height: 220px;
  }

  .bundle-panel {
    grid-template-columns: 1fr;
  }

  .bundle-panel-media {
    min-height: 220px;
    order: -1;
  }

  .bundle-item {
    flex-direction: column;
  }

  .bundle-price {
    align-self: flex-start;
  }

  .gemma-hero .content-wrap {
    justify-items: center;
  }

  .gemma-hero .hero-content {
    margin-left: 0;
    align-items: center;
    text-align: center;
  }

  .service-grid.service-scroll {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    grid-auto-columns: minmax(220px, 1fr);
  }

  .profile-split {
    grid-template-columns: 1fr;
  }

  .profile-side-photo {
    min-height: 320px;
  }

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

  .footer-map {
    min-height: 280px;
  }

  .brow-item {
    flex-direction: column;
  }

  .brow-price {
    align-self: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .secondary-nav,
  section,
  .hero {
    padding: 1.5rem 0;
  }

  .content-wrap {
    padding: 0 1.5rem;
  }

  .primary-nav a {
    padding-bottom: 0.1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .primary-nav {
    gap: 1rem;
  }

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

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

  .social-orbit {
    width: 72px;
    height: 72px;
  }

  .social-orbit text {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .team-card,
  .about-card,
  .service-card-body,
  .info-card,
  .footer-block {
    padding: 1.5rem;
  }

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

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

  .footer-map iframe {
    min-height: 240px;
  }
}
