:root {
    --primary: #1a5f4a;
    --primary-light: #2d8a6e;
    --primary-dark: #0d3d2f;
    --accent: #c9a227;
    --accent-light: #e0c040;
    --text: #1a1a2e;
    --text-light: #4a4a5a;
    --text-muted: #7a7a8a;
    --bg: #ffffff;
    --bg-warm: #f7f5f1;
    --bg-green: #eef6f2;
    --border: #e4e2dc;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--bg);
}

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

a {
    color: inherit;
}

/* Навигация */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.3vw, 1.45rem);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.01em;
    /* Не растягиваем и не схлопываем в 0 — бренд остаётся читаемым */
    flex: 0 1 auto;
    min-width: min(12rem, 52%);
    max-width: calc(100% - 9rem);
}

.logo-mark {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.logo-text {
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-text em {
    font-style: normal;
    color: var(--accent);
}

.logo.light {
    color: #fff;
    overflow: visible;
    flex: none;
    min-width: 0;
    max-width: none;
}

.logo.light .logo-text {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.logo.light .logo-text em {
    color: var(--accent-light);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    flex-shrink: 0;
    background: var(--primary);
    color: white;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Hero — один цельный блок */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7.5rem 1.5rem 5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201, 162, 39, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 70% at 10% 80%, rgba(45, 138, 110, 0.35), transparent 50%),
        linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 52%, #1f6b55 100%);
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: shimmer 14s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { background-position: 100% 0; opacity: 0.4; }
    50% { background-position: 0% 0; opacity: 0.9; }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.35rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-cta-group.center {
    justify-content: center;
}

.hero-trust {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    max-width: 560px;
    margin: 0 auto;
}

.btn-primary {
    background: var(--accent);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-secondary.dark {
    color: var(--primary);
    border-color: rgba(26, 95, 74, 0.35);
}

.btn-secondary.dark:hover {
    background: var(--bg-green);
    border-color: var(--primary);
}

/* Общие секции */
.section {
    padding: 5.5rem 0;
    background: var(--bg);
}

.section-warm {
    background: var(--bg-warm);
}

.section-green {
    background: var(--bg-green);
}

.section-dark {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary));
    color: #fff;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container.narrow {
    max-width: 760px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.75rem;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
}

.section-header h2,
.section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-dark .section-header h2,
.section-dark h2 {
    color: #fff;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.08rem;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.82);
}

.prose p {
    color: var(--text-light);
    margin-bottom: 1.15rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.prose.wide {
    max-width: 820px;
}

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

/* Списки с галочками */
.check-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    gap: 0.9rem;
}

.check-list.two-col {
    grid-template-columns: 1fr 1fr;
}

.check-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text);
}

.check-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    background: var(--bg-green);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
}

.section-dark .check-list li,
.section-dark .benefits-list li {
    color: #fff;
}

.extra-text,
.closing-line {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 1.5rem;
}

.closing-line {
    font-weight: 500;
    color: var(--primary-dark);
    max-width: 720px;
}

/* Метод: текст + фото (без карточек) */
.method-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.75rem;
    align-items: center;
}

.method-layout.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.method-layout.reverse .method-copy {
    order: 2;
}

.method-layout.reverse .method-visual {
    order: 1;
}

.method-copy h2 {
    margin-bottom: 1.25rem;
}

.method-visuals {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.method-visual {
    margin: 0;
    min-width: 0;
}

.method-visual img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(28rem, 70vh);
    object-fit: contain;
    object-position: center;
}

.method-visuals .method-visual img {
    max-height: min(18rem, 50vh);
}

.method-note {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 40rem;
}

/* Behandlare */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

.team-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 22rem;
    object-fit: cover;
    object-position: center top;
}

.team-photo-placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.22), transparent 55%),
        linear-gradient(160deg, var(--bg-green), #d9ebe3);
    color: var(--primary-dark);
}

.team-photo-placeholder span {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.team-body h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.team-role {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.team-body > p {
    color: var(--text);
    line-height: 1.65;
}

.team-methods {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0.75rem;
}

.team-methods li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--accent);
    padding: 0.15rem 0;
}

.team-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Прайс */
.price-block {
    margin-bottom: 2.25rem;
}

.price-block h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.price-list {
    list-style: none;
    border-top: 1px solid var(--border);
}

.price-list li {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem 1.25rem;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.price-name {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.45;
}

.price-name em {
    display: block;
    font-style: normal;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.price-meta {
    color: var(--text-muted);
    font-size: 0.92rem;
    white-space: nowrap;
}

.price-amount {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
    white-space: nowrap;
    text-align: right;
    min-width: 5.5rem;
}

.price-hours {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Fördelar */
.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    max-width: 920px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.02rem;
}

.benefits-list li strong {
    color: var(--accent-light);
    font-weight: 600;
}

/* Process steps */
.steps {
    list-style: none;
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    counter-reset: none;
}

.steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.step-num {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.steps h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.steps p {
    color: var(--text-light);
    font-size: 0.98rem;
}

.center-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Disclaimer */
.section-disclaimer {
    background:
        linear-gradient(180deg, rgba(26, 95, 74, 0.04), transparent),
        var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-disclaimer h2 {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    margin-bottom: 1rem;
}

.section-disclaimer p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 1.25rem;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--primary-light);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    padding: 1.15rem 0;
    color: var(--text);
    position: relative;
    padding-right: 2rem;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: var(--text-light);
    padding: 0 0 1.2rem;
    line-height: 1.75;
}

/* Omdömen */
.placeholder-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

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

.quotes blockquote {
    background: var(--bg-warm);
    padding: 1.75rem;
    border-radius: 16px;
    border-top: 3px solid var(--accent);
}

.quotes p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--text);
}

/* CTA */
.section-cta {
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(201, 162, 39, 0.12), transparent 55%),
        var(--bg-warm);
}

.section-cta h2 {
    margin-bottom: 1rem;
}

.section-cta > .container > p {
    color: var(--text-light);
    font-size: 1.08rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Форма бронирования */
.booking-panel {
    text-align: left;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    margin: 0 auto 0.5rem;
}

.booking-form {
    margin: 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.92rem;
    color: var(--text);
}

.booking-field span {
    font-weight: 600;
    color: var(--primary-dark);
}

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

.booking-field input,
.booking-field select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font: inherit;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.12);
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.booking-actions .btn-primary,
.booking-actions .btn-secondary {
    border: none;
    cursor: pointer;
    font: inherit;
}

.booking-actions .btn-secondary.dark {
    border: 2px solid rgba(26, 95, 74, 0.35);
}

.booking-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

.booking-error {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #fdecec;
    color: #8a1f1f;
    font-size: 0.95rem;
    line-height: 1.5;
}

.booking-status {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
}

.booking-success {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    animation: fadeUp 0.5s ease both;
}

.booking-success h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.booking-success-summary {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.booking-success > p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.booking-success .btn-primary {
    margin-bottom: 0.75rem;
}

.booking-again {
    display: block;
    margin: 0.5rem auto 0;
    background: none;
    border: none;
    color: var(--primary);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-actions .btn-primary,
    .booking-actions .btn-secondary {
        text-align: center;
    }
}

/* Footer */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

.footer-contact h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-contact ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.footer-contact li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact li span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.footer-contact a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

/* Адаптив */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .method-layout,
    .method-layout.reverse {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .method-layout.reverse .method-copy,
    .method-layout.reverse .method-visual,
    .method-layout.reverse .method-visuals {
        order: initial;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-list li {
        grid-template-columns: 1fr auto;
        gap: 0.35rem 1rem;
    }

    .price-meta {
        grid-column: 1;
        grid-row: 2;
    }

    .price-amount {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .check-list.two-col,
    .benefits-list,
    .quotes {
        grid-template-columns: 1fr;
    }

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

    .footer-contact li {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .logo {
        min-width: min(10rem, 58%);
        max-width: calc(100% - 7.5rem);
    }

    .logo-mark {
        width: 2.35rem;
        height: 2.35rem;
    }

    .logo-text {
        font-size: 0.98rem;
    }

    .nav-cta {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        min-height: auto;
        padding: 7rem 1.25rem 4rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
