:root {
    --brand: #d65a2c;
    --brand-dark: #b94a23;
    --text: #555;
    --heading-color: #d65a2c;
    --bg: #fff;
    --footer-bg: #1a1a1a;
    --max-width: 1200px;
    --header-height: 90px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    font-size: 15px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #2a2a2a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.brand img {
    width: 32px;
    height: 32px;
}

nav {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.15s;
}

nav a:hover { color: var(--brand); }
nav a.active { color: var(--brand); }

/* Main content */
main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 2.5rem 5rem;
}

h1.page-title {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--heading-color);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

h1.page-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background: var(--brand);
    margin: 0.8rem auto 2.5rem;
}

main p {
    margin: 0 auto 1.2rem;
    max-width: 900px;
}

main strong { color: #333; }

.center-image {
    display: block;
    margin: 2rem auto;
    max-width: 750px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

h2.section-title {
    font-family: Georgia, serif;
    color: var(--heading-color);
    text-align: center;
    font-size: 1.7rem;
    font-weight: 400;
    margin: 2.5rem 0 0;
}

h2.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--brand);
    margin: 0.7rem auto 1.5rem;
}

/* Home page hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0 4rem;
}

.hero-text h1 {
    font-family: Georgia, serif;
    color: var(--heading-color);
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

.hero-text h1 em {
    font-style: italic;
    font-weight: 700;
}

.hero-text .divider {
    width: 60px;
    height: 2px;
    background: var(--brand);
    margin: 1rem 0 1.5rem;
}

.hero-text p { margin: 0 0 0.8rem; max-width: none; }

.hero-text .call-heading {
    color: var(--brand);
    font-family: Georgia, serif;
    font-size: 1.3rem;
    margin-top: 1.3rem;
    margin-bottom: 0.3rem;
}

.hero-text .phone {
    color: var(--brand);
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

/* Home page services section */
.services-section {
    background: #f9efe9;
    padding: 4rem 2.5rem;
    margin: 2rem -2.5rem 0;
}

.services-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.services-list h2 {
    font-family: Georgia, serif;
    color: var(--heading-color);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.services-list ul {
    list-style: none;
}

.services-list li {
    margin-bottom: 0.7rem;
}

.services-list a {
    color: var(--brand);
    text-decoration: underline;
    text-decoration-color: rgba(214, 90, 44, 0.4);
    text-underline-offset: 3px;
}

.services-list a:hover {
    color: var(--brand-dark);
    text-decoration-color: var(--brand-dark);
}

/* Photo gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.gallery a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.gallery a:hover img { transform: scale(1.04); }

/* FAQ section */
.faq {
    max-width: 900px;
    margin: 3rem auto 1rem;
    padding: 0 2.5rem;
}

.faq details {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: var(--brand);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s;
}

.faq details[open] summary::after { content: '\2212'; }

.faq details p {
    margin-top: 0.7rem;
    margin-bottom: 0.3rem;
    color: #555;
}

/* Related services */
.related-services {
    background: #f9efe9;
    padding: 2.5rem 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

.related-services h2 {
    font-family: Georgia, serif;
    color: var(--heading-color);
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.related-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.related-links a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
}

.related-links a:hover { text-decoration: underline; }

/* Footer */
footer {
    background: var(--footer-bg);
    color: var(--brand);
    text-align: center;
    padding: 3.5rem 2rem;
    margin-top: 0;
}

footer h2 {
    font-family: Georgia, serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--brand);
}

footer p {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

footer a {
    color: var(--brand);
    text-decoration: none;
}

footer a:hover { text-decoration: underline; }

footer address {
    font-style: normal;
    color: #888;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.hero-text .phone a {
    color: var(--brand);
    text-decoration: none;
}

.hero-text .phone a:hover { text-decoration: underline; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
}

.lightbox:target {
    display: flex;
}

.lightbox-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.lightbox .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2.5rem;
    text-decoration: none;
    line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem 0 3rem; }
    .services-inner { grid-template-columns: 1fr; gap: 2rem; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    header { padding: 1rem 1.2rem; }
    main { padding: 1rem 1.2rem 3rem; }
    .services-section { margin: 2rem -1.2rem 0; padding: 3rem 1.2rem; }
    nav { gap: 0.9rem; font-size: 0.85rem; }
    h1.page-title { font-size: 1.9rem; }
    .hero-text h1 { font-size: 1.8rem; }
    .gallery { grid-template-columns: 1fr; }
}
