:root {
    --burgundy: #6f1027;
    --burgundy-dark: #4f0c1c;
    --gold: #b88a4a;
    --gold-dark: #9a7038;
    --cream: #faf7f3;
    --white: #ffffff;
    --text: #2d2d2d;
    --muted: #666666;
    --border: #e7dfd7;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

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

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 2.2rem;
    color: var(--burgundy);
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
}

.btn-secondary {
    background: var(--burgundy);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--burgundy-dark);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 18px 0;
}

.brand img {
    height: 70px;
    width: auto;
}

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

.main-nav a {
    font-weight: 600;
    color: var(--text);
    position: relative;
}

.main-nav a:hover {
    color: var(--burgundy);
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(47, 13, 20, 0.35), rgba(47, 13, 20, 0.35)),
        url('https://images.unsplash.com/photo-1509749837427-ac94a2553d0e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(111,16,39,0.55) 0%, rgba(111,16,39,0.15) 50%, rgba(0,0,0,0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 650px;
    color: var(--white);
    padding: 40px 0;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 560px;
}

/* Forms */
.journey-form {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.journey-form select,
.journey-form button {
    min-height: 52px;
}

.journey-form select {
    flex: 1 1 220px;
    border: none;
    border-radius: 10px;
    padding: 0 16px;
    background: var(--white);
    font-size: 1rem;
    color: var(--text);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-height: 420px;
    object-fit: cover;
    width: 100%;
}

.about-text h2 {
    font-size: 2.4rem;
    color: var(--burgundy);
    margin-bottom: 18px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* Services */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 14px;
}

.card p {
    color: var(--muted);
    margin-bottom: 20px;
}

/* Journey banner */
.journey-banner {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
}

.journey-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 36px;
    border-radius: var(--radius);
}

.journey-copy h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    background: #3a0b16;
    color: #f5e9dd;
    padding-top: 60px;
}

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

.footer-logo {
    height: 70px;
    width: auto;
    filter: brightness(1.05);
}

.site-footer h4 {
    margin-bottom: 14px;
    color: var(--white);
}

.site-footer li,
.site-footer p {
    margin-bottom: 10px;
    color: #eadccd;
}

.site-footer a:hover {
    color: #ffffff;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 18px 0;
    color: #d8c6b8;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .about-grid,
    .footer-grid,
    .journey-box,
    .cards {
        grid-template-columns: 1fr;
    }

    .journey-box {
        display: block;
    }

    .journey-copy {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .brand img {
        height: 56px;
    }

    .hero {
        min-height: 75vh;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-text h2,
    .section-heading h2,
    .journey-copy h2 {
        font-size: 1.9rem;
    }

    .nav-wrap {
        flex-wrap: wrap;
    }
}