/* --- COLOR PALETTE & VARIABLES (from Entrust logo: navy + gold) --- */
:root {
    --navy: #0d1f29;
    --navy-mid: #17303e;
    --navy-deep: #081319;
    --gold: #c09b43;
    --gold-deep: #93752f;
    --gold-light: #d9bc76;
    --ink: #16242c;
    --muted-ink: #56636b;
    --cream: #f4f1ea;
    --paper: #fbfaf7;
    --line: #e1ded3;
    --shadow: 0 18px 45px rgba(8, 19, 25, 0.16);
    --soft-shadow: 0 10px 30px rgba(8, 19, 25, 0.09);
    --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Caveat', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--cream);
    line-height: 1.65;
    font-size: 17px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}

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

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

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;
}

.text-center > * {
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    border: 2px solid var(--gold);
    border-radius: 3px;
    background-color: var(--gold);
    color: var(--navy-deep);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 8px 18px rgba(192, 155, 67, 0.28);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border-color: rgba(13, 31, 41, 0.35);
    box-shadow: none;
}

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

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

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
    background-color: var(--navy-deep);
    color: var(--gold-light);
    padding: 9px 16px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

/* --- HEADER & NAVIGATION --- */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--navy);
    border-bottom: 1px solid rgba(192, 155, 67, 0.28);
}

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

.brand-link {
    display: flex;
    align-items: center;
    min-width: 190px;
}

.site-logo {
    width: 215px;
    height: auto;
}

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

nav a {
    color: var(--paper);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

.nav-phone {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 7px 15px;
    border: 1px solid rgba(192, 155, 67, 0.55);
    border-radius: 3px;
    color: var(--gold-light);
}

.nav-phone:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
}

/* --- HERO SECTION --- */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 460px);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: clamp(3.5rem, 8vw, 6.5rem) max(22px, calc((100vw - 1120px) / 2));
    background-color: var(--cream);
}

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

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

.hero h2 {
    max-width: 11ch;
    color: var(--navy);
    font-size: clamp(2.5rem, 5.6vw, 4.4rem);
    text-transform: none;
    margin-bottom: 1.25rem;
}

.hero p:not(.eyebrow) {
    max-width: 560px;
    color: var(--muted-ink);
    font-size: clamp(1.02rem, 1.4vw, 1.14rem);
    margin-bottom: 2rem;
}

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

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

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

.hero-accent-image {
    position: absolute;
    z-index: 2;
    bottom: -34px;
    left: -48px;
    width: 46%;
    aspect-ratio: 4 / 3;
    border: 7px solid var(--navy);
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 16px 32px rgba(8, 19, 25, 0.32);
}

/* --- TRUST STRIP --- */
.trust-strip {
    background-color: var(--navy);
    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(192, 155, 67, 0.3);
}

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

.trust-item h4 {
    color: var(--gold-light);
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
}

.trust-item p {
    color: rgba(251, 250, 247, 0.8);
    font-size: 0.9rem;
}

/* --- SERVICES SECTION --- */
.services-section {
    background-color: var(--paper);
}

.services-intro {
    max-width: 640px;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
}

.services-intro p:not(.eyebrow) {
    color: var(--muted-ink);
    font-size: 1.08rem;
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.service-featured {
    position: relative;
    padding: 2.4rem 2rem;
    border-radius: 4px;
    background-color: var(--navy);
    color: var(--paper);
    box-shadow: var(--soft-shadow);
}

.service-featured h3 {
    color: var(--paper);
    font-size: 1.7rem;
    margin-top: 0.6rem;
}

.service-featured p {
    color: rgba(251, 250, 247, 0.82);
}

.service-list-alt {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.service-list-alt li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    align-items: baseline;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
}

.service-list-alt li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.service-list-alt h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.service-list-alt p {
    color: var(--muted-ink);
    font-size: 0.98rem;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.service-featured .service-number {
    display: block;
    margin-bottom: 0.5rem;
}

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

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

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

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 8px solid var(--paper);
    border-radius: 4px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.handwritten-note {
    position: absolute;
    right: -14px;
    bottom: -22px;
    z-index: 2;
    max-width: 74%;
    padding: 6px 14px;
    transform: rotate(-3deg);
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-deep);
    background-color: var(--paper);
    border-radius: 3px;
    box-shadow: var(--soft-shadow);
}

/* --- PROCESS SECTION --- */
.process-section {
    background-color: var(--navy);
    color: var(--paper);
}

.process-section .eyebrow {
    color: var(--gold-light);
}

.process-section h2 {
    color: var(--paper);
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.process-section > .container > .text-center > p:not(.eyebrow) {
    color: rgba(251, 250, 247, 0.75);
    max-width: 46ch;
}

.process-steps {
    list-style: none;
    counter-reset: step;
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-steps li {
    position: relative;
    padding: 0 1.6rem 0 0;
    border-left: 1px solid rgba(192, 155, 67, 0.35);
    padding-left: 1.6rem;
}

.process-steps li:first-child {
    border-left: 0;
    padding-left: 0;
}

.step-index {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.process-steps h3 {
    color: var(--paper);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.process-steps p {
    color: rgba(251, 250, 247, 0.75);
    font-size: 0.96rem;
}

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

.featured-section h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.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: 4px;
    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(--gold);
    border-radius: 4px;
    background-color: var(--paper);
    box-shadow: var(--soft-shadow);
}

.project-details h3 {
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    text-transform: none;
}

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

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

/* --- TESTIMONIALS --- */
.testimonials-section {
    background-color: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1.8rem;
    margin-top: 3rem;
    align-items: stretch;
}

.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background-color: var(--cream);
    box-shadow: 0 12px 26px rgba(8, 19, 25, 0.05);
}

.testimonial-large {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--navy);
    border-color: var(--navy);
}

.testimonial-large p {
    color: rgba(251, 250, 247, 0.9);
    font-size: 1.2rem;
}

.testimonial-large .testimonial-author {
    color: var(--gold-light);
}

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

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

.testimonial-author {
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* --- CTA BANNER --- */
.cta-banner {
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    background-color: var(--navy-deep);
    color: var(--paper);
    text-align: center;
    padding: 4.6rem 20px;
}

.cta-banner h2 {
    color: var(--paper);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    max-width: 18ch;
    margin: 0 auto 1rem;
}

.cta-sub {
    max-width: 40ch;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: rgba(251, 250, 247, 0.78);
}

/* --- MAP & SERVICE AREA --- */
.map-section {
    background-color: var(--cream);
}

.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: 4px;
    background-color: var(--paper);
    box-shadow: var(--soft-shadow);
}

.map-container h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

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

.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.4rem;
    list-style: none;
}

.area-chips li {
    padding: 6px 14px;
    border: 1px solid rgba(192, 155, 67, 0.45);
    border-radius: 999px;
    background-color: var(--cream);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

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

.map-iframe-wrapper iframe {
    width: 100%;
    height: 360px;
    border: 0;
    filter: grayscale(0.15);
}

/* --- FAQ --- */
.faq-section {
    background-color: var(--paper);
}

.faq-section h2 {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
}

.faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.faq-item {
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: var(--navy);
    font-size: 1.12rem;
    text-transform: none;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--muted-ink);
}

/* --- 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: 4px;
}

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

.contact-info h3 {
    color: var(--paper);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    text-transform: none;
}

.contact-info p {
    color: rgba(251, 250, 247, 0.82);
    margin-bottom: 0.6rem;
}

.contact-info a {
    color: var(--gold-light);
}

.contact-info a:hover {
    color: var(--paper);
}

.big-phone {
    display: block;
    margin: 1.3rem 0 1.6rem;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.7rem);
    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(--cream);
    box-shadow: var(--soft-shadow);
}

.contact-form-wrapper h3 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    text-transform: none;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background-color: var(--paper);
    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(192, 155, 67, 0.4);
    border-color: var(--gold);
}

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

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

.footer-logo {
    width: min(240px, 65vw);
    margin: 0 auto 1.5rem;
}

footer p {
    color: rgba(251, 250, 247, 0.72);
    margin-bottom: 0.45rem;
}

footer a {
    color: var(--gold-light);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(192, 155, 67, 0.18);
    color: rgba(251, 250, 247, 0.48);
    font-size: 0.85rem;
}

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

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

    .hero-work {
        min-height: auto;
        margin-top: 1rem;
    }

    .hero-accent-image {
        left: 24px;
        bottom: -28px;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2.4rem;
    }

    .process-steps li:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }
}

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

    .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;
    }

    .about-layout {
        gap: 3rem;
    }

    .trust-item {
        border-left: 0;
        border-top: 1px solid rgba(192, 155, 67, 0.22);
        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: 165px;
    }

    nav ul {
        gap: 7px 14px;
    }

    nav a {
        font-size: 0.85rem;
    }

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

    .hero h2 {
        font-size: clamp(2.3rem, 12vw, 3.4rem);
    }

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

    .hero-accent-image {
        width: 58%;
        left: 16px;
        bottom: -22px;
        border-width: 5px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-steps li {
        border-left: 0 !important;
        padding-left: 0 !important;
        padding-bottom: 1.6rem;
        border-bottom: 1px solid rgba(192, 155, 67, 0.28);
    }

    .process-steps li:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .project-images,
    .service-list-alt li {
        grid-template-columns: 1fr;
    }

    .project-images {
        grid-template-columns: 1fr 1fr;
    }

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

    .handwritten-note {
        font-size: 1.3rem;
        max-width: 84%;
    }

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