:root {
  --ink: #193737;
  --ink-deep: #102a2b;
  --ink-soft: #315252;
  --paper: #f6f2eb;
  --paper-deep: #e9e2d6;
  --sand: #c99b74;
  --sand-light: #ddb996;
  --clay: #c87255;
  --sage: #809286;
  --line: rgba(25, 55, 55, .18);
  --shadow: 0 18px 45px rgba(12, 38, 39, .12);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.shell { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 132px 0; }
.sr-only { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 20; top: -60px; left: 20px; padding: 10px 16px; background: var(--paper); color: var(--ink); }
.skip-link:focus { top: 20px; }
.eyebrow { margin: 0 0 18px; color: var(--sand-light); font-size: 11px; font-weight: 700; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.eyebrow.ink { color: var(--clay); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; line-height: 1.03; }
h2 { margin-bottom: 26px; font-family: var(--serif); font-size: clamp(40px, 5vw, 67px); letter-spacing: -.045em; }
h3 { font-family: var(--serif); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 26px; min-height: 52px; padding: 14px 20px 14px 22px; border: 1px solid var(--sand-light); background: var(--sand-light); color: var(--ink-deep); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: #e9c8a8; }
.button-small { min-height: 42px; padding: 10px 15px 10px 17px; gap: 12px; font-size: 10px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(246,242,235,.55); padding-bottom: 4px; color: var(--paper); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: gap .2s ease; }
.text-link:hover { gap: 15px; }
.ink-link { border-color: var(--line); color: var(--ink); }

/* Header */
.site-header { position: absolute; z-index: 10; top: 0; left: 0; width: 100%; color: var(--paper); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 100px; border-bottom: 1px solid rgba(246,242,235,.15); }
.brand img { width: 139px; height: 70px; object-fit: contain; object-position: left center; mix-blend-mode: screen; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  margin: 0;
}

.site-nav a {
  position: relative;
  padding: 5px 0;
}

.site-nav a:not(.button)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sand-light);
  content: '';
  transition: width .2s;
}

.site-nav a:not(.button):hover::after {
  width: 100%;
}
.menu-toggle { display: none; }

/* Hero */
.hero { position: relative; isolation: isolate; min-height: 765px; overflow: hidden; padding-top: 100px; background: var(--ink-deep); color: var(--paper); }
.hero::after { position: absolute; z-index: -1; right: -5%; bottom: -270px; width: min(720px, 58vw); height: min(720px, 58vw); border: 1px solid rgba(221,185,150,.34); border-radius: 50%; content: ''; }
.hero-wash { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); }
.hero-wash-one { top: 190px; right: 7%; width: 480px; height: 480px; background: radial-gradient(circle at 50%, rgba(200, 114, 85, .48) 0, rgba(200, 114, 85, .16) 34%, rgba(25,55,55,0) 67%); }
.hero-wash-two { bottom: -200px; left: 30%; width: 600px; height: 520px; background: radial-gradient(ellipse at 50%, rgba(221, 185, 150, .23), rgba(221,185,150,0) 63%); }
.hero-line { position: absolute; z-index: -1; border: 1px solid rgba(246,242,235,.12); border-radius: 50%; transform: rotate(-33deg); }
.hero-line-one { top: 145px; right: -78px; width: 415px; height: 690px; }
.hero-line-two { top: 270px; right: 106px; width: 280px; height: 480px; }
.hero-grid { display: grid; grid-template-columns: 1fr 290px; align-items: center; min-height: 570px; padding-top: 45px; }
.hero-copy { max-width: 770px; padding-bottom: 5px; }
.hero h1 { max-width: 720px; margin: 0 0 27px; font-family: var(--serif); font-size: clamp(76px, 10vw, 144px); letter-spacing: -.075em; }
.hero h1 em { color: var(--sand-light); font-weight: 400; }
.hero-intro { max-width: 440px; margin-bottom: 36px; color: rgba(246,242,235,.82); font-size: 18px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.hero-note { justify-self: end; width: 250px; padding: 28px 0 25px 29px; border-left: 1px solid rgba(246,242,235,.36); }
.hero-note .note-symbol { display: block; margin-bottom: 50px; color: var(--sand-light); font-size: 22px; }
.hero-note p { margin-bottom: 4px; color: rgba(246,242,235,.66); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.hero-note strong { display: block; margin-bottom: 24px; font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.05; }
.hero-note a { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-note a span { margin-left: 8px; color: var(--sand-light); }
.hero-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 95px; border-top: 1px solid rgba(246,242,235,.15); color: rgba(246,242,235,.58); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.hero-bottom p { margin: 0; }

/* Intro & methods */
.intro { background: var(--paper); }
.intro-layout { display: grid; grid-template-columns: 1.1fr .75fr; gap: 80px; margin-bottom: 92px; }
.intro h2 { 
  max-width: 650px;
  margin-bottom: 0;
  transform: translateY(35px);
}
.intro-body { align-self: end; max-width: 410px; }
.intro-body p { margin-bottom: 27px; font-size: 17px; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.method-card { position: relative; min-height: 438px; padding: 30px 30px 28px; border-right: 1px solid var(--line); background: var(--paper); transition: transform .25s ease, box-shadow .25s ease; }
.method-card:last-child { border-right: 0; }
.method-card:hover { z-index: 1; transform: translateY(-10px); box-shadow: var(--shadow); }
.method-card-shiatsu:hover { background: #e2e8e0; }
.method-card-hakomi:hover { background: #f1e1d4; }
.method-card-seishin:hover { background: #e7dcd0; }
.card-number { color: var(--clay); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.method-icon { position: relative; height: 122px; margin: 21px 0 31px; }
.icon-flow span { position: absolute; width: 3px; border-radius: 5px; background: var(--sage); transform: rotate(34deg); }
.icon-flow span:nth-child(1) { top: 9px; left: 42%; height: 98px; }.icon-flow span:nth-child(2) { top: 35px; left: 52%; height: 75px; background: var(--sand); }.icon-flow span:nth-child(3) { top: 0; left: 63%; height: 110px; background: var(--ink-soft); }
.icon-window { display: grid; grid-template-columns: repeat(2, 42px); grid-template-rows: repeat(2, 42px); align-content: center; gap: 7px; padding-left: 25%; }
.icon-window span { border: 2px solid var(--sand); }.icon-window span:nth-child(1) { border-right: 0; border-bottom: 0; }.icon-window span:nth-child(2) { border-left: 0; border-bottom: 0; }.icon-window span:nth-child(3) { border-right: 0; border-top: 0; }.icon-window span:nth-child(4) { border-left: 0; border-top: 0; }
.icon-circle::before, .icon-circle::after { position: absolute; top: 50%; left: 50%; border: 1px solid var(--sage); border-radius: 50%; content: ''; transform: translate(-50%, -50%); }.icon-circle::before { width: 92px; height: 92px; }.icon-circle::after { width: 52px; height: 52px; border-color: var(--sand); }.icon-circle span { position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--clay); transform: translate(-50%, -50%); }
.method-card h3 { margin-bottom: 12px; font-size: 35px; letter-spacing: -.04em; }
.method-card p:not(.card-number) { min-height: 91px; margin-bottom: 14px; font-size: 14px; }
.method-card a { border-bottom: 1px solid var(--line); padding-bottom: 2px; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.method-card a span { padding-left: 7px; color: var(--clay); font-size: 15px; }

/* Quote */
.quote-panel { position: relative; overflow: hidden; padding: 140px 0 133px; background: #c87659; color: var(--paper); }
.quote-panel::before { position: absolute; top: -240px; right: -75px; width: 550px; height: 550px; border: 1px solid rgba(246,242,235,.26); border-radius: 50%; content: ''; }
.quote-panel::after { position: absolute; bottom: -300px; left: 7%; width: 580px; height: 580px; border: 1px solid rgba(246,242,235,.18); border-radius: 50%; content: ''; }
.quote-content { position: relative; z-index: 1; max-width: 960px; text-align: center; }
.quote-content .eyebrow { color: var(--ink-deep); }
.quote-content blockquote { margin: 0 auto 31px; font-family: var(--serif); font-size: clamp(38px, 5vw, 67px); letter-spacing: -.05em; line-height: 1.08; }
.quote-caption { max-width: 500px; margin: auto; color: rgba(246,242,235,.78); font-size: 15px; }

/* Concerns */
.concerns { background: var(--paper-deep); }
.concern-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 105px; }
.concern-sticky { align-self: start; position: sticky; top: 32px; }
.concern-sticky h2 { margin-bottom: 25px; }
.concern-sticky > p:last-child { max-width: 360px; font-size: 16px; }
.concern-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.concern-list li { display: grid; grid-template-columns: 50px 1fr 30px; align-items: center; min-height: 122px; border-bottom: 1px solid var(--line); transition: padding .2s, background .2s; }
.concern-list li:hover { padding-inline: 18px; background: rgba(255,255,255,.22); }
.concern-list span { color: var(--clay); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.concern-list strong { font-family: var(--serif); font-size: clamp(26px, 3vw, 39px); font-weight: 400; letter-spacing: -.04em; line-height: 1.03; }
.concern-list i { color: var(--clay); font-size: 23px; font-style: normal; text-align: right; }

/* Process */
.process { background: var(--paper); }
.process-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 115px; }
.process-visual { position: relative; isolation: isolate; aspect-ratio: 1 / 1.12; overflow: hidden; background: var(--ink); color: var(--paper); }
.sun-disc { position: absolute; z-index: -1; top: 17%; left: 18%; width: 62%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, #e0b791 0 15%, #c27e62 51%, #5e776f 52% 57%, transparent 58%); filter: blur(.2px); }
.process-rings { position: absolute; z-index: -1; top: -8%; right: -40%; width: 105%; aspect-ratio: 1; border: 1px solid rgba(246,242,235,.24); border-radius: 50%; box-shadow: 0 0 0 42px rgba(246,242,235,.06), 0 0 0 82px rgba(246,242,235,.04); }
.process-visual img { position: absolute; z-index: -1; right: -13%; bottom: -13%; width: 82%; opacity: .31; mix-blend-mode: screen; }
.process-visual p { position: absolute; bottom: 40px; left: 40px; margin: 0; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 38px); letter-spacing: -.045em; line-height: 1.04; }
.process-copy h2 { max-width: 575px; }
.steps { margin: 49px 0 31px; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 66px 1fr; gap: 3px; padding: 20px 0 22px; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps > li > span { color: var(--clay); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.steps h3 { margin: 0 0 7px; font-size: 26px; letter-spacing: -.035em; }.steps p { max-width: 480px; margin: 0; font-size: 14px; }
.quiet-note { display: flex; gap: 14px; max-width: 530px; padding: 17px 18px; background: #e6eee8; font-size: 13px; }.quiet-note span { color: var(--clay); font-size: 18px; }

/* Prices */
.prices { background: var(--paper-deep); }
.section-heading-row { display: grid; grid-template-columns: 1fr .5fr; gap: 90px; align-items: end; margin-bottom: 55px; }.section-heading-row h2 { max-width: 635px; margin-bottom: 0; }.section-heading-row > p { margin: 0 0 8px; font-size: 14px; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr) .72fr; gap: 16px; align-items: stretch; }
.price-card { display: flex; min-height: 433px; flex-direction: column; padding: 30px; background: var(--paper); }.price-card.featured { background: var(--ink); color: var(--paper); }
.price-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; border-bottom: 1px solid var(--line); padding-bottom: 13px; }.featured .price-card-top { border-color: rgba(246,242,235,.2); }.price-card-top p { margin: 0; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }.price-card-top span { color: var(--clay); font-family: var(--serif); font-size: 20px; }.featured .price-card-top span { color: var(--sand-light); }
.price-card h3 { margin-bottom: 33px; font-size: 29px; letter-spacing: -.04em; }.price-line { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 12px; }.featured .price-line { border-color: rgba(246,242,235,.2); }.price-line strong { font-family: var(--serif); font-size: 19px; font-weight: 400; }.price-line.muted { color: var(--ink-soft); }.featured .price-line.muted { color: rgba(246,242,235,.65); }.price-card .text-link { align-self: flex-start; margin-top: auto; }.featured .text-link { color: var(--paper); border-color: rgba(246,242,235,.4); }
.price-aside { display: flex; min-height: 433px; flex-direction: column; padding: 28px 28px 25px; background: #d8ba9b; }.aside-star { color: var(--clay); font-size: 23px; }.price-aside h3 { margin: 80px 0 13px; font-size: 32px; letter-spacing: -.04em; }.price-aside p { font-size: 14px; }.price-aside .text-link { align-self: flex-start; margin-top: 9px; }.price-aside small { display: block; margin-top: auto; padding-top: 25px; font-size: 10px; line-height: 1.45; }

/* About & locations */
.about { padding: 125px 0 134px; background: var(--paper); }.about-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 90px; align-items: center; }.about-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 244px; aspect-ratio: 1; border: 1px solid var(--sand); border-radius: 50%; text-align: center; transform: rotate(-11deg); }.about-badge span { color: var(--clay); font-family: var(--serif); font-size: 83px; line-height: .85; letter-spacing: -.09em; }.about-badge small { margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }.about-copy { max-width: 670px; }.about-copy h2 { margin-bottom: 31px; }.about-copy > p:not(.eyebrow) { max-width: 600px; margin-bottom: 17px; font-size: 16px; }.about-copy .text-link { margin-top: 13px; }
.locations { padding: 108px 0 116px; background: var(--ink); color: var(--paper); }.locations h2 { margin-bottom: 54px; }.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(246,242,235,.23); }.location-grid article { position: relative; min-height: 250px; padding: 27px 0 0; border-bottom: 1px solid rgba(246,242,235,.23); }.location-grid article + article { padding-left: 48px; border-left: 1px solid rgba(246,242,235,.23); }.location-grid span { color: var(--sand-light); font-size: 10px; font-weight: 700; letter-spacing: .12em; }.location-grid h3 { margin: 34px 0 9px; font-size: 39px; letter-spacing: -.04em; }.location-grid p { color: rgba(246,242,235,.75); font-size: 14px; }.location-grid a { position: absolute; right: 0; bottom: 24px; border-bottom: 1px solid rgba(246,242,235,.4); padding-bottom: 2px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }.location-grid a span { padding-left: 6px; }

/* Contact & footer */
.contact { background: #d2ded6; }.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 115px; }.contact-copy { max-width: 430px; }.contact-copy h2 { margin-bottom: 25px; }.contact-copy > p { margin-bottom: 34px; font-size: 16px; }.direct-contact { display: grid; gap: 14px; }.direct-contact a { display: grid; grid-template-columns: 82px 1fr; font-family: var(--serif); font-size: 22px; letter-spacing: -.03em; }.direct-contact span { padding-top: 6px; color: var(--ink-soft); font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }.contact-form label { display: grid; gap: 6px; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }.contact-form label:nth-of-type(3), .contact-form label:nth-of-type(4), .contact-form .consent, .contact-form button, .form-message { grid-column: 1 / -1; }.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(25,55,55,.42); border-radius: 0; outline: 0; padding: 10px 0; background: transparent; color: var(--ink); font-size: 16px; font-weight: 400; letter-spacing: 0; text-transform: none; }.contact-form textarea { min-height: 84px; resize: vertical; }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--clay); }.consent { grid-template-columns: 17px 1fr !important; align-items: start; gap: 10px !important; margin-top: 1px; font-size: 10px !important; font-weight: 500 !important; letter-spacing: .03em !important; line-height: 1.4; text-transform: none !important; }.consent input { width: 14px; height: 14px; margin: 0; accent-color: var(--ink); }.contact-form .button { justify-self: start; margin-top: 4px; border-color: var(--ink); background: var(--ink); color: var(--paper); }.contact-form .button:hover { background: var(--ink-soft); }.form-message { min-height: 20px; margin: -8px 0 0; color: var(--ink); font-size: 13px; }
.site-footer { padding: 55px 0 22px; background: var(--ink-deep); color: var(--paper); }.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; padding-bottom: 47px; border-bottom: 1px solid rgba(246,242,235,.18); }.footer-brand img { width: 136px; height: 65px; object-fit: contain; object-position: left; mix-blend-mode: screen; }.footer-top p { margin: 0; color: rgba(246,242,235,.72); font-size: 12px; }.footer-top > a { border-bottom: 1px solid rgba(246,242,235,.4); padding-bottom: 3px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }.footer-top > a span { padding-left: 8px; color: var(--sand-light); }.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 21px; color: rgba(246,242,235,.55); font-size: 10px; }.footer-bottom p { margin: 0; }.footer-bottom div { display: flex; gap: 20px; }.footer-bottom a:hover { color: var(--paper); }

@media (max-width: 900px) {
  .shell { width: min(100% - 40px, 680px); }.section { padding: 90px 0; }
  .header-inner { min-height: 81px; }.brand img { width: 120px; height: 60px; }.menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 6px; border: 1px solid rgba(246,242,235,.4); background: transparent; }.menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; background: var(--paper); transition: transform .2s; }.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 81px; left: 0; display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: 15px 20px 22px; background: var(--ink-deep); box-shadow: 0 10px 30px rgba(0,0,0,.2); }.site-nav.is-open { display: flex; }.site-nav > a:not(.button) { padding: 15px 0; }.site-nav .button { margin-top: 8px; align-self: flex-start; }
  .hero { min-height: 665px; padding-top: 81px; }.hero-grid { grid-template-columns: 1fr; min-height: 495px; padding-top: 50px; }.hero h1 { font-size: clamp(67px, 16vw, 104px); }.hero-copy { padding-bottom: 30px; }.hero-note { display: none; }.hero-bottom { min-height: 74px; }
  .intro-layout, .concern-layout, .process-layout, .contact-layout { grid-template-columns: 1fr; gap: 45px; }.intro-layout { margin-bottom: 55px; }.intro-body { max-width: 530px; }.method-grid { grid-template-columns: 1fr; }.method-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }.method-card:last-child { border-bottom: 0; }.method-card p:not(.card-number) { min-height: 0; max-width: 520px; }.method-icon { position: absolute; top: 32px; right: 28px; width: 105px; height: 100px; margin: 0; opacity: .85; }.icon-window { padding-left: 10px; }.method-card h3 { padding-top: 35px; }
  .concern-sticky { position: static; }.concern-list li { min-height: 105px; }.process-visual { width: min(100%, 560px); }.section-heading-row { grid-template-columns: 1fr; gap: 5px; margin-bottom: 35px; }.price-grid { grid-template-columns: 1fr 1fr; }.price-aside { grid-column: 1 / -1; min-height: 260px; }.price-aside h3 { margin-top: 29px; }.about { padding: 90px 0; }.about-layout { grid-template-columns: 1fr; gap: 45px; }.about-badge { width: 190px; }.about-badge span { font-size: 65px; }.location-grid { grid-template-columns: 1fr; }.location-grid article + article { padding-left: 0; border-left: 0; }.contact-copy { max-width: none; }.footer-top { grid-template-columns: 1fr auto; gap: 20px; }.footer-top p { grid-row: 2; }.footer-top > a { grid-row: 2; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 36px); }.section { padding: 70px 0; } h2 { font-size: 41px; }.hero { min-height: 650px; }.hero h1 { font-size: clamp(61px, 18vw, 83px); }.hero-intro { font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }.hero-bottom p { max-width: 210px; font-size: 8px; }.method-card { padding: 24px; }.method-card h3 { font-size: 32px; }.quote-panel { padding: 96px 0; }.quote-content blockquote { font-size: 39px; }.concern-list li { grid-template-columns: 36px 1fr 20px; }.concern-list strong { font-size: 29px; }.process-layout { gap: 40px; }.process-visual { aspect-ratio: 1/.96; }.process-visual p { bottom: 29px; left: 25px; font-size: 31px; }.steps li { grid-template-columns: 42px 1fr; }.steps h3 { font-size: 24px; }.price-grid { grid-template-columns: 1fr; }.price-card, .price-aside { min-height: 390px; }.price-aside { grid-column: auto; min-height: 265px; }.location-grid article { min-height: 220px; }.location-grid h3 { margin-top: 25px; }.contact-form { grid-template-columns: 1fr; }.contact-form label { grid-column: 1 / -1; }.direct-contact a { grid-template-columns: 1fr; gap: 1px; font-size: 19px; }.direct-contact span { padding-top: 0; }.site-footer { padding-top: 40px; }.footer-top { grid-template-columns: 1fr; }.footer-top > a { grid-row: auto; justify-self: start; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }.footer-bottom div { gap: 13px; flex-wrap: wrap; }
}
.page-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
}
/* Header auf hellen Unterseiten */
body:not(.home) .site-header {
  color: var(--ink);
}

body:not(.home) .header-inner {
  border-bottom-color: rgba(0,0,0,.12);
}

/* Dunkle Unterseiten-Hero Bereiche */
body:has(.page-hero) .site-header {
  color: var(--paper);
}

body:has(.page-hero) .header-inner {
  border-bottom-color: rgba(246,242,235,.15);
}
.page-intro {
  max-width: 620px;
  margin: 0 0 50px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
/* Unterseiten Hero */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 100px;
  background: var(--ink-deep);
  color: var(--paper);
}

.page-hero::after {
  position: absolute;
  right: -180px;
  top: -180px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(221,185,150,.3);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(55px, 8vw, 90px);
  font-weight: 400;
  letter-spacing: -.05em;
}
/* Scroll Animation */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
<div class="reveal">
Inhalt
</div>
.dark-section {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
}

.sand-section {
  background: var(--paper-deep);
  padding: 120px 0;
}
.page-hero h1 {
  margin-bottom: 10px;
}

.page-hero-text {
  position: relative;
  z-index: 1;
  max-width: 450px;
  margin: 0;
  color: rgba(246,242,235,.78);
  font-size: 18px;
  line-height: 1.6;
}

.treatment-steps {
  position: relative;
  overflow: hidden;
  padding: 70px 0 130px;
  background: var(--ink);
  color: var(--paper);
}

.steps-heading {
  max-width: 650px;
  margin-bottom: 70px;
}

.steps-heading .eyebrow {
  color: var(--sand-light);
}

.steps-heading h2 {
  margin-bottom: 0;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(246,242,235,.2);
}

.treatment-card {
  min-height: 330px;
  padding: 35px 30px;
  border-right: 1px solid rgba(246,242,235,.2);
  transition: transform .3s ease, background .3s ease;
}

.treatment-card:last-child {
  border-right: 0;
}

.treatment-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.05);
}

.treatment-card span {
  display: block;
  margin-bottom: 70px;
  color: var(--sand-light);
  font-size: 12px;
  letter-spacing: .15em;
  font-weight: 700;
}

.treatment-card h3 {
  margin-bottom: 15px;
  color: var(--paper);
  font-size: 38px;
}

.treatment-card p {
  max-width: 290px;
  color: rgba(246,242,235,.72);
}
@media (max-width: 900px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    border-right: 0;
    border-bottom: 1px solid rgba(246,242,235,.2);
  }

  .treatment-card:last-child {
    border-bottom: 0;
  }
}
.treatment-steps::before {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(221,185,150,.18);
  border-radius: 50%;
  content: "";
}

.treatment-steps::after {
  position: absolute;
  bottom: -260px;
  left: -120px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(246,242,235,.12);
  border-radius: 50%;
  content: "";
}
.treatment-steps .shell {
  position: relative;
  z-index: 1;
}
.arrival {
  border-top: 1px solid rgba(25, 55, 55, .18);
  padding: 50px 0 20px;
}

.arrival .intro-layout {
  margin-bottom: 0;
}

.arrival .intro-body {
  border-left: 1px solid var(--line);
  padding-left: 50px;
}

.arrival .intro-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .arrival {
    padding: 40px 0 20px;
  }

  .arrival .intro-body {
    border-left: 0;
    padding-left: 0;
  }
}
.arrival {
  padding-bottom: 0 !important;
}

.arrival .intro-layout {
  margin-bottom: 0 !important;
}

.arrival .intro-body {
  margin-bottom: 0 !important;
}
.arrival h2 {
  transform: translateY(50px);
}
.arrival .intro-body p {
  line-height: 1.55;
}
.faq-section {
  background: var(--paper-deep);
  padding: 120px 0;
}

.faq-heading {
  max-width: 650px;
  margin-bottom: 70px;
}

.faq-heading h2 {
  margin-bottom: 25px;
}

.faq-heading > p:last-child {
  font-size: 17px;
  line-height: 1.7;
}

.faq-list {
  max-width: 850px;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  text-align: left;
}

.faq-question span {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
}

.faq-answer {
  max-width: 650px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease, padding .35s ease;
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 30px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.faq-question {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 55px 22px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
  text-align: left;
}

.faq-answer {
  max-width: 650px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease, padding .35s ease;
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 22px;
}

.faq-section {
  padding: 95px 0;
}

.faq-heading {
  margin-bottom: 50px;
}
.faq-icon {
  position: absolute;
  right: 5px;
  top: 60%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--clay);
  transition: transform .35s ease, opacity .35s ease;
}

.faq-icon::before {
  width: 16px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.offer-methods {
  background: var(--paper);
}

.offer-heading {
  max-width: 650px;
  margin-bottom: 70px;
}

.offer-heading h2 {
  margin-bottom: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.offer-card {
  position: relative;
  min-height: 420px;
  padding: 35px 32px;
  border-right: 1px solid var(--line);
  background: var(--paper);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.offer-card:last-child {
  border-right: 0;
}

.offer-card:hover {
  z-index: 1;
  transform: translateY(-8px);
  background: #e9e2d6;
  box-shadow: var(--shadow);
}

.offer-number {
  display: block;
  margin-bottom: 75px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

.offer-card h3 {
  margin-bottom: 18px;
  font-size: 38px;
  letter-spacing: -.04em;
}

.offer-card p {
  max-width: 290px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}


@media (max-width: 900px) {

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

  .offer-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-card:last-child {
    border-bottom: 0;
  }

}
.additional-applications {
  background: var(--paper-deep);
  padding: 100px 0;
}
.additional-heading {
  max-width: 650px;
  margin-bottom: 70px;
}

.additional-heading h2 {
  margin-bottom: 25px;
}

.additional-heading > p:last-child {
  max-width: 450px;
  color: var(--ink-soft);
  font-size: 17px;
}


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


.application-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.application-item > div {
  flex: 1;
}
.application-item h3,
.application-item p {
  width: auto;
}


.application-item > span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}


.application-item h3 {
  margin: 0 0 12px;
  font-size: 34px;
  letter-spacing: -.04em;
}


.application-item p {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}


@media (max-width: 900px) {
  .application-item {
    grid-template-columns: 45px 1fr;
  }

  .application-item h3 {
    font-size: 28px;
  }
}

.offer-closing {
  padding: 80px 0;
  background: var(--paper);
}

.offer-closing-inner {
  max-width: 560px;
  border-left: 1px solid var(--line);
  padding-left: 35px;
}

.offer-closing-inner p {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -.02em;
  line-height: 1.45;
}


@media (max-width: 900px) {
  .offer-closing {
    padding: 60px 0;
  }

  .offer-closing-inner {
    border-left: 0;
    padding-left: 0;
  }

  .offer-closing-inner p {
    font-size: 22px;
  }
}
.additional-applications {
  position: relative;
  overflow: hidden;
}

.additional-applications::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(25,55,55,.12);
  border-radius: 50%;
  content: "";
}

.additional-applications .shell {
  position: relative;
  z-index: 1;
}
.offer-closing {
  position: relative;
  overflow: hidden;
}

.offer-closing::after {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(25,55,55,.08);
  transform: rotate(45deg);
  content: "";
}
.light-page-hero {
  background: var(--paper);
  color: var(--ink);
}

.light-page-hero .page-hero-text {
  color: var(--ink-soft);
}

.light-page-hero::after {
  border-color: rgba(25,55,55,.15);
}
body:has(.light-page-hero) .site-header {
  color: var(--ink);
}

body:has(.light-page-hero) .header-inner {
  border-bottom-color: rgba(25,55,55,.12);
}
.light-page-hero {
  padding: 120px 0 70px;
}
.price-locations {
  padding: 120px 0;
  background: var(--paper);
}

.price-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr .65fr;
  gap: 0;
  border: 1px solid var(--line);
}


.price-location {
  min-height: 520px;
  padding: 35px 32px;
  border-right: 1px solid var(--line);
}


.price-location:last-child {
  border-right: 0;
}


.price-location.lasse {
  background: #e2e8e0;
}


.price-location.stockerau {
  background: var(--paper);
}


.price-location.vouchers {
  background: #d8ba9b;
}


.price-location .eyebrow {
  color: var(--clay);
  margin-bottom: 22px;
}


.price-location h2 {
  font-size: 42px;
  margin-bottom: 45px;
}


.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}


.price-row span {
  font-size: 13px;
  line-height: 1.45;
}


.price-row strong {
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}


.price-location.vouchers > p:not(.eyebrow) {
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}


@media (max-width: 900px) {

  .price-locations {
    padding: 80px 0;
  }

  .price-grid-new {
    grid-template-columns: 1fr;
  }

  .price-location {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
  }

  .price-location:last-child {
    border-bottom: 0;
  }

}
.price-location.lasse,
.price-location.stockerau {
  min-height: 560px;
}

.price-location.vouchers {
  min-height: 560px;
}

.voucher-star {
  display: block;
  margin-bottom: 55px;
  color: var(--clay);
  font-size: 24px;
}
.special-item + .special-item {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 15px;
}
.special-note {
  margin-top: 45px;
  max-width: 620px;
}
.special-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 30px;
}

.special-item strong {
  text-align: right;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  white-space: nowrap;
}

.special-item strong small {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.insurance-note {
  padding: 100px 0;
  background: var(--paper-deep);
}

.insurance-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 850px;
  padding: 35px 40px;
  background: transparent;
  border: 1px solid var(--line);
}

.insurance-box > span {
  color: var(--clay);
  font-size: 22px;
  line-height: 1;
}

.insurance-box h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.insurance-box p {
  max-width: 700px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}


@media (max-width: 700px) {
  .insurance-box {
    padding: 24px;
    flex-direction: column;
  }
}
.insurance-note {
  margin-top: 90px;
}

.insurance-note {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.about-intro {
  padding: 10px 0 10px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  display: block;
}

.about-image::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  border: 1px solid var(--line);
  left: 25px;
  top: 25px;
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 30px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-image img {
  max-width: 300px !important;
}

.about-intro-grid {
  gap: 150px !important;
}

.about-philosophy {
  background: #1f3a32;
  color: #f5efe6;
  padding: 120px 0;
  text-align: center;
}

.philosophy-content {
  max-width: 760px;
  margin: 0 auto;
}

.philosophy-symbol {
  display: block;
  color: #c9825b;
  font-size: 28px;
  margin-bottom: 35px;
}

.about-philosophy h2 {
  color: #f5efe6;
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 35px;
}

.about-philosophy p {
  color: rgba(245,239,230,0.85);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-philosophy {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.about-qualifications {
  padding: 100px 0;
}

.qualifications-content {
  max-width: 850px;
  margin: 0 auto;
}

.about-qualifications h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 60px;
}

.qualification-list p {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.qualification-list span {
  color: #c9825b;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  top: 14px;
}

.practice-section {
  background: #f3eadc;
  padding: 110px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.practice-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.practice-header h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 25px;
}

.practice-header p {
  line-height: 1.7;
  font-size: 17px;
}


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


.practice-card {
  background: #ffffff;
  overflow: hidden;
}


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


.practice-card-content {
  padding: 35px;
}


.practice-card-content h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}


.practice-card-content p {
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {

  .about-image {
    width: 100%;
  }

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


  .practice-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

}

@media (max-width: 768px) {

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-image {
    width: 100%;
    text-align: center;
  }

  .about-image img {
    display: block;
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
  }

  .about-image::after {
    display: none;
  }

  .about-text {
    width: 100%;
  }

  .about-text h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.7;
  }

}

#standorte {
  scroll-margin-top: 0px;
}