/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette */
    --steel-gray: #4a5568;
    --rust-orange: #c53030;
    --rust-brown: #8b4513;
    --off-white: #f7fafc;
    --deep-black: #1a1a1a;
    --light-gray: #e2e8f0;
    --warm-white: #fefefe;
    
    /* Typography */
    --font-title: 'Roboto Slab', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --element-margin: 2rem;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--deep-black);
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow-x: hidden;
}

/* Watermark */
.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.03;
    z-index: -1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 C30 15, 25 35, 30 50 C35 65, 55 70, 70 60 C80 50, 75 30, 65 25 C60 20, 55 15, 50 10 Z" fill="%23c53030"/><circle cx="45" cy="35" r="3" fill="%234a5568"/><path d="M40 20 Q45 15, 50 20" stroke="%234a5568" stroke-width="2" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: linear-gradient(45deg, var(--steel-gray) 0%, var(--deep-black) 100%);
    color: var(--warm-white);
    text-align: center;
    padding: 3rem 0 2rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.05) 2px,
        rgba(255, 255, 255, 0.05) 4px
    );
}

header h1 {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

header .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Main content */
main {
    padding: var(--section-padding);
}

section {
    margin-bottom: var(--element-margin);
}

/* Hero section */
.hero h2 {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    color: var(--steel-gray);
    margin-bottom: var(--element-margin);
    font-weight: 400;
}

/* Main image */
.main-image {
    text-align: center;
    margin: 3rem 0;
}

.main-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border: 3px solid var(--steel-gray);
    border-radius: 8px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-image img:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

/* Introduction */
.intro {
    background: var(--warm-white);
    padding: 2rem;
    border-left: 5px solid var(--rust-orange);
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.intro h3 {
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--steel-gray);
    margin-bottom: 1rem;
    font-weight: 400;
}

.intro p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.7;
}

/* Quote */
.quote {
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.quote p {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-style: italic;
    color: var(--rust-brown);
    font-weight: 300;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(196, 48, 48, 0.05) 0%, rgba(139, 69, 19, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(196, 48, 48, 0.2);
}

.quote p::before,
.quote p::after {
    content: '"';
    font-size: 3rem;
    color: var(--rust-orange);
    position: absolute;
    font-family: var(--font-title);
}

.quote p::before {
    top: -0.5rem;
    left: 1rem;
}

.quote p::after {
    bottom: -1.5rem;
    right: 1rem;
}

/* Construction section */
.construction {
    background: linear-gradient(135deg, var(--steel-gray) 0%, #2d3748 100%);
    color: var(--warm-white);
    padding: 3rem 0;
    border-radius: 12px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.construction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(196, 48, 48, 0.1) 10px,
        rgba(196, 48, 48, 0.1) 20px
    );
}

.construction-notice {
    text-align: center;
    position: relative;
    z-index: 1;
}

.construction h3 {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--off-white);
}

.construction p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 1.5rem;
}

.construction .patience {
    font-style: italic;
    opacity: 0.9;
}

.construction em {
    color: var(--rust-orange);
    font-weight: 600;
}

/* Contact section */
.contact {
    background: var(--warm-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.contact h3 {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--steel-gray);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details {
    text-align: center;
}

.contact-details p {
    margin-bottom: 0.8rem;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
}

.contact-details strong {
    color: var(--rust-brown);
}

.contact-details address {
    font-style: normal;
    margin-bottom: 1rem;
    color: var(--steel-gray);
}

.contact-details a {
    color: var(--rust-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--rust-brown);
    text-decoration: underline;
}

/* Call to action button */
.cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(45deg, var(--rust-orange) 0%, var(--rust-brown) 100%);
    color: var(--warm-white);
    padding: 1.2rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(196, 48, 48, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(196, 48, 48, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.btn-cta:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: var(--deep-black);
    color: var(--off-white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive design */
@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .contact-details {
        text-align: left;
    }
    
    .cta {
        text-align: right;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .main-image img {
        border-width: 2px;
    }
    
    .intro {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .quote p {
        padding: 1.5rem;
        font-size: 1.3rem;
    }
    
    .construction {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .contact {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
}

/* Print styles */
@media print {
    .watermark,
    .construction::before,
    header::before {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .btn-cta {
        background: #666;
        color: white;
    }
}