@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/Manrope-Light.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Manrope-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Manrope-Medium.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/Manrope-SemiBold.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Manrope-Bold.woff2) format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/Newsreader-VF.woff2) format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/Newsreader-Italic-VF.woff2) format("woff2");
}
:root {
  --mist: #F7F6F2;
  --mist-deep: #F1EEE7;
  --sand: #ECE7DA;
  --sand-deep: #DFD7C4;
  --paper: #FDFCFA;
  --ink: #272C24;
  --ink-soft: #454C3D;
  --ink-mute: #626A57;
  --sage: #7F8D6F;
  --sage-deep: #55624A;
  --sage-mist: #E8ECE2;
  --brand: #7F8D6F;
  --brand-tint: color-mix(in srgb, var(--brand) 14%, transparent);
  --brand-tint-soft: color-mix(in srgb, var(--brand) 8%, transparent);
  --brand-line: color-mix(in srgb, var(--brand) 38%, var(--sand-deep));
  --line: #E1DBCC;
  --line-soft: #EAE5D9;
  --night: #272C24;
  --night-soft: #323830;
  --night-text: #E9E6DC;
  --night-mute: #B9BCA9;
  --shadow-soft: 0 18px 50px rgba(39, 44, 36, 0.09), 0 4px 14px rgba(39, 44, 36, 0.05);
  --shadow-hush: 0 30px 80px rgba(39, 44, 36, 0.12), 0 8px 20px rgba(39, 44, 36, 0.06);
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --radius-pill: 999px;
  --organic-a: 58% 42% 55% 45% / 52% 46% 54% 48%;
  --organic-b: 44% 56% 48% 52% / 58% 44% 56% 42%;
  --organic-c: 52% 48% 60% 40% / 46% 56% 44% 54%;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --font-display:
    "Newsreader",
    Georgia,
    "Times New Roman",
    serif;
  --font-body:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --ease-hush: cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 900ms var(--ease-hush);
  --t-base: 480ms var(--ease-hush);
  --t-fast: 240ms var(--ease-hush);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.075rem);
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
picture,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.002em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.9rem, 1.7rem + 5.2vw, 6rem);
}
h2 {
  font-size: clamp(2.1rem, 1.5rem + 2.7vw, 3.6rem);
}
h3 {
  font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.8rem);
  font-weight: 600;
}
h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
h1 em,
h2 em,
blockquote em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-deep);
}
p {
  max-width: 62ch;
}
a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
a:hover {
  color: var(--ink);
}
::selection {
  background: var(--sage-deep);
  color: var(--mist);
}
:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--mist);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: top var(--t-fast);
}
.skip-link:focus-visible {
  top: 1rem;
  color: var(--mist);
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow {
  max-width: 860px;
}
.band {
  position: relative;
  padding-block: clamp(4.5rem, 3rem + 7vw, 10rem);
}
.band--mist {
  background: var(--mist);
}
.band--sand {
  background: var(--sand);
}
.band--night {
  background: var(--night);
}
.band > .container {
  position: relative;
  z-index: 2;
}
.band--night h2,
.band--night h3 {
  color: var(--night-text);
}
.band--night p {
  color: var(--night-mute);
}
.section-head {
  max-width: 58ch;
  margin-bottom: clamp(2.4rem, 1.6rem + 3vw, 4.4rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center p {
  margin-inline: auto;
}
.section-head p {
  margin-top: 1.1rem;
  color: var(--ink-mute);
  font-size: 1.08rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: none;
  border-radius: var(--organic-a);
  background: var(--brand);
}
.band--night .eyebrow {
  color: var(--night-mute);
}
.blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: var(--organic-a);
  background: var(--brand-tint);
  animation: breathe 24s var(--ease-hush) infinite alternate;
  will-change: border-radius, transform;
}
.blob--sand {
  background: color-mix(in srgb, var(--sand-deep) 45%, transparent);
}
.blob--sage {
  background: color-mix(in srgb, var(--sage) 12%, transparent);
}
.blob--soft {
  background: var(--brand-tint-soft);
}
.blob:nth-child(2) {
  animation-duration: 30s;
  animation-delay: -8s;
}
.blob:nth-child(3) {
  animation-duration: 36s;
  animation-delay: -16s;
}
@keyframes breathe {
  0% {
    border-radius: 58% 42% 55% 45% / 52% 46% 54% 48%;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    border-radius: 45% 55% 47% 53% / 55% 48% 52% 45%;
    transform: translate3d(1.5%, -2.5%, 0) scale(1.05);
  }
  100% {
    border-radius: 52% 48% 60% 40% / 46% 58% 42% 54%;
    transform: translate3d(-1.5%, 2%, 0) scale(0.97);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background-color var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    transform var(--t-base),
    box-shadow var(--t-base);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--ink);
  color: var(--mist);
}
.btn-primary:hover {
  background: var(--sage-deep);
  color: var(--mist);
  box-shadow: var(--shadow-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--sand-deep);
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.band--night .btn-ghost {
  color: var(--night-text);
  border-color: rgba(233, 230, 220, 0.35);
}
.band--night .btn-ghost:hover {
  border-color: var(--night-text);
  color: var(--night-text);
}
.btn-light {
  background: var(--mist);
  color: var(--ink);
}
.btn-light:hover {
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.btn-lg {
  padding: 1.1rem 2.3rem;
  font-size: 1rem;
}
.btn-primary.btn-glass {
  background: color-mix(in srgb, var(--mist) 55%, transparent);
  color: var(--ink);
  border-color: color-mix(in srgb, var(--paper) 70%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
.btn-primary.btn-glass:hover {
  background: color-mix(in srgb, var(--mist) 72%, transparent);
  color: var(--ink);
  box-shadow: var(--shadow-hush);
}
.site-head {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition:
    background-color var(--t-base),
    box-shadow var(--t-base),
    border-color var(--t-base);
  border-bottom: 1px solid transparent;
}
.site-head.is-solid,
.site-head--inner {
  background: color-mix(in srgb, var(--mist) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.site-head-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 4.9rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.05;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.15rem;
}
.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--sage-deep);
  flex: none;
}
.brand-mark svg {
  width: 100%;
  height: 100%;
}
.site-nav {
  margin-inline: auto;
}
.site-nav ul {
  display: flex;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: 0.4rem;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brand-line);
  transition: right var(--t-slow);
}
.site-nav a:hover {
  color: var(--ink);
}
.site-nav a:hover::after,
.site-nav a[aria-current=page]::after {
  right: 0;
}
.site-nav a[aria-current=page] {
  color: var(--ink);
}
.site-head-cta {
  flex: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-pill);
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  color: var(--ink);
  margin-left: auto;
}
.nav-toggle svg {
  width: 1.3rem;
  height: 1.3rem;
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
}
.drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(39, 44, 36, 0.35);
  opacity: 0;
  transition: opacity var(--t-base);
}
.drawer[data-open=true]::before {
  opacity: 1;
}
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(23rem, 88vw);
  background: var(--mist);
  padding: 1.6rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  transform: translateX(102%);
  transition: transform 560ms var(--ease-hush);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  box-shadow: var(--shadow-hush);
}
.drawer[data-open=true] .drawer-panel {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-close {
  background: none;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-pill);
  padding: 0.55rem;
  cursor: pointer;
  color: var(--ink);
}
.drawer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.drawer nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.55rem 0.2rem;
  border-bottom: 1px solid var(--line-soft);
}
.drawer nav a:hover {
  color: var(--sage-deep);
}
.drawer .btn {
  margin-top: auto;
}
.hero {
  min-height: min(100svh, 60rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(8rem, 6rem + 6vw, 11rem) clamp(3.5rem, 3rem + 3vw, 6rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  justify-items: center;
  text-align: center;
}
.hero-copy {
  max-width: 42rem;
}
.hero-copy .eyebrow {
  justify-content: center;
}
.hero-title {
  margin-bottom: 1.4rem;
}
.hero-sub {
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
  color: var(--ink-mute);
  margin-bottom: 2.4rem;
  max-width: 46ch;
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 34rem;
  margin: clamp(2.2rem, 1.6rem + 2.5vw, 3.5rem) auto 0;
}
.hero-media picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-gradient-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-gradient-stage .blob {
  position: absolute;
  inset: -25%;
  border-radius: 0;
  background-color: transparent;
  background-size: 220% 220%;
  animation-timing-function: var(--ease-hush);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  will-change: background-position;
}
.hero-gradient-stage .blob--soft {
  background-image:
    linear-gradient(
      125deg,
      var(--sage-mist) 0%,
      color-mix(in srgb, var(--sage) 10%, transparent) 34%,
      var(--mist) 60%,
      var(--sage-mist) 100%);
  animation-name: hero-gradient-shift;
  animation-duration: 16s;
}
.hero-gradient-stage .blob--sand {
  background-image:
    linear-gradient(
      205deg,
      transparent 0%,
      color-mix(in srgb, var(--sand-deep) 42%, transparent) 40%,
      transparent 74%);
  mix-blend-mode: multiply;
  animation-name: hero-gradient-shift;
  animation-duration: 18s;
  animation-delay: -6s;
}
@keyframes hero-gradient-shift {
  0% {
    background-position: 0% 30%;
  }
  100% {
    background-position: 100% 70%;
  }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      58% 55% at 50% 44%,
      color-mix(in srgb, var(--mist) 82%, transparent) 0%,
      color-mix(in srgb, var(--mist) 52%, transparent) 48%,
      transparent 82%);
}
.hero-scroll {
  position: relative;
  z-index: 2;
  margin-top: clamp(2.5rem, 2rem + 3vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-scroll .line {
  width: 1px;
  height: 3.4rem;
  background:
    linear-gradient(
      to bottom,
      var(--sand-deep),
      transparent);
  display: block;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media-shape {
  overflow: hidden;
  border-radius: var(--organic-c);
  box-shadow: var(--shadow-soft);
  animation: breathe 30s var(--ease-hush) infinite alternate;
}
.about-media-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.4;
}
.about-copy h2 {
  margin-bottom: 1.4rem;
}
.about-copy p + p {
  margin-top: 1.1rem;
}
.about-trust {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.65rem);
  color: var(--sage-deep);
  line-height: 1.4;
  border-left: 2px solid var(--brand-line);
  padding-left: 1.3rem;
  margin-top: 1.8rem;
}
.about-sign {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-sign .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.about-sign .role {
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
}
.treatment {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.1rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.treatment:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hush);
}
.treatment-media {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 0.55rem) calc(var(--radius-xl) - 0.55rem) calc(var(--radius-xl) - 0.55rem) 4.5rem;
  margin-bottom: 1.4rem;
}
.treatment:nth-child(even) .treatment-media {
  border-radius: calc(var(--radius-xl) - 0.55rem) calc(var(--radius-xl) - 0.55rem) 4.5rem calc(var(--radius-xl) - 0.55rem);
}
.treatment-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1400ms var(--ease-hush);
}
.treatment:hover .treatment-media img {
  transform: scale(1.045);
}
.treatment-body {
  padding-inline: 0.7rem;
}
.treatment-body h3 {
  margin-bottom: 0.5rem;
}
.treatment-body p {
  font-size: 0.97rem;
  color: var(--ink-mute);
}
.treatment-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
}
.treatment-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.1;
}
.treatment-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--ink-mute);
  margin-top: 0.25rem;
}
.treatment-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sage-deep);
  background: var(--brand-tint-soft);
  border: 1px solid var(--brand-line);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.treatments-more {
  margin-top: clamp(2rem, 1.6rem + 2vw, 3.2rem);
  text-align: center;
}
.ritual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
}
.ritual-aside {
  position: sticky;
  top: 7.5rem;
}
.ritual-aside h2 {
  margin-bottom: 1.2rem;
}
.ritual-aside p {
  color: var(--ink-mute);
}
.ritual-aside-media {
  margin-top: 2.2rem;
  overflow: hidden;
  border-radius: var(--organic-a);
  animation: breathe 28s var(--ease-hush) infinite alternate;
  box-shadow: var(--shadow-soft);
  max-width: 26rem;
}
.ritual-aside-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.ritual-steps {
  list-style: none;
  margin: 0;
  padding: 0 0 0 2.6rem;
  position: relative;
}
.ritual-steps::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0.6rem;
  bottom: 2.4rem;
  width: 1px;
  background: var(--sand-deep);
}
.ritual-line-fill {
  position: absolute;
  left: 0.65rem;
  top: 0.6rem;
  bottom: 2.4rem;
  width: 1px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
}
.ritual-step {
  position: relative;
  padding-bottom: clamp(2.2rem, 1.8rem + 2vw, 3.6rem);
}
.ritual-step:last-child {
  padding-bottom: 0;
}
.ritual-step::before {
  content: "";
  position: absolute;
  left: -2.6rem;
  top: 0.42rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: var(--organic-a);
  background: var(--mist);
  border: 1px solid var(--sand-deep);
  transition:
    background-color 800ms var(--ease-hush),
    border-color 800ms var(--ease-hush),
    transform 800ms var(--ease-hush);
}
.ritual-step.is-on::before {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.12);
}
.ritual-step-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.4rem;
}
.ritual-step h3 {
  margin-bottom: 0.5rem;
}
.ritual-step p {
  color: var(--ink-mute);
  max-width: 48ch;
}
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
  align-items: stretch;
}
.paket {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 1.5rem + 1.4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.paket:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hush);
}
.paket--featured {
  background: var(--night);
}
.paket--featured .paket-name {
  color: var(--night-mute);
}
.paket--featured .paket-price {
  color: var(--night-text);
}
.paket--featured .paket-desc,
.paket--featured li {
  color: var(--night-mute);
}
.paket-tag {
  position: absolute;
  top: -0.95rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sand-deep);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0.38rem 1.1rem;
  border-radius: var(--radius-pill);
}
.paket-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.paket-price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2.2rem + 1.4vw, 3.4rem);
  color: var(--ink);
  line-height: 1;
}
.paket-desc {
  font-size: 0.97rem;
  color: var(--ink-mute);
}
.paket ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.paket li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}
.paket li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: var(--organic-b);
  background: var(--brand);
}
.paket .btn {
  margin-top: auto;
}
.quote {
  text-align: center;
  overflow: hidden;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 4rem + 5vw, 9rem);
  line-height: 0.5;
  color: var(--brand);
  opacity: 0.9;
  display: block;
  margin-bottom: 1.6rem;
}
.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 1.3rem + 2.2vw, 3.1rem);
  line-height: 1.32;
  color: var(--night-text);
  max-width: 24em;
  margin-inline: auto;
  text-wrap: balance;
}
.quote-attribution {
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--night-mute);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.contact-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 1.5rem + 1.6vw, 3rem);
  box-shadow: var(--shadow-soft);
}
.contact-card dl {
  margin: 0;
  display: grid;
  gap: 1.5rem;
}
.contact-card dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.4rem;
}
.contact-card dd {
  margin: 0;
  color: var(--ink-soft);
}
.contact-media-shape {
  overflow: hidden;
  border-radius: var(--organic-b);
  box-shadow: var(--shadow-soft);
  animation: breathe 34s var(--ease-hush) infinite alternate;
}
.contact-media-shape img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.45rem 1.05rem;
  border-radius: var(--radius-pill);
  background: var(--sage-mist);
  color: var(--sage-deep);
}
.hours-pill::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
}
.hours-pill[data-status=closed] {
  background: var(--sand);
  color: var(--ink-mute);
}
.hours-pill[data-status=before] {
  background: var(--sand);
  color: var(--ink-soft);
}
.opening-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.opening-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.32rem;
  font-size: 0.95rem;
}
.opening-list li + li {
  border-top: 1px solid var(--line-soft);
}
.opening-list .dots {
  display: none;
}
.opening-list .closed {
  color: var(--ink-mute);
}
.opening-list li.is-today {
  font-weight: 700;
  color: var(--ink);
}
.seo-note {
  margin-top: clamp(2.6rem, 2rem + 3vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.seo-note p {
  font-size: 0.94rem;
  color: var(--ink-mute);
  max-width: 78ch;
}
.cta-inner {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.cta-inner h2 {
  margin-bottom: 1.1rem;
}
.cta-inner p {
  margin-inline: auto;
  color: var(--ink-mute);
  margin-bottom: 2.2rem;
}
.cta-inner p.eyebrow {
  color: var(--sage-deep);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.page-head {
  position: relative;
  overflow: hidden;
  padding-block: clamp(9rem, 7rem + 6vw, 13rem) clamp(3.5rem, 3rem + 3vw, 6rem);
  background: var(--mist);
}
.page-head .container {
  position: relative;
  z-index: 2;
  max-width: 56rem;
  text-align: center;
}
.page-head h1 {
  margin-bottom: 1.2rem;
}
.page-head .lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--ink-mute);
  margin-inline: auto;
  max-width: 52ch;
}
.row-list {
  display: grid;
  gap: clamp(3.5rem, 2.5rem + 4vw, 7rem);
}
.row-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.row-item:nth-child(even) .row-media {
  order: 2;
}
.row-media {
  overflow: hidden;
  border-radius: var(--organic-a);
  box-shadow: var(--shadow-soft);
  animation: breathe 30s var(--ease-hush) infinite alternate;
}
.row-item:nth-child(even) .row-media {
  border-radius: var(--organic-c);
}
.row-media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.row-copy h2 {
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.8rem);
  margin-bottom: 0.9rem;
}
.row-copy p {
  color: var(--ink-mute);
}
.row-copy p + p {
  margin-top: 0.9rem;
}
.row-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.row-facts span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}
.row-price {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
}
.row-price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-left: 0.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
.form-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 1.5rem + 1.6vw, 3rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.3rem;
}
.field {
  display: grid;
  gap: 0.45rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  width: 100%;
  transition: border-color var(--t-fast), background-color var(--t-fast);
}
.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 1px;
  background: var(--paper);
}
.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-mute);
}
.consent input {
  width: auto;
  margin-top: 0.3rem;
  accent-color: var(--sage-deep);
}
.form-note {
  font-size: 0.84rem;
  color: var(--ink-mute);
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  max-width: none;
}
.aside-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 1.4rem + 1vw, 2.4rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
}
.aside-card h3 {
  font-size: 1.35rem;
}
.aside-card .row strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.3rem;
}
.faq-list {
  max-width: 46rem;
  display: grid;
  gap: 0.8rem;
}
.faq {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.faq[open] {
  box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 1.15rem 1.4rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--sage-deep);
  flex: none;
  transition: transform var(--t-base);
}
.faq[open] summary::after {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 1.4rem 1.3rem;
}
.faq-body p {
  color: var(--ink-mute);
  font-size: 0.97rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(9rem, 8rem + 8vw, 17rem);
  gap: clamp(0.9rem, 1.6vw, 1.5rem);
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery-grid figure.tall {
  grid-row: span 2;
  border-radius: var(--organic-c);
}
.gallery-grid figure.wide {
  grid-column: span 2;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--ease-hush);
}
.gallery-grid figure:hover img {
  transform: scale(1.045);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2rem);
}
.value {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
}
.value h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}
.value h3::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--organic-b);
  background: var(--brand-tint);
  border: 1px solid var(--brand-line);
  margin-bottom: 0.9rem;
}
.value p {
  font-size: 0.94rem;
  color: var(--ink-mute);
}
.legal-prose {
  max-width: 46rem;
}
.legal-prose h1 {
  font-size: clamp(2.4rem, 2rem + 2vw, 3.6rem);
  margin-bottom: 2rem;
}
.legal-prose h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.2rem 0 0.7rem;
}
.legal-prose p {
  color: var(--ink-soft);
}
.legal-prose p + p {
  margin-top: 0.8rem;
}
.notfound {
  min-height: 82svh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-block: 8rem 4rem;
}
.notfound .container {
  position: relative;
  z-index: 2;
}
.notfound-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 4rem + 6vw, 10rem);
  line-height: 1;
  color: var(--sand-deep);
}
.notfound h1 {
  font-size: clamp(2rem, 1.6rem + 2vw, 3.4rem);
  margin: 0.8rem 0 1rem;
}
.notfound p {
  margin-inline: auto;
  color: var(--ink-mute);
  margin-bottom: 2.2rem;
}
.notfound .cta-actions {
  justify-content: center;
}
.site-foot {
  background: var(--night);
  color: var(--night-mute);
  padding-block: clamp(3.5rem, 3rem + 3vw, 6rem) 2rem;
}
.site-foot h2,
.site-foot h3 {
  color: var(--night-ink);
}
.site-foot a {
  color: var(--night-text);
  text-decoration: none;
}
.site-foot a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.foot-claim {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.7rem, 1.4rem + 1.6vw, 2.8rem);
  color: var(--night-text);
  max-width: 22em;
  margin-bottom: clamp(2.4rem, 2rem + 2vw, 4rem);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.8rem, 3vw, 3.5rem);
}
.foot-brand .brand {
  color: var(--night-text);
}
.foot-brand .brand small {
  color: var(--night-mute);
}
.foot-brand .brand-mark {
  color: var(--brand);
}
.foot-brand p {
  font-size: 0.94rem;
  margin-top: 1.1rem;
  max-width: 34ch;
}
.foot-col h4 {
  color: var(--night-mute);
  margin-bottom: 1rem;
}
.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.foot-col a {
  font-size: 0.95rem;
}
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(233, 230, 220, 0.14);
  font-size: 0.85rem;
}
html.js-on [data-reveal] {
  opacity: 0;
}
html.js-on .hero-stagger > * {
  opacity: 0;
}
html.js-on .treatment {
  opacity: 0;
}
html.js-on .ritual-step {
  opacity: 0;
}
@media (max-width: 1020px) {
  .site-nav,
  .site-head-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .treatments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pakete-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 34rem;
    margin-inline: auto;
  }
  .paket--featured {
    order: -1;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 780px) {
  .hero {
    min-height: 0;
  }
  .about-grid,
  .ritual-grid,
  .contact-grid,
  .row-item,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .row-item:nth-child(even) .row-media {
    order: 0;
  }
  .ritual-aside {
    position: static;
  }
  .ritual-aside-media {
    display: none;
  }
  .about-media {
    max-width: 26rem;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .treatments-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 30rem;
    margin-inline: auto;
  }
  .hero-scroll {
    display: none;
  }
}
@media (max-width: 540px) {
  .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html.js-on [data-reveal],
  html.js-on .hero-stagger > *,
  html.js-on .treatment,
  html.js-on .ritual-step {
    opacity: 1;
  }
  .ritual-line-fill {
    transform: scaleY(1);
  }
  .ritual-step::before {
    background: var(--brand);
    border-color: var(--brand);
  }
}
