/* =====================================================
RESET
===================================================== */

html{
    overflow-y:scroll;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

body{
    margin:0;
    background:#ffffff;
    color:#2e2e2e;
    font-family:'Inter',sans-serif;
    font-size:16px;
    font-weight:300;
    line-height:1.8;
    letter-spacing:.2px;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}


/* =====================================================
TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4{
    margin:0 0 20px;
    color:#1c1c1c;
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

h1{
    font-size:42px;
}

h2{
    font-size:30px;
}

h3{
    font-size:22px;
}

h4{
    font-size:16px;
}

p{
    margin:0 0 18px;
}

a{
    color:#1c1c1c;
    text-decoration:none;
    border-bottom:1px solid rgba(0,0,0,.25);
    transition:
        color .25s ease,
        border-color .25s ease,
        opacity .25s ease;
}

a:hover{
    border-bottom-color:#1c1c1c;
}


/* =====================================================
CONTAINER SYSTEM
===================================================== */

.container,
.site-container{
    width:92%;
    max-width:1100px;
    margin:0 auto;
}

.site-container{
    padding:70px 0;
}


/* =====================================================
GENERAL GRID SYSTEM
===================================================== */

.row{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

.col-4{
    width:100%;
}


/* =====================================================
HEADER
===================================================== */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    padding:12px 0;
    background:#e8e5df;
    border-bottom:1px solid #ddd;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}


/* =====================================================
LOGO
===================================================== */

.logo{
    display:flex;
    align-items:flex-start;
    gap:18px;
    border-bottom:none;
}

.logo a{
    border-bottom:none;
}

.logo img{
    height:75px;
    transform:translateY(2px);
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.05;
}

.firm-name{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    font-weight:600;
    letter-spacing:1px;
}

.firm-tag{
    margin-top:6px;
    color:#777;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}


/* =====================================================
HEADER NAVIGATION
===================================================== */

.header-navigation{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    justify-content:center;
}

.main-nav{
    margin-top:0;
}

.main-nav ul{
    display:flex;
    gap:28px;
    margin:0;
    padding:0;
    list-style:none;
}

.main-nav li{
    margin:0;
    padding:0;
}

.main-nav a{
    position:relative;
    border-bottom:none;
    font-size:13px;
    letter-spacing:1.8px;
    text-transform:uppercase;
    opacity:.85;
    transition:opacity .25s ease;
}

.main-nav a:hover{
    opacity:1;
}

.main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:1px;
    background:#1c1c1c;
    transition:width .35s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after{
    width:100%;
}

.header-phone{
    order:-1;
    display:inline-block;
    margin:0 0 11px;
    color:#6f6860;
    border-bottom:none;
    font-size:12px;
    font-weight:400;
    line-height:1;
    letter-spacing:1.2px;
    opacity:.9;
    text-decoration:none;
}

.header-phone:hover,
.header-phone:focus{
    color:#30275c;
    border-bottom:none;
    opacity:1;
    text-decoration:none;
}


/* =====================================================
HERO
===================================================== */

.hero{
    padding:100px 0 60px;
    text-align:center;
}

.hero-inner{
    max-width:750px;
    margin:0 auto;
}

.hero h1{
    margin-bottom:24px;
    font-size:48px;
}

.hero p{
    margin-bottom:40px;
    color:#555;
    font-size:18px;
}


/* =====================================================
PAGE HEADER
===================================================== */

.page-header{
    padding:78px 0 62px;
    text-align:center;
}

.page-header-inner{
    max-width:840px;
}

.page-title{
    margin-bottom:20px;
    font-size:48px;
    line-height:1.15;
}

.page-intro{
    max-width:760px;
    margin:0 auto;
    color:#555;
    font-size:18px;
    line-height:1.8;
}


/* =====================================================
GENERAL SECTIONS
===================================================== */

.section{
    padding:70px 0;
}

.section-light{
    background:#f7f6f3;
}

.section-white{
    background:#ffffff;
}

.section-border{
    border-top:1px solid #ddd;
}

.text-center{
    text-align:center;
}

.section-heading{
    max-width:720px;
    margin-bottom:44px;
}

.section-heading h2{
    margin-bottom:14px;
}

.section-heading p{
    margin:0;
    color:#555;
    line-height:1.75;
}

.section-eyebrow{
    display:block;
    margin-bottom:10px;
    color:#80776e;
    font-size:12px;
    line-height:1;
    letter-spacing:.14em;
    text-transform:uppercase;
}


/* =====================================================
SERVICES
===================================================== */

.services-section{
    padding:76px 0 84px;
    background:#f7f6f3;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:54px 76px;
}

.service-item{
    min-height:0;
    padding:24px 0 0;
    background:transparent;
    border-top:1px solid #d8d4cd;
}

.service-number{
    display:block;
    margin-bottom:15px;
    color:#80776e;
    font-size:12px;
    line-height:1;
    letter-spacing:.12em;
}

.service-item h3{
    margin-bottom:14px;
    font-size:23px;
    line-height:1.25;
}

.service-item p{
    max-width:490px;
    margin:0;
    color:#555;
    line-height:1.75;
}


/* =====================================================
PROCESS
===================================================== */

.process-section{
    padding:78px 0 82px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:46px 76px;
}

.process-item{
    padding-top:20px;
    border-top:1px solid #ddd;
}

.process-item span{
    display:block;
    margin-bottom:13px;
    color:#80776e;
    font-size:12px;
    line-height:1;
    letter-spacing:.12em;
}

.process-item h3{
    margin-bottom:12px;
    font-size:20px;
    line-height:1.3;
}

.process-item p{
    margin:0;
    color:#555;
    font-size:16px;
    line-height:1.7;
}


/* =====================================================
SERVICES CALL TO ACTION
===================================================== */

.services-cta{
    padding:76px 0;
}

.services-cta h2{
    margin-bottom:14px;
}

.services-cta p{
    max-width:620px;
    margin:0 auto 30px;
    color:#555;
    line-height:1.75;
}


/* =====================================================
PROJECTS PAGE
===================================================== */

.projects-section{
    padding:78px 0 92px;
}

.projects-heading{
    margin-bottom:46px;
}


/* =====================================================
FEATURED PROJECT
===================================================== */

.featured-project-section{
    padding:76px 0 84px;
}

.featured-project-heading{
    margin-bottom:40px;
}

.featured-project-card{
    margin:0;
    overflow:hidden;
    background:#ffffff;
    box-shadow:0 14px 38px rgba(28,28,28,.08);
}

.featured-project-link{
    display:grid;
    grid-template-columns:1.35fr .85fr;
    min-height:500px;
    color:inherit;
    border-bottom:none;
}

.featured-project-link:hover,
.featured-project-link:focus{
    border-bottom:none;
}

.featured-project-image{
    min-height:500px;
    overflow:hidden;
    background:#ece9e4;
}

.featured-project-image img{
    width:100%;
    height:100%;
    min-height:500px;
    object-fit:cover;
    transition:transform .8s ease;
}

.featured-project-link:hover .featured-project-image img{
    transform:scale(1.035);
}

.featured-project-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:56px;
}

.featured-project-content h3{
    margin-bottom:10px;
    font-size:32px;
    line-height:1.2;
}

.featured-project-content .project-description{
    margin-bottom:24px;
}


/* =====================================================
PROJECT CARD GRID
===================================================== */

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:48px 34px;
}


/* =====================================================
PROJECT CARD
===================================================== */

.project-card{
    margin:0;
    overflow:hidden;
    background:#ffffff;
    box-shadow:0 10px 28px rgba(28,28,28,.07);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.project-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 38px rgba(28,28,28,.11);
}

.project-card-link{
    display:flex;
    flex-direction:column;
    height:100%;
    color:inherit;
    border-bottom:none;
}

.project-card-link:hover,
.project-card-link:focus{
    border-bottom:none;
}


/* =====================================================
PROJECT IMAGE
===================================================== */

.project-image{
    position:relative;
    aspect-ratio:4 / 3;
    overflow:hidden;
    background:#ece9e4;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.project-card:hover .project-image img{
    transform:scale(1.04);
}

.project-image-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    min-height:260px;
    color:#777;
    background:#ece9e4;
    font-family:'Cormorant Garamond',serif;
    font-size:21px;
    letter-spacing:.04em;
}


/* =====================================================
PROJECT CONTENT
===================================================== */

.project-content{
    display:flex;
    flex:1;
    flex-direction:column;
    align-items:flex-start;
    padding:28px 28px 30px;
}

.project-content h3{
    margin-bottom:8px;
    font-size:23px;
    line-height:1.25;
}

.project-meta{
    margin:0 0 16px;
    color:#80776e;
    font-size:11px;
    font-weight:400;
    line-height:1.6;
    letter-spacing:.11em;
    text-transform:uppercase;
}

.project-description{
    margin:0 0 24px;
    color:#555;
    font-size:15px;
    line-height:1.75;
}

.project-link-text{
    display:inline-block;
    margin-top:auto;
    padding-bottom:3px;
    color:#5f574f;
    border-bottom:1px solid rgba(95,87,79,.55);
    font-size:11px;
    line-height:1.4;
    letter-spacing:.14em;
    text-transform:uppercase;
    transition:
        color .25s ease,
        border-color .25s ease;
}

.project-card:hover .project-link-text,
.featured-project-link:hover .project-link-text{
    color:#30275c;
    border-color:#30275c;
}


/* =====================================================
EMPTY PROJECT STATE
===================================================== */

.projects-empty{
    max-width:650px;
    margin:0 auto;
    text-align:center;
}

.projects-empty h2{
    margin-bottom:14px;
}

.projects-empty p{
    margin-bottom:28px;
    color:#555;
}


/* =====================================================
INDIVIDUAL PROJECT DETAIL
===================================================== */

.project-detail{
    width:100%;
    padding:0 0 90px;
}


/* =====================================================
PROJECT DETAIL HEADER
===================================================== */

.project-detail-header{
    width:100%;
    max-width:900px;
    margin:0 auto;
    padding:70px 0 48px;
}

.project-back{
    display:inline-block;
    margin-bottom:32px;
    padding-bottom:3px;
    color:#6f6860;
    border-bottom:1px solid rgba(111,104,96,.35);
    font-size:10px;
    line-height:1.4;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.project-back:hover{
    color:#30275c;
    border-color:#30275c;
}

.project-detail-category{
    display:block;
    margin-bottom:10px;
    color:#80776e;
    font-size:10px;
    line-height:1.5;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.project-detail-title{
    margin:0 0 7px;
    font-size:48px;
    line-height:1.12;
}

.project-detail-location{
    margin:0 0 26px;
    color:#8a837b;
    font-size:11px;
    line-height:1.5;
    letter-spacing:.05em;
}

.project-detail-intro{
    max-width:820px;
    margin:0;
    color:#4f4f4f;
    font-size:18px;
    line-height:1.8;
}


/* =====================================================
PROJECT HERO
===================================================== */

.project-hero-image{
    width:100%;
    margin:0 0 48px;
    overflow:hidden;
}

.project-hero-image img{
    display:block;
    width:100%;
    height:auto;
}


/* =====================================================
PROJECT FACTS
===================================================== */

.project-facts{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:26px;
    margin:0 0 72px;
    padding:26px 0;
    border-top:1px solid #d8d4cd;
    border-bottom:1px solid #d8d4cd;
}

.project-fact{
    min-width:0;
}

.project-fact-label{
    display:block;
    margin-bottom:6px;
    color:#80776e;
    font-size:9px;
    line-height:1.4;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.project-fact-value{
    display:block;
    color:#444;
    font-size:13px;
    line-height:1.55;
}


/* =====================================================
PROJECT BLOCKS
===================================================== */

.project-block{
    margin:0 0 72px;
}


/* =====================================================
PROJECT TEXT
===================================================== */

.project-text-inner{
    width:100%;
    max-width:820px;
    margin:0 auto;
}

.project-text-inner h2{
    margin:0 0 18px;
    font-size:31px;
    line-height:1.25;
}

.project-text-inner p{
    margin:0 0 22px;
    color:#444;
    font-size:16px;
    line-height:1.85;
}

.project-text-inner p:last-child{
    margin-bottom:0;
}


/* =====================================================
PROJECT FULL WIDTH IMAGE
===================================================== */

.project-image-full{
    width:100%;
    margin:0;
}

.project-image-full img{
    display:block;
    width:100%;
    height:auto;
}

.project-image-full figcaption,
.project-drawing figcaption{
    max-width:820px;
    margin:10px auto 0;
    color:#777;
    font-size:11px;
    line-height:1.6;
}


/* =====================================================
PROJECT TWO-COLUMN GALLERY
===================================================== */

.project-images-two{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
    align-items:start;
}

.project-images-two figure{
    margin:0;
}

.project-images-two img{
    display:block;
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.project-images-two figcaption{
    margin-top:9px;
    color:#777;
    font-size:11px;
    line-height:1.6;
}


/* =====================================================
PROJECT THREE IMAGE GROUP
===================================================== */

.project-images-three{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
    align-items:start;
}

.project-images-three figure{
    margin:0;
}

.project-images-three figure:nth-child(3){
    grid-column:1 / -1;
    width:calc(50% - 13px);
    justify-self:center;
}

.project-images-three img{
    display:block;
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
}


/* =====================================================
PROJECT IMAGE + TEXT
===================================================== */

.project-image-text{
    display:grid;
    grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr);
    gap:56px;
    align-items:center;
}

.project-image-text.image-right{
    grid-template-columns:minmax(300px,.82fr) minmax(0,1.18fr);
}

.project-image-text.image-right .project-image-text-image{
    order:2;
}

.project-image-text.image-right .project-image-text-content{
    order:1;
}

.project-image-text-image{
    min-width:0;
}

.project-image-text-image img{
    display:block;
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.project-image-text-content{
    min-width:0;
}

.project-image-text-content h2{
    margin:0 0 16px;
    font-size:30px;
    line-height:1.25;
}

.project-image-text-content p{
    margin:0;
    color:#444;
    font-size:16px;
    line-height:1.8;
}


/* =====================================================
PROJECT BEFORE / AFTER
===================================================== */

.project-before-after{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
    align-items:start;
}

.project-before-after figure{
    margin:0;
}

.project-before-after img{
    display:block;
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.project-image-label{
    display:block;
    margin-bottom:10px;
    color:#80776e;
    font-size:10px;
    line-height:1.5;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.project-gallery-caption{
    max-width:820px;
    margin:12px auto 0;
    color:#777;
    font-size:11px;
    line-height:1.6;
}


/* =====================================================
PROJECT CALLOUT
===================================================== */

.project-callout{
    width:100%;
    max-width:900px;
    margin:0 auto;
    padding:30px 34px;
    background:#f7f6f3;
    border-left:3px solid #6f6458;
}

.project-callout .section-eyebrow{
    margin-bottom:14px;
}

.project-callout p{
    margin:0;
    color:#444;
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-weight:500;
    line-height:1.55;
}


/* =====================================================
PROJECT DRAWING
===================================================== */

.project-drawing-heading{
    width:100%;
    max-width:820px;
    margin:0 auto 24px;
}

.project-drawing-heading h2{
    margin-bottom:0;
}

.project-drawing{
    width:100%;
    margin:0;
}

.project-drawing img{
    display:block;
    width:100%;
    height:auto;
    background:#ffffff;
}


/* =====================================================
PROJECT PLACEHOLDERS
===================================================== */

.project-detail-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:380px;
    padding:30px;
    background:#ece9e4;
    color:#80776e;
    text-align:center;
}

.project-detail-placeholder span{
    font-family:'Cormorant Garamond',serif;
    font-size:21px;
    font-weight:500;
    line-height:1.4;
    letter-spacing:.03em;
}

.project-placeholder-large{
    min-height:560px;
}

.project-placeholder-small{
    min-height:290px;
}

.project-drawing-placeholder{
    min-height:650px;
    background:#f8f8f6;
    border:1px solid #e5e3df;
}


/* =====================================================
PROJECT DETAIL FOOTER
===================================================== */

.project-detail-footer{
    width:100%;
    max-width:820px;
    margin:20px auto 0;
}

.project-detail-cta{
    padding-top:44px;
    border-top:1px solid #d8d4cd;
}

.project-detail-cta h2{
    margin-bottom:14px;
}

.project-detail-cta p{
    max-width:650px;
    margin-bottom:28px;
    color:#555;
    line-height:1.75;
}

.project-detail-back{
    margin-top:52px;
    padding-top:22px;
    border-top:1px solid #e5e3df;
}

.project-detail-back a{
    color:#6f6860;
    font-size:10px;
    line-height:1.5;
    letter-spacing:.12em;
    text-transform:uppercase;
}


/* =====================================================
ARTICLES PAGE
===================================================== */

.articles-section{
    padding:78px 0 92px;
}

.articles-heading{
    margin-bottom:46px;
}


/* =====================================================
ARTICLE GRID
===================================================== */

.articles-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:54px 36px;
    align-items:stretch;
}


/* =====================================================
ARTICLE CARD
===================================================== */

.article-card{
    min-width:0;
    margin:0;
    padding-top:18px;
    border-top:1px solid #d8d4cd;
}

.article-card-link{
    display:flex;
    flex-direction:column;
    height:100%;
    color:inherit;
    border-bottom:none;
}

.article-card-link:hover,
.article-card-link:focus{
    color:inherit;
    border-bottom:none;
}

.article-card-link:focus-visible{
    outline:1px solid #30275c;
    outline-offset:6px;
}


/* =====================================================
ARTICLE IMAGE
===================================================== */

.article-image{
    position:relative;
    width:100%;
    aspect-ratio:16 / 10;
    overflow:hidden;
    background:#ece9e4;
}

.article-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
        transform .7s ease,
        opacity .35s ease;
}

.article-card:hover .article-image img{
    transform:scale(1.035);
}


/* =====================================================
ARTICLE IMAGE PLACEHOLDER
===================================================== */

.article-image-placeholder{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    min-height:220px;
    padding:30px;
    background:#ece9e4;
    color:#80776e;
    text-align:center;
}

.article-placeholder-brand{
    display:block;
    margin-bottom:6px;
    color:#30275c;
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-weight:600;
    line-height:1.2;
    letter-spacing:.04em;
}

.article-placeholder-type{
    display:block;
    color:#80776e;
    font-family:'Inter',sans-serif;
    font-size:9px;
    font-weight:400;
    line-height:1.4;
    letter-spacing:.20em;
    text-transform:uppercase;
}


/* =====================================================
ARTICLE CONTENT
===================================================== */

.article-content{
    display:flex;
    flex:1;
    flex-direction:column;
    align-items:flex-start;
    padding:24px 0 0;
}

.article-content h3{
    margin:0 0 4px;
    color:#1c1c1c;
    font-size:23px;
    line-height:1.3;
    transition:color .25s ease;
}

.article-card:hover .article-content h3{
    color:#30275c;
}

.article-meta{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:0 7px;
    margin:0 0 10px;
    color:#80776e;
    font-size:10px;
    font-weight:400;
    line-height:1.6;
    letter-spacing:.11em;
    text-transform:uppercase;
}

.article-date{
    display:block;
    margin:0 0 18px;
    color:#8a837b;
    font-size:10px;
    font-weight:400;
    line-height:1.5;
    letter-spacing:.06em;
}

.article-excerpt{
    margin:0 0 24px;
    color:#555;
    font-size:15px;
    line-height:1.75;
}

.article-link-text{
    display:inline-block;
    margin-top:auto;
    padding-bottom:3px;
    color:#5f574f;
    border-bottom:1px solid rgba(95,87,79,.55);
    font-size:11px;
    line-height:1.4;
    letter-spacing:.14em;
    text-transform:uppercase;
    transition:
        color .25s ease,
        border-color .25s ease;
}

.article-card:hover .article-link-text{
    color:#30275c;
    border-color:#30275c;
}


/* =====================================================
EMPTY ARTICLE STATE
===================================================== */

.articles-empty{
    max-width:650px;
    margin:30px auto 0;
    text-align:center;
}

.articles-empty h2{
    margin-bottom:14px;
}

.articles-empty p{
    margin:0;
    color:#555;
    line-height:1.75;
}


/* =====================================================
INDIVIDUAL ARTICLE DETAIL
===================================================== */

.article-detail{
    width:100%;
    padding:0 0 90px;
}

.article-detail-header{
    width:100%;
    max-width:850px;
    margin:0 auto;
    padding:70px 0 48px;
}

.article-back{
    display:inline-block;
    margin-bottom:34px;
    padding-bottom:3px;
    color:#6f6860;
    border-bottom:1px solid rgba(111,104,96,.35);
    font-size:10px;
    line-height:1.4;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.article-back:hover{
    color:#30275c;
    border-color:#30275c;
}

.article-detail-category{
    display:block;
    margin-bottom:12px;
    color:#80776e;
    font-size:10px;
    font-weight:400;
    line-height:1.5;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.article-detail-title{
    margin:0 0 8px;
    font-size:48px;
    line-height:1.12;
}

.article-detail-date{
    display:block;
    margin-bottom:26px;
    color:#8a837b;
    font-size:10px;
    line-height:1.5;
    letter-spacing:.06em;
}

.article-detail-intro{
    max-width:800px;
    margin:0;
    color:#4f4f4f;
    font-size:19px;
    line-height:1.8;
}

.article-detail-hero{
    width:100%;
    margin:0 0 62px;
}

.article-detail-hero img{
    display:block;
    width:100%;
    height:auto;
}

.article-block{
    margin:0 0 58px;
}

.article-body{
    width:100%;
    max-width:820px;
    margin:0 auto;
}

.article-body h2{
    margin:0 0 17px;
    font-size:30px;
    line-height:1.25;
}

.article-body h3{
    margin:34px 0 14px;
    font-size:23px;
    line-height:1.3;
}

.article-body p{
    margin:0 0 22px;
    color:#444;
    font-size:16px;
    line-height:1.9;
}

.article-body p:last-child{
    margin-bottom:0;
}


/* =====================================================
ARTICLE PLACEHOLDERS
===================================================== */

.article-detail-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:500px;
    padding:30px;
    background:#ece9e4;
    color:#80776e;
    text-align:center;
}

.article-detail-placeholder span{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    line-height:1.4;
}

.article-detail-placeholder small,
.article-gallery-placeholder small{
    display:block;
    margin-top:6px;
    color:#8a837b;
    font-family:'Inter',sans-serif;
    font-size:10px;
    font-weight:400;
    line-height:1.5;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.article-placeholder-hero{
    min-height:650px;
}

.article-placeholder-body{
    min-height:500px;
}

.article-placeholder-wide{
    min-height:650px;
}

.article-placeholder-image-text{
    min-height:360px;
}

.article-placeholder-drawing{
    min-height:700px;
    background:#f8f8f6;
    border:1px solid #e5e3df;
}


/* =====================================================
ARTICLE BODY IMAGE
===================================================== */

.article-body-image{
    width:100%;
    margin:0;
}

.article-body-image img{
    display:block;
    width:100%;
    height:auto;
}

.article-body-image figcaption{
    margin-top:10px;
    color:#777;
    font-size:11px;
    line-height:1.6;
}


/* =====================================================
ARTICLE WIDE IMAGE
===================================================== */

.article-wide-image{
    width:100%;
    margin:0;
}

.article-wide-image img{
    display:block;
    width:100%;
    height:auto;
}

.article-wide-image figcaption{
    max-width:820px;
    margin:10px auto 0;
    color:#777;
    font-size:11px;
    line-height:1.6;
}


/* =====================================================
ARTICLE GALLERY HEADING
===================================================== */

.article-gallery-heading{
    width:100%;
    max-width:820px;
    margin:0 auto 24px;
}

.article-gallery-heading h2{
    margin:0;
    font-size:30px;
    line-height:1.25;
}

.article-gallery-heading p{
    max-width:760px;
    margin:10px 0 0;
    color:#555;
    font-size:15px;
    line-height:1.75;
}


/* =====================================================
ARTICLE UNLIMITED GALLERY
===================================================== */

.article-gallery{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:30px 26px;
    align-items:start;
}

.article-gallery figure{
    min-width:0;
    margin:0;
}

.article-gallery img{
    display:block;
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.article-gallery-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    aspect-ratio:4 / 3;
    padding:25px;
    background:#ece9e4;
    color:#80776e;
    text-align:center;
}

.article-gallery-placeholder span{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-family:'Cormorant Garamond',serif;
    font-size:20px;
    line-height:1.4;
}

.article-gallery figcaption{
    margin-top:9px;
    color:#777;
    font-size:11px;
    line-height:1.6;
}

.article-gallery figure:last-child:nth-child(odd){
    grid-column:1 / -1;
    width:calc(50% - 13px);
    justify-self:center;
}


/* =====================================================
ARTICLE IMAGE + TEXT
===================================================== */

.article-image-text{
    display:grid;
    grid-template-columns:minmax(0,1.12fr) minmax(300px,.88fr);
    gap:56px;
    align-items:center;
}

.article-image-text.image-right{
    grid-template-columns:minmax(300px,.88fr) minmax(0,1.12fr);
}

.article-image-text.image-right .article-image-text-image{
    order:2;
}

.article-image-text.image-right .article-image-text-content{
    order:1;
}

.article-image-text-image{
    min-width:0;
}

.article-image-text-image img{
    display:block;
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.article-image-text-content{
    min-width:0;
}

.article-image-text-content h2{
    margin:0 0 17px;
    font-size:30px;
    line-height:1.25;
}

.article-image-text-content p{
    margin:0;
    color:#444;
    font-size:16px;
    line-height:1.85;
}


/* =====================================================
ARTICLE BEFORE / AFTER
===================================================== */

.article-before-after{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
    align-items:start;
}

.article-before-after figure{
    margin:0;
}

.article-before-after img{
    display:block;
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.article-before-after figcaption{
    margin-top:9px;
    color:#777;
    font-size:11px;
    line-height:1.6;
}

.article-image-label{
    display:block;
    margin-bottom:10px;
    color:#80776e;
    font-size:10px;
    font-weight:400;
    line-height:1.5;
    letter-spacing:.12em;
    text-transform:uppercase;
}


/* =====================================================
ARTICLE DRAWING / DIAGRAM
===================================================== */

.article-drawing-heading{
    width:100%;
    max-width:820px;
    margin:0 auto 24px;
}

.article-drawing-heading h2{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.25;
}

.article-drawing-heading p{
    margin:0;
    color:#555;
    font-size:15px;
    line-height:1.75;
}

.article-drawing{
    width:100%;
    margin:0;
}

.article-drawing img{
    display:block;
    width:100%;
    height:auto;
    background:#ffffff;
}

.article-drawing figcaption{
    max-width:820px;
    margin:10px auto 0;
    color:#777;
    font-size:11px;
    line-height:1.6;
}


/* =====================================================
ARTICLE CALLOUT
===================================================== */

.article-callout{
    margin:0;
    padding:30px 34px;
    background:#f7f6f3;
    border-left:3px solid #6f6458;
}

.article-callout .section-eyebrow{
    margin-bottom:14px;
}

.article-callout p{
    margin:0;
    color:#444;
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-weight:500;
    line-height:1.55;
}


/* =====================================================
ARTICLE LISTS
===================================================== */

.article-list,
.article-numbered-list{
    margin:0;
    padding-left:25px;
}

.article-list li,
.article-numbered-list li{
    margin-bottom:10px;
    color:#444;
    font-size:16px;
    line-height:1.8;
}

.article-list li:last-child,
.article-numbered-list li:last-child{
    margin-bottom:0;
}


/* =====================================================
ARTICLE DETAIL FOOTER
===================================================== */

.article-detail-footer{
    width:100%;
    max-width:820px;
    margin:20px auto 0;
    padding-top:44px;
    border-top:1px solid #d8d4cd;
}

.article-cta h2{
    margin-bottom:14px;
}

.article-cta p{
    max-width:650px;
    margin-bottom:28px;
    color:#555;
    line-height:1.75;
}

.article-detail-back{
    margin-top:52px;
    padding-top:22px;
    border-top:1px solid #e5e3df;
}

.article-detail-back a{
    color:#6f6860;
    font-size:10px;
    line-height:1.5;
    letter-spacing:.12em;
    text-transform:uppercase;
}


/* =====================================================
BUTTONS
===================================================== */

.button,
a.button,
button,
input[type="submit"]{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    background:#6f6458;
    color:#ffffff !important;
    border:none;
    border-radius:0;
    font-size:12px;
    letter-spacing:.12em;
    text-transform:uppercase;
    cursor:pointer;
    transition:
        background .25s ease,
        transform .25s ease;
}

.button:hover,
a.button:hover,
button:hover,
input[type="submit"]:hover{
    background:#5c5247;
    border-bottom:none;
    transform:translateY(-2px);
}


/* =====================================================
CONTACT
===================================================== */

.contact-section{
    padding:40px 0 90px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:80px;
    align-items:start;
}

.contact-form-wrapper{
    position:relative;
    padding:40px;
    background:#ffffff;
    border:1px solid #ece8e2;
    box-shadow:0 22px 50px rgba(0,0,0,.10);
}

.contact-form{
    margin-top:0;
}

.contact-info{
    padding-top:40px;
}

.contact-info .info-block{
    margin-bottom:40px;
}

.contact-info h3{
    margin-bottom:6px;
    color:#444;
    font-size:15px;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.contact-info p{
    margin:0;
    font-size:17px;
    line-height:1.7;
}

.form-note{
    margin:0 0 30px;
    color:#666;
    font-size:14px;
    line-height:1.6;
}

.form-row{
    margin-bottom:26px;
}

.form-row label{
    display:block;
    margin:0 0 8px;
    color:#555;
    font-size:12px;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.form-row input,
.form-row textarea,
.form-row select{
    display:block;
    width:100%;
    padding:13px 14px;
    background:#ffffff;
    color:#2e2e2e;
    border:1px solid #ddd;
    border-radius:0;
    font-family:inherit;
    font-size:16px;
    line-height:1.4;
    appearance:none;
    -webkit-appearance:none;
    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.form-row textarea{
    min-height:150px;
    resize:vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus{
    outline:none;
    border-color:#777;
    box-shadow:0 0 0 1px rgba(111,100,88,.08);
}

.contact-form .button{
    width:100%;
    min-height:50px;
    padding:16px 26px;
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
}

.form-direct{
    margin-top:28px;
    padding-top:22px;
    color:#777;
    border-top:1px solid #ece8e2;
    font-size:14px;
}


/* =====================================================
MAP
===================================================== */

.contact-map{
    margin:24px 0 0;
    padding-top:16px;
    border-top:1px solid #e5e3df;
}

.contact-map iframe{
    display:block;
    width:100%;
    height:220px;
    border:0;
    filter:grayscale(90%) contrast(95%) brightness(102%);
    transition:filter .35s ease;
}

.contact-map:hover iframe{
    filter:grayscale(0%);
}


/* =====================================================
CONTACT MODAL BODY
===================================================== */

body.contact-modal-open{
    overflow:hidden;
}


/* =====================================================
REVIEW MODAL
===================================================== */

.review-modal{
    position:fixed;
    inset:0;
    z-index:999999;
    display:none;
    width:100%;
    height:100vh;
    height:100dvh;
    padding:24px;
    overflow-y:auto;
    overflow-x:hidden;
    background:rgba(0,0,0,.55);
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
}

.review-modal.active{
    display:flex;
    align-items:center;
    justify-content:center;
}

.review-modal-content{
    position:relative;
    display:flex;
    flex-direction:column;
    width:100%;
    max-width:760px;
    max-height:calc(100vh - 48px);
    max-height:calc(100dvh - 48px);
    margin:auto;
    padding:50px;
    overflow-y:auto;
    overflow-x:hidden;
    background:#ffffff;
    border-radius:2px;
    box-shadow:0 28px 70px rgba(0,0,0,.18);
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
    touch-action:pan-y;
}

.review-modal-content h3{
    flex:0 0 auto;
    margin:0 0 30px;
    font-size:32px;
    line-height:1.2;
}

#reviewContent{
    flex:0 0 auto;
    min-width:0;
}

.review-field{
    min-width:0;
    padding:14px 0;
    border-bottom:1px solid #ece8e2;
}

.review-field:last-child{
    border-bottom:none;
}

.review-field strong{
    display:block;
    margin-bottom:6px;
    color:#777;
    font-size:11px;
    line-height:1.4;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.review-value{
    display:block;
    min-width:0;
    color:#333;
    font-size:15px;
    line-height:1.7;
    overflow-wrap:anywhere;
    word-break:break-word;
}

.review-empty{
    color:#999;
    font-style:italic;
}


/* =====================================================
REVIEW ACTIONS
===================================================== */

.review-actions{
    position:sticky;
    bottom:0;
    z-index:20;
    display:flex;
    flex:0 0 auto;
    flex-wrap:wrap;
    gap:16px;
    margin-top:30px;
    padding:20px 0 4px;
    background:#ffffff;
    border-top:1px solid #ece8e2;
}

.review-actions .button{
    position:relative;
    z-index:30;
    min-width:150px;
    min-height:50px;
    padding:15px 28px;
    cursor:pointer;
    pointer-events:auto;
    touch-action:manipulation;
    -webkit-user-select:none;
    user-select:none;
    -webkit-tap-highlight-color:transparent;
}

.review-actions .button:disabled{
    cursor:default;
    opacity:.65;
    transform:none;
}

.review-actions .button.touch-active{
    transform:translateY(1px);
}

.button-secondary{
    background:#d9d5cf;
    color:#222 !important;
}

.button-secondary:hover,
.button-secondary:focus{
    background:#c9c3bb;
}


/* =====================================================
SUCCESS MODAL
===================================================== */

.success-modal{
    position:fixed;
    inset:0;
    z-index:1000000;
    display:none;
    width:100%;
    height:100vh;
    height:100dvh;
    padding:24px;
    overflow-y:auto;
    background:rgba(0,0,0,.55);
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
}

.success-modal.active{
    display:flex;
    align-items:center;
    justify-content:center;
    animation:fadeIn .3s ease;
}

.success-modal-content{
    width:100%;
    max-width:620px;
    margin:auto;
    padding:70px 60px;
    background:#ffffff;
    text-align:center;
    box-shadow:0 28px 70px rgba(0,0,0,.18);
}

.success-check{
    display:flex;
    align-items:center;
    justify-content:center;
    width:84px;
    height:84px;
    margin:0 auto 30px;
    background:#f3f0eb;
    border-radius:50%;
    color:#6f6458;
    font-size:34px;
    font-weight:600;
}

.success-modal-content h3{
    margin-bottom:18px;
    font-size:42px;
    line-height:1.1;
}

.success-modal-content p{
    max-width:440px;
    margin:0 auto 36px;
    color:#555;
    font-size:17px;
    line-height:1.8;
}

.success-modal-content .button{
    min-height:50px;
    touch-action:manipulation;
}

@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}


/* =====================================================
FOOTER
===================================================== */

.site-footer{
    margin-top:120px;
    padding:64px 0 32px;
    background:#e8e5df;
    border-top:1px solid #ddd;
}

.site-footer .row{
    grid-template-columns:1.1fr .75fr 1.65fr;
    gap:48px;
    align-items:start;
}

.site-footer h3{
    margin-bottom:22px;
}

.site-footer p{
    line-height:1.8;
}


/* =====================================================
FOOTER NAVIGATION
===================================================== */

.site-footer .main-nav{
    margin-top:0;
}

.site-footer .main-nav ul{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    flex-wrap:nowrap;
    gap:7px;
}

.site-footer .main-nav li{
    margin:0;
    padding:0;
}

.site-footer .main-nav a{
    display:inline-block;
    border-bottom:none;
    font-size:13px;
    line-height:1.6;
    letter-spacing:1.4px;
    text-transform:uppercase;
    opacity:.8;
}

.site-footer .main-nav a::after{
    display:none;
}

.site-footer .main-nav a:hover,
.site-footer .main-nav a:focus{
    border-bottom:none;
    opacity:1;
    text-decoration:underline;
    text-decoration-thickness:1px;
    text-underline-offset:4px;
}


/* =====================================================
FOOTER SERVICE AREA
===================================================== */

.service-region{
    max-width:430px;
    margin-bottom:22px;
}

.service-area{
    display:grid;
    grid-template-columns:minmax(145px,.85fr) minmax(180px,1.15fr);
    gap:36px;
    align-items:start;
}

.service-left,
.service-right{
    line-height:1.8;
}

.service-left > div + div{
    margin-top:18px;
}

.service-area strong{
    display:inline-block;
    margin-bottom:2px;
    color:#1c1c1c;
    font-weight:500;
}

.footer-bottom{
    margin-top:48px;
    padding-top:20px;
    border-top:1px solid #d5d1ca;
    color:#555;
    font-size:13px;
    text-align:center;
}


/* =====================================================
RESPONSIVE: TABLET
===================================================== */

@media(max-width:1000px){

    .featured-project-link{
        grid-template-columns:1.1fr .9fr;
    }

    .featured-project-content{
        padding:42px;
    }

    .projects-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:42px 30px;
    }

    .project-facts{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:24px 34px;
    }

    .project-image-text{
        gap:40px;
    }

    .articles-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:48px 32px;
    }

    .article-image-text{
        gap:40px;
    }

    .site-footer .row{
        grid-template-columns:1fr 1fr;
        gap:44px;
    }

    .site-footer .col-4:nth-child(3){
        grid-column:1 / -1;
    }

    .service-region,
    .service-area{
        max-width:650px;
    }

}


/* =====================================================
RESPONSIVE: SMALL TABLET
===================================================== */

@media(max-width:900px){

    .header-inner{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .header-navigation{
        width:100%;
        align-items:center;
    }

    .header-phone{
        margin-bottom:10px;
    }

    .main-nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .contact-info{
        padding-top:0;
    }

    .process-grid{
        gap:40px 46px;
    }

    .row{
        grid-template-columns:1fr;
    }

    .site-footer .row{
        grid-template-columns:1fr 1fr;
        gap:44px;
    }

    .site-footer .col-4:nth-child(3){
        grid-column:1 / -1;
    }

    .site-footer .main-nav ul{
        align-items:flex-start;
        justify-content:flex-start;
    }

    .service-area{
        grid-template-columns:1fr 1fr;
        max-width:620px;
    }

}


/* =====================================================
RESPONSIVE: 800PX
===================================================== */

@media(max-width:800px){

    .featured-project-link{
        grid-template-columns:1fr;
    }

    .featured-project-image,
    .featured-project-image img{
        min-height:420px;
    }

    .featured-project-content{
        padding:38px 34px 42px;
    }

    .project-detail-title,
    .article-detail-title{
        font-size:42px;
    }

    .project-image-text,
    .project-image-text.image-right,
    .article-image-text,
    .article-image-text.image-right{
        grid-template-columns:1fr;
        gap:28px;
    }

    .project-image-text.image-right .project-image-text-image,
    .project-image-text.image-right .project-image-text-content,
    .article-image-text.image-right .article-image-text-image,
    .article-image-text.image-right .article-image-text-content{
        order:initial;
    }

}


/* =====================================================
RESPONSIVE: MOBILE
===================================================== */

@media(max-width:700px){

    .page-header{
        padding:58px 0 46px;
    }

    .page-title{
        font-size:40px;
    }

    .page-intro{
        font-size:17px;
    }

    .section{
        padding:58px 0;
    }

    .services-section{
        padding:58px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:38px;
    }

    .service-item{
        padding:22px 0 0;
    }

    .process-grid{
        grid-template-columns:1fr;
        gap:34px;
    }

    .process-item{
        padding-top:18px;
    }

    .projects-section{
        padding:58px 0 68px;
    }

    .featured-project-section{
        padding:58px 0 64px;
    }

    .featured-project-image,
    .featured-project-image img{
        min-height:340px;
    }

    .featured-project-content{
        padding:32px 26px 36px;
    }

    .featured-project-content h3{
        font-size:27px;
    }

    .projects-grid{
        grid-template-columns:1fr;
        gap:38px;
    }

    .project-image{
        aspect-ratio:4 / 3;
    }

    .project-detail{
        padding-bottom:65px;
    }

    .project-detail-header{
        padding:52px 0 38px;
    }

    .project-back{
        margin-bottom:26px;
    }

    .project-detail-title{
        font-size:36px;
    }

    .project-detail-intro{
        font-size:17px;
    }

    .project-facts{
        grid-template-columns:repeat(2,minmax(0,1fr));
        margin-bottom:52px;
    }

    .project-block{
        margin-bottom:50px;
    }

    .project-images-two,
    .project-images-three,
    .project-before-after{
        grid-template-columns:1fr;
        gap:34px;
    }

    .project-images-three figure:nth-child(3){
        grid-column:auto;
        width:100%;
    }

    .project-text-inner h2,
    .project-image-text-content h2,
    .project-drawing-heading h2{
        font-size:27px;
    }

    .project-callout{
        padding:25px;
    }

    .project-callout p{
        font-size:20px;
    }

    .project-placeholder-large,
    .project-drawing-placeholder{
        min-height:420px;
    }

    .articles-section{
        padding:58px 0 68px;
    }

    .articles-heading{
        margin-bottom:38px;
    }

    .articles-grid{
        grid-template-columns:1fr;
        gap:44px;
    }

    .article-card{
        padding-top:16px;
    }

    .article-detail{
        padding-bottom:65px;
    }

    .article-detail-header{
        padding:52px 0 38px;
    }

    .article-back{
        margin-bottom:26px;
    }

    .article-detail-title{
        font-size:36px;
    }

    .article-detail-intro{
        font-size:17px;
    }

    .article-block{
        margin-bottom:48px;
    }

    .article-gallery{
        grid-template-columns:1fr;
        gap:30px;
    }

    .article-gallery figure:last-child:nth-child(odd){
        grid-column:auto;
        width:100%;
    }

    .article-before-after{
        grid-template-columns:1fr;
        gap:34px;
    }

    .article-gallery-heading h2,
    .article-body h2,
    .article-image-text-content h2,
    .article-drawing-heading h2{
        font-size:27px;
    }

    .article-placeholder-hero,
    .article-placeholder-wide{
        min-height:380px;
    }

    .article-placeholder-body{
        min-height:330px;
    }

    .article-placeholder-image-text{
        min-height:320px;
    }

    .article-placeholder-drawing{
        min-height:400px;
    }

    .article-callout{
        padding:25px;
    }

    .article-callout p{
        font-size:20px;
    }


    /* =================================================
    CONTACT REVIEW MODAL - MOBILE
    ================================================= */

    .review-modal{
        align-items:flex-start;
        justify-content:center;
        padding:
            max(10px, env(safe-area-inset-top))
            10px
            max(10px, env(safe-area-inset-bottom));
    }

    .review-modal.active{
        align-items:flex-start;
        justify-content:center;
    }

    .review-modal-content{
        width:100%;
        max-width:none;
        max-height:calc(
            100dvh
            - 20px
            - env(safe-area-inset-top)
            - env(safe-area-inset-bottom)
        );
        margin:0;
        padding:28px 22px 0;
    }

    .review-modal-content h3{
        margin-bottom:20px;
        font-size:28px;
    }

    .review-field{
        padding:12px 0;
    }

    .review-value{
        font-size:15px;
        line-height:1.6;
    }

    .review-actions{
        position:sticky;
        bottom:0;
        z-index:100;
        flex-direction:column;
        width:calc(100% + 44px);
        gap:10px;
        margin:26px -22px 0;
        padding:
            16px
            22px
            calc(16px + env(safe-area-inset-bottom));
        background:#ffffff;
        border-top:1px solid #ddd8d2;
        box-shadow:0 -10px 22px rgba(0,0,0,.07);
    }

    .review-actions .button{
        display:flex;
        width:100%;
        min-width:0;
        min-height:56px;
        flex:none;
        margin:0;
        padding:16px 20px;
        font-size:12px;
        pointer-events:auto;
        touch-action:manipulation;
    }

    .success-modal{
        padding:
            max(16px, env(safe-area-inset-top))
            16px
            max(16px, env(safe-area-inset-bottom));
    }

    .success-modal-content{
        padding:
            50px
            32px
            calc(40px + env(safe-area-inset-bottom));
    }

    .success-modal-content h3{
        font-size:34px;
    }

    .success-check{
        width:72px;
        height:72px;
        font-size:28px;
    }

    .site-footer{
        padding:52px 0 28px;
    }

    .site-footer .row{
        grid-template-columns:1fr;
        gap:38px;
    }

    .site-footer .col-4:nth-child(3){
        grid-column:auto;
    }

    .site-footer .main-nav ul{
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        gap:8px;
    }

    .service-area{
        grid-template-columns:1fr;
        gap:18px;
    }

    .footer-bottom{
        margin-top:40px;
    }

}


/* =====================================================
RESPONSIVE: SMALL MOBILE
===================================================== */

@media(max-width:600px){

    .logo{
        gap:12px;
    }

    .logo img{
        height:55px;
    }

    .firm-name{
        font-size:25px;
    }

    .firm-tag{
        font-size:10px;
        letter-spacing:1.5px;
    }

    .main-nav ul{
        gap:12px 16px;
    }

    .main-nav a{
        font-size:11px;
        letter-spacing:1.3px;
    }

    .header-phone{
        font-size:12px;
    }

    h1{
        font-size:30px;
    }

    .hero{
        padding:70px 0 45px;
    }

    .hero h1{
        font-size:38px;
    }

    .page-title{
        font-size:36px;
    }

    .service-item h3{
        font-size:21px;
    }

}


/* =====================================================
RESPONSIVE: VERY SMALL MOBILE
===================================================== */

@media(max-width:500px){

    .project-content{
        padding:24px 22px 27px;
    }

    .project-content h3{
        font-size:21px;
    }

    .project-description{
        font-size:15px;
    }

    .project-detail-title{
        font-size:32px;
    }

    .project-facts{
        grid-template-columns:1fr;
        gap:18px;
    }

    .project-text-inner p,
    .project-image-text-content p{
        font-size:15px;
    }

    .project-detail-placeholder{
        min-height:280px;
    }

    .article-content h3{
        font-size:21px;
    }

    .article-excerpt{
        font-size:15px;
    }

    .article-image{
        aspect-ratio:16 / 10;
    }

    .article-detail-title{
        font-size:32px;
    }

    .article-body p,
    .article-image-text-content p,
    .article-list li,
    .article-numbered-list li{
        font-size:15px;
    }

    .article-placeholder-hero,
    .article-placeholder-wide{
        min-height:300px;
    }

    .article-placeholder-body,
    .article-placeholder-image-text{
        min-height:260px;
    }

    .article-placeholder-drawing{
        min-height:320px;
    }

    .contact-form-wrapper{
        padding:28px 22px;
    }

    .review-modal{
        padding:
            max(8px, env(safe-area-inset-top))
            8px
            max(8px, env(safe-area-inset-bottom));
    }

    .review-modal-content{
        max-height:calc(
            100dvh
            - 16px
            - env(safe-area-inset-top)
            - env(safe-area-inset-bottom)
        );
        padding:24px 18px 0;
    }

    .review-modal-content h3{
        font-size:26px;
    }

    .review-actions{
        width:calc(100% + 36px);
        margin:22px -18px 0;
        padding:
            14px
            18px
            calc(14px + env(safe-area-inset-bottom));
    }

    .review-actions .button{
        min-height:58px;
    }

}


/* =====================================================
PROJECT DETAIL PAGE
===================================================== */

.project-detail-header{
    padding:74px 0 54px;
    background:#ffffff;
}

.project-detail-header .container{
    max-width:900px;
}

.project-back-link{
    display:inline-block;
    margin-bottom:42px;
    color:#6f675f;
    border-bottom:1px solid rgba(111,103,95,.35);
    font-size:11px;
    line-height:1.4;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.project-detail-title{
    max-width:850px;
    margin-bottom:12px;
    font-size:52px;
    line-height:1.08;
}

.project-detail-meta{
    margin:0 0 26px;
    color:#80776e;
    font-size:11px;
    font-weight:400;
    line-height:1.6;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.project-detail-intro{
    max-width:760px;
    margin:0;
    color:#555;
    font-size:18px;
    line-height:1.8;
}


/* =====================================================
PROJECT COVER
===================================================== */

.project-cover-section{
    padding:0 0 78px;
    background:#ffffff;
}

.project-cover-section .container{
    max-width:1200px;
}

.project-cover-section a{
    display:block;
    border-bottom:none;
}

.project-cover-image{
    width:100%;
    max-height:760px;
    object-fit:cover;
}

.project-image-caption{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:6px 20px;
    margin:12px 0 0;
    color:#777;
    font-size:11px;
    line-height:1.6;
}


/* =====================================================
PROJECT DESCRIPTION
===================================================== */

.project-description-section{
    padding-top:74px;
    padding-bottom:84px;
}

.project-description-container{
    max-width:820px;
}

.project-detail-copy{
    color:#444;
    font-size:17px;
    line-height:1.9;
}

.project-detail-copy p{
    margin-bottom:27px;
}

.project-detail-copy p:last-child{
    margin-bottom:0;
}


/* =====================================================
PROJECT DETAIL GALLERY
===================================================== */

.project-gallery-section{
    padding:78px 0 88px;
}

.project-detail-gallery{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:38px 30px;
}

.project-gallery-item{
    min-width:0;
    margin:0;
}

.project-gallery-item a{
    display:block;
    border-bottom:none;
    overflow:hidden;
    background:#ece9e4;
}

.project-gallery-item img{
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
    transition:transform .6s ease;
}

.project-gallery-item a:hover img{
    transform:scale(1.025);
}

.project-gallery-item figcaption{
    display:flex;
    flex-direction:column;
    gap:3px;
    margin-top:10px;
    color:#6f6860;
    font-size:12px;
    line-height:1.6;
}

.project-gallery-item figcaption small{
    color:#8a837b;
    font-size:10px;
    letter-spacing:.04em;
}


/* =====================================================
PROJECT DETAIL CTA
===================================================== */

.project-detail-cta{
    padding-top:82px;
    padding-bottom:92px;
}

.project-detail-cta h2{
    margin-bottom:14px;
}

.project-detail-cta p{
    margin:0 auto 30px;
    color:#555;
    line-height:1.8;
}


/* =====================================================
PROJECT DETAIL RESPONSIVE
===================================================== */

@media(max-width:800px){

    .project-detail-title{
        font-size:44px;
    }

    .project-detail-gallery{
        grid-template-columns:1fr;
        gap:34px;
    }

    .project-cover-image{
        max-height:none;
    }

}

@media(max-width:600px){

    .project-detail-header{
        padding:56px 0 42px;
    }

    .project-back-link{
        margin-bottom:30px;
    }

    .project-detail-title{
        font-size:38px;
    }

    .project-detail-intro{
        font-size:17px;
    }

    .project-cover-section{
        padding-bottom:54px;
    }

    .project-description-section{
        padding-top:55px;
        padding-bottom:62px;
    }

    .project-detail-copy{
        font-size:16px;
    }

    .project-gallery-section{
        padding-top:58px;
        padding-bottom:66px;
    }

}


/* =====================================================
ARTICLE DETAIL PAGE
===================================================== */

.article-detail-header{
    padding:72px 0 54px;
    background:#f7f5f1;
}

.article-detail-header-container{
    max-width:900px;
}

.article-back-link{
    display:inline-block;
    margin-bottom:28px;
    color:#6f6458;
    border-bottom:1px solid rgba(111,100,88,.45);
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.article-back-link:hover,
.article-back-link:focus{
    color:#30275c;
    border-color:#30275c;
}

.article-detail-title{
    max-width:900px;
    margin:10px 0 18px;
    font-size:48px;
    line-height:1.08;
}

.article-detail-meta{
    display:flex;
    flex-wrap:wrap;
    gap:8px 18px;
    margin:0 0 24px;
    color:#80776e;
    font-size:11px;
    line-height:1.6;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.article-detail-intro{
    max-width:760px;
    margin:0;
    color:#555;
    font-size:19px;
    line-height:1.75;
}


/* =====================================================
ARTICLE COVER
===================================================== */

.article-cover-section{
    padding:48px 0 30px;
    background:#fff;
}

.article-cover-figure{
    max-width:1100px;
    margin:0 auto;
}

.article-cover-image{
    display:block;
    width:100%;
    max-height:720px;
    object-fit:cover;
    background:#ece9e4;
}

.article-image-caption{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:8px 20px;
    margin:10px 0 0;
    color:#827a72;
    font-size:11px;
    line-height:1.5;
}


/* =====================================================
ARTICLE BODY
===================================================== */

.article-body-section{
    padding-top:64px;
    padding-bottom:80px;
}

.article-body-container{
    max-width:940px;
}

.article-detail-copy{
    max-width:860px;
    margin:0 auto;
}

.article-text-paragraph{
    max-width:760px;
    margin:0 auto 28px;
    color:#444;
    font-size:17px;
    line-height:1.88;
}

.article-detail-empty{
    max-width:700px;
    margin:0 auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
    text-align:center;
}


/* =====================================================
ARTICLE CONTENT IMAGES
===================================================== */

.article-content-figure{
    margin-top:42px;
    margin-bottom:46px;
}

.article-content-figure img{
    display:block;
    width:100%;
    height:auto;
    background:#ece9e4;
}

.article-content-figure figcaption{
    display:flex;
    flex-direction:column;
    gap:4px;
    margin-top:9px;
    color:#827a72;
    font-size:11px;
    line-height:1.5;
}

.article-content-figure figcaption small{
    color:#9a938b;
}


/* =====================================================
WIDE
===================================================== */

.article-content-figure--wide{
    width:min(100%,860px);
    margin-left:auto;
    margin-right:auto;
}


/* =====================================================
FULL WIDTH
===================================================== */

.article-content-figure--full{
    width:min(1120px,calc(100vw - 48px));
    margin-left:50%;
    margin-right:0;
    transform:translateX(-50%);
}


/* =====================================================
SIDE IMAGE + TEXT
===================================================== */

.article-content-row{
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:44px;
    align-items:center;
    max-width:980px;
    margin:48px auto;
}

.article-content-row-image{
    min-width:0;
}

.article-content-row-text{
    min-width:0;
}

.article-content-row .article-text-paragraph{
    max-width:none;
    margin:0;
}

.article-content-side-image{
    margin:0;
}

.article-content-row--right{
    grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
}

.article-content-row--right .article-content-row-image{
    grid-column:2;
    grid-row:1;
}

.article-content-row--right .article-content-row-text{
    grid-column:1;
    grid-row:1;
}


/* =====================================================
ARTICLE GALLERY
===================================================== */

.article-gallery-section{
    padding-top:72px;
    padding-bottom:82px;
}

.article-detail-gallery{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:38px 30px;
}

.article-gallery-item{
    margin:0;
}

.article-gallery-item img{
    display:block;
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
    background:#ece9e4;
}

.article-gallery-item figcaption{
    display:flex;
    flex-direction:column;
    gap:4px;
    margin-top:9px;
    color:#827a72;
    font-size:11px;
    line-height:1.5;
}


/* =====================================================
ARTICLE LINKS / IMAGES
===================================================== */

.article-lightbox{
    display:block;
    border-bottom:none;
}

.article-lightbox:hover,
.article-lightbox:focus{
    border-bottom:none;
}


/* =====================================================
ARTICLE CTA
===================================================== */

.article-detail-cta{
    padding-top:78px;
    padding-bottom:88px;
}

.article-detail-cta h2{
    margin-bottom:14px;
}

.article-detail-cta p{
    max-width:650px;
    margin:0 auto 30px;
    color:#555;
    line-height:1.8;
}


/* =====================================================
ARTICLE DETAIL: TABLET
===================================================== */

@media(max-width:900px){

    .article-detail-title{
        font-size:42px;
    }

    .article-content-row,
    .article-content-row--right{
        grid-template-columns:minmax(0,1fr) minmax(0,1fr);
        gap:30px;
    }

}


/* =====================================================
ARTICLE DETAIL: MOBILE
===================================================== */

@media(max-width:700px){

    .article-detail-header{
        padding:54px 0 42px;
    }

    .article-detail-title{
        font-size:36px;
    }

    .article-detail-intro{
        font-size:17px;
    }

    .article-cover-section{
        padding:30px 0 20px;
    }

    .article-body-section{
        padding-top:46px;
        padding-bottom:58px;
    }

    .article-text-paragraph{
        font-size:16px;
        line-height:1.82;
    }

    .article-content-row,
    .article-content-row--right{
        display:flex;
        flex-direction:column;
        gap:20px;
        margin:38px auto 44px;
    }

    .article-content-row--right .article-content-row-image,
    .article-content-row--right .article-content-row-text{
        grid-column:auto;
        grid-row:auto;
    }

    .article-content-row-image{
        order:1;
        width:100%;
    }

    .article-content-row-text{
        order:2;
        width:100%;
    }

    .article-content-figure--full{
        width:100%;
        margin-left:auto;
        margin-right:auto;
        transform:none;
    }

    .article-detail-gallery{
        grid-template-columns:1fr;
        gap:34px;
    }

    .article-gallery-section{
        padding-top:56px;
        padding-bottom:62px;
    }

}
