:root {
    --primary-color: #1B3A4B; /* Deep Royal Blue */
    --accent-color: #C19A6B; /* Wood/Oak color */
    --bg-color: #f4f4f4;
    --white: #ffffff;
    --text-color: #333333;
    --font-heading: 'Georgia', 'Times New Roman', serif; /* British Traditional */
    --font-body: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo span { color: var(--accent-color); }

.nav-list { display: flex; gap: 30px; align-items: center; }
.nav-list a { font-weight: 500; color: var(--primary-color); }
.nav-list a:hover { color: var(--accent-color); }

.btn-nav {
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 2px;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* Hero */
.hero {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero p { font-size: 1.3rem; margin-bottom: 30px; opacity: 0.9; }

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover { background: #a07d50; }

/* Services */
section { padding: 80px 0; }
.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto 0;
}

.services { background: var(--bg-color); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About */
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.about-content p { margin-bottom: 20px; font-size: 1.1rem; color: #555; }

/* Contact Form */
.contact { background: var(--white); }
.contact-wrapper { max-width: 600px; margin: 0 auto; }

.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-group input { width: auto; margin-top: 5px; }
.checkbox-group label { font-weight: 400; font-size: 0.85rem; }
.checkbox-group a { color: var(--primary-color); text-decoration: underline; }

/* Footer */
.footer {
    background: var(--primary-color);
    color: #e0e0e0;
    padding: 60px 0 20px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-info h4 { color: var(--white); margin-bottom: 20px; font-family: var(--font-heading); font-size: 1.2rem; }
.footer-links a { display: block; margin-bottom: 10px; opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: var(--accent-color); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-left: 5px solid var(--primary-color);
    display: none;
    z-index: 9999;
}
.cookie-content p { margin-bottom: 15px; font-size: 0.9rem; }
.cookie-content a { color: var(--primary-color); text-decoration: underline; }
.btn-sm {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-list { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .footer-content { flex-direction: column; }
    .cookie-banner { bottom: 0; right: 0; left: 0; max-width: 100%; }
}