:root {
  --ink: #201d19;
  --ink-soft: #4e4942;
  --paper: #f2eee7;
  --paper-deep: #e6ded2;
  --line: rgba(32, 29, 25, .19);
  --bronze: #9b7659;
  --stone: #a39c92;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 5.5rem);
  --section: clamp(3.25rem, 6.5vw, 6.75rem);
  --section-sm: clamp(2.25rem, 4.5vw, 4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 15px; line-height: 1.5; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
h1, h2, h3, p, figure { margin: 0; }

.skip-link { position: fixed; z-index: 100; top: -5rem; left: 1rem; background: var(--paper); padding: .8rem 1rem; color: var(--ink); transition: top .2s; }
.skip-link:focus { top: 1rem; }
.section { padding-left: var(--gutter); padding-right: var(--gutter); }
.eyebrow { display: flex; align-items: center; gap: .75rem; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 2.75rem; height: 1px; background: currentColor; opacity: .6; }
.eyebrow.light, .light { color: #fff; }
.body-large { max-width: 32rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.32rem); line-height: 1.65; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
h1 em, h2 em { color: var(--bronze); font-weight: 400; }

.site-header { position: fixed; z-index: 30; top: 0; left: 0; display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 2.15rem var(--gutter); color: #fff; transition: background .35s, color .35s, padding .35s; }
.site-header.is-scrolled { padding-top: 1.3rem; padding-bottom: 1.3rem; background: rgba(242, 238, 231, .96); box-shadow: 0 1px 0 rgba(32,29,25,.1); color: var(--ink); backdrop-filter: blur(12px); }
.wordmark { position: relative; z-index: 40; font-size: 18px; font-weight: 700; letter-spacing: .13em; white-space: nowrap; transition: color .3s; }
.wordmark span { font-weight: 400; }
.header-actions { display: flex; align-items: center; gap: 1.5rem; }
.header-contact { display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 1.6rem; border: 1.5px solid currentColor; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; transition: background .3s, color .3s, border-color .3s; }
.header-contact span { font-size: 15px; transition: transform .3s; }
.header-contact:hover { color: #fff; background: var(--bronze); border-color: var(--bronze); }
.header-contact:hover span { transform: translate(2px, -2px); }
.menu-button { position: relative; z-index: 40; display: flex; align-items: center; gap: .8rem; padding: 0; border: 0; background: transparent; color: currentColor; font: inherit; cursor: pointer; }
.menu-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.menu-lines { position: relative; width: 1.9rem; height: 1rem; flex-shrink: 0; }
.menu-lines i { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: currentColor; font-style: normal; transition: transform .3s cubic-bezier(.7,0,.2,1), top .3s, background .25s, width .25s; }
.menu-lines i:first-child { top: 0; }
.menu-lines i:last-child { top: 100%; margin-top: -2px; }
.menu-button:hover .menu-lines i { background: var(--bronze); width: 115%; }
.menu-open .menu-lines i:first-child { top: 50%; width: 115%; transform: translateY(-50%) rotate(45deg); }
.menu-open .menu-lines i:last-child { top: 50%; width: 115%; margin-top: -1px; transform: translateY(-50%) rotate(-45deg); }
.menu-open .site-header { color: #fff; background: transparent; box-shadow: none; backdrop-filter: none; }
@media (max-width: 560px) { .header-contact { display: none; } }

.mobile-menu { position: fixed; z-index: 25; inset: 0; overflow: hidden; color: var(--paper); background: radial-gradient(130% 100% at 100% 0%, #2c2823 0%, var(--ink) 60%); clip-path: inset(0 0 100% 0); transition: clip-path .6s cubic-bezier(.7,0,.2,1); }
.menu-open .mobile-menu { clip-path: inset(0 0 0 0); }
.menu-inner { display: flex; align-items: center; justify-content: space-between; gap: 5vw; height: 100%; padding: 0 var(--gutter); }
.menu-links { flex: 0 0 auto; max-width: 640px; }
.mobile-menu nav { display: grid; margin: 2rem 0 auto; counter-reset: navitem; }
.mobile-menu nav a { counter-increment: navitem; display: flex; align-items: baseline; gap: 1.2rem; width: fit-content; padding: .12em 0; font-family: var(--serif); font-size: clamp(2.6rem, 4.6vw, 5.2rem); letter-spacing: -.05em; line-height: 1; opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease, color .25s; }
.mobile-menu nav a::before { content: counter(navitem, decimal-leading-zero); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--bronze); }
.menu-open .mobile-menu nav a { opacity: 1; transform: none; }
.mobile-menu nav a:nth-child(1) { transition-delay: .08s; }.mobile-menu nav a:nth-child(2) { transition-delay: .14s; }.mobile-menu nav a:nth-child(3) { transition-delay: .2s; }.mobile-menu nav a:nth-child(4) { transition-delay: .26s; }.mobile-menu nav a:nth-child(5) { transition-delay: .32s; }.mobile-menu nav a:nth-child(6) { transition-delay: .38s; }
.mobile-menu nav a:hover, .mobile-menu nav a[aria-current] { color: var(--bronze); }
.menu-kicker, .menu-locations { color: #a9a39b; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }.menu-locations { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.2); }
.menu-preview { position: relative; flex: 1 1 auto; max-width: 480px; height: min(64vh, 600px); overflow: hidden; background: #2c2823; opacity: 0; transform: translateX(28px) scale(1.02); transition: opacity .6s ease .25s, transform .6s ease .25s; }
.menu-open .menu-preview { opacity: 1; transform: none; }
.menu-preview img { transition: opacity .4s ease, transform 6s ease; transform: scale(1.04); }
.menu-open .menu-preview img { transform: scale(1); }
.menu-preview.is-switching img { opacity: 0; }
.menu-preview::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,9,8,.6), transparent 55%); }
.menu-preview span { position: absolute; z-index: 1; left: 1.6rem; bottom: 1.5rem; font-family: var(--serif); font-size: 1.15rem; color: #fff; }

.hero { position: relative; min-height: min(870px, 100svh); height: 100vh; overflow: hidden; background: #777; color: #fff; }.hero > img { position: absolute; inset: 0; animation: heroIn 1.2s ease-out both; }.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,12,10,.58), rgba(12,12,10,.12) 57%, rgba(12,12,10,.24)), linear-gradient(0deg, rgba(12,12,10,.5), transparent 44%); }.hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; min-height: inherit; padding: clamp(7rem, 14vh, 10rem) var(--gutter) 2.25rem; }.hero h1 { max-width: 950px; font-size: clamp(4.4rem, 10.3vw, 10.5rem); color: #fff; }.hero h1 em { color: #e4d3c3; }.hero-footer { display: grid; grid-template-columns: minmax(270px, 410px) auto; align-items: end; gap: 2rem; }.hero-footer > p { max-width: 30rem; font-size: clamp(.83rem, 1vw, .98rem); line-height: 1.7; }.hero-actions { display: flex; align-items: center; justify-self: end; gap: 1.6rem; }.text-link { display: inline-flex; gap: .75rem; align-items: center; padding-bottom: .5rem; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: color .2s, gap .2s; }.text-link:hover { gap: 1.05rem; color: var(--bronze); }.text-link span { font-size: 15px; }.round-link { display: grid; width: 2.7rem; height: 2.7rem; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; font-size: 17px; transition: background .2s, color .2s; }.round-link:hover { color: var(--ink); background: var(--paper); }.hero-index { position: absolute; z-index: 1; right: var(--gutter); bottom: 9.35rem; display: flex; align-items: center; gap: .5rem; font-size: 10px; font-weight: 700; letter-spacing: .12em; }.hero-index span { display: block; width: 3rem; height: 1px; background: rgba(255,255,255,.7); }

.intro { position: relative; display: grid; grid-template-columns: 1fr 1.3fr 1.15fr; align-items: end; gap: 4vw; min-height: 790px; padding-top: var(--section); padding-bottom: var(--section); }.intro-number { align-self: start; color: var(--bronze); font-family: var(--serif); font-size: clamp(7rem, 14vw, 14rem); letter-spacing: -.09em; line-height: .7; }.intro-number span { font-family: var(--sans); font-size: .25em; vertical-align: top; }.intro-copy { padding-top: 5.5rem; }.intro-copy h2, .section-head h2, .work-heading h2, .interiors h2, .whitefield h2, .markets h2, .contact h2 { margin: 1.1rem 0 2rem; font-size: clamp(3.2rem, 5.7vw, 6.5rem); }.small-note { margin-top: 3rem; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.intro-image { height: min(570px, 62vw); margin: 0; }.intro-image figcaption, .interior-grid figcaption { display: flex; justify-content: space-between; padding-top: .8rem; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.intro-image figcaption span, .interior-grid figcaption span { color: var(--bronze); }

.capabilities { padding-top: var(--section); padding-bottom: var(--section); background: var(--paper-deep); }.section-head { display: grid; grid-template-columns: 1fr 1.7fr; padding-bottom: 4.75rem; }.section-head h2 { margin: 0; }.capability-list { border-top: 1px solid var(--line); }.capability { display: grid; grid-template-columns: 10% 1fr auto; gap: 1rem; align-items: start; padding: 1.5rem 0 1.7rem; border-bottom: 1px solid var(--line); transition: padding-left .3s, color .25s; }.capability:hover, .capability.active { padding-left: 1.5rem; color: var(--bronze); }.cap-num { padding-top: .65rem; color: var(--ink-soft); font-size: 10px; font-weight: 700; }.capability h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.3rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }.capability p { max-width: 25rem; margin-top: .4rem; color: var(--ink-soft); font-size: .88rem; line-height: 1.7; }.cap-arrow { padding: .5rem; font-size: 1.4rem; }.capability-image { position: relative; height: min(630px, 66vw); margin-top: 4rem; overflow: hidden; background: #b8b0a7; }.capability-image img { transition: opacity .18s; }.capability-image.changing img { opacity: 0; }.capability-image span { position: absolute; bottom: 1.25rem; left: 1.5rem; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.work { padding-top: var(--section); padding-bottom: var(--section); }.work-heading { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: end; padding-bottom: 4.5rem; }.work-heading h2 { grid-column: 2; margin: 0; font-size: clamp(3.2rem, 5.7vw, 6.5rem); }.work-heading > p:last-child { grid-column: 2; max-width: 25rem; color: var(--ink-soft); line-height: 1.7; }
.mini-list { display: grid; gap: .55rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }.mini-list li { position: relative; padding-left: 1.1rem; color: var(--ink-soft); font-size: .82rem; line-height: 1.55; }.mini-list li::before { content: '\2014'; position: absolute; left: 0; top: 0; color: var(--bronze); }
.stats-band { padding-top: var(--section-sm); padding-bottom: var(--section-sm); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.stats > div { padding: 2.6rem 1.5rem 2.6rem 0; border-left: 1px solid var(--line); padding-left: 1.75rem; }.stats > div:first-child { border-left: 0; padding-left: 0; }.stats strong { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 400; letter-spacing: -.04em; color: var(--bronze); line-height: 1; }.stats span { display: block; margin-top: .7rem; color: var(--ink-soft); font-size: 10.5px; font-weight: 700; letter-spacing: .07em; line-height: 1.5; text-transform: uppercase; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }.process-grid article { padding: 2rem; background: var(--paper); }.process-grid img { height: 190px; margin-bottom: 1.75rem; }.process-grid span { display: block; margin-bottom: .5rem; color: var(--bronze); font-size: 10px; font-weight: 700; letter-spacing: .1em; }.process-grid h3 { margin: .35rem 0 .6rem; font-family: var(--serif); font-size: clamp(1.5rem, 2vw, 1.85rem); font-weight: 400; letter-spacing: -.03em; }.process-grid p { color: var(--ink-soft); font-size: .82rem; line-height: 1.6; }

.interiors { padding: var(--section) 0; background: #cbb8a4; }.interiors-intro { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; padding-bottom: 5.5rem; }.interiors-intro h2 { grid-column: 2; margin: 0; color: #28231e; }.interiors-intro .body-large { grid-column: 2; color: #554c42; }.interiors h2 em { color: #76523a; }.interior-grid { display: grid; grid-template-columns: 1.15fr .72fr .57fr; gap: clamp(1rem, 2.2vw, 2rem); padding: 0 var(--gutter); align-items: end; }.interior-grid figure { margin: 0; }.interior-large { align-self: start; }.interior-large img { height: min(690px, 54vw); }.interior-tall img { height: min(570px, 48vw); }.interior-detail img { height: min(330px, 30vw); }

.whitefield { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 8vw, 9rem); align-items: center; padding-top: var(--section); padding-bottom: var(--section); }.whitefield-image { height: min(760px, 72vw); overflow: hidden; }.whitefield-copy h2 { margin-top: 1rem; }.whitefield-copy .body-large { margin-bottom: 2.4rem; }.building-details { margin: 0; border-top: 1px solid var(--line); }.building-details div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }.building-details dt { color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }.building-details dd { margin: 0; font-size: .9rem; }.facilities { margin-top: 1.7rem; color: var(--bronze); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.facilities span { margin: 0 .45rem; color: var(--ink-soft); }

.stonecore { position: relative; overflow: hidden; color: #f5f0e9; background: #242422; }.stonecore-hero { height: min(690px, 70vw); }.stonecore-hero::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, #242422 0%, transparent 45%); }.stonecore-content { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; margin-top: -11rem; padding-bottom: 5rem; }.stonecore h2 { margin: 1rem 0 0; font-size: clamp(4rem, 7.5vw, 8.7rem); }.stonecore h2 em { color: #c79a72; }.stonecore-copy { align-self: end; }.stonecore-copy p { margin-bottom: .5rem; color: #c79a72; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }.stonecore-copy strong { display: block; margin-bottom: 2rem; font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 500; }.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0; padding-top: 1.25rem; padding-bottom: 2rem; border-top: 1px solid rgba(255,255,255,.28); list-style: none; }.process-list li { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2.6rem); letter-spacing: -.035em; }.process-list span { display: block; margin-bottom: 1rem; color: #c79a72; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .1em; }

.markets { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6vw; align-items: end; padding-top: var(--section); padding-bottom: var(--section); }.markets-title h2 { margin: 1.2rem 0 0; }.market-list { border-top: 1px solid var(--line); }.market-list > div { display: grid; grid-template-columns: 2.6rem 1fr; padding: 1.55rem 0; border-bottom: 1px solid var(--line); }.market-list span { padding-top: .4rem; color: var(--bronze); font-size: 10px; font-weight: 700; }.market-list h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3.1vw, 3.25rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }.market-list p { grid-column: 2; margin-top: .7rem; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.market-list .market-desc { margin-top: .9rem; color: var(--ink-soft); font-size: .85rem; font-weight: 500; line-height: 1.6; letter-spacing: normal; text-transform: none; }
.next-steps { display: grid; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }.next-steps > div { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; }.next-steps span { color: var(--bronze); font-family: var(--serif); font-size: 1.4rem; }.next-steps strong { display: block; font-size: .88rem; font-weight: 700; }.next-steps p { margin: .25rem 0 0; color: var(--ink-soft); font-size: .82rem; line-height: 1.5; }

.statement { padding-top: clamp(4.5rem, 10vw, 9rem); padding-bottom: clamp(4.5rem, 9vw, 8rem); color: #f5f0e9; background: var(--ink); }.statement h2 { margin: 1.4rem 0 3.4rem; font-size: clamp(4rem, 10.8vw, 12rem); }.statement h2 em { color: #b79071; }.statement-types { color: #bfb9b2; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.statement-types span { margin: 0 .55rem; color: #b79071; }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; padding-top: var(--section); padding-bottom: var(--section); }.contact-title h2 { margin-bottom: 1.3rem; }.contact-title > p:last-child { color: var(--ink-soft); font-size: 1.05rem; }.contact-form { display: grid; gap: 2.2rem; padding-top: 1.2rem; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }.contact-form label { display: grid; gap: .6rem; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: .45rem 0 .8rem; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; outline: none; color: var(--ink); background: transparent; font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; resize: vertical; }.contact-form select { cursor: pointer; }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--bronze); box-shadow: 0 1px 0 var(--bronze); }.form-submit { display: flex; gap: 1.5rem; align-items: center; }.button-link { border: 0; background: none; color: var(--ink); }.form-submit p { color: var(--bronze); font-size: 11px; line-height: 1.4; }

.site-footer { padding: 0 var(--gutter) 2rem; color: #eee8e0; background: #121110; }
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-cta h2 { margin: .6rem 0 0; font-size: clamp(2.6rem, 5vw, 4.5rem); color: #f5f0e9; }
.footer-cta h2 em { color: var(--bronze); }
.footer-cta .round-link { flex-shrink: 0; width: 4.5rem; height: 4.5rem; border-color: rgba(255,255,255,.4); color: #fff; font-size: 22px; }
.footer-cta .round-link:hover { background: var(--bronze); color: #fff; border-color: var(--bronze); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr .9fr; gap: 2rem; padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 6vw, 4.5rem); border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand .wordmark { font-size: 18px; }
.footer-brand p { margin-top: 1.2rem; color: #aca69e; font-size: .82rem; line-height: 1.7; }
.footer-col-title { margin: 0 0 1.2rem; color: #766f66; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-col nav, .footer-locations { display: grid; gap: .8rem; }
.footer-col nav a { color: #eee8e0; font-size: .92rem; transition: color .2s; }
.footer-col nav a:hover, .footer-col nav a[aria-current] { color: var(--bronze); }
.footer-locations p { margin: 0; color: #eee8e0; font-size: .85rem; font-weight: 600; }
.footer-locations p span { display: block; margin-top: .3rem; color: #aca69e; font-size: .78rem; font-weight: 400; }
.footer-col .text-link.light { color: #eee8e0; }
.footer-col .text-link.light:hover { color: var(--bronze); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.6rem; color: #766f66; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.footer-bottom a { color: #aca69e; }
.footer-bottom a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }.reveal.in-view { opacity: 1; transform: none; }.image-reveal { clip-path: inset(0 0 100% 0); transition: clip-path .9s cubic-bezier(.7,0,.2,1); }.image-reveal.in-view { clip-path: inset(0 0 0 0); }
@keyframes heroIn { from { transform: scale(1.08); } to { transform: scale(1); } }

.preloader { position: fixed; z-index: 999; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--ink); pointer-events: none; clip-path: inset(0 0 0 0); animation: preloaderWipe .7s cubic-bezier(.7,0,.2,1) 1.05s forwards; }
.preloader-mark { position: relative; font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700; letter-spacing: .18em; color: var(--paper); }
.preloader-mark span { font-weight: 400; }
.preloader-mark::after { content: ''; position: absolute; left: 0; bottom: -.85rem; height: 2px; width: 100%; background: var(--bronze); transform: scaleX(0); transform-origin: left; animation: preloaderLine .7s cubic-bezier(.7,0,.2,1) .15s forwards; }
@keyframes preloaderLine { to { transform: scaleX(1); } }
@keyframes preloaderWipe { to { clip-path: inset(0 0 100% 0); } }
.no-intro .preloader { display: none; }

.hero-content > *, .page-hero-content > *, .project-detail-copy > * { animation: heroTextIn .8s cubic-bezier(.2,.7,.2,1) both; animation-delay: .15s; }
.hero-content > *:nth-child(2), .page-hero-content > *:nth-child(2), .project-detail-copy > *:nth-child(2) { animation-delay: .3s; }
.hero-content > *:nth-child(3) { animation-delay: .45s; }
/* First-load only: sync the cascade with the curtain, which wipes bottom-to-top,
   so content lower in the hero (revealed first) animates in first. */
html:not(.no-intro) .page-hero-content > *, html:not(.no-intro) .project-detail-copy > * { animation-delay: 1.15s; }
html:not(.no-intro) .page-hero-content > *:nth-child(2), html:not(.no-intro) .project-detail-copy > *:nth-child(2) { animation-delay: 1.3s; }
html:not(.no-intro) .hero-content > *:nth-child(3) { animation-delay: 1.1s; }
html:not(.no-intro) .hero-content > *:nth-child(2) { animation-delay: 1.3s; }
html:not(.no-intro) .hero-content > *:nth-child(1) { animation-delay: 1.5s; }
@keyframes heroTextIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .hero h1 { font-size: clamp(3.6rem, 8.6vw, 7.5rem); }
  .intro { grid-template-columns: .8fr 1.3fr 1fr; gap: 2.5vw; }
  .whitefield, .stonecore-content, .markets, .contact, .feature-split-copy dl { gap: 3rem; }
  .archive-grid { gap: 1.25rem; }
  .lifecycle article { padding: 1.5rem; }.lifecycle article img { height: 190px; }
  .process-grid article { padding: 1.5rem; }.process-grid img { height: 150px; }
  .stats > div { padding-right: 1rem; }.stats strong { font-size: clamp(2rem, 3.4vw, 3rem); }
  .related-work-grid img { height: 170px; }
}

@media (max-width: 820px) {
  .site-header { padding-top: 1.2rem; padding-bottom: 1.2rem; }.site-header.is-scrolled { padding-top: .8rem; padding-bottom: .8rem; }
  .menu-inner { flex-direction: column; justify-content: center; gap: 0; padding: 6rem var(--gutter) 2rem; }.menu-links { max-width: none; }.mobile-menu nav a { font-size: clamp(2.5rem, 9vw, 4.6rem); }.menu-preview { display: none; }
  .hero { min-height: 700px; }.hero > img { object-position: 43% center; }.hero-content { padding-top: 7.4rem; }.hero h1 { font-size: clamp(4.1rem, 15.2vw, 7rem); }.hero-footer { grid-template-columns: 1fr; gap: 1.8rem; }.hero-actions { justify-self: start; }.hero-index { display: none; }
  .intro { grid-template-columns: .55fr 1fr; gap: 2rem; }.intro-number { grid-column: 1; grid-row: 1; }.intro-copy { grid-column: 2; grid-row: 1; padding-top: 0; }.intro-image { grid-column: 1 / -1; height: 82vw; margin-top: 1rem; }.section-head, .work-heading, .interiors-intro { grid-template-columns: 1fr; gap: 1.5rem; }.section-head h2, .work-heading h2, .work-heading > p:last-child, .interiors-intro h2, .interiors-intro .body-large { grid-column: auto; }.work-heading { padding-bottom: 2.8rem; }.interior-grid { grid-template-columns: 1fr 1fr; }.interior-large { grid-column: 1 / -1; }.interior-large img { height: 105vw; }.interior-tall img { height: 75vw; }.interior-detail img { height: 75vw; }.stats { grid-template-columns: 1fr 1fr; row-gap: 1.75rem; }.stats > div:nth-child(2) { border-left: 1px solid var(--line); padding-left: 1.75rem; }.stats > div:nth-child(odd) { border-left: 0; padding-left: 0; }.process-grid { grid-template-columns: 1fr 1fr; }
  .whitefield { grid-template-columns: 1fr; gap: 3rem; }.whitefield-image { height: 110vw; }.stonecore-content { grid-template-columns: 1fr; gap: 2rem; margin-top: -5rem; }.stonecore-hero { height: 90vw; }.process-list { grid-template-columns: 1fr 1fr; gap: 1.8rem 1rem; }.markets { grid-template-columns: 1fr; gap: 3rem; }.contact { grid-template-columns: 1fr; gap: 2.5rem; }.footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
}

@media (max-width: 520px) {
  :root { --gutter: 1.25rem; --section: 5.5rem; }.hero-footer > p { font-size: .78rem; }.hero-actions { gap: 1.1rem; }.intro { grid-template-columns: 1fr; }.intro-number, .intro-copy { grid-column: 1; }.intro-number { grid-row: auto; }.intro-copy { grid-row: auto; }.intro-copy h2, .section-head h2, .work-heading h2, .interiors h2, .whitefield h2, .markets h2, .contact h2 { font-size: clamp(3rem, 14vw, 4.5rem); }.intro-image { height: 115vw; }.capability { grid-template-columns: 2.4rem 1fr auto; }.capability:hover, .capability.active { padding-left: .4rem; }.capability h3 { font-size: 2.5rem; }.capability p { font-size: .76rem; }.capability-image { height: 96vw; margin-top: 2.5rem; }.stats { grid-template-columns: 1fr; row-gap: 1.4rem; }.stats > div { border-left: 0 !important; padding-left: 0 !important; padding-top: 1.4rem; border-top: 1px solid var(--line); }.stats > div:first-child { border-top: 0; padding-top: 0; }.process-grid { grid-template-columns: 1fr; }.interior-grid { gap: .75rem; }.interior-grid figcaption { font-size: 8px; }.building-details div { grid-template-columns: 5.8rem 1fr; }.facilities { line-height: 1.9; }.stonecore-hero { height: 110vw; }.stonecore-content { margin-top: -3.5rem; }.stonecore h2 { font-size: clamp(3.8rem, 17vw, 5.5rem); }.process-list { padding-left: var(--gutter); padding-right: var(--gutter); }.statement h2 { font-size: clamp(3.8rem, 17vw, 5.5rem); }.statement-types { line-height: 2; }.form-row { grid-template-columns: 1fr; gap: 2.2rem; }.form-submit { align-items: start; flex-direction: column; }.footer-cta { flex-direction: column; align-items: start; gap: 1.5rem; }.footer-cta .round-link { align-self: end; margin-top: -3.5rem; }.footer-grid { grid-template-columns: 1fr; row-gap: 2.25rem; }.footer-bottom { flex-direction: column; align-items: start; gap: .6rem; }.menu-locations { display: grid; gap: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }.reveal, .image-reveal, .capability-image img, .menu-preview, .menu-preview img, .mobile-menu, .mobile-menu nav a, .site-header, .menu-lines i, .preloader, .hero-content > *, .page-hero-content > *, .project-detail-copy > * { transition: none !important; animation: none !important; }.reveal, .mobile-menu nav a, .hero-content > *, .page-hero-content > *, .project-detail-copy > * { opacity: 1 !important; transform: none !important; }.image-reveal { clip-path: none; }.hero > img { animation: none; }.preloader { display: none !important; }
}

/* Multi-page compositions */
.page-hero { position: relative; display: flex; min-height: min(700px, 78svh); align-items: end; overflow: hidden; color: #fff; background: #3c3935; }.page-hero > img { position: absolute; inset: 0; }.page-hero::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(18,16,14,.67), rgba(18,16,14,.13) 72%), linear-gradient(0deg, rgba(18,16,14,.55), transparent 45%); }.page-hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .65fr; gap: 3rem; width: 100%; padding-top: 10rem; padding-bottom: 3.5rem; }.page-hero h1 { margin-top: 1rem; font-size: clamp(4.4rem, 9vw, 10rem); }.page-hero .page-hero-copy { align-self: end; max-width: 24rem; font-size: 1rem; line-height: 1.75; }.page-hero .page-hero-copy strong { display: block; margin-bottom: .8rem; color: #e0c5ad; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }.page-hero.interior > img { object-position: center 72%; }.page-hero.stone > img { object-position: center; }.page-hero.clean { min-height: 62svh; background: var(--ink); }.page-hero.clean::after { display: none; }.page-hero.clean .page-hero-content { align-items: end; }.page-hero.clean h1 { max-width: 9ch; }
.page-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 8vw, 9rem); padding-top: clamp(4.5rem, 8vw, 8rem); padding-bottom: clamp(4.5rem, 8vw, 8rem); }.page-intro h2 { margin-top: 1rem; font-size: clamp(3.2rem, 5.7vw, 6.4rem); }.page-intro .body-large { margin-top: 2rem; }.page-intro .intro-side { border-top: 1px solid var(--line); padding-top: 1rem; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.archive-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2vw, 2rem); padding-top: 0; padding-bottom: var(--section); }.project-card { grid-column: span 5; position: relative; margin: 0; }.project-card:nth-child(2) { grid-column: 7 / span 6; padding-top: 6rem; }.project-card:nth-child(3) { grid-column: 2 / span 5; }.project-card:nth-child(4) { grid-column: 8 / span 4; padding-top: 4rem; }.project-card:nth-child(5) { grid-column: 1 / span 6; }.project-card:nth-child(6) { grid-column: 8 / span 5; padding-top: 8rem; }.project-card-image { display: block; height: clamp(280px, 40vw, 600px); overflow: hidden; background: #d0c9c0; }.project-card:nth-child(2) .project-card-image { height: clamp(360px, 52vw, 720px); }.project-card:nth-child(4) .project-card-image { height: clamp(240px, 29vw, 440px); }.project-card:nth-child(6) .project-card-image { height: clamp(280px, 35vw, 520px); }.project-card img { transition: transform .55s ease; }.project-card:hover img { transform: scale(1.045); }.project-card figcaption { display: grid; grid-template-columns: 2.2rem 1fr auto; gap: .7rem; padding-top: .9rem; border-top: 1px solid var(--line); }.project-card figcaption > span { padding-top: .35rem; color: var(--bronze); font-size: 10px; font-weight: 700; }.project-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.4rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }.project-card p { grid-column: 2; max-width: 25rem; margin: .45rem 0 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.6; }.project-card .text-link { grid-column: 3; grid-row: 1; align-self: start; white-space: nowrap; font-size: 9px; }
.archive-cta { display: flex; justify-content: center; padding-top: .5rem; }.archive-cta .text-link { color: var(--ink); }
.feature-split { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 600px; color: #efe8de; background: #2c2925; }.feature-split-image { min-height: 100%; }.feature-split-copy { display: flex; flex-direction: column; justify-content: end; padding: clamp(3rem, 6vw, 7rem); }.feature-split-copy h2 { margin: 1.2rem 0 2rem; font-size: clamp(4rem, 7vw, 8rem); }.feature-split-copy h2 em { color: #c39a78; }.feature-split-copy .body-large { color: #d0c8bf; }.feature-split-copy dl { margin: 3rem 0 0; border-top: 1px solid rgba(255,255,255,.25); }.feature-split-copy dl div { display: grid; grid-template-columns: 7.5rem 1fr; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.25); }.feature-split-copy dt { color: #c49a76; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.feature-split-copy dd { margin: 0; font-size: .85rem; }.facility-list { margin-top: 1.3rem; color: #c49a76; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.lifecycle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }.lifecycle article { padding: 2rem; background: var(--paper); }.lifecycle article img { height: 230px; margin: 2rem 0 1.75rem; }.lifecycle article span { color: var(--bronze); font-size: 10px; font-weight: 700; letter-spacing: .1em; }.lifecycle h3 { margin: .6rem 0; font-family: var(--serif); font-size: clamp(2.8rem, 4vw, 4.5rem); font-weight: 400; letter-spacing: -.045em; }.lifecycle p { max-width: 22rem; color: var(--ink-soft); font-size: .87rem; line-height: 1.7; }
.editorial-strip { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(1rem, 3vw, 3rem); padding-top: 0; padding-bottom: var(--section); }.editorial-strip figure { margin: 0; }.editorial-strip figure:first-child img { height: min(680px, 55vw); }.editorial-strip figure:last-child { padding-top: 8rem; }.editorial-strip figure:last-child img { height: min(450px, 37vw); }.editorial-strip figcaption { display: flex; justify-content: space-between; padding-top: .7rem; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.project-detail-hero { position: relative; min-height: min(760px, 90svh); display: flex; align-items: end; overflow: hidden; color: #fff; background: var(--ink); }.project-detail-hero > img { position: absolute; inset: 0; }.project-detail-hero::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(12,11,10,.76), rgba(12,11,10,.02) 66%); }.project-detail-copy { position: relative; z-index: 1; display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; width: 100%; padding-top: 10rem; padding-bottom: 3rem; }.project-detail-copy h1 { margin-top: 1rem; font-size: clamp(4.4rem, 9vw, 10rem); }.project-detail-copy .detail-summary { align-self: end; max-width: 33rem; font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.6; }.detail-index { color: #ddb99b; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.project-detail-content { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; padding-top: var(--section); padding-bottom: 5rem; }.project-detail-content h2 { font-size: clamp(3rem, 5vw, 5.8rem); }.project-detail-content .detail-copy { max-width: 41rem; color: var(--ink-soft); font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.75; }.project-facts { margin: 3rem 0; border-top: 1px solid var(--line); }.project-facts div { display: grid; grid-template-columns: 10rem 1fr; padding: .95rem 0; border-bottom: 1px solid var(--line); }.project-facts dt { color: var(--bronze); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }.project-facts dd { margin: 0; color: var(--ink); font-size: .9rem; }.project-gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1rem, 2vw, 2rem); padding-bottom: var(--section); }.project-gallery figure { margin: 0; }.project-gallery figure:first-child { grid-row: span 2; }.project-gallery img { height: 26vw; min-height: 260px; }.project-gallery figure:first-child img { height: calc(52vw + 2rem); min-height: 540px; }.project-gallery figcaption { padding-top: .65rem; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }.related-work { padding-top: 4.5rem; padding-bottom: 4.5rem; color: var(--paper); background: var(--ink); }.related-work-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 2rem; }.related-work h2 { margin-top: .8rem; font-size: clamp(3rem, 5.2vw, 5.6rem); }.related-work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }.related-work-grid a { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.28); }.related-work-grid img { height: 210px; }.related-work-grid strong { align-self: end; font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 3rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }.related-work-grid a:hover strong { color: #d6ac8a; }
.interior-story { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2rem; padding-top: 0; padding-bottom: var(--section); }.interior-story figure { margin: 0; }.interior-story figure:nth-child(1) { grid-column: 1 / span 7; }.interior-story figure:nth-child(2) { grid-column: 9 / span 4; padding-top: 10rem; }.interior-story figure:nth-child(3) { grid-column: 2 / span 4; }.interior-story figure:nth-child(4) { grid-column: 7 / span 6; padding-top: 5rem; }.interior-story img { height: min(620px, 52vw); }.interior-story figure:nth-child(2) img { height: min(420px, 38vw); }.interior-story figure:nth-child(3) img { height: min(360px, 32vw); }.interior-story figure:nth-child(4) img { height: min(520px, 45vw); }.interior-story figcaption { display: flex; gap: .8rem; padding-top: .8rem; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }.interior-story figcaption span { color: var(--bronze); }
.contact-page { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; padding-top: 4rem; padding-bottom: var(--section); }.contact-page aside { position: sticky; top: 7rem; align-self: start; }.contact-page h1 { margin: 1rem 0 2rem; font-size: clamp(4.2rem, 7vw, 7.8rem); }.contact-page aside p:last-child { max-width: 24rem; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.65; }.contact-page .contact-form { padding-top: 0; }.form-message { min-height: 2.8rem; margin: 0; font-size: 11px; line-height: 1.5; }.form-message.is-success { color: #52724e; }.form-message.is-error { color: #9d4d42; }

@media (max-width: 820px) {
  .page-hero { min-height: 620px; }.page-hero-content, .project-detail-copy { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 2.4rem; }.page-hero h1, .project-detail-copy h1 { font-size: clamp(4rem, 12vw, 7rem); }.page-hero .page-hero-copy { max-width: 31rem; }.page-intro { grid-template-columns: 1fr; gap: 1.7rem; }.archive-grid { gap: 2rem 1rem; }.project-card, .project-card:nth-child(2), .project-card:nth-child(3), .project-card:nth-child(4), .project-card:nth-child(5), .project-card:nth-child(6) { grid-column: span 6; padding-top: 0; }.project-card:nth-child(even) { padding-top: 4rem; }.feature-split { grid-template-columns: 1fr; }.feature-split-image { min-height: 70vw; }.lifecycle { grid-template-columns: 1fr; }.lifecycle article { display: grid; grid-template-columns: 4rem 1fr; min-height: 0; gap: 0 1rem; }.lifecycle article img { grid-column: 1 / -1; height: 300px; margin: 1rem 0 1.5rem; }.lifecycle article span { grid-row: 2; }.lifecycle article h3 { margin: 0; }.lifecycle article p { grid-column: 2; margin: .6rem 0 0; }.project-detail-content { grid-template-columns: 1fr; gap: 2rem; }.project-gallery { grid-template-columns: 1fr 1fr; }.project-gallery figure:first-child { grid-column: 1 / -1; }.project-gallery img { height: 44vw; }.project-gallery figure:first-child img { height: 70vw; min-height: 0; }.interior-story figure:nth-child(1) { grid-column: 1 / span 7; }.interior-story figure:nth-child(2) { grid-column: 9 / span 4; padding-top: 6rem; }.interior-story figure:nth-child(3) { grid-column: 1 / span 5; }.interior-story figure:nth-child(4) { grid-column: 7 / span 6; padding-top: 2rem; }.contact-page { grid-template-columns: 1fr; gap: 3rem; }.contact-page aside { position: static; }.related-work-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .page-hero { min-height: 610px; }.page-hero-content { padding-top: 7rem; }.page-hero h1, .project-detail-copy h1, .contact-page h1 { font-size: clamp(3.7rem, 16vw, 5.3rem); }.page-hero .page-hero-copy { font-size: .88rem; }.project-card, .project-card:nth-child(2), .project-card:nth-child(3), .project-card:nth-child(4), .project-card:nth-child(5), .project-card:nth-child(6) { grid-column: 1 / -1; padding-top: 0; }.project-card:nth-child(even) { padding-top: 0; }.project-card-image, .project-card:nth-child(2) .project-card-image, .project-card:nth-child(4) .project-card-image, .project-card:nth-child(6) .project-card-image { height: 105vw; }.project-card figcaption { grid-template-columns: 1.8rem 1fr; }.project-card .text-link { grid-column: 2; grid-row: auto; justify-self: start; margin-top: .8rem; }.feature-split { min-height: 0; }.feature-split-image { min-height: 105vw; }.feature-split-copy { padding: 3rem var(--gutter) 4rem; }.feature-split-copy dl div { grid-template-columns: 6rem 1fr; }.lifecycle article { grid-template-columns: 2rem 1fr; padding: 1.4rem; }.lifecycle article img { height: 69vw; }.editorial-strip { grid-template-columns: 1fr; }.editorial-strip figure:first-child img, .editorial-strip figure:last-child img { height: 100vw; }.editorial-strip figure:last-child { padding-top: 0; }.project-detail-hero { min-height: 630px; }.project-detail-copy { padding-top: 7rem; }.project-detail-copy .detail-summary { font-size: 1rem; }.project-gallery { grid-template-columns: 1fr; }.project-gallery figure:first-child { grid-column: auto; }.project-gallery img, .project-gallery figure:first-child img { height: 95vw; min-height: 0; }.related-work-grid a { grid-template-columns: 1fr; }.related-work-grid img { height: 65vw; }.interior-story { gap: 1rem; }.interior-story figure:nth-child(1), .interior-story figure:nth-child(2), .interior-story figure:nth-child(3), .interior-story figure:nth-child(4) { grid-column: 1 / -1; padding-top: 0; }.interior-story img, .interior-story figure:nth-child(2) img, .interior-story figure:nth-child(3) img, .interior-story figure:nth-child(4) img { height: 105vw; }.contact-page { padding-top: 3rem; }
}
