/* --- Variables & Reset --- */
:root {
    --color-burgundy: #780000;
    --color-burgundy-dark: #4a0000;
    --color-blush: #FFDAB9;
    --color-blush-light: #FFF0E5;
    --color-cream: #F9F7F5;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

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

ul {
    list-style: none;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-burgundy);
    color: white;
    border: 2px solid var(--color-burgundy);
}

.btn-primary:hover {
    background-color: var(--color-burgundy-dark);
    border-color: var(--color-burgundy-dark);
    transform: translateY(-2px);
}

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

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

.btn-full {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 247, 245, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 20px 0;
    transition: 0.3s;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-burgundy);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--color-burgundy);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    position: absolute;
    transition: 0.3s;
}

.mobile-menu-btn span:first-child { top: 0; }
.mobile-menu-btn span:last-child { bottom: 0; }

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--color-cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 540px;
}

.headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.subheadline {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Visual Elements */
.hero-visual {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #ddd;
}

.main-img {
    width: 70%;
    height: 80%;
    top: 10%;
    left: 10%;
    z-index: 2;
}

.accent-img {
    width: 55%;
    height: 45%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 8px solid var(--color-cream);
}

/* Geometric Shapes */
.geo-shape {
    position: absolute;
    z-index: 1;
}

.shape-circle {
    width: 120px;
    height: 120px;
    background: var(--color-blush);
    border-radius: 50%;
    top: -20px;
    left: -20px;
}

.shape-square {
    width: 80px;
    height: 80px;
    background: var(--color-burgundy);
    bottom: 20%;
    right: 10%;
    transform: rotate(15deg);
    z-index: 1;
}

/* Background Blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-blush-light);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #ffebeb;
    bottom: 0;
    left: 20%;
}

/* --- Marquee --- */
.marquee-strip {
    background: var(--color-burgundy);
    color: white;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.track span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 20px;
    text-transform: uppercase;
}

.sep {
    color: var(--color-blush);
    margin: 0 30px !important;
    font-size: 1rem !important;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--color-cream);
    padding: 40px;
    border-radius: var(--radius);
    transition: 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-blush);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy);
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- Gallery --- */
.gallery {
    padding: 100px 0;
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Spans */
.tall { grid-column: span 4; grid-row: span 2; }
.short { grid-column: span 5; grid-row: span 1; }
.medium { grid-column: span 3; grid-row: span 1; }
.wide { grid-column: span 6; grid-row: span 1; }

/* --- About --- */
.about {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-burgundy);
    border-radius: var(--radius);
    z-index: 1;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-burgundy);
    line-height: 1;
}

.stat .label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--color-burgundy);
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info .sub-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-details svg {
    color: var(--color-blush);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    color: var(--color-dark);
}

.contact-form h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-burgundy);
}

.form-success {
    display: none;
    margin-top: 15px;
    padding: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 6px;
    text-align: center;
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #888;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--color-blush);
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-dark);
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .hero-grid, .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .tall { grid-column: span 12; grid-row: span 1; height: 300px; }
    .short { grid-column: span 6; }
    .medium { grid-column: span 6; }
    .wide { grid-column: span 12; }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .short, .medium, .wide {
        grid-column: span 1;
        height: 250px;
    }
    
    .contact-wrapper {
        padding: 30px;
    }
}

/* Animation Utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
