:root {
    --color-bg: #fffaf2;
    --color-bg-soft: #f6f1e8;
    --color-white: #ffffff;
    --color-text: #17201a;
    --color-muted: #647066;
    --color-primary: #f39800;
    --color-primary-dark: #c66f00;
    --color-sage: #728f7b;
    --color-sage-dark: #496b55;
    --color-sage-light: #e8f0e7;
    --color-red: #e34d3f;
    --color-border: rgba(23, 32, 26, 0.11);
    --shadow-soft: 0 22px 70px rgba(23, 32, 26, 0.10);
    --shadow-card: 0 16px 45px rgba(23, 32, 26, 0.08);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 0%, rgba(243, 152, 0, 0.16), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(114, 143, 123, 0.20), transparent 28%),
        var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.35) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.35;
}

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

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

p {
    margin: 0 0 1rem;
    color: var(--color-muted);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.1;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.8rem, 7vw, 6.2rem);
    letter-spacing: -0.07em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -0.045em;
}

h3 {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.container.narrow {
    max-width: 820px;
    text-align: center;
}

.section {
    padding: 88px 0;
}

.section-lg {
    padding: 110px 0 90px;
}

.soft-section {
    background: rgba(255, 255, 255, 0.42);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    padding: 0.7rem 1rem;
    background: var(--color-text);
    color: white;
    border-radius: 999px;
    z-index: 20;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 250, 242, 0.78);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 220px;
}

.brand-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-title {
    font-weight: 850;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.brand-subtitle {
    font-size: 0.78rem;
    color: var(--color-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(255,255,255,0.64);
}

.main-nav a {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-muted);
    transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--color-text);
    background: var(--color-sage-light);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    background: var(--color-white);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--color-text);
}

.hero {
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    color: var(--color-sage-dark);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.78rem;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 8px rgba(243, 152, 0, 0.12);
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 720px;
    color: #4e5b50;
    margin-top: 1.3rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.78rem 1.25rem;
    border-radius: 999px;
    font-weight: 850;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-white);
    box-shadow: 0 15px 34px rgba(23, 32, 26, 0.16);
}

.btn-primary:hover {
    background: #0a0f0c;
}

.btn-ghost {
    background: rgba(255,255,255,0.72);
    color: var(--color-text);
    border-color: var(--color-border);
}

.contact-pill {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    align-items: center;
    padding: 0.95rem 1.1rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(255,255,255,0.74);
    box-shadow: var(--shadow-card);
}

.contact-pill span {
    color: var(--color-muted);
}

.contact-pill strong {
    color: var(--color-primary-dark);
}

.hero-card {
    position: relative;
    min-height: 520px;
    display: grid;
    align-content: end;
    padding: 1.3rem;
    border-radius: 42px;
    background:
        radial-gradient(circle at 55% 26%, rgba(255,255,255,0.68), transparent 22%),
        linear-gradient(150deg, rgba(243,152,0,0.90), rgba(243,152,0,0.60) 45%, rgba(114,143,123,0.68));
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -80px;
    right: -90px;
    border-radius: 42% 58% 52% 48%;
    background: rgba(255,255,255,0.22);
}

.logo-orb {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    display: grid;
    place-items: center;
    border-radius: 44% 56% 62% 38%;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.35);
}

.logo-orb img {
    width: 190px;
    filter: drop-shadow(0 14px 18px rgba(0,0,0,0.22));
}

.hero-card-content {
    position: relative;
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.small-title {
    margin-bottom: 0.45rem;
    color: var(--color-text);
    font-weight: 900;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.content-card,
.notice-card,
.mini-card,
.team-card,
.partner-card,
.contact-card,
.contact-form,
.private-price,
.therapy-section {
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.76);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.content-card {
    padding: clamp(1.3rem, 3vw, 2.2rem);
}

.content-card p:last-child {
    margin-bottom: 0;
}

.two-columns {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.image-placeholder,
.portrait-placeholder,
.therapy-media,
.partner-placeholder {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--color-sage-dark);
    font-weight: 850;
    border: 1px dashed rgba(73, 107, 85, 0.30);
    background:
        linear-gradient(135deg, rgba(114,143,123,0.18), rgba(243,152,0,0.16)),
        rgba(255,255,255,0.70);
}

.image-placeholder::before,
.portrait-placeholder::before,
.therapy-media::before,
.partner-placeholder::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255,255,255,0.44);
}

.image-placeholder span,
.portrait-placeholder span,
.therapy-media span,
.partner-placeholder {
    position: relative;
    z-index: 1;
}

.cards-grid {
    display: grid;
    gap: 1.2rem;
}

.cards-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card {
    padding: 1.5rem;
}

.mini-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    font-size: 1.3rem;
}

.page-hero {
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(243, 152, 0, 0.14), transparent 30%),
        rgba(255,255,255,0.25);
}

.team-grid {
    display: grid;
    gap: 1.4rem;
}

.team-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
    gap: 1.5rem;
    padding: 1rem;
}

.portrait-placeholder {
    min-height: 100%;
}

.team-content {
    padding: clamp(1rem, 2vw, 1.4rem);
}

.role {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    color: var(--color-sage-dark);
    background: var(--color-sage-light);
    font-weight: 850;
    font-size: 0.82rem;
}

.team-content h3 {
    margin: 1.4rem 0 0.7rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    gap: 0.55rem;
}

.check-list li {
    position: relative;
    padding-left: 1.65rem;
    color: var(--color-muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 5px rgba(243, 152, 0, 0.12);
}

.therapy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.therapy-nav a {
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    color: var(--color-sage-dark);
    font-weight: 800;
    transition: 180ms ease;
}

.therapy-nav a:hover {
    transform: translateY(-2px);
    background: var(--color-sage-light);
}

.stacked-sections {
    display: grid;
    gap: 1.5rem;
}

.therapy-section {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1rem;
    scroll-margin-top: 110px;
}

.therapy-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.88);
}

.therapy-media {
    min-height: 260px;
    border-radius: 26px;
}

.therapy-section > div:last-child {
    padding: 1rem;
}

.therapy-section h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.tariffs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    align-items: start;
}

.notice-card {
    position: sticky;
    top: 110px;
    padding: 1.5rem;
    background: linear-gradient(150deg, rgba(243,152,0,0.16), rgba(255,255,255,0.86));
}

.notice-card span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: rgba(243, 152, 0, 0.12);
    font-weight: 900;
}

.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: rgba(255,255,255,0.82);
    box-shadow: var(--shadow-card);
}

table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

th,
td {
    padding: 1rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

th {
    color: var(--color-text);
    background: var(--color-sage-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

tbody tr:last-child td {
    border-bottom: 0;
}

.private-price {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1.7rem;
}

.private-price strong {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.06em;
    color: var(--color-primary-dark);
}

.private-price span {
    grid-column: 1 / -1;
    color: var(--color-muted);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.partner-card {
    padding: 1rem;
}

.partner-placeholder {
    min-height: 150px;
    border-radius: 24px;
    margin-bottom: 1rem;
}

.partner-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.contact-card {
    padding: 1.35rem;
}

.contact-card h2 {
    font-size: 1.35rem;
    margin: 0.6rem 0;
}

.contact-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--color-sage-dark);
    background: var(--color-sage-light);
    font-weight: 900;
}

.warning-card {
    background: linear-gradient(150deg, rgba(227,77,63,0.10), rgba(255,255,255,0.86));
}

.contact-form {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-form h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 0.7rem;
}

.form-note {
    margin-bottom: 1.4rem;
}

.field-group {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

label {
    color: var(--color-text);
    font-weight: 850;
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    padding: 0.95rem 1rem;
    color: var(--color-text);
    font: inherit;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus {
    border-color: rgba(243, 152, 0, 0.7);
    box-shadow: 0 0 0 4px rgba(243, 152, 0, 0.13);
}

textarea {
    resize: vertical;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.captcha-row {
    max-width: 220px;
}

.form-alert {
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    border-radius: 18px;
    border: 1px solid var(--color-border);
}

.form-alert p {
    margin: 0;
}

.form-alert.error {
    background: rgba(227,77,63,0.10);
    border-color: rgba(227,77,63,0.22);
}

.form-alert.success {
    background: rgba(114,143,123,0.14);
    border-color: rgba(114,143,123,0.28);
}

.form-alert.info {
    background: rgba(243,152,0,0.12);
    border-color: rgba(243,152,0,0.28);
}

.map-wrapper {
    overflow: hidden;
    min-height: 420px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.site-footer {
    padding-top: 70px;
    background: #101711;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 2rem;
    padding-bottom: 50px;
}

.footer-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 1rem;
}

.site-footer h2 {
    color: white;
    font-size: 1rem;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.site-footer p,
.site-footer a,
.footer-text,
.footer-note {
    color: rgba(255,255,255,0.68);
}

.site-footer a:hover {
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-note {
    font-weight: 800;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 1rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

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

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

.delay-1 {
    transition-delay: 90ms;
}

.delay-2 {
    transition-delay: 180ms;
}

@media (max-width: 980px) {
    h1 {
        letter-spacing: -0.055em;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 86px;
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 0.2rem;
        padding: 0.8rem;
        border-radius: 24px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        box-shadow: var(--shadow-soft);
    }

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

    .main-nav a {
        padding: 0.9rem 1rem;
        border-radius: 16px;
    }

    .hero-grid,
    .split-layout,
    .two-columns,
    .team-card,
    .therapy-section,
    .tariffs-layout,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 460px;
    }

    .logo-orb {
        width: 220px;
        height: 220px;
    }

    .logo-orb img {
        width: 168px;
    }

    .portrait-placeholder {
        min-height: 320px;
    }

    .notice-card {
        position: static;
    }

    .partner-grid,
    .cards-grid.three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 1.2rem, var(--container));
    }

    .section,
    .section-lg {
        padding: 64px 0;
    }

    .header-inner {
        min-height: 76px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .brand-subtitle {
        display: none;
    }

    .main-nav {
        top: 76px;
    }

    .hero-card {
        min-height: 410px;
        border-radius: 30px;
    }

    .hero-actions,
    .contact-pill {
        width: 100%;
    }

    .btn,
    .contact-pill {
        justify-content: center;
    }

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

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

    .image-placeholder,
    .map-wrapper,
    .map-wrapper iframe {
        min-height: 340px;
        height: 340px;
    }
}
