:root {
    --bg: #f8f3ed;
    --bg-soft: #fcf8f4;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #fffdfb;
    --text: #5f493d;
    --text-soft: #7e675a;
    --primary: #b3424f;
    --primary-dark: #8d2c3a;
    --gold: #ccb189;
    --line: rgba(167, 138, 112, 0.22);
    --shadow: 0 18px 40px rgba(117, 89, 70, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.8), transparent 26%),
        radial-gradient(circle at bottom right, rgba(229, 207, 186, 0.45), transparent 28%),
        linear-gradient(180deg, #f6f1eb 0%, #fdfaf7 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.site-shell { min-height: 100vh; }
.section { padding: 88px 0; }
.section-soft { background: rgba(255,255,255,0.35); }
.section-accent { padding-top: 28px; padding-bottom: 96px; }
.narrow { max-width: 840px; }

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.05;
    margin: 0 0 18px;
    color: #5a4033;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.8rem; }
p { margin: 0 0 16px; line-height: 1.75; color: var(--text-soft); }

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}
.eyebrow-light { color: rgba(255,255,255,0.85); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,0.65); border-color: var(--line); }
.btn-light { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: #fff; }

.content-card,
.feature-card,
.footer-card,
.price-table,
.gallery-item,
.map-placeholder,
.cta-panel,
.booking-calendar-card,
.booking-slots-card {
    background: var(--surface);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow);
}

.content-card,
.feature-card,
.booking-calendar-card,
.booking-slots-card,
.price-table,
.gallery-item,
.map-placeholder {
    border-radius: var(--radius-lg);
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.split-grid,
.page-grid,
.card-grid,
.footer-grid,
.booking-layout {
    display: grid;
    gap: 24px;
}
.split-grid,
.page-grid,
.booking-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.text-link {
    font-weight: 700;
    color: var(--primary-dark);
}

.page-hero {
    padding: 110px 0 40px;
    text-align: center;
}

.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--text); }
.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(146, 118, 98, 0.2);
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
}

@media (max-width: 960px) {
    .split-grid,
    .page-grid,
    .card-grid,
    .footer-grid,
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .section { padding: 72px 0; }
}

@media (max-width: 640px) {
    .container { width: min(var(--container), calc(100% - 20px)); }
    .section { padding: 60px 0; }
    .page-hero { padding-top: 96px; }
}
