/* ===== VARIABLES ===== */
:root {
    --green:        #5B8C2A;
    --green-dark:   #3E6118;
    --green-light:  #EEF5E6;
    --orange:       #D97B1A;
    --orange-dark:  #B5620E;
    --orange-light: #FDF3E7;
    --text:         #1C2B10;
    --text-muted:   #5C6B52;
    --border:       #D4E0C8;
    --white:        #FFFFFF;
    --bg:           #F7FAF3;
    --radius:       10px;
    --shadow:       0 2px 16px rgba(91,140,42,0.10);
    --transition:   0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3.25rem 0; }
.section-alt { background: var(--bg); }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { line-height: 1.25; font-weight: 800; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }
.section-heading { text-align: center; margin-bottom: 1.5rem; }
.section-heading h2 { margin-bottom: 0.5rem; }
.section-heading p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.accent { color: var(--orange); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ===== TOPBAR ===== */
.header-topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-weight: 600;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar-left {
    color: #ffffff;
    font-size: 0.83rem;
}
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}
.header-topbar .topbar-contact a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.15s;
    font-weight: 600;
    font-size: 0.86rem;
}
.header-topbar .topbar-contact a:hover { color: var(--orange); }
@media (max-width: 640px) {
    .topbar-left { display: none; }
    .topbar-inner { justify-content: center; }
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    gap: 1.5rem;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}
.logo-img { width: 56px; height: 56px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 1.25rem; font-weight: 800; color: var(--green); }
.logo-tag { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.03em; text-transform: uppercase; }

.site-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: all var(--transition);
}
.site-nav a:hover, .site-nav a.active { color: var(--green); background: var(--green-light); }
.site-nav .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
}
.site-nav .nav-cta:hover { background: var(--orange-dark); }
.site-nav .nav-cta.active { background: var(--orange-dark); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--green); border-radius: 3px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--orange-light) 100%);
    padding: 3rem 0 2.5rem;
    text-align: center;
}
.hero-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-dark);
    border: 1px solid var(--orange);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero h1 { max-width: 750px; margin: 0 auto 1.25rem; }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 1.75rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats { background: var(--green); color: var(--white); padding: 1.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 600; }

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem;
    transition: all var(--transition);
}
.card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.card-icon {
    width: 52px; height: 52px;
    background: var(--green-light);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem; align-items: center; }
.about-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 380px;
}
.about-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }
.about-content .btn { margin-top: 0.5rem; }
.about-list { margin: 1rem 0; }
.about-list li { padding: 0.4rem 0; color: var(--text-muted); display: flex; gap: 0.6rem; }
.about-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* ===== TESTIMONIAL ===== */
.testimonial-section { background: var(--green); color: white; padding: 2.5rem 0; }
.testimonial-inner { max-width: 750px; margin: 0 auto; text-align: center; }
.quote-mark { font-size: 4rem; line-height: 1; color: var(--orange); font-family: Georgia, serif; }
.testimonial-text { font-size: 1.2rem; font-style: italic; margin: 0.75rem 0 1rem; color: rgba(255,255,255,0.92); }
.testimonial-attr { font-weight: 700; font-size: 0.9rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; text-transform: uppercase; }

/* Multiple testimonials (About page) */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.testimonial-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.75rem; box-shadow: var(--shadow); }
.testimonial-card .tq-mark { font-family: Georgia, serif; font-size: 2.75rem; line-height: 0.5; color: var(--orange); }
.testimonial-card .tq-text { font-style: italic; color: var(--text); margin: 0.5rem 0 1rem; line-height: 1.65; }
.testimonial-card .tq-attr { font-weight: 700; font-size: 0.82rem; color: var(--green); letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--orange-light); border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); padding: 2rem 0; text-align: center; }
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--orange-light) 100%);
    padding: 2.75rem 0;
    text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== ABOUT PAGE ===== */
.profile-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--shadow);
}
.profile-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 3px solid var(--green-light);
    box-shadow: var(--shadow);
}
.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    flex-shrink: 0;
    border: 4px solid var(--green);
}
.profile-info h2 { margin-bottom: 0.25rem; }
.profile-role { color: var(--orange); font-weight: 700; margin-bottom: 1rem; }
.profile-info p { color: var(--text-muted); margin-bottom: 0.75rem; }
.timeline { margin-top: 1.5rem; }
.timeline h2 { margin-bottom: 1rem; }
.timeline-item {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    position: relative;
}
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-light);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.timeline-body h4 { color: var(--green); margin-bottom: 0.2rem; }
.timeline-body p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== SERVICES PAGE ===== */
.service-detail {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    transition: all var(--transition);
}
.service-detail:hover { border-color: var(--green); box-shadow: var(--shadow); }
.service-detail .card-icon { margin: 0; flex-shrink: 0; }
.service-detail h3 { margin-bottom: 0.5rem; }
.service-detail p { color: var(--text-muted); margin-bottom: 0.75rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.tag {
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 50px;
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ===== BOOKING PAGE ===== */
.booking-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.booking-form-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.booking-form-card h2 { margin-bottom: 0.4rem; }
.booking-form-card .subtitle { color: var(--text-muted); margin-bottom: 1.5rem; }
.booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.sidebar-card h3 { margin-bottom: 1rem; font-size: 1.05rem; }
.sidebar-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.sidebar-card a { color: var(--green); font-weight: 700; }
.sidebar-card.highlight { background: var(--green); border-color: var(--green); color: white; }
.sidebar-card.highlight h3 { color: white; }
.sidebar-card.highlight p { color: rgba(255,255,255,0.85); }
.sidebar-card.highlight a { color: var(--orange-light); }

/* ===== FORM STYLES ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: 0.9rem; color: var(--text); }
label .req { color: var(--orange); margin-left: 2px; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    appearance: none;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(91,140,42,0.12);
}
input.error, select.error, textarea.error { border-color: #c0392b; }
textarea { resize: vertical; min-height: 120px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B8C2A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-hint { font-size: 0.8rem; color: var(--text-muted); }
.form-error { color: #c0392b; font-size: 0.82rem; font-weight: 600; }
.form-section-label {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 0.4rem;
    margin-top: 0.5rem;
}
.honeypot { display: none; }

.radio-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.4rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    transition: all var(--transition);
}
.radio-label input { display: none; }
.radio-label:hover, .radio-label:has(input:checked) {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-light);
}
.submit-row { grid-column: 1 / -1; margin-top: 0.75rem; }
.submit-row .btn { width: 100%; text-align: center; font-size: 1.05rem; padding: 0.9rem; }

/* ===== ALERT ===== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-weight: 600;
    border: 1.5px solid;
}
.alert-success { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.alert-error { background: #fdf0f0; border-color: #e74c3c; color: #922b21; }

/* ===== THANK YOU PAGE ===== */
.thankyou-wrap { text-align: center; padding: 4rem 0; }
.thankyou-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.thankyou-wrap h1 { margin-bottom: 1rem; }
.thankyou-wrap p { color: var(--text-muted); max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--text); color: rgba(255,255,255,0.85); padding: 3rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 2rem; }
.footer-brand .footer-logo { width: 60px; margin-bottom: 1rem; background: #fff; padding: 8px; border-radius: 10px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 280px; line-height: 1.6; }
.site-footer h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.site-footer a:hover { color: var(--orange); }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2rem; padding: 1rem 0; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-img-wrap { min-height: 220px; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-sidebar { order: -1; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .profile-card { flex-direction: column; align-items: center; text-align: center; }
    .profile-photo { width: 170px; height: 170px; }
    .profile-avatar { width: 110px; height: 110px; font-size: 2.8rem; }
}
@media (max-width: 680px) {
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 2px solid var(--border);
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; gap: 0.25rem; }
    .site-nav a { display: block; border-radius: var(--radius); padding: 0.6rem 1rem; }
    .site-header { position: sticky; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .footer-inner { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; }
}

/* ===== BOOKING CALENDAR ===== */
.bcal-section { margin-bottom: 2rem; }
.bcal-step-title {
    display: flex; align-items: center; gap: 0.65rem;
    font-size: 1.15rem; margin-bottom: 1.25rem;
}
.bcal-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--orange); color: white;
    font-size: 0.85rem; font-weight: 800; flex-shrink: 0;
}
.bcal-divider { border: none; border-top: 1.5px solid var(--border); margin: 2rem 0; }
.bcal-no-dates { color: var(--text-muted); font-size: 0.95rem; }

.bcal-unavail-notice {
    display: flex; align-items: flex-start; gap: 0.85rem;
    background: #fff8f0; border: 1.5px solid var(--orange);
    border-radius: var(--radius); padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.bcal-unavail-notice span { font-size: 1.2rem; flex-shrink: 0; }
.bcal-unavail-notice strong { display: block; margin-bottom: 0.25rem; color: #7a4200; }
.bcal-unavail-notice p { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--text-muted); }
.bcal-unavail-notice a { color: var(--green); }

/* Calendar nav */
.bcal-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-bottom: 0.6rem;
}
.bcal-nav-btn {
    width: 38px; height: 38px; flex-shrink: 0;
    border: none; border-radius: var(--radius);
    background: var(--green); color: white;
    font-size: 1.2rem; font-weight: 800; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.bcal-nav-btn:hover:not(:disabled) { background: var(--green-dark); }
.bcal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.bcal-month-label { font-weight: 800; font-size: 1.05rem; min-width: 130px; text-align: center; }

/* Calendar grid */
.bcal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 3px; margin-bottom: 1.25rem;
}
.bcal-cell {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: 0.82rem; font-weight: 600;
}
.bcal-hdr {
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text-muted);
    aspect-ratio: unset; padding: 0.2rem 0;
}
.bcal-empty { background: none; }
.bcal-date  { background: white; border: 1.5px solid #eee; }
.bcal-off   { color: #ccc; border-color: #f0f0f0; cursor: default; }
.bcal-avail { border-color: var(--green); background: var(--green-light); color: var(--green-dark); cursor: pointer; transition: all 0.12s; }
.bcal-avail:hover { background: var(--green); color: white; }
.bcal-today { box-shadow: 0 0 0 2px var(--orange); }
.bcal-sel   { background: var(--orange) !important; border-color: var(--orange) !important; color: white !important; }

/* Time slots */
.bcal-slots-wrap { margin-bottom: 1rem; }
.bcal-slots-title { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.bcal-slot-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.bcal-slot-btn {
    padding: 0.45rem 1rem; border-radius: 20px;
    border: 1.5px solid var(--green); background: white;
    color: var(--green-dark); font-weight: 700; font-size: 0.875rem;
    cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.bcal-slot-btn:hover  { background: var(--green); color: white; }
.bcal-slot-btn.active { background: var(--orange); border-color: var(--orange); color: white; }

/* Summary */
.bcal-summary {
    margin-top: 0.75rem; padding: 0.65rem 1rem;
    background: var(--green-light); border: 1.5px solid var(--green);
    border-radius: var(--radius); font-size: 0.9rem; color: var(--green-dark);
}

/* Sidebar availability card */
.avail-card { background: white; }
.avail-status { font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem !important; }
.avail-status--on  { color: #2e6e1e; }
.avail-status--off { color: var(--orange); }

/* ===== AVAILABILITY (booking page — old) ===== */
.avail-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    border: 1.5px solid;
}
.avail-notice--off {
    background: #fff8f0;
    border-color: var(--orange);
    color: #7a4200;
}
.avail-notice--off strong { display: block; margin-bottom: 0.2rem; }
.avail-notice--off p { margin: 0; font-size: 0.9rem; }
.avail-notice-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }

.avail-card { background: white; }
.avail-status { font-weight: 700; font-size: 0.875rem; margin-bottom: 0.75rem !important; }
.avail-status--on  { color: #2e6e1e; }
.avail-status--off { color: var(--orange); }

.avail-day-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.avail-day-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border);
}
.avail-day-list li:last-child { border-bottom: none; }
.avail-day-name  { font-weight: 700; color: var(--text); }
.avail-day-hours { color: var(--text-muted); font-size: 0.82rem; }
.avail-note { font-size: 0.82rem !important; color: var(--text-muted) !important; font-style: italic; margin-top: 0.5rem !important; }

/* ===== WORK TO DATE PAGE ===== */
.work-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}
.work-filter-btn {
    padding: 0.4rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    background: white;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
}
.work-filter-btn:hover { border-color: var(--green); color: var(--green); }
.work-filter-btn.active { background: var(--green); border-color: var(--green); color: white; }

.work-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.work-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.1rem;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.work-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.work-card-icon {
    font-size: 2rem;
    line-height: 1;
    padding-top: 0.25rem;
    text-align: center;
}
.work-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}
.work-year {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    background: var(--bg);
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
}
.work-cat {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
}
.work-publisher {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}
.work-publisher::before { content: '·'; margin-right: 0.4rem; }
.work-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.work-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}
.work-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
}
.btn-sm {
    font-size: 0.82rem;
    padding: 0.35rem 0.85rem;
}

@media (max-width: 600px) {
    .work-card {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .work-card-icon { font-size: 1.75rem; text-align: left; }
}
.work-card-title a { color: inherit; text-decoration: none; }
.work-card-title a:hover { color: var(--green); }

/* ===== NEWS PAGE ===== */
.news-last-updated {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.news-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.news-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--green);
}
.news-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.news-source {
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.news-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.news-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}
.news-card-title a {
    color: var(--text);
    text-decoration: none;
}
.news-card-title a:hover { color: var(--green); }
.news-card-summary {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin: 0;
}
.news-card-link {
    align-self: flex-start;
    margin-top: 0.25rem;
}
.news-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

/* Archive */
.news-archive-section {
    margin-top: 2.5rem;
    border-top: 2px solid var(--border);
    padding-top: 1.5rem;
}
.news-archive-toggle {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}
.news-archive-toggle:hover {
    border-color: var(--green);
    color: var(--green);
}
.archive-chevron { font-size: 0.7rem; }
.news-archive-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.news-archive-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.news-archive-item:last-child { border-bottom: none; }
.news-archive-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.news-archive-title {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    line-height: 1.35;
}
.news-archive-title:hover { color: var(--green); }
.news-archive-summary {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* ===== SOCIAL MEDIA ===== */
.topbar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.85;
    transition: opacity 0.15s;
    padding: 0 0.1rem;
}
.topbar-social:hover { opacity: 1; color: #ffffff; }

.footer-social {
    display: flex;
    gap: 0.85rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}
.footer-social a:hover { color: var(--green); }
