:root {
    --brand: #1f548d;
    --brand-dark: #546884;
    --brand-soft: #b9dee6;
    --brand-muted: #99b4b8;
    --brand-light: #76c9da;
    --accent: #ff8300;
    --ink: #1f548d;
    --muted: #546884;
    --surface: #f8fbfc;
    --white: #ffffff;
    --line: #99b4b8;
    --dark: #1f548d;
    --dark-soft: #546884;
    --shadow-soft: 0 10px 26px rgba(31, 84, 141, 0.08);
    --shadow-big: 0 22px 56px rgba(31, 84, 141, 0.14);
    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 22px;
    --radius-xl: 24px;
    --radius-2xl: 28px;
    --radius-3xl: 32px;
    --container: 1320px;
    --transition: 0.24s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Lato", system-ui, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, rgba(185, 222, 230, 0.22) 0%, var(--surface) 18%, var(--surface) 100%);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(255, 131, 0, 0.34);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 100;
    background: var(--brand);
    color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.narrow {
    width: min(820px, 100%);
}

.section {
    padding: 108px 0;
}

.section--white {
    background: var(--white);
}

.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(31, 84, 141, 0.14);
    box-shadow: var(--shadow-soft);
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    flex: 0 0 auto;
}

.hand {
    margin: 0;
    font-family: "Patrick Hand", cursive;
    color: var(--brand);
    line-height: 1;
}

.title {
    margin: 0;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.title--xl {
    font-size: clamp(2.85rem, 5vw, 5.35rem);
}

.title--lg {
    font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.title--md {
    font-size: clamp(1.45rem, 2vw, 2.05rem);
}

.title--light {
    color: var(--white);
}

.lead,
.copy {
    margin: 0;
    color: var(--muted);
}

.lead {
    font-size: clamp(1.06rem, 1.4vw, 1.18rem);
    line-height: 1.78;
}

.copy {
    font-size: 1rem;
    line-height: 1.75;
}

.lead--mt {
    margin-top: 26px;
}

.lead--narrow {
    max-width: 720px;
}

.lead--section-intro,
.lead--light,
.copy--mt,
.copy--mt-default {
    margin-top: 18px;
}

.lead--wide {
    max-width: 860px;
}

.lead--light,
.copy--light {
    color: rgba(255, 255, 255, 0.78);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 900;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-big);
}

.btn--secondary {
    background: var(--white);
    color: var(--brand);
    border-color: rgba(31, 84, 141, 0.18);
}

.btn--secondary:hover {
    background: rgba(185, 222, 230, 0.3);
}

.btn--yellow {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(255, 131, 0, 0.16);
}

.btn--yellow:hover {
    transform: translateY(-2px);
    filter: brightness(0.96);
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(153, 180, 184, 0.38);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo__mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    box-shadow: var(--shadow-soft);
}

.logo__title {
    font-size: 14px;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: 0.02em;
}

.logo__sub {
    margin-top: 3px;
    font-size: 12px;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    transition: color var(--transition);
}

.nav__link:hover {
    color: var(--accent);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero {
    padding: 44px 0 110px;
    background: var(--white);
}

.hero__grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 54px;
    align-items: start;
}

.hero__copy {
    padding-top: 34px;
}

.hero__hand {
    margin: 16px 0 8px;
    font-size: 2.4rem;
}

.hero__highlight {
    position: relative;
    display: inline-block;
}

.hero__highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='12' viewBox='0 0 320 12'%3E%3Cpath d='M4 8.2C33 3.1 58 2.2 92 6.6C122 10.5 151 10.9 184 7.1C216 3.3 246 2.2 277 5.9C293 7.8 304 8.7 316 5.6' fill='none' stroke='%23FF8300' stroke-width='4.8' stroke-linecap='round'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.fact {
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(153, 180, 184, 0.34);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.fact__hand {
    margin-bottom: 6px;
    font-size: 1.85rem;
    color: var(--accent);
}

.fact__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    padding-bottom: 16px;
}

.hero-visual__dot {
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 240px;
    height: 240px;
    background: rgba(118, 201, 218, 0.28);
    filter: blur(18px);
    border-radius: 50%;
    z-index: 0;
}

.hero-visual__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.75fr;
    gap: 16px;
}

.stack-grid {
    display: grid;
    gap: 16px;
}

.hero-photo,
.overview-card,
.service-card,
.entry-card,
.package-card,
.add-on,
.quote-card,
.faq-item,
.contact-info,
.contact-form,
.parents-card,
.login-card,
.local-card,
.about-card {
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.hero-photo {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.hero-photo--main {
    position: relative;
    border-radius: 30px;
}

.hero-photo--main img {
    height: 760px;
    object-fit: cover;
}

.hero-photo--stack-a,
.hero-photo--stack-b,
.hero-photo--stack-c {
    border-radius: 20px;
}

.hero-photo--stack-a img {
    height: 246px;
    object-fit: cover;
}

.hero-photo--stack-b img {
    height: 198px;
    object-fit: cover;
}

.hero-photo--stack-c img {
    height: 188px;
    object-fit: cover;
}

.hero-note {
    padding: 24px;
    background: rgba(185, 222, 230, 0.42);
    border: 1px solid rgba(31, 84, 141, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.hero-note__title {
    margin: 0 0 8px;
    font-family: "Patrick Hand", cursive;
    font-size: 2.6rem;
    line-height: 1;
    color: var(--brand);
}

.hero-note__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(31, 84, 141, 0.82);
}

.hero-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

.hero-caption__hand {
    margin-bottom: 6px;
    font-size: 2rem;
    color: var(--accent);
}

.hero-caption__text {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.float-a {
    animation: floatA 7.4s ease-in-out infinite;
}

.float-b {
    animation: floatB 9.2s ease-in-out infinite;
}

.float-c {
    animation: floatC 10s ease-in-out infinite;
}

.quick-architecture {
    border-top: 1px solid rgba(153, 180, 184, 0.32);
    border-bottom: 1px solid rgba(153, 180, 184, 0.32);
    background: var(--white);
}

.quick-architecture__head,
.showcase-head,
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.overview-card,
.entry-card,
.service-card,
.local-card {
    border: 1px solid rgba(153, 180, 184, 0.34);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.overview-card {
    padding: 22px;
    border-radius: 20px;
}

.overview-card:hover,
.entry-card:hover,
.service-card:hover,
.local-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-big);
    border-color: rgba(31, 84, 141, 0.18);
}

.overview-card__label,
.service-card__label,
.panel__label,
.teaser-copy__label,
.section-kicker {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
}

.section-kicker--light,
.panel__label--light {
    color: rgba(255, 255, 255, 0.72);
}

.section-hand {
    margin-bottom: 8px;
    font-size: 2.7rem;
}

.section-hand--accent {
    color: var(--accent);
}

.overview-card__title,
.entry-card__title,
.local-card__title,
.footer__title,
.about-feature__title {
    margin: 0;
}

.overview-card__title {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.15;
}

.overview-card__text,
.entry-card__text,
.local-card__text,
.footer__text,
.footer__link {
    font-size: 14px;
}

.overview-card__text {
    margin: 10px 0 0;
    line-height: 1.6;
    color: var(--muted);
}

.entry-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.entry-strip--single {
    grid-template-columns: 1fr;
    margin-top: 20px;
}

.entry-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
}

.entry-card__thumb {
    width: 66px;
    height: 66px;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 16px;
}

.entry-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entry-card__title {
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.15;
}

.entry-card__text {
    margin: 6px 0 0;
    color: var(--muted);
}

.showcase-controls {
    display: flex;
    gap: 12px;
}

.showcase-controls button {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(31, 84, 141, 0.18);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--brand);
    font-weight: 900;
    box-shadow: var(--shadow-soft);
}

.showcase-controls button:hover {
    background: rgba(185, 222, 230, 0.28);
}

.showcase-viewport {
    padding-left: max(16px, calc((100vw - min(var(--container), calc(100% - 32px))) / 2));
}

.main-gallery-swiper {
    overflow: visible !important;
    padding-right: 6vw !important;
}

.swiper-slide {
    width: auto;
}

.showcase-slide {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-big);
}

.showcase-slide img {
    height: 620px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.showcase-slide:hover img {
    transform: scale(1.04);
}

.showcase-slide__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(180deg, rgba(31, 84, 141, 0.06) 0%, rgba(31, 84, 141, 0.74) 100%);
    color: var(--white);
}

.showcase-slide__hand {
    margin-bottom: 8px;
    font-size: 2.2rem;
    color: var(--accent);
}

.showcase-slide__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.08;
}

.teaser-large {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 20px;
    align-items: center;
}

.teaser-large--reverse {
    grid-template-columns: 0.92fr 1.08fr;
}

.teaser-photo,
.about-photo {
    overflow: hidden;
    border-radius: 26px;
}

.teaser-photo img {
    height: 560px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.teaser-photo:hover img {
    transform: scale(1.04);
}

.teaser-copy,
.panel,
.parents-card,
.about-card,
.contact-form {
    padding: 34px;
    border: 1px solid rgba(153, 180, 184, 0.34);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.teaser-copy__title {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.04;
}

.teaser-copy__text,
.panel__text,
.service-card__text,
.quote-card__text,
.faq-answer p,
.contact-list__item {
    line-height: 1.72;
}

.teaser-copy__text,
.panel__text,
.service-card__text,
.local-card__text,
.about-feature__text {
    color: var(--muted);
}

.teaser-copy__text {
    margin: 16px 0 0;
}

.teaser-copy__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.package-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.package-section::before,
.package-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
}

.package-section::before {
    inset: auto auto 10% -70px;
    background: rgba(255, 131, 0, 0.1);
    filter: blur(22px);
}

.package-section::after {
    inset: 10% -70px auto auto;
    background: rgba(118, 201, 218, 0.14);
    filter: blur(24px);
}

.package-head,
.package-grid,
.add-ons {
    position: relative;
    z-index: 1;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.package-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
}

.package-card--highlight {
    border-color: rgba(255, 131, 0, 0.3);
    box-shadow: 0 18px 40px rgba(255, 131, 0, 0.1);
}

.package-card__top {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.package-card--highlight .package-card__top {
    background: var(--accent);
    color: var(--white);
}

.package-card__body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 22px 18px 18px;
}

.package-card__meta,
.package-note,
.add-on__text {
    color: rgba(255, 255, 255, 0.72);
}

.package-card__meta {
    margin: 0 0 12px;
    font-size: 13px;
}

.package-card__main {
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.04;
}

.package-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.package-list li {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.package-list strong {
    color: var(--white);
}

.package-price,
.add-on__price {
    font-weight: 900;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
}

.package-price {
    margin-top: auto;
    align-self: flex-end;
    padding: 10px 14px;
}

.package-note {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.6;
}

.add-ons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.add-on {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
}

.add-on__thumb {
    width: 86px;
    height: 86px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.add-on__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-on__label {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.add-on__title,
.service-card__title,
.panel__title {
    margin: 0;
    font-weight: 900;
}

.add-on__title {
    font-size: 1.28rem;
    line-height: 1.12;
}

.add-on__text {
    margin: 8px 0 0;
    font-size: 14px;
}

.add-on__price {
    margin-left: auto;
    align-self: flex-end;
    padding: 9px 12px;
    white-space: nowrap;
}

.service-columns,
.quotes-grid,
.local-grid,
.footer__grid {
    display: grid;
}

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

.service-card {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.service-card__image {
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: var(--radius-md);
}

.service-card__image img {
    height: 220px;
    object-fit: cover;
}

.service-card__title {
    font-size: 1.8rem;
    line-height: 1.08;
}

.service-card__text {
    margin: 12px 0 0;
}

.service-card__link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--accent);
    font-weight: 900;
}

.split-grid,
.about-grid,
.contact-grid {
    display: grid;
    gap: 20px;
}

.split-grid,
.contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.split-grid--reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.about-grid {
    grid-template-columns: 0.98fr 1.02fr;
    gap: 22px;
    align-items: stretch;
}

.panel__title {
    font-size: 2.45rem;
    line-height: 1.02;
}

.panel__text {
    margin: 16px 0 0;
}

.panel__thumbs,
.mini-grid,
.login-card__thumbs,
.about-features {
    display: grid;
    gap: 12px;
}

.panel__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.panel__thumb,
.login-card__thumb {
    overflow: hidden;
    border-radius: 14px;
}

.panel__thumb img {
    height: 120px;
    object-fit: cover;
}

.parents-card,
.login-card,
.contact-info,
.contact-form,
.local-card,
.about-card,
.faq-item,
.quote-card {
    border: 1px solid rgba(153, 180, 184, 0.34);
}

.login-card,
.contact-info {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
}

.mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
    gap: 14px;
}

.mini-panel {
    padding: 18px;
    background: rgba(185, 222, 230, 0.2);
    border: 1px solid rgba(153, 180, 184, 0.22);
    border-radius: 16px;
}

.mini-panel__hand {
    margin-bottom: 8px;
    font-size: 2rem;
    color: var(--accent);
}

.mini-panel__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
    color: var(--muted);
}

.login-card__form {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.field,
.textarea,
.select {
    width: 100%;
    outline: none;
    transition: 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(153, 180, 184, 0.46);
    background: var(--white);
    color: var(--ink);
}

.field,
.select {
    min-height: 54px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
}

.textarea {
    min-height: 156px;
    padding: 16px;
    border-radius: var(--radius-md);
    resize: vertical;
}

.field--soft,
.textarea--soft {
    background: rgba(185, 222, 230, 0.22);
}

.field--dark {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.field--dark::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.field:focus,
.textarea:focus,
.select:focus {
    border-color: rgba(31, 84, 141, 0.48);
    box-shadow: 0 0 0 4px rgba(118, 201, 218, 0.12);
}

.login-card__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.login-card__thumb img {
    height: 96px;
    object-fit: cover;
}

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

.local-grid--spaced,
.quotes-grid--spaced,
.faq-grid--spaced {
    margin-top: 34px;
}

.local-card {
    padding: 22px;
    border-radius: 20px;
}

.local-card__title {
    font-size: 1.24rem;
    font-weight: 900;
    line-height: 1.12;
}

.local-card__text {
    margin: 10px 0 0;
    line-height: 1.58;
}

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

.quote-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
}

.quote-card--highlight {
    background: rgba(255, 131, 0, 0.08);
    border-color: rgba(255, 131, 0, 0.16);
}

.quote-card__mark {
    margin-bottom: 16px;
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
}

.quote-card__meta {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(153, 180, 184, 0.34);
    font-size: 14px;
    color: var(--muted);
}

.faq-grid {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 0 24px;
    border-radius: var(--radius-md);
    background: var(--white);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    text-align: left;
    background: transparent;
    border: 0;
    color: var(--ink);
    font-size: 1.06rem;
    font-weight: 900;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-item[data-open="true"] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item[data-open="true"] .faq-plus {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-plus {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius-xs);
    background: rgba(185, 222, 230, 0.18);
    font-size: 1.35rem;
    color: var(--brand);
    transition: var(--transition);
}

.faq-answer p {
    margin: 0 0 22px;
    color: var(--muted);
}

.about-photo {
    box-shadow: var(--shadow-big);
    border-radius: var(--radius-2xl);
}

.about-photo img {
    height: 600px;
    object-fit: cover;
}

.about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.about-feature {
    padding: 16px;
    background: rgba(185, 222, 230, 0.18);
    border: 1px solid rgba(153, 180, 184, 0.22);
    border-radius: 16px;
}

.about-feature__title {
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 900;
}

.about-feature__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.58;
}

.contact-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.contact-list__item {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
}

.contact-list__dot {
    width: 7px;
    height: 7px;
    margin-top: 11px;
    border-radius: 999px;
    background: var(--accent);
    flex: 0 0 auto;
}

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

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

.field-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
}

.consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid rgba(153, 180, 184, 0.2);
    border-radius: 16px;
    background: rgba(185, 222, 230, 0.14);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.contact-actions__note {
    font-size: 2.35rem;
    color: var(--accent);
}

.footer {
    padding: 56px 0;
    border-top: 1px solid rgba(153, 180, 184, 0.34);
    background: var(--white);
}

.footer__grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
    gap: 28px;
}

.footer__title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 900;
    color: var(--ink);
}

.footer__text,
.footer__link {
    color: var(--muted);
    line-height: 1.8;
}

.footer__text--intro {
    max-width: 340px;
    margin-top: 16px;
}

.footer__links {
    display: grid;
    gap: 8px;
}

.footer__link:hover {
    color: var(--accent);
}

.mobile-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 45;
    display: none;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(153, 180, 184, 0.34);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-big);
}

.mobile-cta a {
    flex: 1 1 auto;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 900;
}

.mobile-cta__primary {
    background: var(--brand);
    color: var(--white);
}

.mobile-cta__secondary {
    background: var(--white);
    color: var(--brand);
    border: 1px solid rgba(31, 84, 141, 0.16);
}

@keyframes floatA {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatB {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

@keyframes floatC {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 1200px) {
    .hero__grid,
    .teaser-large,
    .teaser-large--reverse,
    .split-grid,
    .split-grid--reverse,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero__copy {
        padding-top: 0;
    }

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

    .entry-strip,
    .service-columns,
    .quotes-grid,
    .local-grid,
    .footer__grid,
    .package-grid,
    .add-ons,
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .overview-grid,
    .entry-strip,
    .hero__facts,
    .package-grid,
    .add-ons,
    .service-columns,
    .mini-grid,
    .local-grid,
    .quotes-grid,
    .about-features,
    .footer__grid,
    .form-grid,
    .hero-visual__grid,
    .stack-grid {
        grid-template-columns: 1fr;
    }

    .hero-photo--main img {
        height: 520px;
    }

    .showcase-slide img {
        height: 520px;
    }

    .teaser-photo img {
        height: 420px;
    }

    .about-photo img {
        height: 440px;
    }

    .section {
        padding: 82px 0;
    }

    .mobile-cta {
        display: flex;
    }
}

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

    .header__inner {
        min-height: 72px;
    }

    .hero {
        padding-top: 28px;
    }

    .showcase-slide__overlay,
    .contact-form,
    .contact-info,
    .teaser-copy,
    .panel,
    .parents-card,
    .about-card,
    .login-card {
        padding: 24px;
    }

    .btn {
        width: 100%;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


@media (max-width: 900px) {
    body {
        padding-bottom: 96px;
    }

    .quick-architecture__head,
    .showcase-head,
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-controls {
        width: 100%;
        flex-wrap: wrap;
    }

    .showcase-controls button {
        flex: 1 1 calc(50% - 6px);
    }

    .showcase-viewport {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-gallery-swiper {
        padding-right: 0 !important;
    }

    .hero {
        padding-bottom: 82px;
    }

    .hero__grid,
    .teaser-large,
    .split-grid,
    .about-grid,
    .contact-grid {
        gap: 24px;
    }

    .hero-photo--main {
        border-radius: 24px;
    }

    .hero-caption {
        position: static;
        margin: 12px;
    }

    .package-card {
        min-height: auto;
    }

    .add-on {
        flex-direction: column;
        align-items: flex-start;
    }

    .add-on__thumb {
        width: 100%;
        height: 180px;
    }

    .add-on__price {
        margin-left: 0;
        align-self: flex-start;
    }

    .contact-actions__note {
        font-size: 1.9rem;
    }

    .footer {
        padding-bottom: 110px;
    }
}

@media (max-width: 640px) {
    .title--xl {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .title--lg {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .hero__hand,
    .section-hand,
    .contact-actions__note {
        font-size: 1.9rem;
    }

    .hero__facts,
    .panel__thumbs,
    .login-card__thumbs,
    .about-features,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-photo--main img,
    .showcase-slide img {
        height: 420px;
    }

    .hero-photo--stack-a img,
    .hero-photo--stack-b img,
    .hero-photo--stack-c img {
        height: 220px;
    }

    .teaser-photo img,
    .about-photo img {
        height: 320px;
    }

    .package-card__main,
    .panel__title,
    .teaser-copy__title,
    .service-card__title,
    .showcase-slide__title {
        font-size: 1.6rem;
    }

    .showcase-slide__overlay {
        padding: 20px;
    }

    .showcase-slide__hand {
        font-size: 1.8rem;
    }

    .overview-card,
    .entry-card,
    .service-card,
    .quote-card,
    .faq-item,
    .local-card,
    .about-card,
    .parents-card,
    .contact-form,
    .contact-info,
    .teaser-copy,
    .panel,
    .login-card {
        border-radius: 18px;
    }

    .entry-card {
        align-items: flex-start;
    }

    .entry-card__thumb {
        width: 58px;
        height: 58px;
    }

    .form-grid {
        gap: 14px;
    }

    .mobile-cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}


@media (max-width: 900px) {
    body {
        padding-bottom: 0;
    }

    .header__inner {
        flex-wrap: wrap;
        align-items: center;
        row-gap: 12px;
        min-height: auto;
        padding: 14px 0;
    }

    .nav {
        display: flex;
        order: 3;
        width: 100%;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    .nav__link {
        white-space: nowrap;
        padding: 10px 14px;
        border: 1px solid rgba(31, 84, 141, 0.12);
        border-radius: 999px;
        background: var(--white);
        box-shadow: var(--shadow-soft);
    }

    .header__actions {
        display: none;
    }

    .mobile-cta {
        display: none !important;
    }

    .footer {
        padding-bottom: 56px;
    }
}
