/* --- COLOR PALETTE & VARIABLES --- */
:root {
    --ink: #21211f;
    --muted-ink: #5e5a51;
    --cream: #f7f1e6;
    --paper: #fffaf0;
    --pine: #22392d;
    --moss: #58715f;
    --timber: #8c5c34;
    --clay: #b86d3b;
    --brass: #c6a45f;
    --line: #ded1bd;
    --shadow: 0 18px 45px rgba(33, 33, 31, 0.14);
    --soft-shadow: 0 10px 30px rgba(33, 33, 31, 0.08);
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(34, 57, 45, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(34, 57, 45, 0.035) 1px, transparent 1px),
        var(--cream);
    background-size: 44px 44px;
    line-height: 1.65;
    font-size: 17px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--pine);
    line-height: 1.18;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--timber);
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--clay);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* --- REUSABLE COMPONENTS --- */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 22px;
}

.section-padding {
    padding: 5.5rem 0;
}

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

.eyebrow {
    color: var(--clay);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border: 2px solid var(--timber);
    border-radius: 6px;
    background-color: var(--timber);
    color: var(--paper);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 18px rgba(140, 92, 52, 0.18);
}

.btn:hover {
    transform: translateY(-2px);
    background-color: var(--pine);
    border-color: var(--pine);
    color: var(--paper);
}

.btn-outline {
    background-color: transparent;
    color: var(--pine);
    border-color: rgba(34, 57, 45, 0.36);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--pine);
    border-color: var(--pine);
    color: var(--paper);
}

.divider {
    width: min(420px, 70%);
    height: 1px;
    margin: 2.4rem auto 0;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
    background-color: var(--pine);
    color: var(--paper);
    padding: 9px 16px;
    text-align: center;
    font-size: 0.88rem;
}

/* --- HEADER & NAVIGATION --- */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(222, 209, 189, 0.9);
    background-color: rgba(255, 250, 240, 0.94);
    backdrop-filter: blur(12px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    max-width: 1220px;
    margin: 0 auto;
    padding: 12px 22px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--pine);
    min-width: 225px;
}

.site-logo {
    width: 88px;
    aspect-ratio: 1544 / 947;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(33, 33, 31, 0.12));
}

.logo-text h1 {
    color: var(--pine);
    font-size: 1.28rem;
    margin-bottom: 0.05rem;
}

.logo-text p {
    color: var(--timber);
    font-size: 0.86rem;
    font-style: italic;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
}

nav a {
    color: var(--pine);
    font-family: var(--font-heading);
    font-size: 0.96rem;
    font-weight: 700;
}

nav a:hover {
    color: var(--clay);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 7px 13px;
    border: 1px solid rgba(140, 92, 52, 0.35);
    border-radius: 6px;
    color: var(--timber);
}

.nav-phone:hover {
    background-color: var(--timber);
    border-color: var(--timber);
    color: var(--paper);
}

/* --- HERO SECTION --- */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    min-height: calc(100vh - 118px);
    padding: clamp(4.5rem, 9vw, 8rem) max(22px, calc((100vw - 1120px) / 2));
    background:
        linear-gradient(115deg, rgba(247, 241, 230, 0.98) 0%, rgba(247, 241, 230, 0.92) 48%, rgba(198, 164, 95, 0.1) 100%),
        radial-gradient(circle at 78% 18%, rgba(184, 109, 59, 0.18), transparent 32%);
    overflow: hidden;
}

.hero-content {
    max-width: 690px;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2 {
    max-width: 12ch;
    color: var(--pine);
    font-size: clamp(3rem, 7vw, 5.9rem);
    letter-spacing: 0;
    margin-bottom: 1.25rem;
}

.hero p:not(.eyebrow) {
    max-width: 610px;
    color: var(--muted-ink);
    font-size: clamp(1.06rem, 1.6vw, 1.26rem);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-work {
    position: relative;
    display: grid;
    gap: 14px;
    align-self: stretch;
    min-height: 520px;
}

.hero-work::before {
    content: "";
    position: absolute;
    inset: 28px -18px -18px 56px;
    z-index: 0;
    border: 1px solid rgba(140, 92, 52, 0.28);
    border-radius: 8px;
}

.hero-work img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 8px solid var(--paper);
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-main-image {
    min-height: 350px;
}

.hero-small-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    min-height: 156px;
}

/* --- TRUST STRIP --- */
.trust-strip {
    border-top: 1px solid rgba(198, 164, 95, 0.45);
    border-bottom: 1px solid rgba(198, 164, 95, 0.45);
    background-color: var(--pine);
    color: var(--paper);
    padding: 1.55rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-item {
    padding: 0 18px;
    border-left: 1px solid rgba(255, 250, 240, 0.18);
}

.trust-item:first-child {
    border-left: 0;
}

.trust-item h4 {
    color: var(--brass);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: rgba(255, 250, 240, 0.86);
    font-size: 0.92rem;
}

/* --- ABOUT SECTION --- */
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.about-content {
    max-width: 660px;
}

.about-content h2,
.text-center h2,
.map-container h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: "";
    position: absolute;
    inset: -18px 24px 52px -18px;
    z-index: 0;
    border: 1px solid var(--brass);
    border-radius: 8px;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1;
    border: 8px solid var(--paper);
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-image-wrap p {
    position: relative;
    z-index: 2;
    max-width: 88%;
    margin: -28px auto 0;
    padding: 14px 18px;
    border-left: 4px solid var(--clay);
    border-radius: 6px;
    background-color: var(--paper);
    box-shadow: var(--soft-shadow);
    color: var(--muted-ink);
    font-size: 0.95rem;
}

/* --- SERVICES SECTION --- */
.services-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 250, 240, 0.85), rgba(240, 231, 216, 0.85)),
        var(--paper);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 3rem;
}

.service-card {
    min-height: 245px;
    padding: 2rem 1.55rem;
    border: 1px solid rgba(140, 92, 52, 0.22);
    border-radius: 8px;
    background-color: rgba(255, 250, 240, 0.88);
    box-shadow: 0 12px 30px rgba(33, 33, 31, 0.055);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 109, 59, 0.55);
    box-shadow: 0 20px 38px rgba(33, 33, 31, 0.1);
}

.service-card h3 {
    color: var(--timber);
    font-size: 1.32rem;
}

.service-card p {
    color: var(--muted-ink);
}

/* --- FEATURED PROJECT --- */
.featured-section {
    background-color: var(--cream);
}

.project-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-top: 3.4rem;
}

.project-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.project-images img {
    width: 100%;
    aspect-ratio: 1;
    border: 8px solid var(--paper);
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--soft-shadow);
}

.project-images img:first-child {
    transform: translateY(-18px);
}

.project-images img:last-child {
    transform: translateY(18px);
}

.project-details {
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-top: 4px solid var(--clay);
    border-radius: 8px;
    background-color: var(--paper);
    box-shadow: var(--soft-shadow);
}

.project-details h3 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.project-details p {
    color: var(--muted-ink);
}

.blockquote {
    margin: 1.6rem 0;
    padding-left: 1.15rem;
    border-left: 4px solid var(--brass);
    color: var(--pine);
    font-size: 1.16rem;
    font-style: italic;
}

/* --- CTA BANNER --- */
.cta-banner {
    border-top: 4px solid var(--brass);
    background:
        linear-gradient(rgba(34, 57, 45, 0.91), rgba(34, 57, 45, 0.91)),
        url("featured1.jpg") center / cover;
    color: var(--paper);
    text-align: center;
    padding: 4.6rem 20px;
}

.cta-banner h2 {
    color: var(--paper);
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-banner .btn {
    background-color: var(--brass);
    border-color: var(--brass);
    color: var(--ink);
}

.cta-banner .btn:hover {
    background-color: transparent;
    color: var(--paper);
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 3rem;
}

.testimonial-card {
    min-height: 250px;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background-color: var(--paper);
    box-shadow: 0 12px 26px rgba(33, 33, 31, 0.06);
}

.stars {
    color: var(--brass);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--muted-ink);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--pine);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* --- MAP & SERVICE AREA --- */
.map-section {
    background-color: #eee4d4;
}

.map-container {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background-color: var(--paper);
    box-shadow: var(--soft-shadow);
}

.map-container p {
    color: var(--muted-ink);
}

.service-list {
    margin-top: 1.4rem;
    list-style: none;
}

.service-list li {
    position: relative;
    margin-bottom: 0.55rem;
    padding-left: 1.45rem;
}

.service-list li::before {
    content: "";
    position: absolute;
    top: 0.67em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--clay);
}

.map-iframe-wrapper {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    line-height: 0;
}

.map-iframe-wrapper iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

/* --- CONTACT SECTION --- */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
    gap: clamp(1.8rem, 5vw, 4rem);
    align-items: stretch;
}

.contact-info,
.contact-form-wrapper {
    border-radius: 8px;
}

.contact-info {
    padding: clamp(2rem, 4vw, 3rem);
    background-color: var(--pine);
    color: var(--paper);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--paper);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.contact-info p {
    color: rgba(255, 250, 240, 0.86);
}

.big-phone {
    display: block;
    margin: 1.3rem 0 1.6rem;
    color: var(--brass);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1;
}

.big-phone:hover {
    color: var(--paper);
}

.contact-form-wrapper {
    padding: clamp(1.8rem, 4vw, 2.7rem);
    border: 1px solid var(--line);
    background-color: var(--paper);
    box-shadow: var(--soft-shadow);
}

.contact-form-wrapper h3 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #d4c5ae;
    border-radius: 6px;
    background-color: #fffdf8;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 155px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(198, 164, 95, 0.35);
    border-color: var(--timber);
}

.form-status {
    min-height: 1.6rem;
    color: var(--pine);
    font-size: 0.95rem;
    font-weight: 700;
}

/* --- FOOTER --- */
footer {
    padding: 4rem 0 2rem;
    background-color: var(--ink);
    color: var(--paper);
    text-align: center;
}

.footer-logo {
    width: min(180px, 60vw);
    margin: 0 auto 1.35rem;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

footer h4 {
    color: var(--paper);
}

footer p {
    color: rgba(255, 250, 240, 0.78);
    margin-bottom: 0.45rem;
}

footer a {
    color: var(--brass);
}

.footer-bottom {
    margin-top: 2.7rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 250, 240, 0.12);
    color: rgba(255, 250, 240, 0.54);
    font-size: 0.85rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1020px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero h2 {
        max-width: 13ch;
    }

    .hero-work {
        min-height: auto;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .announcement-bar {
        font-size: 0.78rem;
    }

    .nav-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-link {
        min-width: 0;
    }

    nav ul {
        justify-content: flex-start;
    }

    .trust-grid,
    .about-layout,
    .project-layout,
    .map-container,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 250, 240, 0.16);
        padding: 14px 0 0;
    }

    .trust-item:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .project-images img:first-child,
    .project-images img:last-child {
        transform: none;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 18px;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .site-logo {
        width: 76px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    nav ul {
        gap: 7px 14px;
    }

    nav a {
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero h2 {
        font-size: clamp(2.55rem, 15vw, 4rem);
    }

    .hero-buttons,
    .hero-buttons .btn {
        width: 100%;
    }

    .hero-small-images,
    .project-images,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-work::before,
    .about-image-wrap::before {
        display: none;
    }

    .hero-work img,
    .about-image,
    .project-images img {
        border-width: 6px;
    }

    .about-image-wrap p {
        max-width: 94%;
    }

    .big-phone {
        overflow-wrap: anywhere;
    }
}
