:root {
    --charcoal: #333333;
    --burgundy: #800020;
    --light-grey: #F4F4F4;
    --white: #FFFFFF;
    --text-grey: #666666;
    
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--charcoal);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Bar */
.top-bar { background: var(--charcoal); color: var(--light-grey); font-size: 0.8rem; padding: 5px 0; text-align: right; }
.top-bar span { margin-left: 20px; }

/* Header */
.biz-header { border-bottom: 3px solid var(--burgundy); padding: 20px 0; background: var(--white); position: sticky; top: 0; z-index: 1000; }
.header-grid { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 600; color: var(--charcoal); letter-spacing: 1px; }
.red { color: var(--burgundy); }

.biz-nav a { margin-left: 25px; font-weight: 500; font-size: 0.95rem; text-transform: uppercase; color: var(--text-grey); }
.biz-nav a:hover, .biz-nav a.active { color: var(--burgundy); }

.btn-red { background: var(--burgundy); color: var(--white) !important; padding: 10px 20px; border-radius: 2px; }
.btn-red:hover { background: var(--charcoal); }

/* Mobile Menu */
.menu-icon { display: none; font-size: 1.5rem; cursor: pointer; }
.mobile-drawer { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--charcoal); z-index: 2000; transition: 0.3s; padding: 20px; color: white; }
.mobile-drawer.open { right: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; border-bottom: 1px solid #555; padding-bottom: 10px; }
.close-drawer { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.mobile-drawer a { display: block; color: var(--light-grey); font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 20px; text-transform: uppercase; }

/* Hero */
.hero-business { height: 70vh; background-size: cover; background-position: center; position: relative; }
.overlay { width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; color: var(--white); width: 90%; max-width: 800px; }
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; font-weight: 300; }

.booking-strip { background: var(--white); padding: 20px; border-radius: 4px; display: inline-block; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
#centerForm { display: flex; gap: 15px; align-items: flex-end; flex-wrap: wrap; justify-content: center; }
.input-wrap { text-align: left; }
.input-wrap label { display: block; font-size: 0.75rem; font-weight: bold; color: var(--charcoal); margin-bottom: 5px; }
.input-wrap input, .input-wrap select { padding: 10px; border: 1px solid #ccc; width: 160px; font-family: var(--font-body); color: var(--text-grey); }
.btn-search { background: var(--charcoal); color: var(--white); border: none; padding: 12px 30px; font-weight: bold; cursor: pointer; border-radius: 2px; }
.btn-search:hover { background: var(--burgundy); }

/* Features Grid */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--charcoal); }
.red-line { width: 60px; height: 4px; background: var(--burgundy); margin: 15px auto; }
.red-line.left { margin: 15px 0; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-item { background: var(--light-grey); padding: 30px; text-align: center; transition: 0.3s; border-bottom: 3px solid transparent; }
.feature-item:hover { border-bottom-color: var(--burgundy); background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.feature-item .icon { font-size: 2.5rem; margin-bottom: 15px; color: var(--burgundy); }
.feature-item h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.2rem; }
.feature-item p { font-size: 0.9rem; color: var(--text-grey); }

/* About & Contact */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-col h1 { font-family: var(--font-head); font-size: 3rem; color: var(--charcoal); line-height: 1.1; }
.meeting-list { margin-top: 30px; list-style: none; }
.meeting-list li { margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.meeting-list strong { color: var(--burgundy); }
.img-col img { width: 100%; box-shadow: 15px 15px 0 var(--light-grey); }

.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.contact-details { background: var(--charcoal); color: var(--white); padding: 40px; }
.contact-details h2 { font-family: var(--font-head); margin-bottom: 20px; color: var(--light-grey); }
.info-box p { margin-bottom: 15px; font-size: 1.1rem; }

.biz-form .form-group { margin-bottom: 20px; }
.biz-form label { display: block; font-weight: bold; margin-bottom: 5px; color: var(--charcoal); }
.biz-form input, .biz-form select, .biz-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background: var(--light-grey); font-family: var(--font-body); }
.btn-submit { background: var(--burgundy); color: var(--white); padding: 15px 40px; border: none; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--charcoal); }

/* Reviews & Legal */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { border: 1px solid #ddd; padding: 30px; }
.review-card.highlight { background: var(--light-grey); border-color: var(--light-grey); }
.rating { color: var(--burgundy); font-weight: bold; margin-bottom: 15px; font-size: 1.2rem; }
.review-card p { font-style: italic; margin-bottom: 20px; color: var(--text-grey); }
.review-card strong { font-family: var(--font-head); font-size: 0.9rem; text-transform: uppercase; }

.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-family: var(--font-head); color: var(--charcoal); }
.legal-content h3 { color: var(--burgundy); margin-top: 30px; font-family: var(--font-head); }

/* Footer */
.biz-footer { background: var(--charcoal); color: #999; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #444; padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { color: var(--white); font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; }
.f-links a { color: #ccc; margin-left: 20px; }
.f-links a:hover { color: var(--white); }
.copyright { font-size: 0.8rem; text-align: center; }

/* Cookie Banner */
.cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--burgundy); color: var(--white); padding: 15px; text-align: center; z-index: 9999; display: none; }
.cookie-bar.active { display: block; animation: slideUp 0.5s; }
.cookie-bar button { background: var(--white); color: var(--burgundy); border: none; padding: 5px 20px; font-weight: bold; cursor: pointer; margin-left: 15px; }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 900px) {
    .biz-nav { display: none; }
    .menu-icon { display: block; }
    .hero-content h1 { font-size: 3rem; }
    #centerForm { flex-direction: column; }
    .input-wrap, .input-wrap input, .input-wrap select, .btn-search { width: 100%; }
    .features-grid, .about-flex, .reviews-grid, .contact-layout { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}