:root {
    --ink: #1d1e1b;
    --ink-soft: #31322e;
    --cream: #f5f1e9;
    --paper: #fbfaf6;
    --gold: #a77a32;
    --gold-light: #c49a55;
    --line: #ded7ca;
    --white: #fff;
    --serif: "Libre Caslon Text", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
    --shell: min(1160px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.06;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 48px);
}

.shell { width: var(--shell); margin-inline: auto; }

.section { padding: 74px 0; }

.eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #6f6658;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.eyebrow-light { color: #f5eee1; }

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-gold {
    color: var(--white);
    background: linear-gradient(180deg, #b98b40 0%, #966b29 100%);
    border-color: #cda860;
    box-shadow: inset 0 1px rgba(255,255,255,.28), 0 5px 15px rgba(35,25,10,.16);
}

.button-gold:hover { background: #8a6228; }

.button-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.72);
    background: rgba(22,24,20,.22);
}

.button-outline:hover { background: rgba(255,255,255,.12); }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: relative;
    z-index: 50;
    background: rgba(251,250,246,.98);
    box-shadow: 0 1px 0 rgba(21,21,18,.1);
}

.utility-bar {
    color: #f6f2e9;
    background: #20211e;
    font-size: 12px;
}

.utility-inner {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: space-between;
}

.utility-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.utility-item span { color: var(--gold-light); font-size: 9px; }

.nav-shell {
    display: grid;
    min-height: 78px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}

.brand { display: inline-flex; flex-direction: column; width: max-content; }

.brand-name {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
}

.brand-tagline {
    margin-top: 7px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 32px);
}

.primary-nav a {
    position: relative;
    padding: 29px 0 26px;
    font-family: var(--serif);
    font-size: 13px;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .2s ease, transform .2s ease;
}

.primary-nav a:hover::after { opacity: 1; transform: scaleX(1); }

.header-cta { min-height: 44px; padding-inline: 18px; }

.nav-toggle { display: none; }

.hero {
    position: relative;
    min-height: 610px;
    color: var(--white);
    background: #283126 url('../images/hero.webp') center center / cover no-repeat;
    isolation: isolate;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(15,18,13,.84) 0%, rgba(15,18,13,.62) 34%, rgba(15,18,13,.12) 68%, rgba(15,18,13,.08) 100%);
}

.hero-inner { display: flex; min-height: 610px; align-items: center; }

.hero-copy { width: min(600px, 57%); padding: 68px 0 50px; }

.hero h1 {
    margin-bottom: 18px;
    font-size: clamp(52px, 6vw, 82px);
    letter-spacing: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,.22);
}

.hero h1 em { color: #d6b16b; font-style: normal; }

.hero-copy > p {
    max-width: 510px;
    margin-bottom: 28px;
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.45;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-proof strong { display: block; font-size: 12px; }

.proof-icon { color: #d7aa59; font-size: 31px; }

.foundation { background: var(--paper); }

.foundation-grid {
    display: grid;
    grid-template-columns: 1.9fr repeat(3, 1fr);
    align-items: stretch;
    gap: 16px;
}

.foundation-copy { padding-right: 24px; }

.foundation-copy h2 { font-size: clamp(34px, 3.4vw, 49px); }

.foundation-copy p { max-width: 590px; margin-bottom: 0; color: #59584f; }

.stat {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 18px;
    text-align: center;
    background: #f3efe6;
    border: 1px solid #ebe4d8;
}

.stat-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    color: var(--gold);
}

.stat strong { font-family: var(--serif); font-size: 38px; line-height: 1.05; }

.stat span:last-child { margin-top: 7px; font-family: var(--serif); line-height: 1.25; }

.stat-wide strong { font-size: 25px; }
.stat .stat-since { font-size: 30px; }

.services { padding-top: 34px; background: #f1eee7; border-top: 1px solid var(--line); }

.heading-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    align-items: end;
    gap: 34px;
    margin-bottom: 25px;
}

.section-heading h2 { margin-bottom: 0; }

.section-heading > p { margin-bottom: 4px; color: #5c5a53; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 5px;
    color: #886225;
    border-bottom: 1px solid #b79968;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.service-item { min-width: 0; }

.service-item img { width: 100%; aspect-ratio: 1.62; object-fit: cover; }

.service-item h3 { margin: 15px 0 4px; font-size: 20px; }

.service-item p { margin-bottom: 0; color: #666157; font-family: var(--serif); font-size: 14px; }

.section-dark { color: var(--white); background: #22231f; }

.heading-light { grid-template-columns: 1fr auto; }

.heading-light h2 { color: var(--white); }

.text-link-light { color: #d9b46f; border-bottom-color: #826d46; }

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

.project-grid figure { position: relative; margin: 0; overflow: hidden; background: #161713; }

.project-grid img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
    transition: transform .35s ease, opacity .35s ease;
}

.project-grid figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 32px 16px 13px;
    background: linear-gradient(transparent, rgba(10,10,8,.78));
    font-family: var(--serif);
    font-size: 16px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
}

.project-grid figure:hover img { opacity: .78; transform: scale(1.025); }
.project-grid figure:hover figcaption { opacity: 1; transform: none; }

.about {
    position: relative;
    display: grid;
    min-height: 430px;
    grid-template-columns: 34% 43% 23%;
    overflow: hidden;
    background: #f6f3ed;
}

.about-image { background: url('../images/about.webp') 38% center / cover no-repeat; }

.about-copy { align-self: center; padding: 58px 54px; }

.about-copy h2 { font-size: clamp(33px, 3.6vw, 50px); }

.about-copy p { color: #57564f; }

.about-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #30312d;
    font-family: var(--serif);
    font-size: 25px;
    font-style: italic;
    line-height: 1.35;
    text-align: center;
    background: linear-gradient(rgba(246,243,237,.84), rgba(246,243,237,.84)), url('../images/hero.webp') center / cover;
}

.testimonials { padding-block: 42px; text-align: center; background: #fbfaf6; }

.testimonial-inner { max-width: 960px; }

.stars { color: var(--gold); font-size: 18px; letter-spacing: .18em; }

blockquote { margin: 12px auto 0; }

blockquote p {
    margin-bottom: 10px;
    font-family: var(--serif);
    font-size: clamp(18px, 2vw, 23px);
    font-style: italic;
    line-height: 1.55;
}

blockquote cite { font-size: 13px; font-style: normal; }

.site-footer { color: #e9e5dc; background: #181916; }

.footer-cta {
    position: relative;
    background: linear-gradient(90deg, rgba(25,19,13,.88), rgba(25,19,13,.73)), url('../images/about.webp') center 63% / cover;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.footer-cta-inner {
    display: flex;
    min-height: 132px;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.footer-cta h2 { margin: 0; color: var(--white); font-size: clamp(28px, 3vw, 42px); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.15fr .8fr .9fr .85fr;
    gap: 34px;
    padding-block: 42px;
}

@media (min-width: 1081px) {
    .site-footer > .shell,
    .footer-cta > .shell {
        width: min(1368px, calc(100% - 72px));
    }

    .footer-grid {
        grid-template-columns: 1.45fr 1.15fr .8fr .9fr .8fr;
        gap: 52px;
    }
}

.brand-light { color: var(--white); }

.footer-grid h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
}

.footer-grid a, .footer-grid p { display: block; margin: 0 0 7px; color: #d8d3ca; font-size: 12px; }

.footer-grid a:hover { color: #d5ad68; }

.footer-brand .brand { width: 100%; max-width: 100%; }

.footer-brand .brand-tagline { overflow-wrap: anywhere; }

.license-block { display: flex; gap: 13px; align-items: flex-start; }
.license-mark { color: #d1a758; font-size: 30px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 16px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #a8a69f;
    font-size: 10px;
}

.generic-content { min-height: 55vh; padding: 80px 0; }

.page-hero {
    position: relative;
    min-height: 470px;
    color: var(--white);
    background-color: #262921;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.page-hero-about { background-image: url('../images/about.webp'); background-position: center 42%; }
.page-hero-residential { background-image: url('../images/service-homes.webp'); }
.page-hero-commercial { background-image: url('../images/service-commercial.webp'); }
.page-hero-testimonials { background-image: url('../images/hero.webp'); background-position: center 58%; }
.page-hero-contact { background-image: url('../images/about.webp'); background-position: center 36%; }

.page-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(18,20,16,.88), rgba(18,20,16,.52) 55%, rgba(18,20,16,.18));
}

.page-hero-inner {
    display: flex;
    min-height: 470px;
    max-width: 760px;
    flex-direction: column;
    justify-content: center;
    margin-left: max(24px, calc((100% - 1160px) / 2));
    margin-right: 24px;
}

.page-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(50px, 6vw, 78px);
}

.page-hero p { max-width: 650px; margin: 0; font-family: var(--serif); font-size: 20px; }

.interior-section { padding: 92px 0; }

.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 72px; }
.story-image img { width: 100%; aspect-ratio: .95; object-fit: cover; }
.story-image-portrait { margin: 0; }
.story-image-portrait img { object-position: center 48%; }
.photo-caption {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}
.story-copy h2 { max-width: 620px; }
.story-copy p { color: #59584f; }

.values-section { padding: 72px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.17); }
.values-grid article { min-height: 250px; padding: 42px; background: #22231f; }
.values-grid article > span { color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.values-grid h3 { margin: 45px 0 13px; color: var(--white); font-size: 28px; }
.values-grid p { margin: 0; color: #c9c6be; }

.interior-cta { padding: 58px 0; background: #f0ece3; border-top: 1px solid var(--line); }
.interior-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.interior-cta h2 { margin: 0; }

.intro-row { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.intro-row h2 { margin-bottom: 0; }
.intro-row > p { margin-bottom: 5px; color: #59584f; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.chip-row span { padding: 8px 12px; color: #5d5549; border: 1px solid #d2c7b7; font-size: 12px; font-weight: 700; text-transform: uppercase; }

.gallery-section { padding: 78px 0 96px; background: #efebe3; }
.gallery-dark { color: var(--white); background: #22231f; }
.gallery-heading { margin-bottom: 30px; }
.gallery-heading h2 { margin: 0; }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-auto-rows: 280px; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #191a17; }
.gallery-grid figure.gallery-wide { grid-column: span 2; }
.gallery-grid figure.gallery-tall { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 46px 18px 15px; color: var(--white); background: linear-gradient(transparent, rgba(10,10,8,.82)); font-family: var(--serif); font-size: 17px; }

.testimonial-page { background: #f5f1e9; }
.testimonial-page-heading { margin-bottom: 34px; text-align: center; }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.quote-grid blockquote { margin: 0; padding: 38px; background: var(--paper); border: 1px solid #e5ded2; text-align: left; }
.quote-grid .quote-featured { grid-column: 1 / -1; padding-inline: clamp(38px, 8vw, 110px); text-align: center; background: #22231f; color: var(--white); }
.quote-grid blockquote p { font-size: 19px; }

.contact-section { background: #f5f1e9; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.contact-details > p { color: #59584f; }
.contact-details dl { margin: 38px 0 0; }
.contact-details dl div { display: grid; grid-template-columns: 90px 1fr; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-details dt { color: #7b6d59; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-details dd { margin: 0; font-family: var(--serif); }
.contact-form-wrap { padding: 38px; background: var(--paper); border: 1px solid #e2dacd; }
.contact-form { display: grid; gap: 18px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { display: grid; gap: 7px; }
.form-row label { color: #675d50; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.form-row input, .form-row select, .form-row textarea { width: 100%; min-height: 46px; padding: 11px 12px; color: var(--ink); background: #fff; border: 1px solid #cfc5b7; border-radius: 0; font: inherit; }
.form-row textarea { resize: vertical; }
.contact-form .button { width: max-content; }
.form-notice { margin-bottom: 20px; padding: 13px 15px; font-size: 14px; }
.form-success { color: #315d38; background: #e8f3e9; border: 1px solid #bdd7c1; }
.form-error { color: #7f332d; background: #f7e8e5; border: 1px solid #e4c2bd; }

@media (max-width: 1080px) {
    .nav-shell { grid-template-columns: auto auto 1fr; }
    .primary-nav { gap: 16px; }
    .header-cta { display: none; }
    .foundation-grid { grid-template-columns: 1.6fr repeat(3, 1fr); }
    .about { grid-template-columns: 38% 62%; }
    .about-signature { display: none; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 860px) {
    .shell { width: min(100% - 36px, 720px); }
    .section { padding: 60px 0; }
    .nav-shell { position: relative; grid-template-columns: 1fr auto; min-height: 72px; }
    .brand-name { font-size: 25px; }
    .nav-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        place-content: center;
        gap: 5px;
        border: 0;
        background: transparent;
    }
    .nav-toggle span:not(.screen-reader-text) { display: block; width: 24px; height: 2px; background: var(--ink); }
    .primary-nav {
        position: absolute;
        top: 72px;
        right: -18px;
        left: -18px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 18px 20px;
        background: var(--paper);
        border-top: 1px solid var(--line);
        box-shadow: 0 12px 20px rgba(0,0,0,.13);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: 11px 4px; }
    .primary-nav a::after { display: none; }
    .hero, .hero-inner { min-height: 650px; }
    .hero { background-position: 62% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(13,16,12,.87), rgba(13,16,12,.6) 65%, rgba(13,16,12,.18)); }
    .hero-copy { width: min(610px, 82%); }
    .foundation-grid { grid-template-columns: repeat(3, 1fr); }
    .foundation-copy { grid-column: 1 / -1; padding-right: 0; }
    .heading-row { grid-template-columns: 1fr auto; }
    .heading-row > p { grid-column: 1 / -1; grid-row: 2; }
    .service-grid, .project-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
    .project-grid figcaption { opacity: 1; transform: none; }
    .about { grid-template-columns: 44% 56%; }
    .about-copy { padding: 48px 34px; }
    .footer-cta-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand, .footer-contact { grid-column: 1 / -1; }
    .license-block { grid-column: 1 / -1; }
    .story-grid, .intro-row, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
    .story-image img { aspect-ratio: 1.35; }
    .values-grid { grid-template-columns: 1fr; }
    .values-grid article { min-height: 0; }
    .values-grid h3 { margin-top: 25px; }
    .gallery-grid { grid-auto-rows: 230px; grid-template-columns: repeat(2, 1fr); }
    .quote-grid { grid-template-columns: 1fr; }
    .quote-grid .quote-featured { grid-column: auto; }
}

@media (max-width: 620px) {
    .shell { width: min(100% - 28px, 520px); }
    .utility-inner { min-height: 30px; }
    .utility-item:first-child { font-size: 10px; }
    .utility-item:last-child { font-size: 11px; }
    .brand-name { font-size: 22px; }
    .brand-tagline { font-size: 6px; }
    .footer-brand .brand-tagline { letter-spacing: .12em; }
    .hero, .hero-inner { min-height: 680px; }
    .hero { background-position: 69% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(12,15,11,.9), rgba(12,15,11,.65) 72%, rgba(12,15,11,.3)); }
    .hero-copy { width: 100%; padding: 58px 0 42px; }
    .hero h1 { font-size: 50px; }
    .hero-copy > p { font-size: 17px; }
    .hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 290px); }
    .foundation-grid { grid-template-columns: 1fr; }
    .stat { min-height: 155px; }
    .heading-row, .heading-light { grid-template-columns: 1fr; align-items: start; }
    .heading-row > p { grid-column: auto; grid-row: auto; }
    .text-link { width: max-content; }
    .service-grid, .project-grid { grid-template-columns: 1fr; }
    .service-item img, .project-grid img { aspect-ratio: 1.6; }
    .about { display: block; }
    .about-image { min-height: 380px; }
    .about-copy { padding: 44px 22px 52px; }
    .testimonial-inner { width: min(100% - 34px, 520px); }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
    .page-hero, .page-hero-inner { min-height: 440px; }
    .page-hero-inner { margin-left: 14px; margin-right: 14px; }
    .page-hero h1 { font-size: 47px; }
    .page-hero p { font-size: 17px; }
    .interior-section { padding: 64px 0; }
    .interior-cta-inner { align-items: flex-start; flex-direction: column; }
    .gallery-grid { grid-auto-rows: 240px; grid-template-columns: 1fr; }
    .gallery-grid figure.gallery-wide { grid-column: auto; }
    .gallery-grid figure.gallery-tall { grid-row: auto; }
    .form-two { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
