/* Vintage & Stylish Base Variables */
:root {
    --bg-color: #f6f4f0; /* Warm vintage paper background */
    --text-main: #333d47; /* Deep charcoal text */
    --text-dark: #1b2633; /* Dark vintage navy for headings */
    --accent: #bc6c25; /* Classic copper/rust accent */
    --accent-hover: #9c581c;
    --card-bg: #ffffff;
    --border-color: #e6ded3;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-main);
    background-image: radial-gradient(#e0dcd3 1px, transparent 1px);
    background-size: 30px 30px; /* Subtle vintage texture */
}

h1, h2, h3 { 
    font-family: 'Playfair Display', serif; 
    color: var(--text-dark); 
    font-weight: 700;
}

/* Header & Navigation */
header {
    background-color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--accent);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #fdfbf7;
    letter-spacing: 1px;
}

.nav-link {
    text-decoration: none;
    color: #c9d1d9;
    margin-right: 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover { color: var(--accent); }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover { 
    background-color: var(--accent-hover); 
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Main Layout */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

section { margin-bottom: 5rem; }

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto 0;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.hero-content { flex: 1; }

.hero-content h2 {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2::after { display: none; }

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    width: 100%;
    height: 400px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
    filter: sepia(0.15) contrast(1.05); /* Vintage photo filter */
    border: 8px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--text-dark);
    transition: transform 0.3s ease;
}

.service-card:hover { transform: translateY(-5px); }

/* Process Section */
.process-steps {
    display: flex;
    gap: 2rem;
    text-align: center;
}

.step {
    flex: 1;
    background: var(--card-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}

.step-number {
    background-color: var(--accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 10px rgba(188, 108, 37, 0.3);
}

/* Pricing Section */
.pricing {
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card {
    background: #faf9f7;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.price-card h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.pricing-disclaimer {
    background-color: #f6f4f0;
    padding: 1.5rem 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 850px;
}

/* About Section */
.about {
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
}

/* Contact Section & Form */
.contact {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label { 
    font-weight: 700; 
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0c9c0;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: #faf9f7;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(188, 108, 37, 0.1);
}

button[type="submit"] {
    margin-top: 1.5rem;
    width: 100%;
    font-size: 1.2rem;
    padding: 16px;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background-color: var(--text-dark);
    color: #a4b0be;
    font-family: 'Playfair Display', serif;
}

/* Mobile Responsiveness - Perfect for Phones */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .nav-link { margin-right: 0; }
    
    .hero { flex-direction: column; text-align: center; padding: 2rem; }
    .hero-content h2 { text-align: center; font-size: 2.2rem; }
    .hero-image { height: 250px; }
    
    .process-steps { flex-direction: column; }
    
    .pricing, .about, .contact { padding: 2rem 1.5rem; }
    h2 { font-size: 2rem; }
}
