@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/roxborough-regular.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/proxima-light.otf") format("opentype");
    font-display: swap;
}

:root {
    --cream: #fbf5e8;
    --sand: #efe1ca;
    --sage: #8fa174;
    --olive: #596b42;
    --dark: #2c3426;
    --white: #fffaf2;
    --muted: #6f745f;
    --radius: 28px;
    --shadow: 0 24px 70px rgba(52, 61, 43, .13);
    --container: 1400px;
    --section-y: clamp(72px, 7vw, 112px);
    --section-gap: 40px;
    --grid-gap: 24px;
}

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

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

body {
    background: var(--cream);
    color: var(--dark);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.65;
}

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

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

.container {
    margin: 0 auto;
    max-width: var(--container);
    padding-inline: clamp(24px, 5vw, 80px);
    width: 100%;
}

.section {
    padding-block: var(--section-y);
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: var(--grid-gap);
}

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

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

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

.topbar {
    backdrop-filter: blur(14px);
    background: rgba(251, 245, 232, .88);
    border-bottom: 1px solid rgba(89, 107, 66, .12);
    position: sticky;
    top: 0;
    z-index: 20;
}

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

.logo {
    color: var(--olive);
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: .02em;
}

.logo span {
    color: #b8945e;
}

.menu {
    align-items: center;
    color: #566044;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    gap: 28px;
}

.menu a {
    position: relative;
}

.menu a::after {
    background: var(--olive);
    bottom: -7px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: .25s;
    width: 0;
}

.menu a:hover::after {
    width: 100%;
}

.btn {
    align-items: center;
    background: var(--olive);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(89, 107, 66, .25);
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    letter-spacing: .01em;
    min-height: 48px;
    padding: 0 24px;
    transition: .25s ease;
}

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

.btn.light {
    background: var(--white);
    border: 1px solid rgba(89, 107, 66, .18);
    box-shadow: none;
    color: var(--olive);
}

.hero {
    overflow: hidden;
    padding: clamp(72px, 7vw, 104px) 0;
    position: relative;
}

.hero::before {
    background: radial-gradient(circle, #e4d2b1 0 28%, transparent 62%);
    border-radius: 50%;
    content: "";
    height: 620px;
    opacity: .8;
    position: absolute;
    right: -220px;
    top: -180px;
    width: 620px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(40px, 5vw, 72px);
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    position: relative;
}

.eyebrow {
    align-items: center;
    color: var(--olive);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 10px;
    letter-spacing: .14em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.eyebrow::before {
    background: var(--olive);
    content: "";
    height: 1px;
    width: 40px;
}

h1,
h2,
h3 {
    color: #293020;
    font-family: "Playfair Display", serif;
    line-height: 1.08;
}

h1 {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.02;
    margin-bottom: 26px;
}

h1 em {
    color: #9b7a43;
    font-style: normal;
}

.lead {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 620px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
}

.stat {
    background: rgba(255, 250, 242, .72);
    border: 1px solid rgba(89, 107, 66, .12);
    border-radius: 22px;
    padding: 18px;
}

.stat strong {
    color: var(--olive);
    display: block;
    font-size: 25px;
}

.stat span {
    color: #747760;
    font-size: 12px;
    font-weight: 600;
}

.photo-card {
    align-self: center;
    background: linear-gradient(145deg, #e9d8bd, #f7eee1);
    border-radius: 44px;
    box-shadow: var(--shadow);
    min-height: clamp(520px, 43vw, 640px);
    overflow: hidden;
    padding: 32px;
    position: relative;
}

.portrait {
    background:
        linear-gradient(rgba(251, 245, 232, .04), rgba(251, 245, 232, .18)),
        url("../img/oliwia-hero.jpg") 50% 34% / cover;
    border-radius: 34px;
    inset: 32px;
    position: absolute;
}

.badge {
    backdrop-filter: blur(10px);
    background: rgba(255, 250, 242, .9);
    border-radius: 26px;
    bottom: 30px;
    box-shadow: 0 18px 40px rgba(47, 55, 37, .15);
    left: 30px;
    padding: 24px;
    position: absolute;
    right: 30px;
}

.badge b {
    color: var(--olive);
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.badge p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 5px;
}

.principles-strip {
    background:
        radial-gradient(circle at 50% -25%, rgba(255, 250, 242, .18), transparent 34%),
        #8fa174;
    padding: clamp(70px, 6vw, 92px) 0;
}

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

.principle {
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    text-align: center;
}

.principle-icon {
    height: 92px;
    margin: 0 auto 26px;
    width: 104px;
}

.principle-icon svg {
    fill: none;
    height: 100%;
    stroke: rgba(255, 250, 242, .9);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    width: 100%;
}

.principle h2 {
    color: #f0b7ff;
    font-size: clamp(30px, 2.6vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 14px;
    min-height: 2.2em;
}

.principle p {
    color: rgba(255, 250, 242, .9);
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.45;
    margin: 0 auto;
    max-width: 340px;
}

.rules-band {
    background: var(--cream);
    padding: var(--section-y) 0;
}

.rules-section-head {
    align-items: end;
    display: grid;
    gap: clamp(28px, 4vw, 56px);
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .95fr);
    margin-bottom: var(--section-gap);
}

.rules-section-head h2 {
    color: #293020;
    font-size: clamp(42px, 4.9vw, 74px);
    font-weight: 700;
    line-height: 1.05;
}

.rules-section-head p {
    color: #7a806d;
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.75;
    max-width: 560px;
}

.rules-card-grid {
    display: grid;
    gap: var(--grid-gap);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rule-card-soft {
    background: rgba(255, 250, 242, .78);
    border: 1px solid rgba(89, 107, 66, .1);
    border-radius: 28px;
    box-shadow: 0 28px 64px rgba(52, 61, 43, .09);
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 34px;
}

.rule-card-soft .icon {
    background: #e5d6bd;
    border-radius: 18px;
    color: var(--olive);
    display: grid;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    height: 56px;
    letter-spacing: .02em;
    margin-bottom: 28px;
    place-items: center;
    width: 56px;
}

.rule-card-soft h3 {
    color: #293020;
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 14px;
    min-height: 2.16em;
}

.rule-card-soft p {
    color: #7a806d;
    font-size: clamp(15px, 1.12vw, 18px);
    line-height: 1.65;
}

section {
    padding: var(--section-y) 0;
}

.section-head {
    align-items: end;
    display: flex;
    gap: clamp(28px, 4vw, 56px);
    justify-content: space-between;
    margin-bottom: var(--section-gap);
}

.section-head h2 {
    font-size: clamp(34px, 4vw, 56px);
    max-width: 720px;
}

.section-head p {
    color: var(--muted);
    line-height: 1.75;
    max-width: 430px;
}

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

.card {
    background: var(--white);
    border: 1px solid rgba(89, 107, 66, .11);
    border-radius: var(--radius);
    box-shadow: 0 16px 42px rgba(52, 61, 43, .07);
    padding: 34px;
}

.icon {
    background: #e5d6bd;
    border-radius: 18px;
    color: var(--olive);
    display: grid;
    font-size: 26px;
    height: 56px;
    margin-bottom: 22px;
    place-items: center;
    width: 56px;
}

.card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
    font-size: 15px;
}

.about {
    background: var(--sand);
}

.about-grid {
    align-items: center;
    display: grid;
    gap: clamp(40px, 5vw, 72px);
    grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
}

.about-img {
    background: url("../img/oliwia-owca.jpg") center top / cover;
    border-radius: 38px;
    box-shadow: var(--shadow);
    min-height: clamp(520px, 44vw, 640px);
}

.about h2 {
    font-size: clamp(36px, 4.8vw, 62px);
    margin-bottom: 22px;
}

.about p {
    color: #5d634f;
    line-height: 1.72;
    margin-bottom: 14px;
}

.ticks {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    max-width: 560px;
}

.ticks li {
    background: rgba(255, 250, 242, .58);
    border-radius: 18px;
    color: #465238;
    font-weight: 600;
    list-style: none;
    padding: 14px 18px;
}

.testimonials {
    background:
        radial-gradient(circle at 14% 18%, rgba(229, 214, 189, .55), transparent 28%),
        var(--cream);
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(89, 107, 66, .11);
    border-radius: 32px;
    box-shadow: 0 18px 48px rgba(52, 61, 43, .08);
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 430px;
    padding: 34px;
}

.testimonial-avatar {
    align-items: center;
    background: #e5d6bd;
    border-radius: 50%;
    color: var(--olive);
    display: flex;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    height: 86px;
    justify-content: center;
    margin-bottom: 28px;
    width: 86px;
}

.testimonial-card p {
    color: #6f745f;
    flex: 1;
    font-size: 16px;
    line-height: 1.75;
}

.testimonial-card footer {
    color: var(--olive);
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    margin-top: 24px;
}

.offer {
    background: var(--cream);
}

.plans {
    display: grid;
    align-items: stretch;
    gap: var(--grid-gap);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan {
    background: var(--white);
    border: 1px solid rgba(89, 107, 66, .13);
    border-radius: 32px;
    box-shadow: 0 18px 48px rgba(52, 61, 43, .08);
    display: flex;
    flex-direction: column;
    min-height: 480px;
    padding: 34px;
    position: relative;
}

.plan.featured {
    background: #f7ead7;
}

.label {
    background: var(--olive);
    border-radius: 999px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 7px 13px;
}

.price {
    color: var(--olive);
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin: 14px 0;
}

.plan ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 28px;
}

.plan .btn {
    margin-top: auto;
}

.plan li {
    color: var(--muted);
    list-style: none;
}

.plan li::before {
    color: var(--olive);
    content: "✓";
    font-weight: 800;
    margin-right: 10px;
}

.process {
    background: #f7efe2;
}

.steps {
    counter-reset: step;
    display: grid;
    gap: var(--grid-gap);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
    background: rgba(255, 250, 242, .76);
    border: 1px solid rgba(89, 107, 66, .12);
    border-radius: 28px;
    counter-increment: step;
    min-height: 280px;
    padding: 28px;
}

.step::before {
    color: #b8945e;
    content: "0" counter(step);
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 44px;
    margin-bottom: 8px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.step p {
    color: var(--muted);
    font-size: 14px;
}

.cta {
    background: var(--olive);
    color: #fff;
    padding: var(--section-y) 0;
    text-align: center;
}

.cta h2 {
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    margin: 0 auto 22px;
    max-width: 850px;
}

.cta p {
    color: #e9efdc;
    margin: 0 auto 32px;
    max-width: 650px;
}

.cta .btn {
    background: #fff;
    color: var(--olive);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.contact-actions .btn {
    min-width: 170px;
}

footer {
    background: #26301f;
    color: #d9dfcc;
    font-size: 14px;
}

.footer-contact {
    background: #26301f;
    padding: clamp(76px, 7vw, 104px) 0 clamp(56px, 5vw, 76px);
}

.footer-contact-grid {
    align-items: center;
    display: grid;
    gap: clamp(48px, 6vw, 72px);
    grid-template-columns: minmax(0, 1fr) 480px;
}

.footer-contact-copy h2 {
    color: #fff;
    font-size: clamp(42px, 4.8vw, 70px);
    line-height: 1.08;
    margin: 0 0 22px;
    max-width: 680px;
}

.footer-contact-copy p {
    color: rgba(233, 239, 220, .9);
    font-size: 18px;
    line-height: 1.85;
    margin: 0 0 30px;
    max-width: 560px;
}

.footer-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.footer-contact-links .btn {
    box-shadow: none;
    min-height: 44px;
    padding-inline: 20px;
}

.footer-contact-links .btn:not(.light) {
    background: #fff;
    color: var(--olive);
}

.footer-contact-details {
    display: grid;
    gap: 12px;
    max-width: 560px;
}

.footer-contact-details a {
    align-items: center;
    background: rgba(255, 250, 242, .08);
    border: 1px solid rgba(255, 250, 242, .14);
    border-radius: 20px;
    color: #fff;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 14px 18px;
    transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.footer-contact-details a:hover {
    background: rgba(255, 250, 242, .12);
    border-color: rgba(255, 250, 242, .24);
    transform: translateY(-1px);
}

.footer-contact-details span {
    color: rgba(233, 239, 220, .72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-form {
    background: var(--white);
    border: 1px solid rgba(255, 250, 242, .28);
    border-radius: 32px;
    box-shadow: 0 24px 72px rgba(20, 26, 16, .28);
    display: grid;
    gap: 18px;
    justify-self: end;
    margin: 0;
    max-width: 480px;
    padding: clamp(28px, 3vw, 36px);
    width: 100%;
}

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

.contact-form label {
    color: #455333;
    display: grid;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .025em;
}

.contact-form input,
.contact-form textarea {
    background: #fffaf2;
    border: 1px solid rgba(89, 107, 66, .28);
    border-radius: 20px;
    color: var(--dark);
    font: inherit;
    line-height: 1.5;
    outline: none;
    padding: 14px 16px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    width: 100%;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(111, 116, 95, .5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #fffaf2;
    border-color: #b8945e;
    box-shadow: 0 0 0 4px rgba(184, 148, 94, .18), 0 12px 26px rgba(89, 107, 66, .08);
}

.form-consent {
    align-items: start;
    display: grid !important;
    gap: 12px !important;
    grid-template-columns: auto 1fr;
    margin-top: 0;
    padding: 2px 0;
}

.form-consent input {
    accent-color: var(--olive);
    cursor: pointer;
    height: 22px;
    margin-top: 2px;
    padding: 0;
    width: 22px;
}

.form-consent span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.55;
}

.form-submit {
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.form-submit .btn {
    border: 0;
    cursor: pointer;
    min-height: 50px;
    min-width: 160px;
    padding-inline: 30px;
    transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.form-submit .btn:hover {
    box-shadow: 0 16px 34px rgba(89, 107, 66, .28);
}

.footer-bottom {
    background: #26301f;
    border-top: 1px solid rgba(255, 250, 242, .12);
    padding: 24px 0;
}

.footer-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .menu {
        display: none;
    }

    .container {
        padding-inline: clamp(24px, 6vw, 48px);
    }

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 42px;
    }

    .photo-card {
        min-height: 520px;
    }

    .cards,
    .plans,
    .principles-grid,
    .testimonial-grid,
    .steps,
    .rules-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rules-section-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rules-section-head p {
        max-width: 680px;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 16px;
    }

    .stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

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

    .contact-form {
        justify-self: center;
        max-width: 560px;
    }
}

@media (max-width: 620px) {
    :root {
        --section-y: 62px;
        --section-gap: 30px;
        --grid-gap: 18px;
    }

    .container {
        padding-inline: 24px;
    }

    .nav {
        height: 70px;
    }

    .logo {
        font-size: 27px;
    }

    .hero {
        padding: 58px 0 62px;
    }

    h1 {
        line-height: 1.04;
    }

    .lead {
        line-height: 1.68;
    }

    .photo-card {
        border-radius: 32px;
        min-height: 430px;
        padding: 18px;
    }

    .portrait {
        inset: 18px;
    }

    .principle {
        min-height: auto;
    }

    .principle h2 {
        min-height: 0;
    }

    .cards,
    .plans,
    .principles-grid,
    .testimonial-grid,
    .steps,
    .rules-card-grid {
        grid-template-columns: 1fr;
    }

    .rules-band {
        padding: 70px 0 62px;
    }

    .rule-card-soft,
    .testimonial-card,
    .plan,
    .step {
        min-height: auto;
    }

    .rule-card-soft h3 {
        min-height: 0;
    }

    .about-img {
        min-height: 430px;
    }

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

    .footer-contact {
        padding: 64px 0 48px;
    }

    .contact-form {
        gap: 18px;
        max-width: 100%;
        padding: 26px 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 15px;
    }

    .contact-form textarea {
        min-height: 125px;
    }

    .footer-contact-copy h2 {
        font-size: clamp(36px, 10vw, 42px);
    }

    .footer-contact-copy p {
        font-size: 16px;
        line-height: 1.72;
    }

    .footer-contact-links .btn {
        min-width: 0;
    }

    .footer-contact-details a {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .form-submit .btn {
        width: 100%;
    }

    .footer-inner {
        display: block;
    }

    .footer-inner p + p {
        margin-top: 8px;
    }
}

/* Conversion-focused contact section: light, trust-building closing block. */
.footer-contact {
    background:
        radial-gradient(circle at 12% 18%, rgba(229, 214, 189, .44), transparent 28%),
        var(--cream);
    color: var(--dark);
    padding: clamp(82px, 7vw, 112px) 0 clamp(56px, 5vw, 72px);
}

.footer-contact-grid {
    align-items: center;
    display: grid;
    gap: clamp(52px, 6vw, 76px);
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .85fr);
}

.footer-contact-story {
    display: block;
}

.footer-contact-copy {
    max-width: 680px;
}

.footer-contact-copy h2 {
    color: #293020;
    font-size: clamp(42px, 4.4vw, 66px);
    line-height: 1.06;
    margin: 0 0 22px;
    max-width: 620px;
}

.footer-contact-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    margin: 0 0 28px;
    max-width: 580px;
}

.footer-contact-points {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    max-width: 520px;
}

.footer-contact-points li {
    align-items: center;
    color: #465238;
    display: flex;
    font-weight: 700;
    gap: 12px;
    line-height: 1.45;
    list-style: none;
    padding: 0;
}

.footer-contact-points li::before {
    background: #e5d6bd;
    border-radius: 50%;
    box-shadow: inset 0 0 0 6px rgba(89, 107, 66, .14);
    content: "";
    flex: 0 0 auto;
    height: 22px;
    width: 22px;
}

.footer-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0;
}

.footer-contact-links a {
    border-bottom: 1px solid rgba(89, 107, 66, .28);
    color: var(--olive);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    transition: color .25s ease, border-color .25s ease;
}

.footer-contact-links a:hover {
    border-color: #b8945e;
    color: #455333;
}

.footer-contact-photo {
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(rgba(251, 245, 232, .04), rgba(251, 245, 232, .18)),
        url("../img/oliwia-owca.jpg") 50% 24% / cover;
    border: 1px solid rgba(89, 107, 66, .14);
    border-radius: 32px;
    box-shadow: 0 20px 56px rgba(52, 61, 43, .12);
    max-width: 560px;
    min-height: 280px;
}

.contact-form {
    background: #ffffff;
    border: 1px solid rgba(89, 107, 66, .1);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    display: grid;
    gap: 16px;
    justify-self: end;
    margin: 0;
    max-width: 480px;
    padding: 32px;
    width: 100%;
}

.contact-form label {
    color: #455333;
    display: grid;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .025em;
}

.contact-form input,
.contact-form textarea {
    background: #fffaf2;
    border: 1px solid rgba(89, 107, 66, .22);
    border-radius: 16px;
    color: var(--dark);
    font: inherit;
    line-height: 1.45;
    outline: none;
    padding: 13px 15px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    width: 100%;
}

.contact-form textarea {
    max-height: 120px;
    min-height: 112px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(111, 116, 95, .5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #fffdf8;
    border-color: #b8945e;
    box-shadow: 0 0 0 4px rgba(184, 148, 94, .14);
}

.form-consent {
    align-items: start;
    display: grid !important;
    gap: 11px !important;
    grid-template-columns: auto 1fr;
    padding-top: 2px;
}

.form-consent input {
    accent-color: var(--olive);
    cursor: pointer;
    height: 20px;
    margin-top: 2px;
    padding: 0;
    width: 20px;
}

.form-consent span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
}

.form-submit {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.form-submit .btn {
    border: 0;
    cursor: pointer;
    min-height: 48px;
    min-width: 210px;
}

.form-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: -2px 0 0;
    text-align: center;
}

.form-field-hidden {
    height: 0;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.form-alert {
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.55;
    padding: 12px 14px;
}

.form-alert-success {
    background: rgba(83, 107, 67, .12);
    border: 1px solid rgba(83, 107, 67, .22);
    color: var(--color-green-dark);
}

.form-alert-error {
    background: rgba(184, 148, 94, .14);
    border: 1px solid rgba(184, 148, 94, .28);
    color: var(--color-green-dark);
}

.footer-bottom {
    background: #26301f;
    border-top: 1px solid rgba(255, 250, 242, .12);
    padding: 20px 0;
}

@media (max-width: 1000px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        justify-self: center;
        max-width: 560px;
    }
}

@media (max-width: 620px) {
    .footer-contact {
        padding: 58px 0 42px;
    }

    .footer-contact-grid {
        gap: 34px;
    }

    .footer-contact-copy h2 {
        font-size: clamp(34px, 10vw, 42px);
    }

    .footer-contact-copy p {
        font-size: 16px;
        line-height: 1.68;
    }

    .footer-contact-photo {
        display: none;
    }

    .contact-form {
        max-width: 100%;
        padding: 24px 20px;
    }

    .form-submit .btn {
        width: 100%;
    }
}

/* FINAL PREMIUM UI SYSTEM */
:root {
    --color-bg: #F7F0E4;
    --color-bg-soft: #FBF7EF;
    --color-green: #536B43;
    --color-green-dark: #1F2E1D;
    --color-card: #FFFDF8;
    --color-border: rgba(31, 46, 29, 0.12);
    --color-text: #1F2E1D;
    --color-muted: rgba(31, 46, 29, 0.68);
    --color-accent: #D8C49A;
    --cream: var(--color-bg);
    --white: var(--color-card);
    --olive: var(--color-green);
    --dark: var(--color-text);
    --muted: var(--color-muted);
    --container: 1400px;
    --section-y: clamp(80px, 9vw, 140px);
    --section-gap: clamp(40px, 5vw, 64px);
    --grid-gap: clamp(24px, 3vw, 36px);
    --radius: 28px;
    --shadow: 0 24px 70px rgba(31, 46, 29, .12);
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.75;
}

.container {
    margin-inline: auto;
    max-width: var(--container);
    padding-inline: clamp(24px, 4vw, 56px);
    width: 100%;
}

section {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

h1 {
    color: var(--color-text);
    font-size: clamp(48px, 5.9vw, 82px);
    letter-spacing: -0.04em;
    line-height: .98;
}

h2 {
    color: var(--color-text);
    font-size: clamp(38px, 4.4vw, 64px);
    letter-spacing: -0.035em;
    line-height: 1;
}

h3 {
    color: var(--color-text);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.15;
}

p,
li {
    color: var(--color-muted);
    line-height: 1.75;
}

.section-head {
    margin-bottom: var(--section-gap);
}

.section-head h2 {
    max-width: 760px;
}

.section-head p,
.lead,
.about p,
.rules-section-head p,
.footer-contact-copy p {
    max-width: 60ch;
}

.btn {
    background: var(--color-green);
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(83, 107, 67, .22);
    color: #fff;
    font-weight: 700;
    min-height: 52px;
    padding: 0 28px;
    transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.btn:hover {
    background: var(--color-green-dark);
    box-shadow: 0 18px 42px rgba(31, 46, 29, .2);
    transform: translateY(-2px);
}

.btn.light {
    background: rgba(255, 253, 248, .66);
    border-color: rgba(31, 46, 29, .18);
    box-shadow: none;
    color: var(--color-green-dark);
}

.btn.light:hover {
    background: var(--color-card);
    border-color: rgba(31, 46, 29, .26);
}

.hero {
    background:
        radial-gradient(circle at 86% 12%, rgba(216, 196, 154, .28), transparent 34%),
        var(--color-bg);
    padding-top: clamp(72px, 8vw, 118px);
    padding-bottom: clamp(72px, 8vw, 118px);
}

.hero-grid {
    gap: clamp(48px, 6vw, 90px);
}

.hero .lead {
    color: rgba(31, 46, 29, .72);
    font-size: clamp(17px, 1.4vw, 20px);
    margin-top: 28px;
    margin-bottom: 38px;
}

.actions {
    gap: 16px;
    margin-bottom: 40px;
}

.stats {
    gap: 18px;
}

.stat {
    background: rgba(255, 253, 248, .68);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    min-height: 104px;
    padding: 20px;
}

.stat strong {
    color: var(--color-green);
}

.stat span {
    color: rgba(31, 46, 29, .62);
}

.photo-card {
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(31, 46, 29, .08);
    border-radius: 32px;
    box-shadow: 0 24px 70px rgba(31, 46, 29, .12);
    min-height: clamp(500px, 42vw, 650px);
    padding: 20px;
}

.portrait {
    border-radius: 26px;
    inset: 20px;
}

.badge {
    border: 1px solid rgba(31, 46, 29, .08);
    bottom: 22px;
    left: 22px;
    right: 22px;
}

.principles-strip {
    background:
        radial-gradient(circle at top left, rgba(216, 196, 154, .18), transparent 34%),
        var(--color-green);
    color: #fff;
    padding-top: clamp(82px, 8vw, 112px);
    padding-bottom: clamp(82px, 8vw, 112px);
}

.principles-grid {
    gap: clamp(42px, 6vw, 80px);
}

.principle {
    border-radius: 28px;
    padding: 18px 24px 22px;
}

.principle + .principle {
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.principle-icon svg {
    stroke: rgba(255, 255, 255, .88);
}

.principle h2 {
    color: #f0b7ff;
    letter-spacing: -0.025em;
}

.principle p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.65;
    max-width: 320px;
}

.rules-band,
.offer {
    background:
        radial-gradient(circle at top left, rgba(216, 196, 154, .18), transparent 34%),
        var(--color-bg);
}

.rules-section-head {
    margin-bottom: var(--section-gap);
}

.rules-section-head h2 {
    max-width: 720px;
}

.rules-section-head p {
    color: var(--color-muted);
}

.rule-card-soft,
.testimonial-card,
.plan,
.step {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(31, 46, 29, .06);
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.rule-card-soft:hover,
.testimonial-card:hover,
.plan:hover,
.step:hover {
    border-color: rgba(31, 46, 29, .16);
    box-shadow: 0 22px 60px rgba(31, 46, 29, .1);
    transform: translateY(-4px);
}

.rule-card-soft {
    min-height: 360px;
    padding: 34px;
}

.rule-card-soft .icon {
    background: #E7D8B8;
    border-radius: 999px;
    color: var(--color-green-dark);
    font-size: 13px;
    font-weight: 700;
    height: 38px;
    margin-bottom: 34px;
    width: 38px;
}

.rule-card-soft h3 {
    margin-bottom: 18px;
}

.rule-card-soft p {
    color: var(--color-muted);
    line-height: 1.78;
}

.about {
    background:
        radial-gradient(circle at 88% 10%, rgba(216, 196, 154, .18), transparent 32%),
        #efe1ca;
}

.about-grid {
    gap: clamp(56px, 7vw, 96px);
}

.about-img {
    border: 1px solid rgba(31, 46, 29, .1);
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(31, 46, 29, .1);
}

.about p {
    color: rgba(31, 46, 29, .72);
}

.ticks {
    gap: 14px;
}

.ticks li {
    background: rgba(255, 253, 248, .62);
    border: 1px solid rgba(31, 46, 29, .08);
    border-radius: 18px;
    color: rgba(31, 46, 29, .78);
}

.testimonials {
    background:
        radial-gradient(circle at top left, rgba(216, 196, 154, .18), transparent 34%),
        var(--color-bg-soft);
}

.testimonial-card {
    background: #fff;
    padding: 32px;
}

.testimonial-avatar {
    background: #E7D8B8;
    color: var(--color-green-dark);
}

.testimonial-card::before {
    color: rgba(216, 196, 154, .45);
}

.testimonial-card p {
    color: rgba(31, 46, 29, .72);
    line-height: 1.86;
}

.testimonial-card footer {
    color: var(--color-green);
}

.plan {
    min-height: 500px;
    padding: 32px;
}

.plan.featured {
    background: #fffaf2;
    border: 1px solid rgba(83, 107, 67, .35);
    box-shadow: 0 28px 70px rgba(31, 46, 29, .14);
    transform: translateY(-12px);
}

.plan.featured:hover {
    transform: translateY(-16px);
}

.price {
    color: var(--color-green);
    font-size: clamp(38px, 4vw, 52px);
}

.label {
    background: var(--color-green);
    color: #fff;
}

.plan li {
    color: var(--color-muted);
    line-height: 1.7;
}

.process {
    background:
        radial-gradient(circle at 86% 10%, rgba(216, 196, 154, .2), transparent 32%),
        #f7efe2;
}

.steps::before {
    background: linear-gradient(90deg, transparent, rgba(83, 107, 67, .26), transparent);
}

.step {
    background: rgba(255, 253, 248, .82);
    min-height: 300px;
    padding: 32px;
}

.step::before {
    color: var(--color-accent);
    font-size: 58px;
}

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

.footer-contact {
    background:
        radial-gradient(circle at 12% 18%, rgba(216, 196, 154, .25), transparent 35%),
        var(--color-bg);
    color: var(--color-text);
}

.footer-contact-copy h2 {
    color: var(--color-text);
}

.footer-contact-copy p {
    color: var(--color-muted);
}

.footer-contact-points li {
    color: rgba(31, 46, 29, .78);
}

.footer-contact-links a {
    color: var(--color-green);
}

.contact-form {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(31, 46, 29, .12);
    padding: clamp(28px, 4vw, 44px);
}

.contact-form input,
.contact-form textarea {
    background: var(--color-bg-soft);
    border: 1px solid rgba(31, 46, 29, .16);
    border-radius: 16px;
    color: var(--color-text);
    padding: 16px 18px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 4px rgba(83, 107, 67, .14);
    outline: none;
}

.form-note,
.form-consent span {
    color: var(--color-muted);
}

[data-animate] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .plan.featured,
    .plan.featured:hover {
        transform: none;
    }

    .principle + .principle {
        border-left: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-y: 64px;
        --grid-gap: 20px;
    }

    .container {
        padding-inline: 20px;
    }

    h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    h2 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .hero-grid,
    .about-grid,
    .footer-contact-grid,
    .rules-section-head {
        grid-template-columns: 1fr;
    }

    .cards,
    .plans,
    .principles-grid,
    .testimonial-grid,
    .steps,
    .rules-card-grid {
        grid-template-columns: 1fr;
    }

    .rule-card-soft,
    .testimonial-card,
    .plan,
    .step {
        padding: 24px;
    }

    .photo-card {
        min-height: 420px;
    }

    .footer-contact-photo,
    .steps::before {
        display: none;
    }

    .btn,
    .form-submit .btn {
        justify-content: center;
        width: 100%;
    }
}

/* Testimonials slider */
.testimonial-slider {
    position: relative;
}

.testimonial-track {
    display: grid;
    gap: var(--grid-gap);
    grid-auto-columns: minmax(340px, calc((100% - (var(--grid-gap) * 2)) / 3));
    grid-auto-flow: column;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-track .testimonial-card {
    min-width: 0;
    scroll-snap-align: start;
}

.testimonial-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 22px;
}

.slider-btn {
    align-items: center;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(31, 46, 29, .07);
    color: var(--color-green);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 22px;
    height: 48px;
    justify-content: center;
    transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
    width: 48px;
}

.slider-btn:hover {
    background: #fff;
    box-shadow: 0 18px 42px rgba(31, 46, 29, .1);
    transform: translateY(-2px);
}

.slider-btn:disabled {
    cursor: default;
    opacity: .38;
    transform: none;
}

.slider-btn:disabled:hover {
    background: var(--color-card);
    box-shadow: 0 12px 30px rgba(31, 46, 29, .07);
}

.slider-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(83, 107, 67, .14);
}

@media (max-width: 1000px) {
    .testimonial-track {
        grid-auto-columns: minmax(320px, calc((100% - var(--grid-gap)) / 2));
    }
}

@media (max-width: 620px) {
    .testimonial-track {
        grid-auto-columns: minmax(0, 100%);
        padding-inline: 0;
    }

    .testimonial-controls {
        justify-content: flex-start;
    }
}

/* Fix testimonial author: prevent global footer styles from creating a bottom bar. */
.testimonial-card footer {
    background: transparent;
    border: 0;
    color: var(--color-green);
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-top: 24px;
    padding: 0;
}

.testimonial-card::after,
.testimonial-card .testimonial-bar,
.testimonial-card .bottom-bar {
    display: none;
}

/* Active contact redesign: final cascade position. */
.footer-contact {
    background:
        radial-gradient(circle at 12% 18%, rgba(229, 214, 189, .44), transparent 28%),
        var(--cream);
    color: var(--dark);
    padding: clamp(82px, 7vw, 112px) 0 clamp(56px, 5vw, 72px);
}

.footer-contact-grid {
    align-items: center;
    display: grid;
    gap: clamp(52px, 6vw, 76px);
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .85fr);
}

.footer-contact-story {
    display: block;
}

.footer-contact-copy {
    max-width: 680px;
}

.footer-contact-copy h2 {
    color: #293020;
    font-size: clamp(42px, 4.4vw, 66px);
    line-height: 1.06;
    margin: 0 0 22px;
    max-width: 620px;
}

.footer-contact-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    margin: 0 0 28px;
    max-width: 580px;
}

.footer-contact-points {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    max-width: 520px;
}

.footer-contact-points li {
    align-items: center;
    color: #465238;
    display: flex;
    font-weight: 700;
    gap: 12px;
    line-height: 1.45;
    list-style: none;
    padding: 0;
}

.footer-contact-points li::before {
    background: #e5d6bd;
    border-radius: 50%;
    box-shadow: inset 0 0 0 6px rgba(89, 107, 66, .14);
    content: "";
    flex: 0 0 auto;
    height: 22px;
    position: static;
    width: 22px;
}

.footer-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0 0 28px;
}

.footer-contact-links a {
    border-bottom: 1px solid rgba(89, 107, 66, .28);
    color: var(--olive);
    font-size: 14px;
    line-height: 1.4;
    transition: color .25s ease, border-color .25s ease;
}

.footer-contact-links a:hover {
    border-color: #b8945e;
    color: #455333;
}

.footer-contact-photo {
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(rgba(251, 245, 232, .04), rgba(251, 245, 232, .18)),
        url("../img/oliwia-owca.jpg") 50% 24% / cover;
    border: 1px solid rgba(89, 107, 66, .14);
    border-radius: 32px;
    box-shadow: 0 20px 56px rgba(52, 61, 43, .12);
    display: block;
    max-width: 560px;
    min-height: 280px;
}

.contact-form {
    background: #ffffff;
    border: 1px solid rgba(89, 107, 66, .1);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    display: grid;
    gap: 16px;
    justify-self: end;
    margin: 0;
    max-width: 480px;
    padding: 32px;
    width: 100%;
}

.contact-form label {
    color: #455333;
    display: grid;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .025em;
}

.contact-form input,
.contact-form textarea {
    background: #fffaf2;
    border: 1px solid rgba(89, 107, 66, .22);
    border-radius: 16px;
    color: var(--dark);
    font: inherit;
    line-height: 1.45;
    outline: none;
    padding: 13px 15px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    width: 100%;
}

.contact-form textarea {
    max-height: 120px;
    min-height: 112px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(111, 116, 95, .5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #fffdf8;
    border-color: #b8945e;
    box-shadow: 0 0 0 4px rgba(184, 148, 94, .14);
}

.form-consent {
    align-items: start;
    display: grid !important;
    gap: 11px !important;
    grid-template-columns: auto 1fr;
    padding-top: 2px;
}

.form-consent input {
    accent-color: var(--olive);
    cursor: pointer;
    height: 20px;
    margin-top: 2px;
    padding: 0;
    width: 20px;
}

.form-consent span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
}

.form-submit {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.form-submit .btn {
    border: 0;
    cursor: pointer;
    min-height: 48px;
    min-width: 210px;
}

.form-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: -2px 0 0;
    text-align: center;
}

.footer-bottom {
    background: #26301f;
    border-top: 1px solid rgba(255, 250, 242, .12);
    padding: 20px 0;
}

@media (max-width: 1000px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        justify-self: center;
        max-width: 560px;
    }
}

@media (max-width: 620px) {
    .footer-contact {
        padding: 58px 0 42px;
    }

    .footer-contact-grid {
        gap: 34px;
    }

    .footer-contact-copy h2 {
        font-size: clamp(34px, 10vw, 42px);
    }

    .footer-contact-copy p {
        font-size: 16px;
        line-height: 1.68;
    }

    .footer-contact-photo {
        display: none;
    }

    .contact-form {
        max-width: 100%;
        padding: 24px 20px;
    }

    .form-submit .btn {
        width: 100%;
    }
}

/* Final UI polish overrides: rhythm, hierarchy and layout consistency. */
:root {
    --container: 1400px;
    --section-y: clamp(96px, 7vw, 120px);
    --section-gap: 48px;
    --grid-gap: 32px;
}

body {
    line-height: 1.7;
}

.container {
    padding-inline: clamp(24px, 4vw, 56px);
}

h2 {
    line-height: 1.05;
}

.hero {
    padding: clamp(64px, 6vw, 92px) 0;
}

.hero-grid {
    align-items: center;
    gap: clamp(48px, 6vw, 80px);
}

h1 {
    font-size: clamp(44px, 5.4vw, 74px);
    margin-bottom: 30px;
}

.lead {
    line-height: 1.72;
    margin-bottom: 34px;
    max-width: 600px;
}

.actions {
    margin-bottom: 38px;
}

.actions .btn.light {
    background: transparent;
    border-color: rgba(89, 107, 66, .34);
}

.stats {
    align-items: stretch;
}

.stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 102px;
    padding: 20px;
}

.stat strong {
    line-height: 1;
    margin-bottom: 8px;
}

.stat span {
    line-height: 1.35;
}

.photo-card {
    min-height: clamp(480px, 40vw, 580px);
}

.principles-strip {
    padding: 88px 0;
}

.principles-grid {
    gap: clamp(36px, 5vw, 64px);
}

.principle {
    border-radius: 28px;
    min-height: 236px;
    padding: 10px 18px 18px;
    transition: background-color .25s ease, transform .25s ease;
}

.principle:hover {
    background: rgba(255, 250, 242, .08);
    transform: translateY(-3px);
}

.principle-icon {
    margin-bottom: 22px;
    transform: translateY(-4px);
}

.principle h2 {
    min-height: 0;
}

.principle p {
    color: rgba(255, 250, 242, .95);
    line-height: 1.62;
    max-width: 300px;
}

.rules-section-head {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
}

.rules-section-head h2 {
    max-width: 620px;
}

.rules-section-head p {
    padding-top: 8px;
}

.rule-card-soft {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    min-height: 360px;
    padding: 40px;
}

.rule-card-soft .icon {
    margin-bottom: 34px;
}

.rule-card-soft p {
    line-height: 1.78;
}

.about-grid {
    gap: clamp(56px, 7vw, 88px);
    grid-template-columns: minmax(360px, .96fr) minmax(0, 1.04fr);
}

.about-img {
    min-height: clamp(560px, 46vw, 680px);
}

.about .eyebrow,
.about h2,
.about p,
.about .ticks {
    max-width: 520px;
}

.about p {
    line-height: 1.76;
}

.ticks {
    gap: 14px;
}

.ticks li {
    line-height: 1.55;
    padding: 15px 18px;
}

.testimonials {
    background:
        radial-gradient(circle at 14% 18%, rgba(229, 214, 189, .45), transparent 28%),
        #fcf7ed;
}

.testimonial-card {
    background: #fffdf8;
    min-height: 440px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.testimonial-card:hover {
    box-shadow: 0 24px 58px rgba(52, 61, 43, .1);
    transform: translateY(-4px);
}

.testimonial-card::before {
    color: rgba(184, 148, 94, .24);
    content: "“";
    font-family: "Playfair Display", serif;
    font-size: 84px;
    line-height: 1;
    position: absolute;
    right: 28px;
    top: 18px;
}

.testimonial-avatar {
    height: 72px;
    margin-bottom: 24px;
    width: 72px;
}

.testimonial-card p {
    line-height: 1.86;
}

.testimonial-card footer {
    font-size: 24px;
    line-height: 1;
}

.plan.featured {
    background: #f8ecda;
}

.label {
    font-size: 11px;
    margin-bottom: 20px;
    opacity: .92;
}

.plan {
    min-height: 470px;
}

.plan ul {
    gap: 14px;
}

.plan li {
    line-height: 1.6;
}

.steps {
    position: relative;
}

.steps::before {
    background: rgba(184, 148, 94, .22);
    content: "";
    height: 1px;
    left: 28px;
    position: absolute;
    right: 28px;
    top: 56px;
}

.step {
    min-height: 300px;
    padding: 34px;
    position: relative;
}

.step::before {
    font-size: 54px;
    line-height: .9;
}

.step p {
    line-height: 1.7;
}

.footer-contact {
    padding: clamp(62px, 5.5vw, 86px) 0 clamp(44px, 4vw, 60px);
}

.footer-contact-grid {
    gap: clamp(44px, 5vw, 64px);
    grid-template-columns: minmax(0, 1fr) 440px;
}

.footer-contact-copy h2 {
    font-size: clamp(38px, 4.2vw, 60px);
    max-width: 580px;
}

.footer-contact-copy p,
.footer-contact-details {
    max-width: 500px;
}

.footer-contact-links .btn {
    background: transparent;
    border: 1px solid rgba(255, 250, 242, .28);
    color: #fff;
    min-height: 42px;
}

.footer-contact-links .btn:not(.light) {
    background: rgba(255, 250, 242, .12);
    color: #fff;
}

.contact-form {
    gap: 14px;
    max-width: 440px;
    padding: 28px;
}

.form-row {
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    border-radius: 18px;
    padding: 12px 14px;
}

.contact-form textarea {
    max-height: 120px;
    min-height: 104px;
}

.form-consent span {
    font-size: 13px;
}

.form-submit .btn {
    min-height: 46px;
}

@media (max-width: 900px) {
    :root {
        --section-y: 72px;
    }

    .rules-section-head,
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }

    .contact-form {
        max-width: 560px;
    }
}

@media (max-width: 620px) {
    :root {
        --section-y: 56px;
        --section-gap: 32px;
        --grid-gap: 20px;
    }

    .container {
        padding-inline: 22px;
    }

    .hero {
        padding: 50px 0 56px;
    }

    .photo-card {
        min-height: 390px;
    }

    .principles-strip {
        padding: 58px 0;
    }

    .rule-card-soft,
    .testimonial-card,
    .plan,
    .step {
        padding: 28px;
    }

    .about-img {
        min-height: 460px;
    }

    .steps::before {
        display: none;
    }

.footer-contact {
    padding: 54px 0 38px;
}

    .footer-contact-copy h2 {
        font-size: clamp(34px, 10vw, 42px);
    }

    .contact-form {
        padding: 24px 20px;
    }
}

/* Contact finale rebuild: warmer, shorter sales-page ending. */
.footer-contact {
    background: #26301f;
    padding: clamp(56px, 5vw, 78px) 0 clamp(32px, 3.4vw, 46px);
}

.footer-contact-grid {
    align-items: center;
    display: grid;
    gap: clamp(52px, 6vw, 76px);
    grid-template-columns: minmax(0, 1.2fr) minmax(400px, .8fr);
}

.footer-contact-story {
    align-items: center;
    display: grid;
    gap: clamp(28px, 4vw, 44px);
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
}

.footer-contact-photo {
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(rgba(38, 48, 31, .03), rgba(38, 48, 31, .12)),
        url("../img/oliwia-owca.jpg") center top / cover;
    border: 1px solid rgba(255, 250, 242, .18);
    border-radius: 40px;
    box-shadow: 0 24px 70px rgba(20, 26, 16, .28);
    min-height: 340px;
}

.footer-contact-copy h2 {
    color: #fff;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    margin: 0 0 20px;
    max-width: 620px;
}

.footer-contact-copy p {
    color: rgba(233, 239, 220, .9);
    font-size: 17px;
    line-height: 1.76;
    margin: 0 0 24px;
    max-width: 610px;
}

.footer-contact-points {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    max-width: 560px;
}

.footer-contact-points li {
    color: rgba(255, 250, 242, .92);
    list-style: none;
    line-height: 1.55;
    padding-left: 24px;
    position: relative;
}

.footer-contact-points li::before {
    background: #b8945e;
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 2px;
    position: absolute;
    top: .7em;
    width: 7px;
}

.footer-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0;
}

.footer-contact-links a {
    border-bottom: 1px solid rgba(255, 250, 242, .32);
    color: rgba(255, 250, 242, .9);
    font-size: 14px;
    line-height: 1.4;
    transition: color .25s ease, border-color .25s ease;
}

.footer-contact-links a:hover {
    border-color: #fff;
    color: #fff;
}

.contact-form {
    background: var(--white);
    border: 1px solid rgba(255, 250, 242, .28);
    border-radius: 32px;
    box-shadow: 0 24px 72px rgba(20, 26, 16, .28);
    display: grid;
    gap: 12px;
    justify-self: end;
    margin: 0;
    max-width: 460px;
    padding: clamp(26px, 2.6vw, 32px);
    width: 100%;
}

.contact-form label {
    color: #455333;
    display: grid;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .025em;
}

.contact-form input,
.contact-form textarea {
    background: #fffaf2;
    border: 1px solid rgba(89, 107, 66, .28);
    border-radius: 18px;
    color: var(--dark);
    font: inherit;
    line-height: 1.45;
    outline: none;
    padding: 11px 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    width: 100%;
}

.contact-form textarea {
    max-height: 120px;
    min-height: 100px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #fffaf2;
    border-color: #b8945e;
    box-shadow: 0 0 0 4px rgba(184, 148, 94, .16);
}

.form-consent {
    align-items: start;
    display: grid !important;
    gap: 11px !important;
    grid-template-columns: auto 1fr;
    padding-top: 2px;
}

.form-consent input {
    accent-color: var(--olive);
    cursor: pointer;
    height: 20px;
    margin-top: 2px;
    padding: 0;
    width: 20px;
}

.form-consent span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
}

.form-submit {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.form-submit .btn {
    border: 0;
    cursor: pointer;
    min-height: 44px;
    min-width: 190px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 250, 242, .12);
    padding: 20px 0;
}

@media (max-width: 1100px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact-story {
        grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
    }

    .contact-form {
        justify-self: center;
        max-width: 560px;
    }
}

@media (max-width: 620px) {
    .footer-contact {
        padding: 48px 0 30px;
    }

    .footer-contact-grid {
        gap: 34px;
    }

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

    .footer-contact-photo {
        display: none;
    }

    .footer-contact-copy h2 {
        font-size: clamp(34px, 10vw, 42px);
    }

    .footer-contact-copy p {
        font-size: 16px;
        line-height: 1.68;
    }

    .contact-form {
        max-width: 100%;
        padding: 22px 18px;
    }

    .form-submit .btn {
        width: 100%;
    }
}

/* FINAL ACTIVE CONTACT SECTION */
.footer-contact {
    background:
        radial-gradient(circle at 12% 18%, rgba(229, 214, 189, .44), transparent 28%),
        var(--cream);
    color: var(--dark);
    padding: clamp(82px, 7vw, 112px) 0 clamp(56px, 5vw, 72px);
}

.footer-contact-grid {
    align-items: center;
    display: grid;
    gap: clamp(52px, 6vw, 76px);
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .85fr);
}

.footer-contact-story {
    display: block;
}

.footer-contact-copy {
    max-width: 680px;
}

.footer-contact-copy h2 {
    color: #293020;
    font-size: clamp(42px, 4.4vw, 66px);
    line-height: 1.06;
    margin: 0 0 22px;
    max-width: 620px;
}

.footer-contact-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    margin: 0 0 28px;
    max-width: 580px;
}

.footer-contact-points {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    max-width: 520px;
}

.footer-contact-points li {
    align-items: center;
    color: #465238;
    display: flex;
    font-weight: 700;
    gap: 12px;
    line-height: 1.45;
    list-style: none;
    padding: 0;
}

.footer-contact-points li::before {
    background: #e5d6bd;
    border-radius: 50%;
    box-shadow: inset 0 0 0 6px rgba(89, 107, 66, .14);
    content: "";
    flex: 0 0 auto;
    height: 22px;
    position: static;
    width: 22px;
}

.footer-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0 0 28px;
}

.footer-contact-links a {
    border-bottom: 1px solid rgba(89, 107, 66, .28);
    color: var(--olive);
    font-size: 14px;
    line-height: 1.4;
    transition: color .25s ease, border-color .25s ease;
}

.footer-contact-links a:hover {
    border-color: #b8945e;
    color: #455333;
}

.footer-contact-photo {
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(rgba(251, 245, 232, .04), rgba(251, 245, 232, .18)),
        url("../img/oliwia-owca.jpg") 50% 24% / cover;
    border: 1px solid rgba(89, 107, 66, .14);
    border-radius: 32px;
    box-shadow: 0 20px 56px rgba(52, 61, 43, .12);
    display: block;
    max-width: 560px;
    min-height: 280px;
}

.contact-form {
    background: #ffffff;
    border: 1px solid rgba(89, 107, 66, .1);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    display: grid;
    gap: 16px;
    justify-self: end;
    margin: 0;
    max-width: 480px;
    padding: 32px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    background: #fffaf2;
    border: 1px solid rgba(89, 107, 66, .22);
    border-radius: 16px;
    padding: 13px 15px;
}

.contact-form textarea {
    max-height: 120px;
    min-height: 112px;
}

.form-submit .btn {
    min-height: 48px;
    min-width: 210px;
}

.form-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: -2px 0 0;
    text-align: center;
}

.footer-bottom {
    background: #26301f;
    border-top: 1px solid rgba(255, 250, 242, .12);
    padding: 20px 0;
}

@media (max-width: 1000px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        justify-self: center;
        max-width: 560px;
    }
}

@media (max-width: 620px) {
    .footer-contact {
        padding: 58px 0 42px;
    }

    .footer-contact-grid {
        gap: 34px;
    }

    .footer-contact-copy h2 {
        font-size: clamp(34px, 10vw, 42px);
    }

    .footer-contact-copy p {
        font-size: 16px;
        line-height: 1.68;
    }

    .footer-contact-photo {
        display: none;
    }

    .contact-form {
        max-width: 100%;
        padding: 24px 20px;
    }

    .form-submit .btn {
        width: 100%;
    }
}

/* FINAL testimonial footer reset */
.testimonial-card footer {
    background: transparent;
    border: 0;
    color: var(--color-green);
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-top: 24px;
    padding: 0;
}

.testimonial-card::after,
.testimonial-card .testimonial-bar,
.testimonial-card .bottom-bar {
    display: none;
}

/* Instagram link icon */
.instagram-link {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.instagram-link svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 20px;
}

/* Cookie notice */
.cookie-notice {
    align-items: center;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    bottom: 20px;
    box-shadow: 0 18px 50px rgba(31, 46, 29, .14);
    color: var(--color-text);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    left: 50%;
    max-width: min(920px, calc(100% - 40px));
    padding: 18px 20px;
    position: fixed;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100;
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 4px;
}

.cookie-notice p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cookie-actions .btn {
    min-height: 42px;
    padding-inline: 18px;
}

@media (max-width: 620px) {
    .cookie-notice {
        align-items: stretch;
        bottom: 14px;
        flex-direction: column;
        gap: 14px;
        max-width: calc(100% - 28px);
        padding: 18px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}

/* Bottom footer contrast fix */
.footer-bottom {
    background: var(--color-green-dark);
    color: rgba(255, 253, 248, .84);
}

.footer-bottom p,
.footer-bottom a,
.footer-inner p,
.footer-inner a {
    color: rgba(255, 253, 248, .84);
}

.footer-bottom a:hover,
.footer-inner a:hover {
    color: #fff;
}

.footer-inner {
    color: rgba(255, 253, 248, .84);
}

.cookie-notice .btn.light {
    background: transparent;
    border-color: rgba(31, 46, 29, .22);
    color: var(--color-green-dark);
}

.cookie-notice .btn.light:hover {
    background: rgba(31, 46, 29, .04);
    border-color: rgba(31, 46, 29, .34);
}

/* Appointment form fields */
.form-heading {
    margin-bottom: 4px;
}

.form-heading h3 {
    color: var(--color-text);
    font-size: clamp(26px, 2.4vw, 34px);
    margin: 0 0 8px;
}

.form-heading p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.contact-form select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, var(--color-green) 50%),
        linear-gradient(135deg, var(--color-green) 50%, transparent 50%),
        var(--color-bg-soft);
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 14px) 50%,
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
    border: 1px solid rgba(31, 46, 29, .16);
    border-radius: 16px;
    color: var(--color-text);
    font: inherit;
    line-height: 1.45;
    outline: none;
    padding: 16px 42px 16px 18px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    width: 100%;
}

.contact-form select:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 4px rgba(83, 107, 67, .14);
}

.contact-form input[type="date"],
.contact-form input[type="time"] {
    min-height: 55px;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Final appointment section compaction */
.footer-contact {
    padding: clamp(72px, 7vw, 104px) 0 clamp(56px, 6vw, 86px);
}

.footer-contact-grid {
    align-items: center;
    gap: clamp(56px, 7vw, 96px);
    grid-template-columns: minmax(0, .86fr) minmax(620px, .94fr);
}

.footer-contact-story {
    max-width: 560px;
}

.contact-form {
    gap: 14px;
    max-width: 680px;
    padding: clamp(28px, 3vw, 38px);
    width: 100%;
}

.contact-form .form-heading {
    margin-bottom: 2px;
}

.contact-form .form-heading h3 {
    font-size: clamp(28px, 2.2vw, 36px);
}

.contact-form .form-heading p {
    max-width: 46ch;
}

.contact-form .form-row {
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    gap: 6px;
}

.contact-form label span {
    line-height: 1.25;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 14px;
    font-size: 13px;
    min-height: 46px;
    padding: 12px 14px;
}

.contact-form select {
    padding-right: 38px;
}

.contact-form input[type="date"],
.contact-form input[type="time"] {
    min-height: 46px;
}

.contact-form textarea {
    max-height: 112px;
    min-height: 98px;
}

.contact-form .form-row-service {
    align-items: stretch;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.contact-form .form-row-service label {
    min-width: 0;
}

.contact-form .form-row-service textarea {
    height: 96px;
    min-height: 96px;
}

.form-consent {
    margin-top: 2px;
}

.form-action-row {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 2px;
}

.form-action-row .form-consent {
    margin: 0;
}

.form-action-row .form-submit {
    margin: 0;
}

.form-submit {
    margin-top: 4px;
}

.form-submit .btn {
    min-height: 46px;
}

.form-note {
    max-width: 52ch;
}

@media (max-width: 1180px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact-story,
    .contact-form {
        justify-self: center;
        max-width: 760px;
    }
}

@media (min-width: 1181px) and (max-width: 1320px) {
    .footer-contact-grid {
        grid-template-columns: minmax(0, .82fr) minmax(0, 620px);
    }

    .contact-form {
        min-width: 0;
    }

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

    .contact-form .form-row-service textarea {
        height: 108px;
        min-height: 108px;
    }
}

@media (max-width: 960px) {
    .footer-contact .container,
    .footer-contact-grid,
    .contact-form {
        min-width: 0;
        overflow: visible;
    }

    .contact-form {
        max-width: min(100%, 680px);
        width: 100%;
    }

    .contact-form .form-row,
    .contact-form .form-row-service,
    .form-action-row {
        grid-template-columns: 1fr;
    }

    .form-action-row {
        align-items: stretch;
        gap: 14px;
    }

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

    .form-consent {
        align-items: flex-start;
    }

    .form-consent span {
        font-size: 14px;
        line-height: 1.45;
    }

    .form-note {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 720px) {
    .footer-contact {
        padding: 56px 0 40px;
    }

    .footer-contact-grid {
        gap: 34px;
    }

    .contact-form {
        gap: 13px;
        padding: 24px 18px;
    }

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

    .contact-form .form-row-service,
    .form-action-row {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row-service textarea {
        height: 118px;
        min-height: 118px;
    }
}

/* Final logo assets */
.logo {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    line-height: 0;
}

.logo img {
    height: clamp(42px, 4.2vw, 58px);
    object-fit: contain;
    width: auto;
}

@media (max-width: 700px) {
    .logo img {
        height: 42px;
    }
}

/* Local SEO section */
.local-seo {
    background:
        radial-gradient(circle at 12% 20%, rgba(216, 196, 154, .24), transparent 32%),
        var(--cream);
    padding: clamp(62px, 6vw, 92px) 0;
}

.local-seo-grid {
    align-items: center;
    display: grid;
    gap: clamp(30px, 5vw, 72px);
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.local-seo h2 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 64px);
    letter-spacing: -.04em;
    line-height: .98;
    max-width: 9em;
}

.local-seo p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    max-width: 62ch;
}

.local-seo ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin-top: 24px;
    padding: 0;
}

.local-seo li {
    background: var(--white);
    border: 1px solid rgba(89, 107, 66, .14);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(52, 61, 43, .06);
    color: var(--olive);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
}

@media (max-width: 860px) {
    .local-seo-grid {
        grid-template-columns: 1fr;
    }

    .local-seo h2 {
        max-width: 11em;
    }
}

/* Final responsive hardening */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.container,
.nav,
.hero-grid,
.principles-grid,
.local-seo-grid,
.rules-card-grid,
.about-grid,
.testimonial-track,
.plans,
.steps,
.footer-contact-grid,
.contact-form {
    min-width: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.btn,
.plan,
.step,
.rule-card-soft,
.testimonial-card {
    min-width: 0;
}

h1,
h2,
h3,
p,
li,
a,
span {
    overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
    .menu {
        display: none;
    }

    .nav {
        gap: 18px;
    }

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

@media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .footer-contact-grid,
    .local-seo-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .about-grid {
        gap: 44px;
    }

    .photo-card,
    .about-img {
        justify-self: center;
        max-width: 520px;
        width: 100%;
    }

    .plans,
    .principles-grid,
    .rules-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .container {
        padding-inline: 20px;
    }

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

    .nav > .btn {
        min-height: 40px;
        padding-inline: 14px;
    }

    .logo img {
        height: 38px;
    }

    .stats,
    .plans,
    .principles-grid,
    .rules-card-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 48px;
    }

    .photo-card,
    .about-img {
        min-height: 360px;
    }

    .testimonial-track {
        scroll-padding-inline: 20px;
    }

    .testimonial-card {
        min-width: min(100%, 320px);
    }

    .cookie-actions {
        grid-template-columns: 1fr;
    }
}

/* Final fixed header */
html {
    scroll-padding-top: 104px;
}

body {
    padding-top: 82px;
}

.topbar {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 88px;
    }

    body {
        padding-top: 72px;
    }
}

/* Final visual separation for local SEO and rules */
.local-seo {
    background:
        linear-gradient(180deg, rgba(143, 161, 116, .1), rgba(143, 161, 116, 0) 34%),
        var(--cream);
    padding: clamp(56px, 5vw, 78px) 0 clamp(72px, 7vw, 108px);
    position: relative;
}

.local-seo::after {
    background: linear-gradient(90deg, transparent, rgba(89, 107, 66, .18), transparent);
    bottom: 0;
    content: "";
    height: 1px;
    left: 50%;
    max-width: 1120px;
    position: absolute;
    transform: translateX(-50%);
    width: calc(100% - 48px);
}

.local-seo-grid {
    background:
        radial-gradient(circle at 8% 20%, rgba(216, 196, 154, .28), transparent 34%),
        rgba(255, 253, 248, .66);
    border: 1px solid rgba(89, 107, 66, .1);
    border-radius: 36px;
    box-shadow: 0 26px 70px rgba(52, 61, 43, .07);
    padding-block: clamp(42px, 5vw, 68px);
}

.local-seo h2 {
    max-width: 8.5em;
}

.local-seo p {
    color: rgba(31, 46, 29, .72);
    font-size: clamp(16px, 1.2vw, 19px);
}

.rules-band {
    background:
        radial-gradient(circle at 82% 8%, rgba(216, 196, 154, .22), transparent 28%),
        linear-gradient(180deg, #fbf7ef 0%, var(--cream) 58%, #f3eadb 100%);
    padding: clamp(82px, 8vw, 128px) 0 clamp(92px, 8vw, 138px);
    position: relative;
}

.rules-band::before {
    background: var(--olive);
    border-radius: 999px;
    content: "";
    height: 6px;
    left: 50%;
    opacity: .18;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: min(220px, 34vw);
}

.rules-section-head {
    background: rgba(255, 253, 248, .38);
    border: 1px solid rgba(89, 107, 66, .08);
    border-radius: 34px;
    margin-bottom: clamp(36px, 5vw, 64px);
    padding: clamp(28px, 4vw, 52px);
}

.rules-section-head h2 {
    max-width: 9.5em;
}

.rules-card-grid {
    gap: clamp(22px, 3vw, 34px);
}

.rule-card-soft {
    background: rgba(255, 253, 248, .88);
    border-color: rgba(89, 107, 66, .13);
}

@media (max-width: 980px) {
    .local-seo-grid,
    .rules-section-head {
        border-radius: 28px;
    }

    .local-seo h2,
    .rules-section-head h2 {
        max-width: 11em;
    }
}

@media (max-width: 680px) {
    .local-seo {
        padding: 42px 0 62px;
    }

    .local-seo-grid,
    .rules-section-head {
        padding: 26px 22px;
    }

    .rules-band {
        padding: 62px 0 76px;
    }
}

/* Final mobile navigation and responsive polish */
.nav-toggle {
    height: 1px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 1px;
}

.nav-toggle-label {
    align-items: center;
    background: rgba(255, 253, 248, .78);
    border: 1px solid rgba(89, 107, 66, .16);
    border-radius: 999px;
    cursor: pointer;
    display: none;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 4px;
    height: 42px;
    justify-content: center;
    order: 4;
    width: 46px;
}

.nav-toggle-label span {
    background: var(--dark);
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: transform .22s ease, opacity .22s ease;
    width: 18px;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1120px) {
    body {
        padding-top: 78px;
    }

    html {
        scroll-padding-top: 96px;
    }

    .topbar {
        backdrop-filter: blur(18px);
        background: rgba(255, 253, 248, .92);
        border-bottom: 1px solid rgba(89, 107, 66, .1);
        box-shadow: 0 10px 30px rgba(52, 61, 43, .06);
    }

    .nav {
        min-height: 78px;
        position: relative;
    }

    .logo img {
        height: 46px;
        max-width: 150px;
    }

    .nav-toggle-label {
        display: inline-flex;
    }

    .menu {
        background: rgba(255, 253, 248, .98);
        border: 1px solid rgba(89, 107, 66, .12);
        border-radius: 24px;
        box-shadow: 0 24px 64px rgba(31, 46, 29, .14);
        display: grid;
        gap: 4px;
        left: 20px;
        opacity: 0;
        padding: 12px;
        pointer-events: none;
        position: absolute;
        right: 20px;
        top: calc(100% + 10px);
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease;
        visibility: hidden;
        z-index: 1002;
    }

    .nav-toggle:checked ~ .menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .menu a {
        border-radius: 16px;
        color: var(--dark);
        font-size: 15px;
        justify-content: flex-start;
        padding: 13px 14px;
    }

    .menu a::after {
        display: none;
    }

    .menu a:hover {
        background: rgba(89, 107, 66, .08);
    }

    .nav > .btn {
        margin-left: auto;
        order: 3;
        white-space: nowrap;
    }
}

@media (max-width: 980px) {
    section,
    .hero,
    .local-seo,
    .rules-band,
    .about,
    .testimonials,
    .offer,
    .process,
    .footer-contact {
        padding-top: clamp(54px, 8vw, 76px);
        padding-bottom: clamp(54px, 8vw, 76px);
    }

    .hero-grid {
        align-items: center;
        text-align: left;
    }

    .hero h1 {
        max-width: 10em;
    }

    .lead {
        max-width: 58ch;
    }

    .actions,
    .stats {
        max-width: 640px;
    }

    .photo-card {
        max-width: min(520px, 100%);
    }

    .principles-grid,
    .plans,
    .rules-card-grid,
    .steps {
        gap: 18px;
    }

    .about-grid {
        align-items: center;
    }

    .footer-contact-grid {
        gap: 34px;
    }
}

@media (max-width: 760px) {
    body {
        padding-top: 70px;
    }

    html {
        scroll-padding-top: 86px;
    }

    .container {
        padding-inline: 18px;
    }

    .nav {
        min-height: 70px;
        padding-block: 8px;
    }

    .logo img {
        height: 38px;
        max-width: 124px;
    }

    .nav-toggle-label {
        height: 40px;
        width: 42px;
    }

    .nav > .btn {
        font-size: 12px;
        min-height: 38px;
        padding-inline: 12px;
    }

    .menu {
        left: 14px;
        right: 14px;
        top: calc(100% + 8px);
    }

    .hero {
        padding-top: 38px;
    }

    .hero h1,
    .rules-section-head h2,
    .local-seo h2,
    .section-head h2,
    .footer-contact-copy h2 {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1;
        max-width: 100%;
    }

    .lead,
    .local-seo p,
    .rules-section-head p,
    .section-head p,
    .footer-contact-copy p {
        font-size: 15px;
        line-height: 1.7;
    }

    .actions {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .actions .btn,
    .plans .btn,
    .contact-form button {
        justify-content: center;
        width: 100%;
    }

    .stats {
        gap: 10px;
    }

    .stat,
    .principle,
    .rule-card-soft,
    .plan,
    .step,
    .testimonial-card,
    .contact-form,
    .local-seo-grid,
    .rules-section-head {
        border-radius: 22px;
        padding: 22px;
    }

    .photo-card,
    .about-img {
        border-radius: 24px;
        min-height: 330px;
    }

    .plans,
    .principles-grid,
    .rules-card-grid,
    .steps,
    .contact-form .form-row,
    .contact-form .form-row-service {
        grid-template-columns: 1fr !important;
    }

    .testimonial-track .testimonial-card {
        flex-basis: calc(100vw - 56px);
        min-width: calc(100vw - 56px);
    }

    .footer-contact-links,
    .footer-contact-details {
        align-items: stretch;
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-contact-links a,
    .footer-contact-details a {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 430px) {
    .container {
        padding-inline: 16px;
    }

    .nav {
        gap: 8px;
    }

    .logo img {
        max-width: 112px;
    }

    .nav > .btn {
        font-size: 11px;
        min-height: 36px;
        padding-inline: 10px;
    }

    .nav-toggle-label {
        height: 38px;
        width: 40px;
    }

    .hero h1,
    .rules-section-head h2,
    .local-seo h2,
    .section-head h2,
    .footer-contact-copy h2 {
        font-size: clamp(31px, 10.5vw, 42px);
    }

    .photo-card,
    .about-img {
        min-height: 300px;
    }

    .contact-form {
        padding: 20px 16px;
    }
}

/* Final mobile fixes after screenshot QA */
.testimonial-card,
.testimonial-card p,
.testimonial-card footer,
.testimonial-avatar {
    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width: 760px) {
    .testimonials .section-head {
        text-align: left;
    }

    .testimonial-slider {
        margin-inline: -18px;
        overflow: hidden;
        padding-inline: 18px;
    }

    .testimonial-track {
        display: flex !important;
        gap: 16px;
        grid-auto-columns: unset !important;
        grid-auto-flow: unset !important;
        overflow-x: auto;
        padding: 6px 0 18px;
        scroll-padding-inline: 18px;
        scroll-snap-type: x mandatory;
    }

    .testimonial-track .testimonial-card {
        flex: 0 0 min(86vw, 420px) !important;
        min-height: auto;
        min-width: 0 !important;
        padding: 24px 22px;
        scroll-snap-align: start;
        width: min(86vw, 420px) !important;
    }

    .testimonial-avatar {
        font-size: 30px;
        height: 82px;
        margin-bottom: 18px;
        width: 82px;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.72;
        max-width: 100%;
        text-align: left;
        white-space: normal;
    }

    .testimonial-card footer {
        font-size: 18px;
        margin-top: 20px;
        text-align: left;
    }

    .testimonial-controls {
        justify-content: center;
        margin-top: 8px;
    }
}

@media (max-width: 560px) {
    .nav {
        display: grid;
        grid-template-columns: auto 1fr auto;
        min-height: 70px;
    }

    .logo {
        grid-column: 1;
    }

    .nav-toggle-label {
        grid-column: 3;
        order: 3;
    }

    .nav > .btn {
        display: none;
    }

    .menu {
        left: 0;
        right: 0;
        top: calc(100% + 8px);
    }

    .menu::after {
        content: "";
        display: block;
        height: 1px;
    }

    .menu a[href="#kontakt"] {
        background: var(--olive);
        color: #fff;
        margin-top: 6px;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .testimonial-slider {
        margin-inline: -16px;
        padding-inline: 16px;
    }

    .testimonial-track {
        gap: 14px;
        scroll-padding-inline: 16px;
    }

    .testimonial-track .testimonial-card {
        flex-basis: calc(100vw - 48px) !important;
        width: calc(100vw - 48px) !important;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.68;
    }
}
