:root {
    --primary-color: #000;
    --secondary-color: #c6a67d; /* Soft brown for buttons in image 2/3, adjusted for 1 */
    --accent-color: #f8f8f8;
    --text-color: #333;
    --light-text: #666;
    --bg-white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --container-width: 1200px;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 20px;
    align-items: center;
}

.hero-card {
    background: #fff;
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.hero-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #000;
}

.hero-card .address {
    color: var(--light-text);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    filter: brightness(0.9);
}

/* Services */
.services {
    text-align: center;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--light-text);
    margin-bottom: 40px;
}

.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    color: var(--light-text);
    font-size: 0.85rem;
}

.service-item:first-child {
    border-top: 1px solid #f0f0f0;
}

/* Image Banner */
.image-banner {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin: 60px 0;
}

.banner-overlay {
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-title {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.banner-text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1rem;
    opacity: 0.9;
}

/* Features */
.features {
    padding: 80px 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

/* Contact & Hours */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.business-hours {
    margin-top: 40px;
}

.business-hours h3 {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
}

.hours-row {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--light-text);
    font-size: 0.9rem;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: #f0f0f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.map-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* Footer */
footer {
    border-top: 1px solid #f0f0f0;
    padding: 40px 0;
    text-align: center;
    color: var(--light-text);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-card {
        padding: 40px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* Make all content text 16px */
.service-item,
.feature-card p,
.banner-text,
.hours-row,
.section-subtitle,
nav a,
footer {
    font-size: 16px;
}