:root {
  --ivory: #f3eadf;
  --paper: #fbf3e8;
  --sand: #e5d2bd;
  --stone: #c9aa8d;
  --sage: #c2a9d1;
  --sage-dark: #7b5c8f;
  --forest: #5b3e70;
  --lilac-ink: #4a315c;
  --lilac-plum: #664778;
  --lilac-rich: #75558a;
  --lilac-mid: #7b5c8f;
  --lilac-soft: #c2a9d1;
  --lilac-mist: #e6daeb;
  --charcoal: #33283a;
  --muted: #766a78;
  --line: rgba(91, 62, 112, 0.18);
  --brass: #b59272;
  --apricot: #d3b9df;
  --sun: #d8bea2;
  --mint: #e6daeb;
  --white: #fbf3e8;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(91, 62, 112, 0.15);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 38px;
  --container: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(194, 166, 211, 0.46);
  color: var(--forest);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px #3c2b48;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.narrow {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
}

.topline {
  background: linear-gradient(90deg, var(--forest), #7d5d91);
  color: rgba(251, 243, 232, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.topline .container {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topline a {
  color: var(--white);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 234, 223, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(67, 54, 73, 0.05);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--charcoal);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  background-color: #f5e5ef;
  background-image: url("assets/images/janina-enders-logo-mark-192-v2.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 82%;
  color: transparent;
  font-size: 0;
}

.brand-copy {
  line-height: 1.2;
}

.brand-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav a {
  position: relative;
  color: #44384a;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a.button {
  color: var(--white) !important;
  border-color: var(--lilac-plum);
  background: var(--lilac-plum);
}

.site-nav a.button:hover {
  border-color: var(--lilac-ink);
  background: var(--lilac-ink);
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #4a3459;
  box-shadow: 0 12px 30px rgba(72, 55, 82, 0.2);
}

.button-light {
  border-color: rgba(251, 243, 232, 0.64);
  background: rgba(251, 243, 232, 0.94);
  color: var(--forest);
}

.button-light:hover {
  background: var(--white);
  color: var(--forest);
}

.button-outline {
  background: transparent;
  color: var(--forest);
}

.button-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.65rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.lead {
  max-width: 710px;
  color: #685d6b;
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
  line-height: 1.7;
}

.muted {
  color: var(--muted);
}

.centered-copy {
  margin-inline: auto;
}

.centered-actions {
  justify-content: center;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 117px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(243, 234, 223, 0.99) 0%, rgba(243, 234, 223, 0.97) 32%, rgba(243, 234, 223, 0.76) 51%, rgba(243, 234, 223, 0.05) 76%), url("assets/images/hero-massage.webp");
  background-position: center, center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(251, 243, 232, 0.4);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(790px, 70%);
  padding-block: 100px;
}

.hero .lead {
  max-width: 590px;
}

.hero-title {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 5.4vw, 5.4rem);
}

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

.hero-actions .button:not(.button-outline) {
  border-color: var(--lilac-rich);
  background: var(--lilac-rich);
}

.hero-actions .button:not(.button-outline):hover {
  border-color: var(--lilac-ink);
  background: var(--lilac-ink);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.section {
  position: relative;
  padding-block: clamp(82px, 11vw, 148px);
}

.section-sm {
  padding-block: clamp(60px, 8vw, 100px);
}

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

.section-sage {
  background: linear-gradient(135deg, #705382, var(--lilac-ink));
  color: var(--white);
}

.section-sage .eyebrow,
.section-sage .muted,
.section-sage .lead {
  color: rgba(251, 243, 232, 0.96);
}

.section-sage .eyebrow::before {
  background: currentColor;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(38px, 6vw, 66px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.intro-grid .statement {
  max-width: 790px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.service-grid,
.location-grid,
.fact-grid,
.footer-grid,
.price-grid {
  display: grid;
  gap: 20px;
}

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

.service-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--paper), #f6e8d7);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card:nth-child(2) {
  background: linear-gradient(145deg, var(--lilac-rich), var(--lilac-plum));
  color: var(--white);
}

.service-card:nth-child(2) .muted,
.service-card:nth-child(2) .text-link {
  color: rgba(251, 243, 232, 0.92);
}

.service-card .number {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1rem;
}

.service-card .card-title {
  margin-block: auto 18px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 480px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(251, 243, 232, 0.25);
  border-radius: 999px;
  background: rgba(251, 243, 232, 0.08);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 150px var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media.portrait img {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.image-caption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.portrait-placeholder {
  min-height: 570px;
  display: grid;
  place-items: center;
  padding: 40px;
  border: 1px dashed rgba(72, 55, 82, 0.34);
  border-radius: var(--radius-lg) var(--radius-lg) 150px var(--radius-lg);
  background: linear-gradient(145deg, #ead8c3, var(--mint));
  color: var(--forest);
  text-align: center;
}

.portrait-placeholder svg {
  width: 82px;
  margin: 0 auto 24px;
}

.portrait-placeholder strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.portrait-placeholder span {
  display: block;
  max-width: 280px;
  margin-top: 8px;
  font-size: 0.8rem;
}

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

.location-grid-map {
  grid-template-columns: minmax(160px, 0.72fr) minmax(250px, 1.28fr);
  align-items: stretch;
}

.location-grid-map .location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--lilac-mist);
  box-shadow: 0 18px 48px rgba(91, 62, 112, 0.12);
}

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

.map-route-button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-height: 42px;
  padding: 9px 16px;
  border-color: var(--lilac-plum);
  background: rgba(251, 243, 232, 0.96);
  color: var(--lilac-ink);
  font-size: 0.75rem;
  box-shadow: 0 8px 22px rgba(91, 62, 112, 0.22);
}

.map-route-button:hover {
  background: var(--paper);
  color: var(--lilac-ink);
}

.location-card,
.fact-card,
.info-card,
.price-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 243, 232, 0.45);
}

.location-card .postal {
  margin: 10px 0 0;
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.fact-card {
  border-color: rgba(251, 243, 232, 0.22);
  background: rgba(251, 243, 232, 0.08);
}

.fact-card .fact-number {
  display: block;
  margin-bottom: 32px;
  color: #ead4bd;
  font-family: var(--serif);
  font-size: 2.35rem;
}

.fact-card h3 {
  color: var(--white);
}

.fact-card p {
  margin-bottom: 0;
  color: rgba(251, 243, 232, 0.94);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: steps;
}

.steps.four {
  grid-template-columns: repeat(4, 1fr);
}

.step {
  position: relative;
  padding: 25px clamp(20px, 3.2vw, 38px) 20px 0;
  counter-increment: steps;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 41px;
  right: 20px;
  left: 72px;
  height: 1px;
  background: var(--line);
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--sage-dark);
  font-family: var(--serif);
}

.step-icon::before {
  content: counter(steps);
}

.step h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 80px);
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, var(--lilac-plum), var(--lilac-mid));
  color: var(--white);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(251, 243, 232, 0.12);
  border-radius: 50%;
}

.cta-panel .eyebrow,
.cta-panel .lead,
.cta-panel a:not(.button) {
  color: rgba(251, 243, 232, 0.96);
}

.cta-panel h2 {
  max-width: 800px;
}

.contact-line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  margin-top: 32px;
}

.contact-line a {
  color: var(--white) !important;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-decoration: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 13vw, 160px) clamp(70px, 10vw, 120px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(194, 166, 211, 0.28), transparent 29%),
    linear-gradient(145deg, var(--ivory), #eadfed);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -15vw;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(126, 98, 141, 0.22);
  border-radius: 50%;
}

.page-hero h1 {
  max-width: 970px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero .lead {
  max-width: 740px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.76rem;
}

.breadcrumb a {
  text-decoration: none;
}

.notice {
  padding: 22px 24px;
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #eedfce;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
}

.notice p:last-child,
.notice:last-child {
  margin-bottom: 0;
}

.content-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(40px, 9vw, 120px);
  align-items: start;
}

.prose > * + * {
  margin-top: 25px;
}

.prose h2 {
  margin-top: 55px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.prose h3 {
  margin-top: 34px;
}

.prose ul {
  padding-left: 20px;
}

.side-card {
  position: sticky;
  top: 120px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--lilac-plum), var(--lilac-ink));
  color: var(--white);
}

.side-card p,
.side-card .muted {
  color: rgba(251, 243, 232, 0.76);
}

.side-card .button {
  width: 100%;
  margin-top: 14px;
}

.side-card a:not(.button) {
  color: var(--white);
}

.placeholder-band {
  padding: clamp(36px, 6vw, 66px);
  border: 1px dashed rgba(72, 55, 82, 0.35);
  border-radius: var(--radius);
  background: rgba(251, 243, 232, 0.35);
  text-align: center;
}

.placeholder-band .eyebrow {
  justify-content: center;
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.price-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-style: dashed;
}

.price-card .placeholder-label {
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(38px, 8vw, 100px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-detail {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

.form-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(194, 169, 209, 0.28), transparent 31%),
    var(--paper);
  box-shadow: var(--shadow);
}

.form-card .button:not(.button-outline) {
  border-color: var(--lilac-rich);
  background: var(--lilac-rich);
}

.form-card .button:not(.button-outline):hover {
  border-color: var(--lilac-ink);
  background: var(--lilac-ink);
}

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

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

label {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbbecd;
  border-radius: var(--radius-sm);
  background: #fbf3e8;
  color: var(--charcoal);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input {
  min-height: 52px;
  padding: 10px 13px;
}

textarea {
  min-height: 145px;
  padding: 13px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--sage-dark);
  outline: none;
  box-shadow: 0 0 0 4px rgba(126, 98, 141, 0.18);
}

.field-help {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--forest);
}

.checkbox-field label {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 500;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: var(--mint);
  color: #4d3c56;
}

.form-status.error {
  background: #eadfe7;
  color: #563d62;
}

.legal-content {
  padding-block: clamp(70px, 10vw, 115px);
}

.legal-content h2 {
  margin-top: 55px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.legal-content h3 {
  margin-top: 34px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
}

.legal-placeholder {
  padding: 16px 18px;
  border: 1px dashed #896c98;
  border-radius: var(--radius-sm);
  background: #efe3ed;
  color: #5e4668;
}

.site-footer {
  padding-block: 72px 105px;
  background: #35283e;
  color: rgba(251, 243, 232, 0.74);
}

.footer-grid {
  grid-template-columns: 1.35fr 0.75fr 0.9fr;
  gap: clamp(35px, 8vw, 100px);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 15px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  width: fit-content;
  color: rgba(251, 243, 232, 0.77);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 243, 232, 0.13);
  font-size: 0.72rem;
}

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

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.reveal-ready.visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-note {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(194, 169, 209, 0.3), transparent 34%),
    linear-gradient(145deg, var(--paper), #f1e2d1);
  box-shadow: 0 24px 70px rgba(91, 62, 112, 0.1);
}

.pricing-note .button:not(.button-outline) {
  border-color: var(--lilac-plum);
  background: var(--lilac-plum);
}

.pricing-note .button:not(.button-outline):hover {
  border-color: var(--lilac-ink);
  background: var(--lilac-ink);
}

.pricing-note::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(208, 184, 157, 0.22);
}

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

.pricing-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pricing-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(91, 62, 112, 0.18);
  border-radius: 999px;
  background: rgba(251, 243, 232, 0.65);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 750;
}

.label-note {
  color: var(--muted);
  font-weight: 500;
}

.contact-page-hero {
  padding-block: clamp(70px, 8vw, 108px);
}

body.menu-open .mobile-action-bar {
  visibility: hidden;
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: rgba(251, 243, 232, 0.86);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.9fr 1.15fr 1.55fr;
}

.trust-item {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px clamp(18px, 2.8vw, 38px);
}

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

.trust-item:nth-child(even) {
  background: rgba(230, 218, 235, 0.5);
}

.trust-value {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.15;
}

.trust-label {
  margin-top: 6px;
  color: #685a6b;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card:nth-child(2) .card-kicker {
  color: #ead9ef;
}

.service-card .badge {
  margin-bottom: 24px;
}

.location-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.location-card:nth-child(even) {
  background: rgba(230, 218, 235, 0.58);
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 92, 143, 0.42);
  background: rgba(251, 243, 232, 0.75);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(45px, 9vw, 120px);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 125px;
  margin-bottom: 0;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 52px 26px 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background: var(--mint);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 52px 25px 0;
  color: var(--muted);
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.form-heading p:last-child {
  color: var(--muted);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
}

select {
  width: 100%;
  min-height: 52px;
  padding: 10px 42px 10px 13px;
  border: 1px solid #cbbecd;
  border-radius: var(--radius-sm);
  background: #fbf3e8;
  color: var(--charcoal);
}

select:focus {
  border-color: var(--sage-dark);
  outline: none;
  box-shadow: 0 0 0 4px rgba(169, 141, 188, 0.2);
}

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

.choice-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.appointment-location[hidden],
.appointment-address[hidden] {
  display: none;
}

.appointment-address {
  margin-top: 18px;
}

.choice-card {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  opacity: 0;
}

.choice-card span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid #cbbecd;
  border-radius: 14px;
  background: #fbf3e8;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.3;
  text-align: center;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.choice-card input:checked + span {
  border-color: var(--sage-dark);
  background: var(--mint);
  transform: translateY(-1px);
}

.choice-card input:focus-visible + span {
  outline: 3px solid #826295;
  outline-offset: 3px;
}

.bot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-submit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.contact-layout > .reveal:first-child {
  position: sticky;
  top: 125px;
}

.success-page {
  min-height: 66vh;
  display: grid;
  place-items: center;
}

.success-card {
  max-width: 760px;
  padding: clamp(38px, 7vw, 78px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(194, 166, 211, 0.3), transparent 35%),
    var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-size: 1.5rem;
}

.success-card .eyebrow {
  justify-content: center;
}

.success-card .lead {
  margin-inline: auto;
}

.success-card .page-actions {
  justify-content: center;
}

@media (max-width: 1040px) {
  .site-header {
    backdrop-filter: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    height: 100dvh;
    overflow-y: auto;
    padding: 120px max(24px, calc((100vw - 680px) / 2)) 90px;
    background: rgba(243, 234, 223, 0.99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 4.5vw, 2.2rem);
    font-weight: 400;
  }

  .site-nav .button {
    margin-top: 10px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .hero {
    min-height: 720px;
    background-image: linear-gradient(90deg, rgba(243, 234, 223, 0.98) 0%, rgba(243, 234, 223, 0.91) 45%, rgba(243, 234, 223, 0.24) 100%), url("assets/images/hero-massage.webp");
  }

  .hero-content {
    width: min(760px, 88%);
  }

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

  .fact-card .fact-number {
    margin-bottom: 18px;
  }

  .steps.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps.four .step:nth-child(2)::after {
    display: none;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout .section-heading {
    position: static;
  }

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

  .location-map,
  .location-map iframe {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 650px);
  }

  body {
    padding-bottom: 70px;
  }

  .topline .container {
    justify-content: center;
  }

  .topline .topline-secondary {
    display: none;
  }

  .brand-copy span {
    font-size: 0.59rem;
  }

  .hero {
    min-height: 700px;
    align-items: flex-end;
    background-image: linear-gradient(0deg, rgba(243, 234, 223, 1) 0%, rgba(243, 234, 223, 0.93) 43%, rgba(243, 234, 223, 0.13) 82%), url("assets/images/hero-massage.webp");
    background-position: center, 66% center;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding-block: 290px 58px;
  }

  .hero-content > .eyebrow {
    font-size: 0.68rem;
  }

  .hero-content > .eyebrow::before {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: none;
  }

  .intro-grid,
  .service-grid,
  .split,
  .split.reverse,
  .location-grid,
  .content-columns,
  .contact-layout,
  .footer-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 100px;
    padding: 18px 14px;
  }

  .trust-value {
    font-size: 1.35rem;
  }

  .trust-label {
    font-size: 0.62rem;
  }

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

  .split-media {
    order: -1;
  }

  .split-media img {
    min-height: 420px;
    border-radius: var(--radius) var(--radius) 90px var(--radius);
  }

  .portrait-placeholder {
    min-height: 450px;
    border-radius: var(--radius) var(--radius) 90px var(--radius);
  }

  .steps,
  .steps.four {
    grid-template-columns: 1fr;
  }

  .step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 15px;
    padding: 10px 0 24px;
  }

  .step:not(:last-child)::after,
  .steps.four .step:nth-child(2)::after {
    top: 50px;
    right: auto;
    bottom: -3px;
    left: 19px;
    width: 1px;
    height: auto;
    display: block;
  }

  .step-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .step h3 {
    margin-bottom: 5px;
  }

  .side-card {
    position: static;
  }

  .contact-layout > .reveal:first-child {
    position: static;
  }

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

  .form-field.full {
    grid-column: auto;
  }

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

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(72, 55, 82, 0.14);
    background: rgba(243, 234, 223, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar .button {
    min-height: 46px;
    padding: 10px 14px;
  }

  .mobile-action-bar .button:not(.button-outline) {
    border-color: var(--lilac-rich);
    background: var(--lilac-rich);
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    display: none;
  }
}

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

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

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