:root {
  --cream: #f7f3ee;
  --paper: #f7f3ee;
  --taupe: #554e4b;
  --dark-taupe: #48423f;
  --accent-ink: #302b29;
  --rose: #b58f91;
  --rose-soft: #b58f91;
  --ochre: #b59a70;
  --sage: #a8b09a;
  --sage-soft: #a8b09a;
  --line: rgba(72, 66, 63, 0.16);
  --shadow: 0 24px 64px rgba(72, 66, 63, 0.14);
  --radius: 28px;
  --shell: min(1240px, calc(100% - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--taupe);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--dark-taupe);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--ochre);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 18px;
  left: 18px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--dark-taupe);
  border-radius: 12px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 0;
  background: rgba(247, 243, 238, 0.88);
  border-bottom: 1px solid rgba(72, 66, 63, 0.06);
  backdrop-filter: blur(16px);
  transition: padding 0.35s, background 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  padding: 9px 0;
  background: rgba(247, 243, 238, 0.97);
  box-shadow: 0 8px 30px rgba(72, 66, 63, 0.08);
  backdrop-filter: blur(15px);
}

.site-header.scrolled .brand-mark {
  width: 41px;
  height: 41px;
  box-shadow: 0 5px 16px rgba(72, 66, 63, 0.16);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--paper);
  background: var(--dark-taupe);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(72, 66, 63, 0.2);
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  transition: width 0.35s, height 0.35s, box-shadow 0.35s;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--dark-taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.brand small {
  color: var(--taupe);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  color: var(--dark-taupe);
  font-size: 14px;
  font-weight: 680;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  font-weight: 720;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.nav-cta {
  color: var(--paper) !important;
  background: var(--dark-taupe);
}

.nav-cta:hover {
  box-shadow: 0 0 0 3px var(--rose);
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--accent-ink) !important;
  background: var(--rose);
  font-size: 19px;
}

.btn-primary:hover {
  background: var(--rose);
  box-shadow: 0 10px 24px rgba(72, 66, 63, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--dark-taupe);
  background: var(--cream);
  border-color: rgba(72, 66, 63, 0.3);
}

.btn-secondary:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
}

.btn-light {
  color: var(--accent-ink) !important;
  background: var(--rose);
  font-size: 19px;
}

.btn-light:hover {
  background: var(--rose);
  box-shadow: 0 10px 24px rgba(72, 66, 63, 0.2);
  transform: translateY(-2px);
}

.space-top-md {
  margin-top: 36px;
}

.space-top-lg {
  margin-top: 45px;
}

.space-top-xl {
  margin-top: 55px;
}

.nav-toggle {
  display: none;
  padding: 8px;
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--dark-taupe);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(930px, 100svh);
  padding: 126px 0 78px;
  overflow: hidden;
  background: var(--cream);
  align-items: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 28%, rgba(181, 143, 145, 0.22), transparent 29%),
    radial-gradient(circle at 86% 16%, rgba(168, 176, 154, 0.28), transparent 25%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: clamp(46px, 5vw, 76px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--dark-taupe);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--ochre);
  content: "";
}

.hero h1,
.page-hero h1,
.section-title {
  color: var(--dark-taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 700px;
  margin: 0 0 28px;
  font-size: clamp(50px, 4.6vw, 68px);
  line-height: 1.01;
}

.hero-title-main,
.hero h1 em {
  display: block;
}

.hero h1 em {
  position: relative;
  margin-top: 9px;
  color: var(--dark-taupe);
  font-style: italic;
}

.hero h1 em::after {
  display: block;
  width: 76px;
  height: 6px;
  margin-top: 18px;
  background: var(--rose);
  border-radius: 999px;
  content: "";
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--taupe);
  font-size: 19px;
}

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

.hero-art {
  position: relative;
  min-height: 560px;
  --parallax-y: 0px;
}

.js .hero-art.reveal,
.js-pending .hero-art.reveal {
  transform: translate3d(0, calc(24px + var(--parallax-y)), 0) scale(0.985);
}

.js .hero-art.reveal.is-visible {
  transform: translate3d(0, var(--parallax-y), 0) scale(1);
}

.hero-photo-main {
  position: absolute;
  top: 54px;
  right: 0;
  width: 88%;
  height: 430px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: hero-float 7s ease-in-out infinite;
}


.hero-photo-small {
  position: absolute;
  bottom: 34px;
  left: 18px;
  z-index: 4;
  width: 132px;
  height: 166px;
  object-fit: cover;
  object-position: center 28%;
  border: 6px solid var(--cream);
  border-radius: 22px 58px 22px 22px;
  box-shadow: var(--shadow);
}


.orbit {
  position: absolute;
  top: 0;
  right: -70px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(181, 154, 112, 0.62);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--rose);
  border-radius: 50%;
  content: "";
}

.orbit::before {
  top: 36px;
  left: 65px;
}

.orbit::after {
  right: 16px;
  bottom: 95px;
  background: var(--ochre);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  max-width: 245px;
  padding: 18px 20px;
  color: var(--dark-taupe);
  background: var(--cream);
  border: 2px solid var(--rose);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.hero-note span {
  display: block;
  margin-bottom: 5px;
  color: var(--dark-taupe);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--taupe);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
}

.scroll-cue::before {
  width: 34px;
  height: 1px;
  background: var(--ochre);
  content: "";
  animation: pulse-line 2s ease-in-out infinite;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(247, 243, 238, 0.96);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(72, 66, 63, 0.1);
  backdrop-filter: blur(14px);
}

.trust-item {
  position: relative;
  display: grid;
  min-height: 112px;
  padding: 24px 30px;
  place-content: center;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--dark-taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.1;
}

.trust-item span {
  margin-top: 5px;
  color: var(--taupe);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: 108px 0;
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(181, 143, 145, 0.13), transparent 48%),
    var(--cream);
}

.section-sage {
  background: var(--cream);
  border-block: 4px solid var(--sage);
}

.section-dark {
  color: var(--cream);
  background: var(--dark-taupe);
}

.section-dark .section-title,
.section-dark h2 {
  color: var(--cream);
}

.section-dark .eyebrow,
.contact-card .eyebrow {
  color: var(--cream);
}

.section-head {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(39px, 5vw, 66px);
}

.lead {
  color: var(--taupe);
  font-size: 19px;
}

.begleitung-page p:not(.eyebrow):not(.lead),
.begleitung-page .lead,
.begleitung-page .card p {
  font-size: 20px;
  line-height: 1.68;
}

.begleitung-page .topic-list li {
  font-size: 20px;
  line-height: 1.68;
}

.keep-line {
  white-space: nowrap;
}

.section-dark .lead {
  color: var(--cream);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(72, 66, 63, 0.06);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 110px;
  height: 110px;
  background: rgba(181, 143, 145, 0.16);
  border-radius: 50%;
  content: "";
  transform: scale(0.7);
  transition: transform 0.4s;
}

.card:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.card:hover::after {
  transform: scale(1.35);
}

.card-num,
.service-row .index {
  display: inline-grid;
  width: 38px;
  height: 38px;
  color: var(--accent-ink);
  background: var(--ochre);
  border-radius: 50%;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
}

.card h3 {
  margin: 22px 0 12px;
  color: var(--dark-taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.card p {
  color: var(--taupe);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-taupe);
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.portrait-frame {
  position: relative;
}

.portrait-frame img {
  width: 82%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 30px 160px 30px 30px;
  box-shadow: var(--shadow);
}

.home-portrait img {
  display: block;
  width: min(48%, 300px);
  height: 360px;
  margin-inline: auto;
  object-fit: cover;
  border-radius: 20px;
}

.portrait-frame.home-portrait::before {
  content: none;
}

.portrait-frame::before {
  position: absolute;
  z-index: -1;
  bottom: -28px;
  left: 0;
  width: 52%;
  height: 58%;
  border: 1px solid rgba(181, 154, 112, 0.68);
  border-radius: 120px 30px;
  content: "";
}

.quote {
  margin: 0 0 26px;
  padding-left: 24px;
  color: var(--dark-taupe);
  border-left: 5px solid var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(368px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: stretch;
}

.about-layout > .portrait-frame {
  position: relative;
  top: 0;
  height: 100%;
}

.about-layout .portrait-frame img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.about-layout .portrait-frame::before {
  content: none;
}

.about-copy {
  display: grid;
  gap: 26px;
}

.about-intro {
  padding: 0 4px;
  color: var(--taupe);
  font-size: 19px;
}

.about-intro p {
  margin: 0 0 14px;
}

.qualification-group {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(72, 66, 63, 0.07);
}

.qualification-group::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  background: rgba(181, 143, 145, 0.16);
  border-radius: 50%;
  content: "";
}

.qualification-group h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--dark-taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.16;
}

.qualification-group .list-check {
  position: relative;
  z-index: 1;
  margin: 0;
}

.qualification-link,
.qualification-detail {
  display: block;
  margin-top: 5px;
}

.qualification-link {
  width: fit-content;
  color: var(--dark-taupe);
  font-size: 14px;
  font-weight: 750;
}

.qualification-link:hover {
  color: var(--dark-taupe);
}

.qualification-detail {
  color: var(--taupe);
  font-size: 15px;
}

.list-check {
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding: 9px 0 9px 30px;
}

.list-check li::before {
  position: absolute;
  left: 0;
  color: var(--ochre);
  content: "✦";
}

.gallery {
  display: grid;
  grid-template-rows: 270px 270px;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
}

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

.gallery > :first-child {
  grid-row: 1 / 3;
}

.gallery > :last-child {
  grid-column: 2 / 4;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px;
  color: var(--cream);
  background: var(--dark-taupe);
  border: 3px solid var(--rose);
  border-radius: 34px;
}

.cta-band h2 {
  margin: 0 0 8px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.16;
}

.cta-band p {
  margin: 0;
  color: var(--cream);
}

.cta-band .btn {
  color: var(--dark-taupe);
  background: var(--cream);
}

.page-hero {
  position: relative;
  padding: 170px 0 82px;
  overflow: hidden;
  background: var(--cream);
}

.page-hero::after {
  position: absolute;
  top: 55px;
  right: -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(181, 143, 145, 0.46);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  font-size: clamp(49px, 6.7vw, 82px);
}

.page-hero p {
  max-width: 780px;
  color: var(--taupe);
  font-size: 19px;
}

.about-page-hero {
  padding-bottom: 41px;
}

.about-page-hero::after {
  content: none;
}

.about-profile {
  padding-top: 34px;
}

.massage-page-hero {
  padding-bottom: 41px;
}

.massage-intro-section {
  padding-top: 54px;
}

.praxis-page-hero {
  padding-bottom: 41px;
}

.praxis-gallery-section {
  padding-top: 54px;
}

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

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 30px 22px;
  border-top: 1px solid var(--line);
  align-items: start;
  border-radius: 22px;
  transition: background 0.35s, box-shadow 0.35s, transform 0.35s;
}

.service-row:hover,
.service-row:focus-within {
  background: rgba(181, 143, 145, 0.1);
  box-shadow: 0 18px 44px rgba(72, 66, 63, 0.08);
  transform: translateY(-3px);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row h2 {
  margin: 0 0 9px;
  color: var(--dark-taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.service-row p {
  max-width: 760px;
  margin: 0 0 10px;
  color: var(--taupe);
}

.service-row p:last-child {
  margin-bottom: 0;
}

.price {
  min-width: 150px;
  color: var(--dark-taupe);
  font-weight: 800;
  white-space: nowrap;
  padding: 8px 12px;
  background: rgba(181, 154, 112, 0.2);
  border-radius: 12px;
}

.service-toggle {
  display: none;
}

.feature-image {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.notice {
  padding: 18px 22px;
  background: var(--cream);
  border-left: 3px solid var(--rose);
  border-radius: 0 16px 16px 0;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  padding: 0;
  list-style: none;
}

.topic-list li {
  position: relative;
  padding-left: 22px;
}

.topic-list li::before {
  position: absolute;
  left: 0;
  color: var(--ochre);
  content: "•";
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: var(--rose);
  box-shadow: 0 12px 32px rgba(72, 66, 63, 0.08);
}

.section-sage .faq-item {
  border-left: 6px solid var(--sage);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--dark-taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.faq-item h3 button {
  display: flex;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.faq-item h3 button span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--accent-ink);
  background: rgba(181, 143, 145, 0.24);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
  place-items: center;
}

.faq-item.is-open h3 button span {
  background: var(--rose);
  transform: rotate(45deg);
}

.faq-enhanced .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-enhanced .faq-answer > p {
  overflow: hidden;
}

.faq-enhanced.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
}

.contact-card {
  padding: 38px;
  color: var(--cream);
  background: var(--dark-taupe);
  border-radius: 32px;
}

.contact-card a {
  color: var(--cream);
}

.contact-card h2 {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
}

.contact-card p {
  color: var(--cream);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--dark-taupe);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 15px;
  color: var(--dark-taupe);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--taupe);
  opacity: 1;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note {
  color: var(--taupe);
  font-size: 13px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--rose);
  outline: 3px solid rgba(181, 143, 145, 0.23);
}

.legal {
  max-width: 900px;
}

.legal h2 {
  margin-top: 45px;
  color: var(--dark-taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.legal h3 {
  margin-top: 28px;
  color: var(--dark-taupe);
  font-size: 19px;
}

.legal a {
  color: var(--dark-taupe);
  font-weight: 700;
}

.legal p,
.legal li {
  color: var(--taupe);
}

.site-footer {
  padding: 70px 0 25px;
  color: var(--cream);
  background: var(--dark-taupe);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.footer-grid h2 {
  margin-top: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.footer-grid p,
.footer-grid a {
  color: var(--cream);
}

.footer-brand .brand-mark {
  color: var(--cream);
  background: var(--dark-taupe);
  font-size: 19px;
  font-weight: 700;
}

.footer-brand strong {
  color: var(--cream);
}

.footer-brand small {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 45px;
  padding-top: 20px;
  color: var(--cream);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.footer-bottom a {
  color: var(--cream);
  font-weight: 700;
}

.footer-heart {
  color: var(--rose);
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  transform: none;
}

.js .reveal,
.js-pending .reveal {
  transform: translateY(28px);
  transition: transform 0.8s ease;
}

.js .reveal.is-visible {
  transform: none;
}

.js .reveal[data-delay="1"] {
  transition-delay: 0.12s;
}

.js .reveal[data-delay="2"] {
  transition-delay: 0.24s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-float {
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-line {
  50% {
    width: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(calc(100% - 30px), 720px);
  }

  .nav-toggle {
    position: relative;
    z-index: 62;
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 60;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 90px 24px 32px;
    overflow-y: auto;
    background: rgba(247, 243, 238, 0.99);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.35s ease, opacity 0.2s ease, visibility 0s linear 0.35s;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform 0.35s ease, opacity 0.2s ease;
  }

  .main-nav a {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 72px;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-layout > .portrait-frame {
    position: static;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .home-portrait img {
    display: block;
    width: min(54%, 260px);
    height: 320px;
    margin-inline: auto;
    border-radius: 20px;
  }

  .hero-art {
    width: min(100%, 720px);
    min-height: 440px;
    margin-inline: auto;
  }

  .hero-photo-main {
    top: 20px;
    width: 84%;
    height: 360px;
  }

  .hero-photo-small {
    bottom: 16px;
    left: 12px;
    width: 118px;
    height: 148px;
  }

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

  .gallery {
    grid-template-rows: 250px 220px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery > :first-child {
    grid-row: 1 / 2;
  }

  .gallery > :last-child {
    grid-column: 1 / 3;
  }

  .service-row {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .price {
    grid-column: 2;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .brand small {
    display: none;
  }

  body {
    padding-bottom: 70px;
  }

  .trust-strip {
    margin-top: 0;
    padding: 0 12px;
  }

  .trust-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 90px;
    padding: 18px 20px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 62px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-art {
    min-height: 300px;
  }

  .hero-photo-main {
    top: 0;
    width: 92%;
    height: 250px;
    border-radius: 20px;
  }

  .hero-photo-small {
    bottom: 5px;
    left: 6px;
    width: 82px;
    height: 105px;
    border-width: 4px;
    border-radius: 18px 44px 18px 18px;
  }

  .hero-note {
    display: none;
  }

  .orbit {
    width: 250px;
    height: 250px;
  }

  .hero h1 {
    font-size: clamp(41px, 11.8vw, 49px);
    line-height: 1.02;
  }

  .hero h1 em {
    margin-top: 7px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-copy > p:not(.eyebrow),
  .lead,
  .page-hero p {
    font-size: 17px;
  }

  .keep-line {
    white-space: normal;
  }

  .page-hero {
    padding: 135px 0 60px;
  }

  .about-page-hero {
    padding-bottom: 30px;
  }

  .massage-page-hero {
    padding-bottom: 30px;
  }

  .massage-intro-section {
    padding-top: 38px;
  }

  .page-hero h1 {
    font-size: 49px;
  }

  .gallery {
    grid-template-rows: repeat(4, 230px);
    grid-template-columns: 1fr;
  }

  .gallery > :first-child,
  .gallery > :last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .cta-band {
    display: block;
    padding: 30px;
  }

  .cta-band .btn {
    margin-top: 24px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 18px;
  }

  .service-row .index,
  .price {
    grid-column: auto;
  }

  .service-toggle {
    display: inline-flex;
    margin: 4px 0 12px;
    padding: 7px 12px;
    color: var(--dark-taupe);
    background: transparent;
    border: 1px solid var(--rose);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
  }

  .service-enhanced .service-details {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }

  .service-enhanced .service-details-inner {
    overflow: hidden;
  }

  .service-enhanced.is-open .service-details {
    grid-template-rows: 1fr;
  }

  .price {
    min-width: 0;
    white-space: normal;
  }

  .topic-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .field.full,
  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom > span {
    display: block;
    margin: 0;
  }

  .footer-bottom > span:last-child {
    white-space: nowrap;
  }

  .footer-bottom .footer-heart {
    display: inline;
    margin: 0;
  }

  .portrait-frame img {
    width: 92%;
  }

  .home-portrait img {
    display: block;
    width: min(66%, 220px);
    height: 260px;
    margin-inline: auto;
    border-radius: 20px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    padding: 6px;
    background: rgba(247, 243, 238, 0.97);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(72, 66, 63, 0.22);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    display: grid;
    min-height: 48px;
    color: var(--dark-taupe);
    border-radius: 13px;
    place-items: center;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.1;
  }

  .mobile-contact-bar a span {
    font-size: 17px;
  }

  .mobile-contact-bar .mobile-contact-primary {
    color: var(--cream);
    background: var(--dark-taupe);
  }

}


.relax-saver {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  overflow: hidden;
  visibility: hidden;
  color: var(--dark-taupe);
  background:
    radial-gradient(circle at 18% 22%, rgba(181, 143, 145, 0.22), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(168, 176, 154, 0.26), transparent 36%),
    rgba(247, 243, 238, 0.98);
  opacity: 0;
  place-items: center;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.relax-saver.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.relax-saver__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.relax-saver__orb {
  position: absolute;
  display: block;
  border: 1px solid rgba(181, 143, 145, 0.35);
  border-radius: 50%;
  animation: relax-float 14s ease-in-out infinite alternate;
}

.relax-saver__orb--one {
  top: 12%;
  left: 10%;
  width: clamp(180px, 24vw, 390px);
  aspect-ratio: 1;
}

.relax-saver__orb--two {
  right: 8%;
  bottom: 8%;
  width: clamp(230px, 30vw, 480px);
  aspect-ratio: 1;
  border-color: rgba(168, 176, 154, 0.42);
  animation-delay: -5s;
  animation-duration: 18s;
}

.relax-saver__orb--three {
  top: 48%;
  left: 50%;
  width: clamp(90px, 12vw, 180px);
  aspect-ratio: 1;
  border-color: rgba(181, 154, 112, 0.32);
  animation-delay: -9s;
  animation-duration: 11s;
}

.relax-saver__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 32px;
  text-align: center;
}

.relax-saver__eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.relax-saver__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.08;
}

.relax-saver__hint {
  margin: 22px 0 0;
  color: var(--taupe);
  font-size: 15px;
}

body.relax-saver-active {
  overflow: hidden;
}

@keyframes relax-float {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(0.96);
  }

  50% {
    transform: translate3d(4%, 2%, 0) scale(1.04);
  }

  100% {
    transform: translate3d(-1%, 5%, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
