:root {
    --bg: #f7f7f5;
    --bg-soft: #fcfcfa;
    --panel: #ffffff;
    --panel-2: #f2f2ee;
    --text: #1f2328;
    --muted: #66707a;
    --line: rgba(31, 35, 40, 0.08);
    --accent: #c7a56a;
    --accent-dark: #b28f53;
    --white: #ffffff;
    --max: 1200px;
    --radius: 18px;
    --shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #fcfcfa 0%, #f7f7f5 100%);
    color: var(--text);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
}

.site-main {
    min-height: 70vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
}
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    display: block;
    height: 70px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .site-logo {
        height: 42px;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav a {
    color: var(--muted);
    transition: 0.2s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: var(--text);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text);
    display: block;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(31, 35, 40, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 80;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    width: min(86vw, 360px);
    height: 100%;
    background: var(--panel);
    margin-left: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(31, 35, 40, 0.08);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.mobile-menu-close {
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    font-size: 1.05rem;
    color: var(--text);
}

.mobile-book-btn {
    margin-top: 1rem;
}

.hero {
    padding: 5rem 0 3rem;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split-section h2 {
    line-height: 1.1;
    margin: 0 0 1rem;
    color: var(--text);
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    max-width: 10ch;
    letter-spacing: -0.03em;
}

.hero-copy p,
.page-hero p {
    color: var(--muted);
    max-width: 60ch;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-dark);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-card,
.panel-card,
.info-card,
.rate-card,
.event-card,
.embed-wrap,
.empty-state,
.form-wrap,
.admin-table-wrap,
.cta-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 1rem;
}

.hero-image-placeholder {
    min-height: 340px;
    border-radius: calc(var(--radius) - 6px);
    background:
        linear-gradient(135deg, rgba(199, 165, 106, 0.10), rgba(255, 255, 255, 0.9)),
        linear-gradient(180deg, #f7f6f2, #ecebe6);
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 600;
}

.section {
    padding: 4.5rem 0;
}

.section-dark {
    background: linear-gradient(180deg, #f3f3ef 0%, #efefea 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    gap: 1.25rem;
}

.info-card,
.rate-card,
.cta-box {
    padding: 1.5rem;
}

.info-card h3,
.rate-card h3,
.cta-box h3,
.panel-card h3 {
    margin-top: 0;
    color: var(--text);
}

.info-card p,
.rate-card p,
.cta-box p,
.panel-card p {
    color: var(--muted);
}

.rate-card.featured {
    border-color: rgba(199, 165, 106, 0.35);
    box-shadow: 0 14px 34px rgba(199, 165, 106, 0.10);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.split-section {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.panel-card {
    padding: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.feature-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.page-hero {
    padding: 4rem 0 2rem;
}

.page-hero.slim {
    padding-bottom: 0;
}

.embed-wrap {
    overflow: hidden;
    padding: 0;
}

.embed-wrap iframe {
    width: 100%;
    min-height: 70vh;
    border: 0;
    display: block;
}

.events-list {
    display: grid;
    gap: 1.25rem;
}

.event-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1rem;
    padding: 1.25rem;
    align-items: start;
}

@media (min-width: 992px) {
    .events-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-date {
        width: 88px;
    }
}

.event-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.event-date {
    border-radius: 14px;
    background: var(--panel-2);
    display: grid;
    place-items: center;
    min-height: 88px;
    font-weight: 700;
    color: var(--accent-dark);
    border: 1px solid var(--line);
}

.event-content h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.event-meta {
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.empty-state {
    padding: 2rem;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #f3f3f3;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: #000;
}
.btn-secondary {
    background: var(--white);
    border: 1px solid rgba(31, 35, 40, 0.14);
    color: var(--text);
}

.btn-secondary:hover {
    background: #f4f4f1;
}

.centre-text {
    text-align: center;
}

.cta-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-box {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(31, 35, 40, 0.10);
    border-color: rgba(199, 165, 106, 0.30);
}

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--line);
    background: #fafaf8;
}

.footer-inner {
    display: block;
    width: 100%;
    padding: 3rem 0;
}

.footer-copy-block {
    width: 100%;
    max-width: none;
}

.footer-inner h3,
.footer-inner h4 {
    color: var(--text);
}

.footer-inner p {
    color: var(--muted);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 1rem 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.form-wrap {
    max-width: 720px;
    padding: 1.5rem;
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 600;
    color: var(--text);
}

.admin-form input,
.admin-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(31, 35, 40, 0.12);
    background: #ffffff;
    color: var(--text);
}

.checkbox-row {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.checkbox-row input {
    width: auto;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.flash-message {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(199, 165, 106, 0.12);
    border: 1px solid rgba(199, 165, 106, 0.22);
    color: var(--text);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    color: var(--text);
}

.admin-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-actions form {
    margin: 0;
}

.admin-actions button {
    background: transparent;
    color: #c25555;
    border: 0;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

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

    .card-grid.three,
    .cta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-real-image {
    width: 100%;
    min-height: 340px;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius) - 6px);
}