/* ---- Variables ---- */
:root {
    --cream: #faf7f2;
    --cream-dark: #f0ebe1;
    --green: #2c4a2e;
    --green-light: #3d6640;
    --green-muted: #e8f0e8;
    --amber: #c4925a;
    --amber-light: #d4a876;
    --text: #1c1c1a;
    --text-muted: #6b6660;
    --border: #ddd8cf;
    --white: #ffffff;

    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;

    --radius: 6px;
    --shadow: 0 2px 20px rgba(44, 74, 46, 0.08);
    --shadow-md: 0 4px 40px rgba(44, 74, 46, 0.12);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

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

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

/* ---- Layout ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    background: rgba(250, 247, 242, 0.94);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.nav-link.nav-cta {
    background: var(--green);
    color: var(--cream);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: background 0.2s;
}

.nav-link.nav-cta:hover {
    background: var(--green-light);
    color: var(--cream);
}

.nav-link.nav-cta.active {
    background: var(--amber);
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
    transition: all 0.25s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.mobile-nav.open {
    max-height: 300px;
}

.mobile-nav .nav-link {
    padding: 16px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text);
}

/* ---- Hero ---- */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 146, 90, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--green);
    max-width: 700px;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: italic;
    color: var(--amber);
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--green);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--cream);
    transform: translateY(-1px);
}

/* ---- Section ---- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--cream-dark);
}

.section-green {
    background: var(--green);
    color: var(--cream);
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 500;
    margin-bottom: 14px;
    display: block;
}

.section-green .section-label {
    color: rgba(196, 146, 90, 0.8);
}

.section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--green);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-green h2 {
    color: var(--cream);
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.section-green .section-lead {
    color: rgba(250, 247, 242, 0.75);
}

/* ---- Grid ---- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

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

/* 6 cards on one row */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* ---- Cards ---- */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 20px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}

.green-card {
    background: var(--green);
    border: 1px solid rgba(250, 247, 242, 0.25);
    border-radius: 10px;
    padding: 32px 28px;
    text-align: center;
    color: var(--white);
}


.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Material Icons inside card-icon */
.card-icon {
    width: 42px;
    height: 42px;
    background: var(--green-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.card-icon .material-icons {
    font-size: 1.4rem;
    color: var(--green);
    line-height: 1;
}

.card h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 10px;
    font-weight: 500;
}

.card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- List style ---- */
.styled-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.styled-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    margin-top: 8px;
}

.section-green .styled-list li {
    color: rgba(250, 247, 242, 0.88);
}

.section-green .styled-list li::before {
    background: var(--amber-light);
}

/* ---- Pricing boxes ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.price-card {
    background: rgba(250, 247, 242, 0.08);
    border: 1px solid rgba(250, 247, 242, 0.25);
    border-radius: 10px;
    padding: 32px 28px;
    text-align: center;
}

.price-card.featured {
    background: rgba(250, 247, 242, 0.14);
    border-color: rgba(250, 247, 242, 0.25);
}

.price-location {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 14px;
    display: block;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--cream);
    font-weight: 500;
    line-height: 1;
}

.price-unit {
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.55);
    margin-top: 6px;
}

.price-note {
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.65);
    margin-top: 16px;
    line-height: 1.5;
}

/* ---- Subjects grid ---- */
.subjects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.subject-tag {
    background: var(--green-muted);
    color: var(--green);
    border: 1px solid rgba(44, 74, 46, 0.15);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.2s;
}

.subject-tag:hover {
    background: var(--green);
    color: var(--cream);
}

/* ---- CTA strip ---- */
.cta-strip {
    background: var(--amber);
    padding: 64px 0;
    text-align: center;
}

.cta-strip h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--white);
    font-weight: 500;
    margin-bottom: 10px;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 1rem;
}

.btn-white {
    background: var(--white);
    color: var(--amber);
    font-weight: 500;
}

.btn-white:hover {
    background: var(--cream);
    color: var(--amber);
    transform: translateY(-1px);
}

/* ---- About page ---- */
.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 80px 0 60px;
}

.about-sidebar {
    background: var(--green);
    color: var(--cream);
    border-radius: 12px;
    padding: 36px 30px;
}

.about-sidebar h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--amber-light);
    letter-spacing: 0.02em;
}

.about-sidebar .styled-list li {
    font-size: 0.875rem;
    color: white;
}

/* ---- Divider ---- */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* ---- Booking form ---- */
.booking-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 0;
}

.booking-wrap h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--green);
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.booking-wrap .subtitle {
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
}

input,
select,
textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(44, 74, 46, 0.08);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 16px;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.form-notice {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ---- Thank you page ---- */
.thanks-wrap {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    padding: 0 28px;
}

.thanks-icon {
    width: 72px;
    height: 72px;
    background: var(--green-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 28px;
}

.thanks-wrap h1 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 16px;
    font-weight: 500;
}

.thanks-wrap p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* ---- Admin ---- */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
}

.login-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-md);
}

.login-box h1 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--green);
    margin-bottom: 6px;
    font-weight: 500;
}

.login-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.admin-header {
    background: var(--green);
    color: var(--cream);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-header .logo-name,
.admin-header .logo-sub {
    color: var(--cream);
}

.admin-header .logo-sub {
    color: var(--amber-light);
}

.admin-logout {
    font-size: 0.82rem;
    color: rgba(250, 247, 242, 0.65);
    background: none;
    border: 1px solid rgba(250, 247, 242, 0.2);
    border-radius: 4px;
    padding: 7px 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-logout:hover {
    background: rgba(250, 247, 242, 0.1);
    color: var(--cream);
}

.admin-main {
    padding: 40px 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 28px;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--green);
    font-weight: 500;
    display: block;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-sans);
    color: var(--text-muted);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--cream);
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bookings-table th {
    background: var(--green);
    color: var(--cream);
    padding: 14px 16px;
    text-align: left;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.bookings-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    vertical-align: top;
}

.bookings-table tr:last-child td {
    border-bottom: none;
}

.bookings-table tr:hover td {
    background: var(--cream);
}

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.action-form {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.15s;
    color: var(--text);
}

.action-btn:hover {
    background: var(--cream-dark);
}

.action-btn.confirm {
    border-color: #6ee7b7;
    color: #065f46;
}

.action-btn.confirm:hover {
    background: #d1fae5;
}

.action-btn.cancel {
    border-color: #fca5a5;
    color: #991b1b;
}

.action-btn.cancel:hover {
    background: #fee2e2;
}

.action-btn.delete {
    border-color: #fca5a5;
    color: #7f1d1d;
}

.action-btn.delete:hover {
    background: #7f1d1d;
    color: var(--white);
    border-color: #7f1d1d;
}

.empty-state {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--green);
    color: var(--cream);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .logo-name {
    color: var(--cream);
}

.footer-brand .logo-sub {
    color: var(--amber-light);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.875rem;
    color: rgba(250, 247, 242, 0.6);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(250, 247, 242, 0.65);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(250, 247, 242, 0.1);
    padding: 20px 28px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(250, 247, 242, 0.35);
}

/* ---- Scroll reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {

    .grid-2,
    .grid-3,
    .pricing-grid,
    .about-intro {
        grid-template-columns: 1fr;
    }

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

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .section {
        padding: 56px 0;
    }

    .booking-wrap {
        padding: 48px 0;
    }

    .admin-stats {
        flex-direction: column;
    }

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


/* About page */
.about-intro {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 80px 0 60px;
}

.about-photo-col {
    position: sticky;
    top: 5rem;
}

.about-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}

.about-sidebar {
    margin-top: 1.25rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
}

.about-sidebar h3 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin: 0 0 14px;
}

.about-sidebar .styled-list li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-left: 10px;
    border-left: 2px solid var(--border);
    line-height: 1.5;
    display: block;
}

.about-sidebar .styled-list li::before {
    display: none;
}

.about-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--green);
    margin: 0 0 2rem;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.about-content .text-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (max-width: 680px) {
    .about-intro {
        grid-template-columns: 1fr;
        padding: 48px 0 40px;
    }

    .about-photo-col {
        position: static;
    }

    .about-photo {
        aspect-ratio: 10 / 12;
        object-position: center top;
    }
}