/* =========================================================
   KIROSHIATSU — Premium Landing
   Author: Studio — Color system, typography, motion
   ========================================================= */

/* ---- Tokens · Wellness Minimal ---- */
:root {
    /* Palette — zen, natural, serene */
    --ink:          #2C2A26;      /* warm charcoal, never pure black */
    --ink-80:       #3D3A34;
    --ink-60:       #5A564E;
    --muted:        #857F74;
    --line:         #EAE4D6;
    --bg:           #F7F4EC;      /* warm off-cream base */
    --bg-alt:       #F0EBDD;
    --bg-soft:      #FBF9F3;
    --bg-deep:      #E8E1D0;      /* light sage-cream (no dark sections) */
    --cream:        #F3ECDC;
    --gold:         #C8A97E;
    --gold-deep:    #A7875C;
    --sage:         #9DAE96;      /* softer sage */
    --sage-deep:    #6B8164;
    --sage-mist:    #DCE4D7;

    /* Type */
    --f-serif:      "Cormorant Garamond", "Times New Roman", serif;
    --f-sans:       "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

    /* Spacing */
    --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
    --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem;
    --sp-9: 6rem; --sp-10: 8rem;

    /* Radii */
    --r-sm: 4px; --r-md: 10px; --r-lg: 18px; --r-xl: 28px;

    /* Transitions */
    --ease:        cubic-bezier(.2,.8,.2,1);
    --ease-out:    cubic-bezier(.16,1,.3,1);
    --t-fast:      .25s;
    --t-med:       .45s;
    --t-slow:      .8s;

    /* Sizes */
    --maxw: 1280px;
    --nav-h: 82px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--f-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; font-family: var(--f-serif); font-weight: 400; }

::selection { background: var(--ink); color: var(--bg); }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section {
    padding: clamp(4rem, 10vw, 9rem) 0;
    position: relative;
}

/* ---- Typography ---- */
.section-title {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(2.25rem, 5.5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold-deep); }

.eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--f-sans);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .28em;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.eyebrow::before {
    content:""; width: 28px; height: 1px; background: var(--gold);
}

.lead {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(1.2rem, 1.7vw, 1.55rem);
    line-height: 1.55;
    color: var(--ink-60);
    margin-bottom: 1.25rem;
    max-width: 52ch;
}
.body { color: var(--muted); max-width: 56ch; line-height: 1.75; }

.section-intro {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--muted);
    max-width: 58ch;
    line-height: 1.75;
    margin-top: 1rem;
}

/* =========================================================
   LOADER
   ========================================================= */
.loader {
    position: fixed; inset: 0;
    background: var(--bg-soft);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner {
    display: flex; gap: .8rem;
    font-family: var(--f-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.loader-word {
    opacity: 0; transform: translateY(30px);
    animation: loader-in .7s var(--ease-out) forwards;
}
.loader-word:nth-child(2){ animation-delay: .15s; }
.loader-word:nth-child(3){
    animation-delay: .3s;
    font-style: italic; color: var(--sage-deep);
}
@keyframes loader-in {
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 2px; width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-deep));
    z-index: 1000;
    transition: width .1s linear;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 900;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    background: rgba(250, 250, 247, 0.7);
    border-bottom: 1px solid transparent;
    transition: all .4s var(--ease);
}
.navbar.scrolled {
    background: rgba(250, 250, 247, 0.92);
    border-bottom-color: var(--line);
    height: 70px;
}
.nav-container {
    height: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: inline-flex; align-items: center;
    height: 58px;
    transition: transform var(--t-fast) var(--ease);
}
.nav-logo:hover { transform: scale(1.05); }
.nav-logo-img {
    height: 100%;
    width: auto;
    max-height: 58px;
    object-fit: contain;
    filter: url(#logo-soft);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
@media (max-width: 900px) {
    .nav-logo { height: 46px; }
    .nav-logo-img { max-height: 46px; }
}

.nav-links {
    display: flex; gap: 1.7rem;
    position: absolute; left: 50%; transform: translateX(-50%);
}
@media (max-width: 1200px) {
    .nav-links { gap: 1.2rem; }
    .nav-link { font-size: .82rem; }
}
.nav-link {
    font-size: .875rem;
    font-weight: 400;
    color: var(--ink-60);
    position: relative;
    padding: .5rem 0;
    transition: color .25s var(--ease);
}
.nav-link::after {
    content:""; position: absolute; left: 0; bottom: 0;
    width: 0; height: 1px; background: var(--gold-deep);
    transition: width .35s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .7rem 1.25rem;
    background: var(--ink);
    color: var(--bg);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .02em;
    transition: transform .3s var(--ease-out), background .3s var(--ease);
    will-change: transform;
}
.nav-cta:hover { background: var(--gold-deep); }
.nav-cta svg { transition: transform .3s var(--ease-out); }
.nav-cta:hover svg { transform: translateX(3px); }

.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
}
.nav-toggle span {
    display: block; width: 22px; height: 1.5px;
    background: var(--ink);
    transition: transform .35s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 890;
    transform: translateY(-100%);
    transition: transform .6s var(--ease-out), visibility 0s linear .6s;
    padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
    display: flex; flex-direction: column; justify-content: space-between;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
}
.mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform .6s var(--ease-out), visibility 0s linear 0s;
}
@media (min-width: 901px) {
    .mobile-menu { display: none !important; }
}
.mobile-menu-links {
    display: flex; flex-direction: column;
    gap: .5rem;
}
.mobile-menu-links a {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 400;
    padding: .5rem 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    opacity: 0; transform: translateY(20px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-menu.open .mobile-menu-links a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-links a:nth-child(1) { transition-delay: .15s; }
.mobile-menu.open .mobile-menu-links a:nth-child(2) { transition-delay: .2s; }
.mobile-menu.open .mobile-menu-links a:nth-child(3) { transition-delay: .25s; }
.mobile-menu.open .mobile-menu-links a:nth-child(4) { transition-delay: .3s; }
.mobile-menu.open .mobile-menu-links a:nth-child(5) { transition-delay: .35s; }
.mobile-menu.open .mobile-menu-links a:nth-child(6) { transition-delay: .4s; }
.mobile-menu-footer {
    display: flex; flex-direction: column; gap: .25rem;
    color: var(--muted); font-size: .9rem;
    padding-bottom: 2rem;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--nav-h) + 2rem) 0 3rem;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-gradient {
    position: absolute; inset: -20%;
    background:
        radial-gradient(circle at 20% 20%, rgba(200,169,126,0.22) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(139,157,131,0.18) 0%, transparent 45%),
        linear-gradient(135deg, var(--bg) 0%, var(--cream) 60%, var(--bg-alt) 100%);
    animation: drift 30s ease-in-out infinite alternate;
}
@keyframes drift {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(-3%,2%) scale(1.04); }
}
.hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
    opacity: .05;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.hero-tagline {
    display: inline-flex; align-items: center; gap: .9rem;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--ink-60);
    margin-bottom: 2rem;
    padding: .5rem 1rem;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: rgba(255,255,255,.45);
    backdrop-filter: blur(10px);
}
.tag-line { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 3px rgba(139,157,131,.22); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
    0%,100% { opacity: 1; box-shadow: 0 0 0 3px rgba(139,157,131,.22); }
    50%     { opacity: .7; box-shadow: 0 0 0 6px rgba(139,157,131,.05); }
}

.hero-title {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(3rem, 9vw, 8.5rem);
    line-height: .95;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 2.5rem;
}
.hero-title .line {
    display: block;
    overflow: hidden;
}
.hero-title .line > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s var(--ease-out);
}
.hero-title .line.in > span { transform: translateY(0); }
.hero-title em { color: var(--gold-deep); }

.hero-subtitle {
    font-family: var(--f-sans);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.7;
    color: var(--ink-60);
    max-width: 46ch;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex; align-items: center; gap: clamp(1rem,3vw,3rem);
    flex-wrap: wrap;
}
.stat {
    display: flex; flex-direction: column;
}
.stat-num {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    display: inline;
}
.stat-plus {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--gold-deep);
    vertical-align: top;
}
.stat-label {
    font-size: .78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-top: .5rem;
}
.stat-sep { width: 1px; height: 48px; background: var(--line); }

.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    z-index: 3;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--ink), transparent);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content:""; position: absolute; top: -50%; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(to bottom, transparent, var(--gold-deep));
    animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%   { top: -50%; }
    100% { top: 100%; }
}

.hero-sidemark {
    position: absolute;
    right: 1.5rem; bottom: 50%;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right bottom;
    font-size: .7rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--muted);
    z-index: 3;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex; align-items: center; gap: .65rem;
    padding: 1rem 1.75rem;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .02em;
    transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
    position: relative;
    overflow: hidden;
    will-change: transform;
}
.btn svg { transition: transform .3s var(--ease-out); position: relative; z-index: 2; }
.btn span { position: relative; z-index: 2; }

.btn-primary {
    background: var(--ink);
    color: var(--bg);
}
.btn-primary::before {
    content:""; position: absolute; inset: 0;
    background: var(--gold-deep);
    transform: translateY(100%);
    transition: transform .45s var(--ease-out);
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--bg);
}
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-full { width: 100%; justify-content: center; padding: 1.15rem 1.75rem; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
    padding: 2rem 0;
    background: var(--bg-soft);
    color: var(--ink-60);
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.marquee-track {
    display: flex; align-items: center; gap: 3rem;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    font-family: var(--f-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -.01em;
}
.marquee-track em {
    color: var(--gold-deep);
    font-size: .7em;
    font-style: normal;
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

/* Visual Frame */
.visual-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(145deg, var(--cream), var(--bg-alt));
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(10,10,10,.25);
}
.visual-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}
.portrait-placeholder {
    position: relative;
    width: 60%; aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
}
.portrait-initials {
    font-family: var(--f-serif);
    font-size: clamp(4rem, 9vw, 7rem);
    font-weight: 500;
    color: var(--ink);
    z-index: 2;
}
.portrait-ring {
    position: absolute; inset: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    animation: ringRotate 24s linear infinite;
}
.portrait-ring.ring-2 {
    inset: -10%;
    border-color: var(--sage);
    border-style: dashed;
    animation-duration: 50s;
    animation-direction: reverse;
}
@keyframes ringRotate {
    to { transform: rotate(360deg); }
}
.visual-caption {
    position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(251,249,243,.92);
    color: var(--ink);
    backdrop-filter: blur(10px);
    border-radius: var(--r-md);
    border: 1px solid rgba(234,228,214,.8);
    display: flex; justify-content: space-between; align-items: baseline;
}
.visual-caption span { font-family: var(--f-serif); font-size: 1.15rem; }
.visual-caption small { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

.col-text { display: flex; flex-direction: column; }

.about-facts {
    display: flex; flex-direction: column; gap: 1.25rem;
    margin: 2.25rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.about-facts li {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: baseline;
    gap: 1rem;
}
.fact-num {
    font-family: var(--f-serif);
    font-size: 2rem;
    color: var(--gold-deep);
    font-weight: 400;
}
.fact-label {
    color: var(--ink-60);
    font-size: .95rem;
    line-height: 1.5;
}

.signature {
    display: flex; flex-direction: column;
    margin-top: 1rem;
}
.sig-text {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 2rem;
    color: var(--ink);
}
.signature small {
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .25rem;
}

/* =========================================================
   METHOD
   ========================================================= */
.method {
    background: var(--bg-soft);
    position: relative;
}
.method::before {
    content:""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.method-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 5rem;
}
.method-header .eyebrow { justify-content: center; }
.method-header .eyebrow::before { margin-right: 0; }

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.method-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.method-card {
    padding: 2.25rem 2rem 3rem;
    border-right: 1px solid var(--line);
    position: relative;
    background: transparent;
    transition: background .5s var(--ease);
}
.method-card:last-child { border-right: none; }

.method-card:hover { background: var(--cream); }

.method-step {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-deep);
    display: block;
    margin-bottom: 2rem;
    letter-spacing: .1em;
}
.method-card h3 {
    font-family: var(--f-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -.01em;
}
.method-card p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}
.method-line {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0%;
    background: var(--ink);
    transition: width .6s var(--ease-out);
}
.method-card:hover .method-line { width: 100%; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-header {
    max-width: 720px;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2.5rem 2rem 2rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease), border-color .4s;
    will-change: transform;
    transform-style: preserve-3d;
}
.service-card::before {
    content:""; position: absolute; inset: 0;
    background: linear-gradient(145deg, var(--cream), transparent 50%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
}
.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 25px 60px -25px rgba(10,10,10,.2);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
    color: var(--gold-deep);
    transition: transform .5s var(--ease-out), background .4s, border-color .4s;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon {
    transform: rotate(12deg) scale(1.1);
    background: var(--ink);
    color: var(--gold);
    border-color: var(--ink);
}

.service-meta {
    display: flex; justify-content: space-between;
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .75rem;
}
.service-card h3 {
    font-family: var(--f-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -.01em;
}
.service-card p {
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative; z-index: 1;
}
.price-line {
    display: block;
    margin-top: .75rem;
    color: var(--gold-deep);
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1rem;
}

.service-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    transition: background .4s var(--ease), color .4s, border-color .4s, transform .4s var(--ease-out);
    position: relative; z-index: 1;
}
.service-card:hover .service-arrow {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
    transform: rotate(-45deg);
}

.services-footer {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--sage-mist);
    color: var(--ink);
    border-radius: var(--r-xl);
    display: flex; justify-content: space-between; align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    border: 1px solid var(--line);
}
.services-footer p {
    font-family: var(--f-serif);
    font-size: 1.3rem;
    max-width: 65ch;
    line-height: 1.5;
    color: var(--ink-60);
}
.services-footer .btn-ghost {
    color: var(--ink);
    border-color: var(--ink-60);
}
.services-footer .btn-ghost:hover {
    background: var(--ink);
    color: var(--bg-soft);
    border-color: var(--ink);
}

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits {
    background: var(--bg-soft);
    color: var(--ink);
    position: relative;
    overflow: hidden;
}
.benefits::before {
    content:""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(200,169,126,.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 100%, rgba(157,174,150,.14) 0%, transparent 50%);
    pointer-events: none;
}
.benefits .container { position: relative; z-index: 1; }

.benefits-header {
    margin-bottom: 5rem;
    max-width: 680px;
}

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

.benefit {
    padding: 3rem 2.5rem;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    position: relative;
    transition: background .5s var(--ease);
}
.benefit:nth-child(3n) { border-right: none; }
.benefit:nth-last-child(-n+3) { border-bottom: none; }

.benefit:hover { background: var(--cream); }

.benefit-num {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--gold-deep);
    margin-bottom: 2rem;
    letter-spacing: .1em;
}
.benefit h3 {
    font-family: var(--f-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--ink);
    letter-spacing: -.01em;
    transition: transform .5s var(--ease-out);
}
.benefit:hover h3 { transform: translateX(6px); color: var(--sage-deep); }
.benefit p {
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.75;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.test-header {
    max-width: 640px;
    margin-bottom: 4.5rem;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.test-card {
    padding: 2.5rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    display: flex; flex-direction: column;
    position: relative;
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease);
}
.test-card::before {
    content:"“";
    position: absolute;
    top: .5rem; right: 1.5rem;
    font-family: var(--f-serif);
    font-size: 7rem;
    color: var(--gold);
    opacity: .15;
    line-height: 1;
    pointer-events: none;
}
.test-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px -25px rgba(10,10,10,.25);
}

.test-stars {
    color: var(--gold-deep);
    letter-spacing: .2em;
    font-size: .95rem;
    margin-bottom: 1.5rem;
}

.test-card blockquote {
    font-family: var(--f-serif);
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 400;
    flex: 1;
    margin-bottom: 2rem;
    position: relative; z-index: 1;
}

.test-card figcaption {
    display: flex; flex-direction: column;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.test-card figcaption strong {
    font-weight: 500;
    color: var(--ink);
    font-size: .95rem;
    margin-bottom: .25rem;
}
.test-card figcaption span {
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.test-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: var(--cream);
    border-radius: var(--r-xl);
    text-align: center;
}
.trust-item {
    display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.trust-num {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--ink);
    font-weight: 500;
}
.trust-stars { color: var(--gold-deep); letter-spacing: .15em; font-size: .9rem; }
.trust-label {
    font-size: .75rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
    background: var(--bg-alt);
}
.contact-header {
    max-width: 640px;
    margin-bottom: 4rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 5vw, 5rem);
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-block {
    display: flex; flex-direction: column; gap: .5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}
.info-block:last-of-type { border-bottom: none; }
.info-label {
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
}
.info-block p {
    font-family: var(--f-serif);
    font-size: 1.3rem;
    color: var(--ink);
    line-height: 1.4;
}
.info-link {
    font-family: var(--f-serif);
    font-size: 1.5rem;
    color: var(--ink);
    transition: color .25s var(--ease);
    position: relative;
    width: fit-content;
}
.info-link::after {
    content:""; position: absolute; left: 0; bottom: -2px;
    width: 100%; height: 1px;
    background: var(--gold-deep);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease-out);
}
.info-link:hover::after { transform: scaleX(1); transform-origin: left; }
.info-link:hover { color: var(--gold-deep); }

.contact-social {
    display: flex; gap: 1.5rem;
    margin-top: 1rem;
}
.contact-social a {
    font-size: .85rem;
    color: var(--muted);
    transition: color .25s;
    position: relative;
}
.contact-social a::after {
    content:""; position: absolute; left: 0; bottom: -2px;
    width: 100%; height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease-out);
}
.contact-social a:hover { color: var(--ink); }
.contact-social a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Form */
.contact-form {
    padding: 2.5rem;
    background: var(--bg);
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-field {
    display: flex; flex-direction: column;
    position: relative;
}
.form-field label {
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--f-sans);
    font-size: 1rem;
    padding: .9rem 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    outline: none;
    transition: border-color .3s var(--ease);
    resize: vertical;
}
.form-field textarea { min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--ink);
}
.form-field.checkbox {
    flex-direction: row; align-items: flex-start; gap: .6rem;
}
.form-field.checkbox label {
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.5;
}
.form-field.checkbox input { width: 16px; height: 16px; margin-top: 3px; }

.form-error {
    font-size: .78rem;
    color: #B23A48;
    margin-top: .4rem;
    min-height: 1em;
}
.form-field.invalid input,
.form-field.invalid textarea,
.form-field.invalid select { border-color: #B23A48; }

.form-feedback {
    min-height: 1em;
    font-size: .9rem;
    text-align: center;
    padding-top: .5rem;
}
.form-feedback.success { color: var(--sage-deep); }
.form-feedback.error   { color: #B23A48; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
    padding: 5rem 0;
    background: var(--sage-mist);
    color: var(--ink);
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content:""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(107,129,100,.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(200,169,126,.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    display: flex; justify-content: space-between; align-items: center;
    gap: 2rem; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.cta-inner .eyebrow {
    margin-bottom: .75rem;
}
.cta-inner h3 {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -.01em;
    color: var(--ink);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    position: relative;
    background: var(--cream);
    color: var(--ink);
    padding: 6rem 0 2rem;
    overflow: hidden;
    border-top: 1px solid var(--line);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--line);
    position: relative; z-index: 2;
}

.footer-logo {
    font-family: var(--f-serif);
    font-size: 2rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--ink);
}
.footer-logo em {
    color: var(--gold-deep);
    font-weight: 400;
    font-style: italic;
}
.footer-brand p {
    color: var(--muted);
    max-width: 34ch;
    line-height: 1.7;
    font-size: .92rem;
}

.footer-col {
    display: flex; flex-direction: column; gap: .7rem;
}
.footer-label {
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .75rem;
}
.footer-col a {
    color: var(--ink-60);
    font-size: .92rem;
    transition: color .25s, transform .25s var(--ease);
    width: fit-content;
}
.footer-col a:hover { color: var(--sage-deep); transform: translateX(4px); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem;
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .02em;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative; z-index: 2;
}

.footer-bigmark {
    position: absolute;
    bottom: -2.5rem; left: 0; right: 0;
    font-family: var(--f-serif);
    font-size: clamp(5rem, 18vw, 17rem);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(44,42,38,.08);
    letter-spacing: -.03em;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.wa-float {
    position: fixed;
    bottom: 1.75rem; right: 1.75rem;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 40px -10px rgba(37,211,102,.6);
    z-index: 800;
    transition: transform .35s var(--ease-out), box-shadow .35s;
}
.wa-float::before {
    content:""; position: absolute; inset: -6px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: .4;
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0% { transform: scale(0.9); opacity: .5; }
    100% { transform: scale(1.3); opacity: 0; }
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px -10px rgba(37,211,102,.75);
}
.wa-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%; transform: translateY(-50%) translateX(10px);
    background: var(--ink);
    color: var(--bg);
    padding: .5rem .9rem;
    border-radius: 100px;
    font-size: .78rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s var(--ease-out);
}
.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal,
.reveal-stagger,
.reveal-up,
.reveal-parallax {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
    transition-delay: var(--d, 0s);
}
.reveal.in,
.reveal-stagger.in,
.reveal-up.in,
.reveal-parallax.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal-parallax { transform: translateY(60px) scale(.96); }
.reveal-parallax.in { transform: translateY(0) scale(1); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .nav-links { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit:nth-child(3n) { border-right: 1px solid var(--line); }
    .benefit:nth-child(2n) { border-right: none; }
    .benefit:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
    .benefit:nth-last-child(-n+2) { border-bottom: none; }
    .method-grid { grid-template-columns: repeat(2, 1fr); }
    .method-card:nth-child(2) { border-right: none; }
    .method-card:nth-child(1), .method-card:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }
    .test-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    :root { --nav-h: 70px; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero { padding-top: calc(var(--nav-h) + 1.5rem); }
    .hero-sidemark { display: none; }

    .grid-split { grid-template-columns: 1fr; }
    .col-visual { order: 2; max-width: 460px; margin: 0 auto; width: 100%; }

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

    .services-footer { flex-direction: column; align-items: flex-start; padding: 2rem; }
    .services-footer p { font-size: 1.1rem; }

    .test-trust { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }

    .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit { border-right: none !important; }
    .method-grid { grid-template-columns: 1fr; }
    .method-card { border-right: none !important; border-bottom: 1px solid var(--line); }
    .method-card:last-child { border-bottom: none; }

    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .hero-stats { gap: 1rem; }
    .stat-sep { display: none; }

    .contact-form { padding: 1.75rem; }
    .wa-float { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }
    .wa-tooltip { display: none; }
}

/* =========================================================
   PORTRAIT PHOTO (real image of Victor)
   ========================================================= */
.portrait-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
    filter: saturate(.92) contrast(1.02);
    transition: filter var(--t-slow) var(--ease);
}
.visual-frame:hover .portrait-photo {
    filter: saturate(1) contrast(1.05);
}
.visual-inner { overflow: hidden; border-radius: inherit; }
.visual-inner::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(44,42,38,0) 45%, rgba(44,42,38,.35) 100%);
    pointer-events: none; z-index: 1;
}
.visual-inner .portrait-ring { z-index: 2; }

/* =========================================================
   GRID SPLIT — REVERSE VARIANT
   ========================================================= */
.grid-split.reverse .col-visual { order: 2; }
.grid-split.reverse .col-text    { order: 1; }
@media (max-width: 900px) {
    .grid-split.reverse .col-visual,
    .grid-split.reverse .col-text { order: initial; }
}

/* =========================================================
   BESCHWERDEN SECTION
   ========================================================= */
.beschwerden { background: var(--bg-alt); }

.beschwerden-list {
    display: flex; flex-direction: column;
    margin: 2rem 0 2.5rem;
    padding: 0;
}
.beschwerden-list li {
    display: flex; align-items: center; gap: 1.4rem;
    padding: 1.1rem 0;
    border-top: 1px solid var(--line);
    font-family: var(--f-serif);
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: var(--ink);
    transition: all var(--t-med) var(--ease);
    cursor: default;
}
.beschwerden-list li:last-child { border-bottom: 1px solid var(--line); }
.beschwerden-list li span {
    font-family: var(--f-sans);
    font-size: .7rem; letter-spacing: .22em;
    color: var(--gold-deep); font-weight: 500;
    min-width: 30px;
}
.beschwerden-list li:hover {
    color: var(--gold-deep);
    padding-left: .6rem;
    border-top-color: var(--gold);
}
.beschwerden-list li:hover + li { border-top-color: var(--gold); }

.beschwerden-cta {
    margin-top: 1rem;
    padding: 1.75rem 1.75rem 2rem;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--bg-soft);
}
.beschwerden-cta p {
    margin-bottom: 1.25rem;
    color: var(--ink-80);
    font-size: 1rem; line-height: 1.55;
}
.beschwerden-cta strong { color: var(--ink); font-weight: 600; }

.beschwerden-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--ink);
    box-shadow: 0 30px 80px -30px rgba(10,10,10,.35);
}
.beschwerden-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.55) saturate(.85) contrast(1.05);
    transform: scale(1.02);
    transition: transform var(--t-slow) var(--ease);
}
.beschwerden-image:hover img { transform: scale(1.06); }
.beschwerden-overlay {
    position: absolute;
    left: 2rem; right: 2rem; bottom: 2rem;
    color: var(--bg);
    display: flex; flex-direction: column;
    gap: .15rem;
    font-family: var(--f-serif);
    font-size: clamp(1.25rem, 2.4vw, 1.9rem);
    line-height: 1.15;
    letter-spacing: -.01em;
}
.beschwerden-overlay em {
    color: var(--gold);
    font-style: italic;
}

/* =========================================================
   ÄSTHETISCHE MASSAGE SECTION
   ========================================================= */
.aesthetik { background: var(--bg-soft); }

.aesthetik-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4rem;
}

.aesthetik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.aesthetik-card {
    padding: 2rem 1.75rem 2.25rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    transition: all var(--t-med) var(--ease);
    position: relative;
}
.aesthetik-card::before {
    content: "";
    position: absolute; left: 0; top: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height var(--t-med) var(--ease);
}
.aesthetik-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -25px rgba(44,42,38,.18);
}
.aesthetik-card:hover::before { height: 100%; }

.aesthetik-num {
    display: block;
    font-family: var(--f-sans);
    font-size: .7rem;
    letter-spacing: .25em;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: .9rem;
}
.aesthetik-card h3 {
    font-family: var(--f-serif);
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: .5rem;
    letter-spacing: -.01em;
}
.aesthetik-card p {
    font-size: .9rem;
    color: var(--ink-60);
    line-height: 1.55;
}

.aesthetik-price {
    margin-top: 3rem;
    text-align: center;
    padding: 1.4rem 1rem;
    border-top: 1px solid var(--line);
    font-family: var(--f-serif);
    font-size: 1.1rem;
    color: var(--ink-60);
    letter-spacing: .01em;
}
.aesthetik-price strong {
    color: var(--gold-deep);
    font-weight: 600;
    font-family: var(--f-sans);
}

/* =========================================================
   KONTRAINDIKATIONEN SECTION
   ========================================================= */
.kontra { background: var(--bg); }

.kontra-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4rem;
}

.kontra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.kontra-item {
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    background: var(--bg-soft);
    border-radius: var(--r-md);
    transition: all var(--t-med) var(--ease);
}
.kontra-item:hover {
    border-left-color: var(--gold-deep);
    background: var(--bg);
    transform: translateX(4px);
}

.kontra-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--gold-deep);
    margin-bottom: .7rem;
    line-height: 1;
}
.kontra-item h4 {
    font-family: var(--f-serif);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: .4rem;
    letter-spacing: -.005em;
}
.kontra-item p {
    font-size: .88rem;
    color: var(--ink-60);
    line-height: 1.5;
}

.kontra-note {
    text-align: center;
    margin: 3rem auto 0;
    max-width: 700px;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--ink-60);
    line-height: 1.55;
}

/* Kontraindikationen groups (absolut / relativ) */
.kontra-group { margin-bottom: 4rem; }
.kontra-group:last-of-type { margin-bottom: 3rem; }

.kontra-group-header {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.kontra-group-tag {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .35rem .9rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.kontra-tag-absolute {
    background: rgba(168,80,58,.12);
    color: #8b4430;
    border: 1px solid rgba(168,80,58,.25);
}
.kontra-tag-relative {
    background: rgba(200,169,126,.15);
    color: var(--gold-deep);
    border: 1px solid rgba(200,169,126,.3);
}
.kontra-group-header h3 {
    font-family: var(--f-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: .6rem;
    letter-spacing: -.01em;
}
.kontra-group-header p {
    color: var(--ink-60);
    font-size: .98rem;
    line-height: 1.6;
}

/* Differentiate absolute vs. relative cards */
.kontra-item.kontra-absolute {
    border-left-color: #b85a40;
}
.kontra-item.kontra-absolute:hover { border-left-color: #8b4430; }
.kontra-item.kontra-absolute .kontra-icon { color: #b85a40; }

.kontra-item.kontra-relative {
    border-left-color: var(--gold);
}
.kontra-item.kontra-relative:hover { border-left-color: var(--gold-deep); }
.kontra-item.kontra-relative .kontra-icon { color: var(--gold-deep); }

/* Info note box */
.kontra-note-box {
    margin: 3rem auto 0;
    max-width: 900px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.75rem;
    padding: 2rem 2.25rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    align-items: start;
}
.kontra-note-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-deep);
    flex-shrink: 0;
}
.kontra-note-content h4 {
    font-family: var(--f-serif);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: .5rem;
    letter-spacing: -.01em;
}
.kontra-note-content p {
    color: var(--ink-60);
    font-size: .96rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
    .kontra-note-box { grid-template-columns: 1fr; padding: 1.75rem 1.5rem; text-align: center; }
    .kontra-note-icon { margin: 0 auto; }
}

/* =========================================================
   IHRE MEINUNG — Review submission form
   ========================================================= */
.meinung-box {
    margin-top: 4rem;
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.meinung-intro .eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
}
.meinung-intro h3 {
    font-family: var(--f-serif);
    font-size: clamp(1.85rem, 3.4vw, 2.6rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.015em;
    color: var(--ink);
    margin-bottom: 1.25rem;
}
.meinung-intro h3 em { color: var(--gold-deep); font-style: italic; }
.meinung-intro p {
    color: var(--ink-60);
    font-size: .98rem;
    line-height: 1.7;
}

.meinung-form { display: flex; flex-direction: column; gap: 1.25rem; }

.meinung-form label {
    display: block;
    font-family: var(--f-sans);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-80);
    margin-bottom: .55rem;
    font-weight: 500;
}
.meinung-form input[type="text"],
.meinung-form textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: .85rem 1rem;
    color: var(--ink);
    font-family: var(--f-sans);
    font-size: .95rem;
    line-height: 1.5;
    resize: vertical;
    transition: border-color var(--t-fast) var(--ease), background var(--t-fast);
}
.meinung-form input[type="text"]:focus,
.meinung-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-soft);
}
.meinung-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Star rating */
.star-rating {
    display: inline-flex;
    gap: .25rem;
    font-size: 2rem;
    line-height: 1;
}
.star-rating .star {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--line);
    padding: 0 .15rem;
    transition: color var(--t-fast) var(--ease), transform var(--t-fast);
    line-height: 1;
}
.star-rating .star:hover { transform: scale(1.15); }
.star-rating .star.active { color: var(--gold); }
.star-rating .star.active ~ .star { color: var(--line); }

.meinung-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}
.meinung-actions .btn { padding: .9rem 1.5rem; }

.meinung-feedback {
    font-size: .95rem;
    color: var(--sage-deep);
    padding: .5rem 0;
    min-height: 1rem;
}
.meinung-feedback.error { color: #a8503a; }

.meinung-note {
    font-size: .82rem;
    color: var(--muted);
    margin-top: .5rem;
    line-height: 1.5;
}
.meinung-note em { font-family: var(--f-serif); font-style: italic; }

@media (max-width: 900px) {
    .meinung-box { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    .meinung-form .form-row { grid-template-columns: 1fr; }
    .meinung-actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* =========================================================
   METHOD CARD MEDIA (carousel per step)
   ========================================================= */
.method-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 1.75rem;
    border-radius: var(--r-md);
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--bg-soft) 50%, var(--sage-mist) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.method-media img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 1rem;
    opacity: 0;
    transition: opacity 1s var(--ease), transform var(--t-slow) var(--ease);
    mix-blend-mode: multiply;
    filter: saturate(.95);
}
.method-media img.active { opacity: 1; }
.method-card:hover .method-media img.active {
    transform: scale(1.04);
    filter: saturate(1.05);
}
.method-media .journey-dots {
    bottom: .65rem;
    gap: .35rem;
    background: rgba(44,42,38,.18);
    padding: .35rem .6rem;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.method-media .journey-dot {
    width: 5px; height: 5px;
    background: rgba(255,255,255,.5);
}
.method-media .journey-dot.active {
    background: rgba(255,255,255,1);
    width: 14px;
}

@media (max-width: 640px) {
    .method-media { aspect-ratio: 16 / 10; margin-bottom: 1.5rem; }
}

/* =========================================================
   THERAPY MODAL — detail view on card click
   ========================================================= */
.service-card[data-therapy] { cursor: pointer; }
.service-card[data-therapy] .service-arrow {
    transition: transform .4s var(--ease), background .3s;
}
.service-card[data-therapy]:hover .service-arrow {
    transform: translate(4px, -4px);
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.therapy-detail { display: none; }

.therapy-modal {
    position: fixed; inset: 0;
    z-index: 9999;
    display: flex; justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
}
.therapy-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.therapy-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(44,42,38,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.therapy-modal-panel {
    position: relative;
    width: 100%;
    max-width: 780px;
    height: 100%;
    background: var(--bg);
    box-shadow: -30px 0 80px rgba(44,42,38,.3);
    transform: translateX(100%);
    transition: transform .55s var(--ease-out);
    display: flex;
    flex-direction: column;
}
.therapy-modal[aria-hidden="false"] .therapy-modal-panel {
    transform: translateX(0);
}

.therapy-modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .3s var(--ease);
}
.therapy-modal-close:hover {
    background: var(--ink);
    color: var(--bg);
    transform: rotate(90deg);
    border-color: var(--ink);
}

.therapy-modal-scroll {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.therapy-modal-scroll::-webkit-scrollbar { width: 6px; }
.therapy-modal-scroll::-webkit-scrollbar-track { background: transparent; }
.therapy-modal-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.therapy-modal-body .detail-hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--bg-deep);
    display: block;
}
.therapy-modal-body .detail-logo {
    object-fit: contain;
    padding: 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-mist) 100%);
    filter: url(#logo-soft);
}

.therapy-modal-body .detail-content {
    padding: 3rem clamp(1.5rem, 5vw, 3.5rem) 4rem;
}
.therapy-modal-body .detail-no-hero { padding-top: 5rem; }

.detail-eyebrow {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: 1rem;
}

.therapy-modal-body h2 {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.therapy-modal-body .detail-lead {
    font-family: var(--f-serif);
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    line-height: 1.5;
    color: var(--ink-80);
    font-style: italic;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--line);
}

.therapy-modal-body p {
    color: var(--ink-60);
    font-size: .98rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.therapy-modal-body h3 {
    font-family: var(--f-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin: 2rem 0 1rem;
    letter-spacing: -.005em;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.detail-list li {
    padding-left: 1.3rem;
    position: relative;
    color: var(--ink-80);
    font-size: .96rem;
    line-height: 1.55;
}
.detail-list li::before {
    content: "";
    position: absolute;
    left: 0; top: .65em;
    width: 7px; height: 1px;
    background: var(--gold-deep);
}
.detail-list li strong { color: var(--ink); font-weight: 600; }

.detail-note {
    background: var(--bg-soft);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-size: .95rem;
}
.detail-note em { color: var(--ink-80); font-family: var(--f-serif); }

.detail-cta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

body.modal-open { overflow: hidden; }

@media (max-width: 900px) {
    .therapy-modal-panel { max-width: 100%; }
    .therapy-modal-body .detail-content { padding: 2.5rem 1.5rem 3rem; }
    .therapy-modal-body .detail-hero { aspect-ratio: 4/3; }
}

/* =========================================================
   JOURNEY (Argentina -> Lanzarote -> Bielefeld)
   ========================================================= */
.journey {
    margin-top: clamp(4rem, 8vw, 7rem);
    padding-top: clamp(3rem, 6vw, 5rem);
    border-top: 1px solid var(--line);
}
.journey-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.journey-eyebrow {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: .75rem;
}
.journey-title {
    font-family: var(--f-serif);
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -.015em;
    line-height: 1.1;
}
.journey-title em { color: var(--gold-deep); font-style: italic; }

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.journey-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    transition: all var(--t-med) var(--ease);
}
.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -30px rgba(44,42,38,.2);
    border-color: var(--gold);
}
.journey-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-deep);
}
.journey-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.1s var(--ease), transform var(--t-slow) var(--ease);
    will-change: opacity;
}
.journey-image img.active { opacity: 1; }
.journey-card:hover .journey-image img.active { transform: scale(1.05); }

.journey-image::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(44,42,38,0) 45%, rgba(44,42,38,.45));
    pointer-events: none;
    z-index: 1;
}

.journey-dots {
    position: absolute;
    bottom: 1rem; left: 0; right: 0;
    display: flex;
    gap: .45rem;
    justify-content: center;
    z-index: 3;
    pointer-events: auto;
}
.journey-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: all .4s var(--ease);
    border: none;
}
.journey-dot:hover { background: rgba(255,255,255,.7); }
.journey-dot.active {
    background: rgba(255,255,255,.95);
    width: 20px;
    border-radius: 3px;
}
.journey-meta {
    padding: 1.5rem 1.6rem 1.75rem;
}
.journey-place {
    font-family: var(--f-sans);
    font-size: .68rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
    display: block;
    margin-bottom: .4rem;
}
.journey-meta h4 {
    font-family: var(--f-serif);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: .55rem;
    letter-spacing: -.01em;
}
.journey-meta p {
    font-size: .9rem;
    color: var(--ink-60);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .journey-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* =========================================================
   SERVICE CARDS — IMAGE VARIANT
   ========================================================= */
.service-card.has-image {
    padding: 0 2rem 2rem;
    overflow: hidden;
}
.service-image {
    position: relative;
    aspect-ratio: 4 / 3;
    margin: 0 -2rem 1.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--bg-soft) 50%, var(--sage-mist) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-image img {
    max-width: 86%;
    max-height: 86%;
    width: auto; height: auto;
    object-fit: contain;
    transition: transform var(--t-slow) var(--ease);
    filter: saturate(.96);
    mix-blend-mode: multiply;
}
.service-card.has-image:hover .service-image img {
    transform: scale(1.05);
    filter: saturate(1.08);
}
.service-card.has-image .service-meta {
    padding-top: 0;
    margin-top: 0;
}
.service-image::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(247,244,236,0) 65%, rgba(247,244,236,.3));
    pointer-events: none;
}

/* Signature card — KiroShiatsu logo */
.service-logo-wrap {
    background: var(--cream) !important;
    background-image: none !important;
    position: relative;
}
.service-logo-wrap::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 25%, rgba(200,169,126,.18) 0%, transparent 55%),
        radial-gradient(circle at 70% 75%, rgba(157,174,150,.16) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.service-logo {
    position: relative;
    z-index: 1;
    max-width: 72%;
    max-height: 80%;
    filter: url(#logo-soft) drop-shadow(0 6px 20px rgba(44,42,38,.12));
    transition: transform var(--t-slow) var(--ease);
}
.service-signature:hover .service-logo { transform: scale(1.06) rotate(-2deg); }

/* =========================================================
   WAS UNTERSCHEIDET KIROSHIATSU — 3 pillars
   ========================================================= */
.distinguish { background: var(--bg-alt); }

.distinguish-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4.5rem;
}

.distinguish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.distinguish-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.25rem 1.75rem 2.25rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    transition: all var(--t-med) var(--ease);
}
.distinguish-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px -30px rgba(44,42,38,.18);
}

.distinguish-media {
    position: relative;
    aspect-ratio: 4 / 3;
    margin: -2.25rem -1.75rem 1.75rem;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-mist) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.distinguish-media img {
    max-width: 92%;
    max-height: 92%;
    width: auto; height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform var(--t-slow) var(--ease);
}
.distinguish-card:hover .distinguish-media img { transform: scale(1.05); }
.distinguish-card:hover .distinguish-media img { transform: scale(1.05); }

.distinguish-monogram {
    position: absolute;
    font-family: var(--f-serif);
    font-size: clamp(4rem, 9vw, 7rem);
    color: var(--gold);
    opacity: .45;
    z-index: 1;
    font-weight: 300;
    line-height: 1;
    pointer-events: none;
}
.distinguish-media img + .distinguish-monogram {
    opacity: 0;
}

.distinguish-label {
    font-family: var(--f-sans);
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: .5rem;
}

.distinguish-card h3 {
    font-family: var(--f-serif);
    font-size: clamp(1.75rem, 2.8vw, 2.3rem);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: .9rem;
    letter-spacing: -.01em;
    line-height: 1.1;
}

.distinguish-card p {
    font-size: .95rem;
    color: var(--ink-60);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .distinguish-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .distinguish-header { margin-bottom: 3rem; }
}

/* =========================================================
   PRIVATREZEPT SECTION
   ========================================================= */
.rezept { background: var(--bg); }

.rezept-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    box-shadow: 0 25px 60px -25px rgba(44,42,38,.18);
    padding: 2rem;
    display: flex; align-items: center; justify-content: center;
}
.rezept-image {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(44,42,38,.15));
    transition: transform var(--t-slow) var(--ease);
}
.rezept-frame:hover .rezept-image { transform: scale(1.03); }

.rezept-badge {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    font-family: var(--f-sans);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--ink);
    padding: .5rem .85rem;
    border-radius: 100px;
    font-weight: 500;
}

.rezept-points {
    display: flex; flex-direction: column;
    gap: 1.4rem;
    margin: 2rem 0 2.25rem;
}
.rezept-point {
    display: flex; align-items: flex-start; gap: 1rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--line);
}
.rezept-point:last-child { border-bottom: none; padding-bottom: 0; }

.rezept-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--sage-mist);
    color: var(--sage-deep);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.rezept-point p {
    color: var(--ink-60);
    line-height: 1.65;
    font-size: .95rem;
    margin: 0;
}
.rezept-point strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
    .rezept-frame { aspect-ratio: 3 / 2; margin-bottom: 2rem; }
}

/* =========================================================
   FOOTER LOGO IMAGE
   ========================================================= */
.footer-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.25rem;
    filter: url(#logo-soft);
    image-rendering: -webkit-optimize-contrast;
}

/* =========================================================
   LOGO MARK — SUPERSCRIPT ®
   ========================================================= */
.logo-text sup {
    font-size: .55em;
    vertical-align: super;
    margin-left: 1px;
    color: var(--gold-deep);
    font-style: normal;
}

/* =========================================================
   MOBILE — BESCHWERDEN / ÄSTHETIK / KONTRA
   ========================================================= */
@media (max-width: 900px) {
    .beschwerden-image { aspect-ratio: 3 / 4; margin-top: 2rem; }
    .beschwerden-overlay { left: 1.25rem; right: 1.25rem; bottom: 1.25rem; }
}

@media (max-width: 640px) {
    .aesthetik-grid { grid-template-columns: 1fr; }
    .kontra-grid { grid-template-columns: 1fr; }
    .beschwerden-cta { padding: 1.25rem; }
    .beschwerden-list li { font-size: 1.05rem; gap: 1rem; }
}
