:root {
    --bg-page: #d9d9d9;
    --bg-cream: #f7f1e8;
    --bg-pink: #d8bfd2;
    --bg-yellow: #f6e39a;
    --text-dark: #2b1d1d;
    --text-light: #ffffff;
    --container: 1140px;
    --radius: 28px;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, serif;
    color: var(--text-dark);
    background: var(--bg-page);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    padding: 22px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.main-nav {
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    font-size: 14px;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.nav-menu a:hover {
    opacity: 1;
}

.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(48, 27, 31, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.05;
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    min-height: 52px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.section-card {
    width: min(100% - 32px, var(--container));
    margin: -70px auto 32px;
    padding: 44px 24px;
    background: var(--bg-cream);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 5;
}

.gallery-section h2,
.about-text h2 {
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 30px;
}

.small-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.small-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
}

.gallery-large img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 6px;
}

.about-section {
    background: var(--bg-pink);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-text {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    text-align: left;
}

.about-text p + p {
    margin-top: 14px;
}

.reviews-section {
    margin-top: 0;
    text-align: center;
    padding: 56px 24px;
}

.review-item {
    max-width: 760px;
    margin: 0 auto;
}

.stars {
    color: #f0b400;
    letter-spacing: 4px;
    margin: 16px 0 8px;
}

.contact-map-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 380px;
}

.contact-box {
    background: var(--bg-yellow);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.contact-box h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.contact-box a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.map-box {
    min-height: 380px;
    background: #ddd;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}

.page-content {
    padding: 80px 0;
}

.site-footer {
    padding: 24px 0;
    text-align: center;
    background: #222;
    color: #fff;
}

@media (max-width: 900px) {
    .small-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-map-section {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 28px 20px;
    }

    .gallery-section h2,
    .about-text h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 18px 0;
    }

    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .hero {
        min-height: 78vh;
    }

    .hero p {
        font-size: 16px;
    }

    .section-card {
        margin-top: -36px;
        padding: 24px 16px;
    }

    .contact-box {
        font-size: 14px;
    }
}
