@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --ff: "Ubuntu", sans-serif;
    --color-background: #E6F6F3;
    --color-card: #205B4F;
    --color-text: #FFFFFF;
    --color-cta: #E6F6F3;
    --color-surface: #FFFFFF;
    --color-muted: rgba(32, 91, 79, 0.7);
    --max-width: 1104px;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
    padding: 36px 24px 64px;
    background: var(--color-background);
    font-family: var(--ff);
    line-height: 1.6;
    color: var(--color-text);
}

p {
    font-size: 16px;
}

.page {
    width: min(100%, var(--max-width));
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.brand-logo {
    width: clamp(180px, 28vw, 305px);
    height: auto;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.main-nav a {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-card);
    text-decoration: none;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background-color: rgba(32, 91, 79, 0.12);
    color: var(--color-card);
}

.main-nav a:focus-visible {
    outline: 3px solid rgba(32, 91, 79, 0.28);
    outline-offset: 3px;
}

.main-nav a[aria-current="page"] {
    background-color: var(--color-card);
    color: var(--color-text);
}

.main-nav a[aria-current="page"]:hover {
    background-color: rgba(32, 91, 79, 0.92);
    color: var(--color-text);
}

.main-nav a[aria-current="page"]:focus-visible {
    outline-color: rgba(230, 246, 243, 0.7);
}

.voucher-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 0 4px;
    margin: -24px 0 -16px;
}

.voucher-benefits__item {
    flex: 1 1 160px;
    max-width: 220px;
    border-radius: 16px;
    padding: 14px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(32, 91, 79, 0.12);
    color: var(--color-card);
    box-shadow: 0 10px 22px rgba(32, 91, 79, 0.12);
}

.voucher-benefits__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 6px;
}

.voucher-benefits__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-card);
}

.voucher-benefits__text {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--color-muted);
}

.voucher-note {
    width: 100%;
    margin: -4px 0 8px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(32, 91, 79, 0.16);
    color: rgba(32, 91, 79, 0.88);
    font-size: 14px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(32, 91, 79, 0.12);
}

.page-header + .hero-card {
    margin-top: -16px;
}

.hero-card {
    position: relative;
    padding: 48px 320px 48px 64px;
    border-radius: 32px;
    overflow: hidden;
    background-color: var(--color-card);
    background-image:
        linear-gradient(90deg, rgba(32, 91, 79, 0.96) 0%, rgba(32, 91, 79, 0.95) 55%, rgba(32, 91, 79, 0.3) 85%, rgba(32, 91, 79, 0) 100%),
        url('img/hero.png');
    background-repeat: no-repeat, no-repeat;
    background-position: center, right center;
    background-size: 100% 100%, auto 108%;
    box-shadow: 0 24px 50px rgba(32, 91, 79, 0.2);
}

.hero-card--plain {
    padding: 48px 64px;
    background-color: var(--color-surface);
    background-image: none;
    color: var(--color-card);
    box-shadow: 0 24px 50px rgba(32, 91, 79, 0.12);
}

.hero-card--plain .hero-content {
    max-width: 640px;
    gap: 16px;
}

.hero-card--plain .hero-content p {
    color: rgba(32, 91, 79, 0.78);
    max-width: none;
}

.hero-card--plain .hero-content strong {
    font-weight: 600;
}

.not-found .hero-content {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.not-found .hero-content p {
    max-width: 560px;
}

.not-found .hero-actions {
    justify-content: center;
}

.not-found .secondary-button {
    align-self: center;
}

.terms-hero {
    border: 1px solid rgba(32, 91, 79, 0.08);
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 64px;
    border-radius: 32px;
    background: var(--color-surface);
    color: var(--color-card);
    box-shadow: 0 20px 44px rgba(32, 91, 79, 0.15);
}

.terms-content h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.terms-content h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
}

.terms-content p {
    margin: 0 0 12px;
    color: rgba(32, 91, 79, 0.85);
}

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

.terms-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(32, 91, 79, 0.1);
}

.terms-block:first-of-type {
    padding-top: 0;
    border-top: none;
}

.terms-content ul {
    margin: 0 0 12px 20px;
    padding: 0;
    color: rgba(32, 91, 79, 0.85);
}

.terms-content ul li {
    margin-bottom: 6px;
}

.terms-contact {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.terms-contact li {
    margin-bottom: 4px;
}

.terms-contact a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.terms-note {
    margin: 12px 0 0;
    font-weight: 500;
    color: rgba(32, 91, 79, 0.75);
}

.hero-content {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h1 {
    margin: 0;
    font-size: 33px;
    font-weight: 400;
    line-height: 1.3;
}

.hero-content h1 b {
    font-weight: 700;
}

.hero-content p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
    margin-top: 8px;
}

.main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 34px;
    border-radius: 999px;
    text-decoration: none;
    background-color: var(--color-cta);
    color: var(--color-card);
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

@keyframes button-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.main-button:focus-visible {
    outline: 3px solid rgba(230, 246, 243, 0.6);
    outline-offset: 4px;
}

.hero-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    text-decoration: none;
    line-height: 1.4;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-rating:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.hero-rating:focus-visible {
    outline: 3px solid rgba(230, 246, 243, 0.6);
    outline-offset: 4px;
}

.google-icon {
    height: 28px;
    width: auto;
    object-fit: contain;
}

h2 {
    margin: 0;
    font-size: 33px;
    font-weight: 600;
    line-height: 1.3;
}

.about,
.prices {
    background: var(--color-surface);
    color: var(--color-card);
    border-radius: 32px;
    padding: 56px 64px;
    box-shadow: 0 20px 44px rgba(32, 91, 79, 0.15);
}

.about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 246, 243, 0.85) 100%);
}

.about::before,
.about::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.55;
}

.about::before {
    width: 320px;
    height: 320px;
    top: -140px;
    right: -120px;
    background: radial-gradient(circle at center, rgba(58, 179, 150, 0.35), transparent 65%);
}

.about::after {
    width: 420px;
    height: 420px;
    bottom: -220px;
    left: -160px;
    background: radial-gradient(circle at center, rgba(32, 91, 79, 0.18), transparent 70%);
}

.about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 24px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding: 36px 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 46px rgba(32, 91, 79, 0.12);
    backdrop-filter: blur(6px);
}

.about-text::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(58, 179, 150, 0.12);
    pointer-events: none;
}

.about-text p {
    margin: 0;
    color: var(--color-muted);
}

.about-text blockquote {
    margin: 0;
    padding: 28px 32px 28px 78px;
    border: none;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(230, 246, 243, 0.75), rgba(255, 255, 255, 0.9));
    font-style: italic;
    color: rgba(32, 91, 79, 0.85);
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(58, 179, 150, 0.16);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.about-text blockquote::before {
    content: "“";
    position: absolute;
    top: -26px;
    left: 24px;
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    color: rgba(32, 91, 79, 0.12);
    pointer-events: none;
}

.about-text blockquote img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.about-text blockquote p {
    margin: 0;
    color: inherit;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 28px 50px rgba(32, 91, 79, 0.22);
    animation: about-photo-float 14s ease-in-out infinite;
    transition: box-shadow 0.6s ease;
}

.about-photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-photo::before {
    content: "";
    position: absolute;
    inset: -20px -16px -20px -16px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(32, 91, 79, 0.16), rgba(58, 179, 150, 0.08));
    z-index: 0;
    filter: blur(0);
}

@keyframes about-photo-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
    transform: translateY(-8px) scale(1.01);
    }
}

.about-photo:hover img {
    box-shadow: 0 32px 64px rgba(32, 91, 79, 0.28);
}

@media (prefers-reduced-motion: reduce) {
    .about-photo img {
        animation: none;
    }
}

.prices {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.prices-header {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prices-header p {
    margin: 0;
    max-width: 520px;
    color: var(--color-muted);
}

.price-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.price-cta {
    display: flex;
    justify-content: center;
}

.price-card,
.gift-card {
    position: relative;
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--color-surface);
    box-shadow: 0 18px 42px rgba(32, 91, 79, 0.14);
}

.price-card {
    background: linear-gradient(135deg, rgba(230, 246, 243, 0.9), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(32, 91, 79, 0.08);
}

.price-card h3,
.gift-card h3 {
    margin: 0;
    font-size: 20px;
    color: var(--color-card);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.price-card h3::before {
    content: "✨";
    font-size: 22px;
}

.gift-card h3::before {
    content: "🎁";
    font-size: 22px;
}

.price-table {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}

.price-table li {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    font-size: 16px;
    color: var(--color-card);
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(230, 246, 243, 0.55);
    box-shadow: inset 0 0 0 1px rgba(32, 91, 79, 0.06);
}
.price-table li span:first-child {
    font-weight: 600;
}

.price-table li span:nth-child(2) {
    justify-self: flex-end;
    font-variant-numeric: tabular-nums;
    font-size: 18px;
}

.price-table__item--highlight {
    position: relative;
    background: rgba(230, 246, 243, 0.75);
    box-shadow: 0 10px 20px rgba(32, 91, 79, 0.12), inset 0 0 0 1px rgba(32, 91, 79, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.price-table__item--highlight::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(230, 246, 243, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-table__item--highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(32, 91, 79, 0.18);
}

.price-table__item--highlight:hover::after {
    opacity: 1;
}

.price-table__item--highlight span:first-child,
.price-table__item--highlight span:nth-child(2) {
    font-weight: 700;
}

.gift-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 246, 243, 0.95));
    border: 1px solid rgba(32, 91, 79, 0.1);
    box-shadow: 0 18px 42px rgba(32, 91, 79, 0.14);
}

.price-info-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(18, 56, 49, 0.95), rgba(18, 56, 49, 1));
    color: var(--color-surface);
    box-shadow: 0 22px 48px rgba(18, 56, 49, 0.32);
    border: 1px solid rgba(230, 246, 243, 0.12);
    position: relative;
    overflow: hidden;
}

.price-info-card h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-cta);
}

.price-info-card__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-info-card__content section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(230, 246, 243, 0.08);
    box-shadow: inset 0 0 0 1px rgba(230, 246, 243, 0.12);
}

.price-info-card__content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-cta);
}

.price-info-card__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
}

.secondary-button {
    align-self: flex-start;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid var(--color-card);
    color: var(--color-card);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.secondary-button:hover {
    background: var(--color-card);
    color: var(--color-surface);
    transform: translateY(-1px);
}

.secondary-button:focus-visible {
    outline: 3px solid rgba(32, 91, 79, 0.25);
    outline-offset: 4px;
}

.location-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
    gap: 48px;
    align-items: center;
    background: var(--color-surface);
    color: var(--color-card);
    border-radius: 32px;
    padding: 56px 64px;
    box-shadow: 0 24px 44px rgba(32, 91, 79, 0.15);
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-content p {
    margin: 0;
    color: var(--color-muted);
}

.location-map {
    position: relative;
}

.map-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(32, 91, 79, 0.18);
}

.map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 91, 79, 0.15), rgba(58, 179, 150, 0.15));
    mix-blend-mode: multiply;
    pointer-events: none;
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 0;
    filter: saturate(1.1) contrast(1.05);
}

.cta-section {
    position: relative;
    margin-top: 16px;
    padding: 64px;
    border-radius: 36px;
    background: linear-gradient(135deg, #1f6b5b 0%, #3ab396 100%);
    overflow: hidden;
    color: var(--color-text);
    box-shadow: 0 28px 50px rgba(32, 91, 79, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.cta-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 33px;
    font-weight: 600;
    margin: 0;
}

.cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cta-content .main-button {
    align-self: flex-start;
    background-color: var(--color-surface);
    color: var(--color-card);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.cta-visual {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    background:
        linear-gradient(rgba(32, 91, 79, 0.7), rgba(32, 91, 79, 0.7)),
        url('img/calendar.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
    transform: rotate(+7deg);
    z-index: 2;
}

.site-footer {
    width: min(100%, var(--max-width));
    margin-top: 72px;
    padding: 0 24px 48px;
    background: transparent;
}

.footer-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 5vw, 48px);
    padding: clamp(32px, 6vw, 56px);
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(32, 91, 79, 0.96), rgba(32, 91, 79, 0.82));
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 60px rgba(32, 91, 79, 0.25);
    overflow: hidden;
}

.footer-shell::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left, rgba(230, 246, 243, 0.28), transparent 55%),
        radial-gradient(circle at bottom right, rgba(230, 246, 243, 0.18), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.footer-shell > * {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 5vw, 40px);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 360px;
}

.footer-logo {
    width: clamp(180px, 22vw, 240px);
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.footer-brand p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.footer-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: rgba(230, 246, 243, 0.95);
    color: var(--color-card);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta::after {
    content: "→";
    font-size: 18px;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.footer-columns {
    display: grid;
    gap: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.footer-heading {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-list-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-list-value,
.footer-list-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.6;
}

.footer-list-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-meta-text {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-keywords {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
    text-align: center;
}

.footer-link:hover {
    border-color: rgba(255, 255, 255, 0.75);
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-credit img {
    height: 20px;
    width: auto;
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal;
}

.footer-credit span {
    font-weight: 600;
}

.footer-credit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer-payments {
    display: block;
    height: 32px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

@media (min-width: 720px) {
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .footer-logo {
        width: clamp(210px, 60vw, 260px);
    }

    .footer-payments {
        height: 26px;
    }
}

@media (min-width: 960px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-columns {
        flex: 1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .footer-bottom-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .footer-bottom-links {
        justify-content: flex-end;
    }
}

@media (min-width: 901px) {
    .main-button {
        animation: button-bob 3s ease-in-out infinite;
    }

    .main-button:hover {
        animation: none;
    }
}

@media (max-width: 1000px) {
    .hero-card {
        padding: 40px 32px;
        background-image: linear-gradient(180deg, rgba(32, 91, 79, 0.96) 0%, rgba(32, 91, 79, 0.9) 60%, rgba(32, 91, 79, 0.35) 100%);
        background-size: cover;
        background-position: center;
    }

    .hero-card--plain {
        padding: 40px 32px;
        background-color: var(--color-surface);
        background-image: none;
    }
    
    .terms-content {
        padding: 40px 32px;
        gap: 28px;
    }

    .hero-content {
        max-width: none;
    }

    .hero-content p {
        max-width: none;
    }
}

@media (max-width: 900px) {
    body {
        padding: 48px 16px;
        gap: 36px;
    }

    .page {
        gap: 36px;
    }

    .about,
    .prices,
    .location-section {
        padding: 48px 32px;
    }

    .location-section {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .location-content {
        align-items: center;
    }

    .location-content p {
        max-width: 520px;
    }

    .cta-section {
        padding: 48px 32px;
        text-align: center;
        flex-direction: column;
        gap: 40px;
    }

    .cta-content {
        align-items: center;
        max-width: none;
    }

    .cta-content .main-button {
        align-self: center;
    }

    .cta-visual {
        width: 180px;
        height: 180px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }

    .about-text {
        align-items: center;
        padding: 32px;
    }

    .about-text blockquote {
        padding: 24px 28px 24px 68px;
        text-align: left;
    }

    .about-text blockquote::before {
        left: 18px;
        font-size: 78px;
        top: -22px;
    }

    .about-photo {
        order: -1;
    }

    .prices {
        text-align: center;
        align-items: center;
    }

    .prices-header {
        align-items: center;
    }

    .price-layout {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .price-card,
    .gift-card {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-card {
        border-radius: 24px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-card--plain .hero-content {
        align-items: flex-start;
        text-align: left;
    }

    .hero-card--plain {
        padding: 32px 24px;
    }

    .terms-content {
        padding: 32px 24px;
        border-radius: 24px;
        gap: 24px;
    }

    .terms-content h2 {
        font-size: 24px;
    }

    .terms-content h3 {
        font-size: 18px;
    }

    .terms-content ul {
        margin-left: 16px;
    }

    .page-header + .hero-card {
        margin-top: -24px;
    }

    .brand-logo {
        width: 220px;
        max-width: 70vw;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-button {
        width: 100%;
    }

    .about,
    .prices,
    .location-section,
    .cta-section {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .site-footer {
        width: 100%;
        padding: 0;
    }

    .footer-shell {
        border-radius: 24px;
        padding: 32px 24px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .footer-cta {
        align-self: center;
    }

    .price-layout {
        gap: 20px;
    }

    .price-card,
    .gift-card {
        padding: 28px 24px;
    }

    .gift-card {
        align-items: center;
        text-align: center;
    }

    .gift-card h3 {
        justify-content: center;
    }

    .about-text {
        padding: 28px;
    }

    .about-text blockquote {
        padding: 22px 24px 22px 54px;
    }

    .about-text blockquote::before {
        left: 12px;
        font-size: 64px;
        top: -18px;
    }

    .location-section {
        gap: 28px;
    }

    .map-frame iframe {
        min-height: 260px;
    }

    .cta-section {
        margin-top: 0;
        gap: 32px;
    }

    .secondary-button {
        width: 100%;
        justify-content: center;
    }

    .cta-visual {
        width: 150px;
        height: 150px;
    }

    body {
        gap: 28px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    max-width: min(720px, calc(100% - 24px));
    background-color: rgba(248, 249, 251, 0.96);
    color: #1f2023;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(17, 21, 27, 0.12);
    border: 1px solid rgba(120, 126, 140, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9999;
}
.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    flex: 1;
}

.cookie-banner__button {
    background-color: #1f2023;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
    background-color: #303236;
    outline: none;
}

.cookie-banner__button:active {
    transform: translateY(1px);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 16px;
    }

    .cookie-banner__button {
        width: 100%;
        text-align: center;
    }
}
