:root {
  --white: #ffffff;
  --ivory: #fffaf4;
  --linen: #f2e3d3;
  --sand: #dec5aa;
  --beige: #c7a98d;
  --warm-beige: #aa8b70;
  --taupe: #7f6a58;
  --coffee: #3a2b24;
  --muted: #77665a;
  --rosewood: #b18b84;
  --rosewood-soft: rgba(177, 139, 132, 0.15);
  --line: rgba(58, 43, 36, 0.12);
  --shadow: 0 24px 62px rgba(58, 43, 36, 0.14);
  --soft-shadow: 0 14px 32px rgba(58, 43, 36, 0.09);
  --sheen: rgba(255, 255, 255, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--coffee);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.94), transparent 28%),
    linear-gradient(180deg, #fff9f2 0%, #f2e5d7 48%, #fffaf4 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--header-gap, 10px);
  padding: var(--header-padding-top, 18px) clamp(18px, 5vw, 72px) 0;
  background:
    linear-gradient(180deg, rgba(242, 226, 211, 0.58), rgba(255, 250, 244, 0.22));
  border-bottom: 1px solid rgba(255, 239, 213, 0.28);
  backdrop-filter: blur(22px) saturate(1.14);
  transition: box-shadow 220ms ease, background 220ms ease, padding 520ms ease, gap 520ms ease;
}

.site-header.is-compact {
  background:
    linear-gradient(180deg, rgba(223, 202, 181, 0.62), rgba(255, 250, 244, 0.34));
  box-shadow: 0 12px 30px rgba(75, 64, 56, 0.07);
}

.site-header.is-compact nav a:hover,
.site-header.is-compact .nav-instagram:hover,
.site-header.is-compact .nav-social:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--coffee);
  font-weight: 800;
  text-decoration: none;
}

.header-main {
  display: flex;
  width: 100%;
  max-height: var(--header-logo-max-height, 520px);
  overflow: hidden;
  align-items: center;
  justify-content: center;
  opacity: var(--header-logo-opacity, 1);
  pointer-events: var(--header-logo-pointer-events, auto);
  transform: translateY(var(--header-logo-y, 0));
  transition: opacity 420ms ease, max-height 520ms ease, transform 520ms ease;
}

.brand-logo {
  width: var(--logo-width, clamp(175px, 24vw, 330px));
  height: auto;
  object-fit: contain;
  will-change: width, opacity, transform;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--coffee);
  background: rgba(255, 250, 243, 0.78);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.menu-toggle span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 560ms cubic-bezier(0.18, 0.82, 0.22, 1), opacity 300ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-7px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(7px);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% + 1.5px)) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 1.5px)) scaleX(0);
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 1.5px)) rotate(-45deg);
}

nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 8px 22px;
  padding: var(--nav-padding-y, 14px) 0 calc(var(--nav-padding-y, 14px) + 2px);
  border-top: 1px solid var(--line);
  color: var(--nav-color, var(--muted));
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 10px rgba(47, 33, 27, var(--nav-shadow-opacity, 0));
}

nav a,
.footer-links a {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 7px 10px;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.top-announcement {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: var(--announcement-max-height, 58px);
  margin-inline: calc(50% - 50vw);
  padding: var(--announcement-padding-y, 10px) 0;
  color: #9b1f1f;
  background: rgba(255, 247, 236, 0.46);
  border-block: 1px solid rgba(47, 33, 27, 0.12);
  opacity: var(--announcement-opacity, 1);
  transition: max-height 520ms ease, padding 520ms ease, opacity 420ms ease;
}

.top-announcement-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  will-change: transform;
  backface-visibility: hidden;
  animation: topAnnouncementSlide 34s linear infinite;
}

.top-announcement span {
  flex: 0 0 auto;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  padding-inline: clamp(22px, 4vw, 52px);
  transform: scale(var(--announcement-scale, 1));
  transform-origin: center;
  transition: transform 520ms ease;
}

@keyframes topAnnouncementSlide {
  from {
    transform: translate3d(0, -50%, 0);
  }

  to {
    transform: translate3d(-50%, -50%, 0);
  }
}

.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 0 0 10px;
}

.nav-instagram,
.nav-social {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
}

.footer-socials .nav-instagram,
.footer-socials .nav-social {
  border-color: rgba(98, 67, 46, 0.16);
  background: rgba(255, 250, 243, 0.36);
}

.nav-instagram svg,
.nav-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials .nav-instagram:hover,
.footer-socials .nav-social:hover {
  color: var(--coffee);
  background: rgba(255, 250, 243, 0.58);
  border-color: rgba(98, 67, 46, 0.28);
}

nav a:hover,
.footer-links a:hover {
  color: var(--coffee);
  background: var(--rosewood-soft);
  border-color: rgba(159, 111, 106, 0.28);
}

.nav-instagram:hover,
.nav-social:hover {
  color: var(--coffee);
  background: var(--rosewood-soft);
  border-color: rgba(159, 111, 106, 0.28);
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.86fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(28px, 6vw, 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 248, 239, 0.92), transparent 34%),
    radial-gradient(circle at 96% 0%, rgba(255, 255, 255, 0.66), transparent 28%),
    linear-gradient(135deg, #f5dfc8 0%, #e8ccb2 48%, #d8b99c 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(190px, 26vw, 330px);
  background:
    linear-gradient(
      180deg,
      rgba(216, 185, 156, 0) 0%,
      rgba(238, 216, 197, 0.28) 26%,
      rgba(239, 219, 201, 0.72) 62%,
      #f1ddc9 100%
    );
  pointer-events: none;
}

.hero-media {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 620px;
  animation: heroSlideInFromRight 3900ms cubic-bezier(0.16, 0.84, 0.22, 1) 300ms both;
  will-change: opacity, transform;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid rgba(51, 40, 34, 0.16);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.62);
  display: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 0;
  box-shadow: none;
}

@keyframes heroSlideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(220px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--coffee);
}

.eyebrow {
  margin: 0 0 12px;
  color: #8f8176;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.52),
    0 7px 18px rgba(47, 33, 27, 0.08);
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8f8176;
}

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

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid rgba(98, 67, 46, 0.16);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow:
    0 12px 26px rgba(47, 33, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease, box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 17px 34px rgba(47, 33, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button.primary {
  color: #2f211b;
  border-color: rgba(98, 67, 46, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 232, 218, 0.98) 48%, rgba(221, 194, 168, 0.92) 100%);
  box-shadow:
    0 14px 30px rgba(58, 43, 36, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.button.primary:hover {
  color: var(--white);
  border-color: rgba(245, 218, 177, 0.34);
  background: linear-gradient(135deg, #b79a7f 0%, #8c715c 50%, #5f4a3d 100%);
  box-shadow:
    0 18px 38px rgba(58, 43, 36, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button.secondary {
  color: #2f211b;
  border-color: rgba(98, 67, 46, 0.14);
  background: linear-gradient(135deg, #fffdfa 0%, #f1deca 54%, #d7b99b 100%);
  box-shadow: 0 14px 28px rgba(147, 97, 59, 0.12);
}

.button.secondary:hover {
  background: linear-gradient(135deg, #d8bea4 0%, #a88970 58%, #6f5848 100%);
  color: var(--white);
}

.button.ghost {
  color: var(--coffee);
  border-color: rgba(98, 67, 46, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(241, 225, 210, 0.5));
  box-shadow: 0 10px 22px rgba(58, 43, 36, 0.08);
}

.button.ghost:hover {
  color: var(--white);
  border-color: rgba(245, 218, 177, 0.38);
  background: linear-gradient(135deg, #b79a7f 0%, #6f5848 100%);
}

.button.dark {
  color: var(--coffee);
  border-color: rgba(98, 67, 46, 0.16);
  background: linear-gradient(135deg, #ffffff 0%, #ead8c5 100%);
}

.button.dark:hover {
  color: var(--white);
  background: linear-gradient(135deg, #a88970, #5f4a3d);
}

.band,
.section,
.booking,
footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 7vw, 90px);
  padding-block: clamp(48px, 8vw, 96px);
  background: linear-gradient(135deg, #f7e7d5, #d4b18e);
}

.studio-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 7vw, 90px);
  padding-block: clamp(44px, 7vw, 86px);
  background: linear-gradient(135deg, #fff7ec, #ead2b9);
}

.intro > p,
.studio-split > p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section {
  padding-block: clamp(58px, 8vw, 108px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2::after,
.academy-copy h2::after,
.booking-copy h2::after,
.map-copy h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c9aaa2, rgba(255, 255, 255, 0));
}

.services-showcase {
  position: relative;
  margin-top: clamp(-132px, -10vw, -82px);
  padding-top: clamp(170px, 17vw, 260px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.36), transparent 28%),
    radial-gradient(circle at 92% 28%, rgba(223, 202, 181, 0.24), transparent 26%),
    radial-gradient(circle at 10% 64%, rgba(255, 250, 244, 0.46), transparent 25%),
    radial-gradient(circle at 86% 90%, rgba(218, 196, 178, 0.2), transparent 24%),
    linear-gradient(180deg, #f1ddc9 0%, #f5e6d8 17%, #fffaf5 34%, #f4e8dc 58%, #fffaf4 82%, #ead8c7 100%);
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(160px, 18vw, 260px);
  background:
    linear-gradient(180deg, rgba(238, 216, 197, 0.62), rgba(255, 248, 241, 0));
  pointer-events: none;
}

.services-showcase > * {
  position: relative;
  z-index: 1;
}

.treatment-list {
  display: grid;
  gap: 0;
}

.treatment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding-block: clamp(14px, 2.2vw, 28px);
}

.treatment-row + .treatment-row {
  margin-top: clamp(-58px, -4vw, -30px);
}

.treatment-row:nth-child(even) {
  position: relative;
  z-index: 2;
}

.treatment-row:nth-child(odd) {
  position: relative;
  z-index: 1;
}

.treatment-row-reverse {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
}

.treatment-row-reverse .treatment-copy {
  grid-column: 2;
}

.treatment-row-reverse .treatment-media {
  grid-column: 1;
  grid-row: 1;
}

.treatment-copy {
  display: grid;
  position: relative;
  overflow: visible;
  min-height: 440px;
  justify-items: start;
  align-content: center;
  min-width: 0;
}

.treatment-copy h3 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.1;
  padding-bottom: 0.06em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.treatment-copy dl {
  display: grid;
  width: min(100%, 320px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 16px;
}

.treatment-copy dl div {
  padding: 8px 10px;
  border: 1px solid rgba(98, 67, 46, 0.11);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.2);
  box-shadow: 0 6px 16px rgba(47, 33, 27, 0.035);
}

.treatment-copy dt {
  color: rgba(47, 33, 27, 0.58);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.treatment-copy dd {
  margin: 2px 0 0;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 850;
}

.duration-value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.duration-value::after {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  opacity: 0.72;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18.1A8.1 8.1 0 1 1 12 3.9a8.1 8.1 0 0 1 0 16.2Zm.8-8.43V7.2h-1.7v5.18l4.3 2.58.88-1.42-3.48-1.87Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18.1A8.1 8.1 0 1 1 12 3.9a8.1 8.1 0 0 1 0 16.2Zm.8-8.43V7.2h-1.7v5.18l4.3 2.58.88-1.42-3.48-1.87Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.treatment-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  overflow-wrap: break-word;
}

.treatment-category .treatment-copy {
  min-height: 500px;
}

.treatment-signature {
  position: relative;
  display: inline-flex;
  max-width: 620px;
  margin: 0 0 22px;
  padding: 0 0 14px;
  color: rgba(47, 33, 27, 0.72);
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.treatment-signature::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 190px);
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 67, 46, 0.34), rgba(98, 67, 46, 0));
}

.treatment-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 660px;
  margin: 4px 0 28px;
  padding: 0;
  list-style: none;
}

.treatment-points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(98, 67, 46, 0.12);
  border-radius: 999px;
  color: rgba(47, 33, 27, 0.72);
  background: rgba(255, 250, 244, 0.42);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 12px 26px rgba(47, 33, 27, 0.035);
  white-space: normal;
  overflow-wrap: break-word;
}

.treatment-cta {
  min-width: 218px;
  min-height: 48px;
  border-color: rgba(98, 67, 46, 0.18);
  color: var(--coffee);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.92), rgba(224, 197, 172, 0.42)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    0 16px 34px rgba(47, 33, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.treatment-cta:hover {
  color: var(--white);
  border-color: rgba(93, 55, 47, 0.32);
  background: linear-gradient(135deg, #9b6758, #5e3f36);
  box-shadow: 0 18px 38px rgba(47, 33, 27, 0.16);
}

.treatment-menu {
  display: grid;
  width: min(100%, 760px);
  gap: 10px;
  margin-top: 4px;
}

.treatment-menu-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(98, 67, 46, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.54), rgba(229, 204, 180, 0.24));
  box-shadow: 0 10px 24px rgba(47, 33, 27, 0.045);
}

.treatment-menu-row strong {
  min-width: 0;
  color: var(--coffee);
  font-size: 16px;
  font-weight: 850;
}

.treatment-menu-row .service-price,
.treatment-menu-row .service-time {
  color: rgba(47, 33, 27, 0.72);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.treatment-menu-row .service-price {
  color: var(--coffee);
}

.treatment-menu-row .button {
  width: 148px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.15;
  box-shadow:
    0 10px 20px rgba(47, 33, 27, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

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

.treatment-actions .button {
  width: 170px;
  min-height: 52px;
  font-size: 15px;
  line-height: 1.2;
}

.service-toggle {
  color: var(--coffee);
  border-color: rgba(98, 67, 46, 0.24);
  background: linear-gradient(135deg, rgba(255, 248, 238, 0.92), rgba(199, 145, 91, 0.38));
}

.service-toggle:hover {
  color: var(--white);
  background: linear-gradient(135deg, #8a5148, #4a2f28);
}

.service-panel {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(98, 67, 46, 0.2);
  border-radius: 8px;
  color: var(--coffee);
  background:
    linear-gradient(145deg, rgba(255, 248, 238, 0.96), rgba(229, 204, 180, 0.94));
  box-shadow: 0 22px 54px rgba(47, 33, 27, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.treatment-copy.service-details-open .service-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.service-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(98, 67, 46, 0.18);
  border-radius: 50%;
  color: var(--coffee);
  background: rgba(255, 250, 243, 0.72);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transform-origin: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-panel-close::before,
.service-panel-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.service-panel-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.service-panel-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.service-panel-close:hover {
  color: var(--white);
  background: #8a5148;
  transform: rotate(90deg);
}

.service-panel h4 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.service-detail-list {
  display: grid;
  gap: 10px;
}

.service-detail-list div {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(98, 67, 46, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
}

.service-detail-list strong {
  min-width: 0;
  font-size: 16px;
}

.service-detail-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.service-price {
  color: var(--coffee);
  font-weight: 900;
}

.service-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-time::before {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background-color: currentColor;
  opacity: 0.68;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18.1A8.1 8.1 0 1 1 12 3.9a8.1 8.1 0 0 1 0 16.2Zm.8-8.43V7.2h-1.7v5.18l4.3 2.58.88-1.42-3.48-1.87Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18.1A8.1 8.1 0 1 1 12 3.9a8.1 8.1 0 0 1 0 16.2Zm.8-8.43V7.2h-1.7v5.18l4.3 2.58.88-1.42-3.48-1.87Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.treatment-media {
  overflow: hidden;
  min-height: clamp(260px, 31vw, 410px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 12%, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(135deg, #f2dec8 0%, #e2c5aa 48%, #cfad91 100%);
  box-shadow: 0 22px 50px rgba(58, 43, 36, 0.11);
}

.treatment-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(40px, 7vw, 74px);
  object-fit: contain;
  opacity: 0.82;
}

.treatment-media.photo-media {
  margin-inline: auto;
  width: min(100%, 74%);
  background: linear-gradient(135deg, #f2dec8 0%, #e2c5aa 48%, #cfad91 100%);
}

.treatment-media.photo-media img {
  display: block;
  padding: 0;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1.01);
}

.slide-media {
  opacity: 0;
  transition: opacity 1600ms ease, transform 2200ms cubic-bezier(0.16, 0.84, 0.22, 1);
  will-change: opacity, transform;
}

.slide-from-right {
  transform: translateX(170px);
}

.slide-from-left {
  transform: translateX(-170px);
}

.slide-media.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.gallery-section {
  background: linear-gradient(180deg, #ead5c2, #fff8f1);
}

.academy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: clamp(680px, 82vh, 920px);
  padding-block: clamp(78px, 10vw, 140px);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 8% 80%, rgba(218, 196, 178, 0.18), transparent 28%),
    linear-gradient(135deg, #fff8f1 0%, #ead1ba 100%);
}

.academy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(130px, 16vw, 230px);
  background:
    linear-gradient(180deg, rgba(247, 231, 216, 0.86), rgba(255, 248, 241, 0));
  pointer-events: none;
}

.academy > * {
  position: relative;
  z-index: 1;
}

.academy-copy h2 {
  max-width: 880px;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.98;
}

.academy-copy p {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.58;
}

.academy-list {
  display: grid;
  gap: 14px;
  width: min(100%, 680px);
  margin-top: 34px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.52);
  backdrop-filter: blur(12px);
}

.academy-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.academy-list span {
  color: var(--muted);
}

.academy-list .button {
  margin-top: 8px;
}

.academy-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 39vw, 510px);
  width: min(100%, 80%);
  margin-inline: auto;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(135deg, #f2dec8 0%, #e2c5aa 45%, #c3a187 100%);
  box-shadow: 0 22px 50px rgba(58, 43, 36, 0.11);
}

.academy-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(56px, 9vw, 96px);
  object-fit: contain;
  opacity: 0.86;
}

.academy-media.academy-photo {
  background: linear-gradient(135deg, #f2dec8 0%, #e2c5aa 45%, #c3a187 100%);
}

.academy-photo-image {
  display: block;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
}

.academy-logo-overlay {
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: 2;
  width: min(47%, 330px) !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  opacity: 0.92 !important;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 18px rgba(47, 33, 27, 0.08));
  pointer-events: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

.gallery-item {
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-3px);
  filter: brightness(0.98);
  outline: none;
  box-shadow: 0 18px 38px rgba(58, 43, 36, 0.14);
}

figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #fff3e8);
  box-shadow: var(--soft-shadow);
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  padding: clamp(18px, 4vw, 44px);
  background: rgba(31, 23, 19, 0.72);
  backdrop-filter: blur(18px) saturate(1.04);
}

.gallery-lightbox-figure {
  display: grid;
  justify-items: center;
  align-content: center;
  max-height: calc(100vh - 70px);
  background: transparent;
  box-shadow: none;
}

.gallery-lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: min(78vh, 860px);
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.gallery-lightbox-figure figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--coffee);
  background: rgba(255, 250, 244, 0.86);
}

.gallery-lightbox-control,
.gallery-lightbox-close {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 244, 0.38);
  border-radius: 50%;
  color: #fffaf4;
  background: rgba(255, 250, 244, 0.12);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.gallery-lightbox-control:hover,
.gallery-lightbox-control:focus-visible,
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: rgba(255, 250, 244, 0.2);
  border-color: rgba(255, 250, 244, 0.62);
  outline: none;
  transform: translateY(-1px);
}

.gallery-lightbox-control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.gallery-lightbox-prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.gallery-lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.gallery-lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gallery-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.section.nav-only-section,
.map-section.nav-only-section {
  display: none;
}

.section.nav-only-section.is-active {
  display: block;
}

.map-section.nav-only-section.is-active {
  display: grid;
}

.subpage-main {
  min-height: 70vh;
  padding-top: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 255, 255, 0.46), transparent 28%),
    linear-gradient(180deg, #f1ddc9 0%, #fff8f1 44%, #ead7c2 100%);
}

.subpage-main > .section:first-child,
.subpage-main > .map-section:first-child {
  padding-top: clamp(24px, 4vw, 48px);
}

.location-page {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.62), transparent 30%),
    linear-gradient(180deg, #f4e4d4, #fff8f1);
}

.location-card-page {
  max-width: 1180px;
  margin-inline: auto;
}

.location-card-simple {
  display: block;
  max-width: 760px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
}

.location-card-simple .map-copy {
  display: grid;
  justify-items: center;
}

.legal-section {
  padding-block: clamp(72px, 9vw, 120px);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 250, 243, 0.86), transparent 32%),
    linear-gradient(180deg, #ead7c2, #fff7ec);
}

.legal-document {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(98, 67, 46, 0.14);
  border-radius: 12px;
  color: var(--coffee);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 24px 58px rgba(47, 33, 27, 0.12);
}

.legal-document h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(38px, 6vw, 66px);
}

.legal-updated {
  margin: 0 0 30px;
  color: rgba(47, 33, 27, 0.58);
  font-weight: 800;
}

.legal-document article {
  padding-block: 20px;
  border-top: 1px solid rgba(98, 67, 46, 0.13);
}

.legal-document h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.5vw, 28px);
}

.legal-document p {
  max-width: 850px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-document a {
  color: var(--coffee);
  font-weight: 850;
}

.instagram-link {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.82);
}

.instagram-link p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.video-section {
  background: linear-gradient(180deg, var(--linen), #f7eadb);
  color: var(--coffee);
}

.video-section .section-heading .eyebrow {
  color: var(--white);
}

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

.video-placeholder {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.86);
  box-shadow: var(--soft-shadow);
}

.video-placeholder video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--linen);
}

.video-placeholder div {
  padding: 20px;
}

.video-placeholder p {
  margin: 0;
  color: var(--muted);
}

.reviews {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.78), transparent 26%),
    linear-gradient(135deg, #ead4bf, #fff8f1);
}

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

.review-slider {
  position: relative;
}

.review-grid article {
  padding: 26px;
  border: 1px solid rgba(177, 139, 132, 0.18);
  border-top: 4px solid #d6b7b0;
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.86);
  box-shadow: var(--soft-shadow);
}

.stars {
  margin-bottom: 14px;
  color: var(--rosewood);
  font-size: 18px;
  letter-spacing: 2px;
}

.review-grid p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
}

.review-date {
  display: block;
  margin-top: 4px;
  color: var(--rosewood);
  font-size: 14px;
  font-weight: 750;
}

.review-controls {
  display: none;
}

.review-control {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coffee);
  background: rgba(255, 250, 243, 0.78);
  display: grid;
  place-items: center;
  font-size: 0;
  line-height: 0;
}

.review-control::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.review-control[data-review-prev]::before {
  transform: rotate(-135deg);
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(159, 111, 106, 0.22);
  font-size: clamp(17px, 2vw, 22px);
}

.price-list strong {
  white-space: nowrap;
  color: var(--rosewood);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding-block: clamp(54px, 8vw, 96px);
  color: var(--coffee);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(135deg, #f0d9c3 0%, #fff7ef 100%);
}

.booking-compact {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: transparent;
  clip-path: inset(50%);
}

.booking .eyebrow {
  color: var(--white);
}

.booking-copy p {
  max-width: 670px;
  margin-top: 16px;
  color: var(--muted);
}

.booking-actions {
  justify-content: flex-end;
}

.booking-widget-card {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.booking-compact .booking-widget-card {
  width: auto;
  justify-items: center;
}

.booking-widget-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(98, 67, 46, 0.12);
  border-radius: 20px;
  color: var(--coffee);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.98), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 226, 211, 0.78));
  box-shadow:
    0 16px 36px rgba(58, 43, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-calendar-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(98, 67, 46, 0.12);
  border-radius: 18px;
  color: #6f5848;
  background:
    linear-gradient(145deg, #ffffff 0%, #f0ddca 100%);
  box-shadow:
    0 12px 28px rgba(58, 43, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.booking-calendar-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-widget-intro strong {
  display: block;
  color: var(--coffee);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.12;
}

.booking-widget-intro span:not(.booking-calendar-icon) {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.cituro-widget-frame {
  display: grid;
  min-height: 72px;
  align-items: center;
  justify-items: center;
  padding: 8px;
  border: 1px solid rgba(98, 67, 46, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(248, 237, 224, 0.68));
  box-shadow:
    0 12px 28px rgba(58, 43, 36, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(14px) saturate(1.04);
}

.cituro-widget-frame .cituroContainer {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100% !important;
}

.cituro-widget-frame .cituroBookingButton {
  display: inline-flex !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-sizing: border-box !important;
  padding: 12px 26px !important;
  border: 1px solid rgba(98, 67, 46, 0.1) !important;
  border-radius: 999px !important;
  color: #5f4b3d !important;
  background:
    linear-gradient(135deg, #fff9f1 0%, #f1dfca 54%, #dfc5aa 100%) !important;
  box-shadow:
    0 14px 32px rgba(70, 49, 38, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.84) !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease !important;
}

.cituro-widget-frame .cituroBookingButton:hover,
.cituro-widget-frame .cituroBookingButton:focus-visible {
  transform: translateY(-2px) !important;
  filter: brightness(0.98) saturate(1.04) !important;
  box-shadow:
    0 18px 38px rgba(70, 49, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
}

.cituro-widget-frame #cituro-cal-ico {
  width: 18px !important;
  height: 18px !important;
  margin-right: 3px !important;
}

.cituro-widget-frame iframe,
.cituro-widget-frame > div {
  width: 100% !important;
  max-width: 100% !important;
}

.booking-widget-card .booking-actions {
  margin-top: 0;
  justify-content: flex-start;
}

.contact-details {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  color: var(--coffee);
  font-style: normal;
  font-weight: 800;
}

.contact-details a,
footer a {
  text-decoration: none;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details a:hover,
footer a:hover {
  color: var(--rosewood);
}

.map-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #fffaf4, #f0dfce);
}

.location-card {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(177, 139, 132, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.88);
  box-shadow: var(--soft-shadow);
}

.map-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.map-frame {
  width: 100%;
  min-height: clamp(280px, 30vw, 390px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-block: 28px;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(242, 226, 211, 0.82), rgba(255, 250, 244, 0.78));
  backdrop-filter: blur(12px) saturate(1.08);
  border-top: 1px solid rgba(98, 67, 46, 0.12);
}

.back-to-start {
  position: fixed;
  left: clamp(16px, 2.8vw, 34px);
  bottom: clamp(16px, 2.8vw, 34px);
  z-index: 8;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(47, 33, 27, 0.18);
  backdrop-filter: blur(14px) saturate(1.08);
  opacity: var(--back-start-opacity, 0);
  pointer-events: var(--back-start-events, none);
  transform: translateY(var(--back-start-y, 10px));
  transition: opacity 240ms ease, transform 240ms ease, background 200ms ease, border-color 200ms ease;
}

.back-to-start:hover {
  background: rgba(47, 33, 27, 0.3);
  border-color: rgba(255, 255, 255, 0.58);
}

.back-to-start svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: clamp(16px, 3vw, 34px);
  color: var(--coffee);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 235, 222, 0.22));
}

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 1040px);
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(24px, 3.2vw, 36px);
  border: 1px solid rgba(98, 67, 46, 0.16);
  border-radius: 22px;
  color: var(--coffee);
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 28px 72px rgba(47, 33, 27, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

body.cookie-locked {
  overflow: hidden;
}

.cookie-copy {
  display: grid;
  gap: 6px;
}

.cookie-copy strong {
  color: var(--coffee);
  font-size: 17px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: flex-end;
}

.cookie-banner .button {
  flex: 0 0 auto;
  min-height: 48px !important;
  padding-inline: 22px !important;
  font-size: 14px !important;
  outline: none;
}

.cookie-banner .button:focus,
.cookie-banner .button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(143, 129, 118, 0.16),
    0 14px 30px rgba(47, 33, 27, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

footer p {
  margin: 4px 0 0;
}

footer p strong {
  color: var(--coffee);
  font-size: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 800;
  grid-column: 3;
}

.footer-links a:not([href$="#kontakt"]) {
  display: none;
}

.footer-legal {
  display: grid;
  gap: 8px;
  grid-column: 2;
  justify-items: center;
  text-align: center;
  font-size: 13px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
}

.legal-links a {
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--coffee);
  background: var(--rosewood-soft);
  border-color: rgba(159, 111, 106, 0.28);
}

@media (max-width: 860px) {
  footer,
  .intro,
  .studio-split,
  .academy,
  .map-section,
  .booking {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: center;
    padding-top: 22px;
  }

  .header-main {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    justify-content: initial;
    transform: none;
  }

  .brand {
    grid-column: 2;
    justify-content: center;
  }

  .menu-toggle {
    display: grid;
    position: fixed;
    top: var(--mobile-header-toggle-top, 22px);
    right: 18px;
    z-index: 90;
    margin: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none;
    transform: translateZ(0);
    -webkit-tap-highlight-color: rgba(177, 139, 132, 0.15);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-toggle:active {
    color: var(--coffee);
    background: var(--rosewood-soft) !important;
    box-shadow: none !important;
  }

  nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 20;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 150px 28px 44px;
    border-top: 0;
    color: var(--coffee);
    background: var(--ivory);
    font-size: 22px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    text-align: center;
    visibility: hidden;
    transition: none;
  }

  body.menu-ready nav {
    transition:
      opacity 520ms ease,
      transform 720ms cubic-bezier(0.18, 0.82, 0.22, 1),
      visibility 0s linear 720ms;
  }

  .site-header.menu-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  body.menu-ready .site-header.menu-open nav {
    transition:
      opacity 520ms ease,
      transform 720ms cubic-bezier(0.18, 0.82, 0.22, 1),
      visibility 0s;
  }

  .site-header.menu-open {
    position: fixed;
    inset: 0;
    overflow: auto;
    justify-content: flex-start;
    background: var(--ivory);
  }

  .site-header.menu-open .header-main {
    position: fixed;
    top: var(--mobile-menu-logo-top, 22px);
    right: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    min-height: var(--mobile-menu-logo-height, 90px);
    align-items: center;
    padding-block: 0;
    background: transparent;
  }

  .site-header.menu-open .menu-toggle {
    top: var(--mobile-menu-toggle-top, 44px);
    right: 18px;
    z-index: 90;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none;
  }

  .site-header.menu-open .menu-toggle:hover,
  .site-header.menu-open .menu-toggle:focus-visible,
  .site-header.menu-open .menu-toggle:active {
    background: var(--rosewood-soft) !important;
    box-shadow: none !important;
  }

  .site-header.menu-open .brand {
    grid-column: 2;
    align-self: center;
    justify-self: center;
    z-index: 55;
  }

  .site-header.menu-open .brand-logo {
    width: var(--mobile-menu-logo-width, var(--logo-width, 175px));
  }

  .site-header.menu-open .top-announcement {
    display: none;
  }

  .nav-instagram,
  .nav-social {
    width: 44px;
    height: 44px;
    border-color: var(--line);
    background: rgba(229, 210, 189, 0.42);
  }

  .nav-socials {
    gap: 12px;
    margin-top: 8px;
  }

  .nav-instagram svg,
  .nav-social svg {
    width: 23px;
    height: 23px;
  }

  .hero {
    min-height: 720px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 26px;
  }

  .hero-media {
    order: -1;
    justify-self: center;
    max-width: min(82vw, 390px);
  }

  .intro,
  .studio-split,
  .academy,
  .map-section,
  .video-grid,
  .booking {
    grid-template-columns: 1fr;
  }

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

  .gallery figcaption {
    padding: 8px 9px;
    font-size: 12px;
  }

  .gallery-lightbox {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 18px 10px;
  }

  .gallery-lightbox-control,
  .gallery-lightbox-close {
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox-figure img {
    max-height: 72vh;
  }

  .gallery-lightbox-figure figcaption {
    flex-direction: column;
    gap: 2px;
    border-radius: 14px;
    text-align: center;
  }

  .treatment-row,
  .treatment-row-reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .treatment-row-reverse .treatment-copy,
  .treatment-row-reverse .treatment-media {
    grid-column: auto;
    grid-row: auto;
  }

  .treatment-copy {
    order: 2;
    min-height: auto;
    padding-bottom: 36px;
  }

  .treatment-copy h3 {
    max-width: 100%;
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1.14;
    padding-bottom: 0.08em;
  }

  .treatment-media,
  .treatment-row-reverse .treatment-media {
    order: 1;
  }

  .treatment-copy dl {
    width: min(100%, 320px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 16px;
  }

  .treatment-copy p:not(.eyebrow) {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.62;
  }

  .treatment-signature {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: clamp(17px, 5.3vw, 20px);
    line-height: 1.42;
  }

  .treatment-points {
    display: grid;
    width: 100%;
    gap: 9px;
    margin-bottom: 22px;
  }

  .treatment-points li {
    justify-content: center;
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12.5px;
    text-align: center;
  }

  .treatment-cta {
    width: 100%;
    min-height: 52px;
  }

  .treatment-category .treatment-copy {
    min-height: auto;
  }

  .treatment-menu {
    width: 100%;
    gap: 12px;
  }

  .treatment-menu-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 15px;
    border-radius: 16px;
  }

  .treatment-menu-row strong {
    font-size: 17px;
  }

  .treatment-menu-row .service-price,
  .treatment-menu-row .service-time {
    justify-self: start;
    font-size: 14px;
  }

  .treatment-menu-row .button {
    width: 100%;
    min-height: 50px;
    margin-top: 6px;
    font-size: 14px;
  }

  .treatment-copy .button {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
  }

  .treatment-actions {
    width: 100%;
  }

  .treatment-actions .button {
    flex: 1 1 150px;
    width: auto;
  }

  .service-panel {
    padding: 58px 18px 22px;
  }

  .service-detail-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .service-detail-list span {
    white-space: normal;
  }

  .service-time {
    justify-self: start;
  }

  .service-time::before {
    display: none;
  }

  .service-time::after {
    content: "";
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    background-color: currentColor;
    opacity: 0.68;
    -webkit-mask:
      url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18.1A8.1 8.1 0 1 1 12 3.9a8.1 8.1 0 0 1 0 16.2Zm.8-8.43V7.2h-1.7v5.18l4.3 2.58.88-1.42-3.48-1.87Z'/%3E%3C/svg%3E")
      center / contain no-repeat;
    mask:
      url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18.1A8.1 8.1 0 1 1 12 3.9a8.1 8.1 0 0 1 0 16.2Zm.8-8.43V7.2h-1.7v5.18l4.3 2.58.88-1.42-3.48-1.87Z'/%3E%3C/svg%3E")
      center / contain no-repeat;
  }

  .treatment-media {
    margin-bottom: 8px;
    min-height: 330px;
    width: 100%;
  }

  .treatment-media.photo-media {
    width: 100%;
  }

  .academy {
    min-height: auto;
    gap: 32px;
  }

  .academy-copy h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .academy-copy p {
    font-size: 18px;
  }

  .academy-list {
    width: 100%;
  }

  .academy-list .button {
    width: 100%;
  }

  .academy-media {
    min-height: 360px;
    width: 100%;
  }

  .slide-from-right {
    transform: translateX(120px);
  }

  .slide-from-left {
    transform: translateX(-120px);
  }

  .review-slider {
    overflow: hidden;
    padding-inline: 16px;
  }

  .review-grid {
    display: flex;
    gap: 0;
    transform: translateX(calc(var(--review-index, 0) * -100%));
    transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
  }

  .review-grid article {
    display: block;
    flex: 0 0 100%;
    min-width: 100%;
    padding-inline: 34px;
  }

  .review-grid article.is-active {
    display: block;
  }

  .review-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }

  .review-control {
    pointer-events: auto;
    color: var(--coffee);
    background: rgba(255, 250, 243, 0.92);
    box-shadow: 0 10px 24px rgba(75, 64, 56, 0.14);
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-media,
    .slide-media {
      opacity: 1;
      transform: none;
      animation: none;
      transition: none;
    }

    .review-grid {
      transition: none;
    }
  }

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

  .booking-actions {
    justify-content: flex-start;
  }

  .booking-widget-card {
    width: 100%;
  }

  .booking-widget-intro {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px;
    text-align: center;
  }

  .booking-calendar-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .cituro-widget-frame {
    min-height: 640px;
    border-radius: 20px;
  }

  footer {
    align-items: center;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 34px;
    text-align: center;
  }

  footer strong {
    display: block;
    margin-bottom: 8px;
    color: var(--coffee);
    font-size: 18px;
  }

  footer p {
    margin: 6px 0 0;
  }

  .footer-links {
    grid-column: auto;
    justify-content: center;
  }

  .footer-legal {
    grid-column: auto;
    order: 3;
  }

  .footer-links a:not([href$="#kontakt"]) {
    display: none;
  }

  .footer-links a[href$="#kontakt"] {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 250, 243, 0.74);
  }

  .back-to-start {
    width: 42px;
    height: 42px;
    left: 14px;
    bottom: 86px;
  }

  .cookie-banner {
    padding: 18px;
    text-align: center;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
  }

  .cookie-copy {
    gap: 5px;
  }

  .cookie-copy strong {
    font-size: 16px;
  }

  .cookie-banner p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-banner .button {
    width: 100%;
    min-height: 44px !important;
    padding-inline: 16px !important;
    font-size: 13.5px !important;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 15px;
  }

  nav {
    gap: 18px;
    font-size: 22px;
  }

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

  .hero-media::before {
    inset: 14px -10px -10px 14px;
  }

  .button {
    width: 100%;
  }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
