:root {
    --blush: #fbf1f5;
    --blush-2: #f7e2eb;
    --rose: #cba7b7;
    --taupe: #aa978e;
    --ink: #463f42;
    --muted: #756b70;
    --white: #ffffff;

    --shadow: 0 18px 45px rgba(70, 63, 66, 0.10);
    --radius: 24px;
}

/* Base */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--ink);
    background: #ffffff;
    line-height: 1.65;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}

.section {
    padding: 130px 0;
}

.section h1 {
    margin-bottom: 40px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--taupe);
    font-size: 0.76rem;
    font-weight: 700;
}

main {
    background: linear-gradient(180deg, #ffffff 0%, #fbf1f5 100%);
}

h1,
h2 {
    font-family: Georgia, serif;
    letter-spacing: -0.03em;
}

/* Buttons */
.btn {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    padding: 14px 26px;
    text-decoration: none;
    font-weight: 700;
    background: var(--taupe);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(170, 151, 142, 0.25);
}

.btn.secondary {
    background: #ffffff;
    color: var(--taupe);
    border: 1px solid #ead8df;
}

.btn,
.table-btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover,
.table-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(70, 63, 66, 0.16);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(70, 63, 66, 0.07);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.nav-links a.active {
    color: var(--taupe);
    border-bottom: 2px solid var(--taupe);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-weight: 700;
}

.brand img {
    height: 80px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
}

.hamburger {
    display: none;
    background: none;
    border: 0;
    font-size: 2rem;
    color: var(--taupe);
}

/* Hero */
.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 78vh;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at top left, #ffffff 0, #fbf1f5 34%, #ffffff 75%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: #f7e2eb;
    opacity: 0.7;
}

.hero::before {
    width: 340px;
    height: 340px;
    left: -120px;
    top: 90px;
}

.hero::after {
    width: 280px;
    height: 280px;
    right: -90px;
    bottom: 60px;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-bottom: 24px;
}

.hero h1 {
    margin: 0 0 16px;
    font-family: Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 1.05;
    color: var(--taupe);
}

.hero p {
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 1.24rem;
    color: var(--muted);
}

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

/* Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 34px;
}

.soft {
    background: var(--blush);
}

/* Cards */
.card {
    background: #ffffff;
    border: 1px solid #f1e1e7;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(70, 63, 66, 0.15);
}

.card h2,
.card h3 {
    margin-top: 0;
    color: var(--taupe);
}

/* Images */
.about-photo {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
    justify-self: center;
}

.home-photo {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
    justify-self: center;
}

/* Placeholders */
.photo-placeholder {
    min-height: 360px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f7e2eb, #ffffff);
    display: grid;
    place-items: center;
    color: var(--taupe);
    font-weight: 700;
    border: 1px dashed #d7bdc7;
}

.map-placeholder {
    height: 320px;
    border-radius: var(--radius);
    background: #f6edf1;
    display: grid;
    place-items: center;
    color: var(--taupe);
    border: 1px dashed #d7bdc7;
}

/* Timetable */
.timetable {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.timetable th {
    background: var(--taupe);
    color: #ffffff;
    text-align: left;
}

.timetable th,
.timetable td {
    padding: 16px;
    border-bottom: 1px solid #f1e1e7;
}

.timetable tr:hover td {
    background: var(--blush);
}

.table-btn {
    display: inline-block;
    padding: 10px 18px;
    background: var(--taupe);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.table-btn:hover {
    opacity: 0.85;
}

/* Pricing */
.price {
    margin: 8px 0;
    font-family: Georgia, serif;
    font-size: 2.2rem;
    color: var(--taupe);
}

/* Gallery */
.gallery img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

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

/* Forms */
.form-wrap {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #f1e1e7;
}

.form-wrap iframe {
    width: 100%;
    height: 1450px;
    border: 0;
}

/* Instagram */
.insta-box {
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #fbf1f5);
    border: 1px solid #f1e1e7;
    border-radius: var(--radius);
    padding: 32px;
}

/* Footer */
.footer {
    background: #2f292c;
    color: #f7eef2;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.footer a {
    color: #f7eef2;
    text-decoration: none;
}

.mini {
    font-size: 0.9rem;
    color: #d7c9cf;
}

.policy-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.policy-card-link .card {
    transition: transform 0.2s ease;
}

.policy-card-link:hover .card {
    transform: translateY(-5px);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-spacer {
    height: 60px;
}

/* Responsive */
@media (max-width: 860px) {
    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .section {
        flex: 1;
        padding: 80px 0;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 98px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 5%;
        background: #ffffff;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .grid,
    .grid.two,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

        .timetable {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .gallery {
    grid-template-columns: 1fr;
    }

    .hero {
        min-height: 70vh;
    }

    .brand img {
        height: 62px;
    }

    .about-photo {
        max-width: 100%;
        margin-top: 20px;
    }

}
