@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Lora:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;700&display=swap');

:root {
    --heritage-red: #C81A19;
    --heritage-red-dark: #9e1413;
    --slate-dark: #1f2225;
    --slate-medium: #363a40;
    --bg-light: #f4f4f4;
    --bg-white: #ffffff;
    --text-dark: #2c3033;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    scroll-behavior: smooth;
    font-size: 1.05rem;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Header - Refined Metallic Look */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--slate-medium) 0%, var(--slate-dark) 100%);
    border-bottom: 2px solid var(--heritage-red);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    background: rgb(255, 255, 255);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 60px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--heritage-red);
    box-shadow: inset 0 -3px 0 var(--heritage-red);
}

.btn-contact {
    background: var(--heritage-red);
    color: white;
    padding: 0.8rem 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(200, 26, 25, 0.3);
    border: 2px solid transparent;
}

.btn-contact:hover {
    background: transparent;
    color: var(--heritage-red);
    border-color: var(--heritage-red);
    background: rgba(255, 255, 255, 0.1);
}

/* Vertical Split Hero Section */
.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 96px;
    /* Offset for fixed header */
    background: var(--slate-dark);
}

.hero-split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, var(--heritage-red) 0%, var(--heritage-red-dark) 100%);
    position: relative;
    padding: 4rem;
}

.hero-split-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
}

.hero-split-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
}

.hero-split-inner h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-split-inner p {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fcebeb;
    line-height: 1.6;
}

.hero-split-image {
    flex: 1;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    border-left: 10px solid white;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.welcome h2 {
    color: var(--heritage-red);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.welcome p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Services */
.services {
    background: white;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 8px;
    border-top: 5px solid var(--heritage-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--heritage-red);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--slate-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Testimonials Section */
#testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    color: var(--heritage-red);
    font-size: 3rem;
    margin-bottom: 3rem;
}

.testimonials-vertical {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    border-left: 6px solid var(--heritage-red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--slate-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--heritage-red);
    margin-bottom: 0.2rem;
}

.testimonial-location {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background: var(--slate-dark);
    color: #cccccc;
    padding: 80px 0 40px;
    border-top: 8px solid var(--heritage-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.footer-info h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--heritage-red);
}

/* Responsive */
@media (max-width: 992px) {
    nav.container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-split-image {
        min-height: 400px;
        border-left: none;
        border-top: 10px solid white;
    }

    .hero-split-inner h1 {
        font-size: 3rem;
    }
}