:root {
  --paper: #f5f2eb;
  --ink: #1f211e;
  --muted: #77786f;
  --rule: #cbc9c0;
  --accent: #a8553d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.site-header {
  min-height: 104px; padding: 26px clamp(24px, 5vw, 76px); display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid var(--rule); position: sticky; top: 0;
  z-index: 20; background: color-mix(in srgb, var(--paper) 94%, transparent); backdrop-filter: blur(12px);
}
.brand { display: flex; flex-direction: column; gap: 4px; font-family: Georgia, 'Times New Roman', serif; font-size: 22px; }
.brand small { font-family: Arial, sans-serif; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
nav { display: flex; gap: clamp(18px, 3vw, 42px); font-size: 13px; }
nav ul { display: flex; gap: clamp(18px, 3vw, 42px); list-style: none; margin: 0; padding: 0; }
nav a { position: relative; padding: 8px 0; }
nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--accent); transition: right .18s ease; }
nav a:hover::after, nav a:focus-visible::after { right: 0; }

.hero { min-height: 720px; display: grid; grid-template-columns: minmax(0, 5fr) minmax(420px, 7fr); }
.hero-copy { padding: 82px clamp(28px, 5vw, 76px) 56px; display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow { margin: 0 0 36px; text-transform: uppercase; letter-spacing: .16em; font-size: 10px; color: var(--muted); }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.04em; }
h1 { margin: 0; font-size: clamp(52px, 5.8vw, 88px); line-height: .94; }
.hero-lead { margin: 44px 0 30px; max-width: 530px; font-size: 18px; line-height: 1.55; color: #484942; }
.text-link { margin-top: auto; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 13px; display: flex; gap: 44px; }
.hero-visual { margin: 0; min-width: 0; position: relative; overflow: hidden; background: #ede8dd; }
.hero-visual img { height: 100%; object-fit: cover; filter: saturate(.82) contrast(.96); transition: transform .6s ease; }
.hero-visual:hover img { transform: scale(1.018); }
.hero-visual figcaption { position: absolute; bottom: 18px; left: 20px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.metrics div { padding: 34px clamp(22px, 3vw, 48px); border-right: 1px solid var(--rule); }
.metrics div:last-child { border-right: 0; }
.metrics strong { display: block; font-family: Georgia, serif; font-size: clamp(28px, 3.2vw, 49px); font-weight: 400; }
.metrics span { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.section { padding: 110px clamp(24px, 5vw, 76px); border-bottom: 1px solid var(--rule); }
.section-heading { display: grid; grid-template-columns: 1fr 1.55fr 1fr; gap: 40px; align-items: end; margin-bottom: 68px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h1, .section-heading h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(48px, 6vw, 86px); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.section-heading > p:last-child { max-width: 390px; line-height: 1.6; color: var(--muted); }
.section-heading.compact { grid-template-columns: 1fr 2.5fr; align-items: start; }
.section-heading.compact > p:last-child { grid-column: 2; }

.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px 28px; }
.project-card a { display: block; }
.project-image { aspect-ratio: 16/10; overflow: hidden; background: #d9d4c8; position: relative; }
.project-image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.project-image.is-photo img { filter: grayscale(1) contrast(1.08) brightness(.98); }
.project-card:hover img { transform: scale(1.025); }
.project-image span { position: absolute; inset: auto 24px 14px auto; font-family: Georgia, serif; font-size: clamp(80px, 15vw, 220px); line-height: .8; color: rgba(255,255,255,.6); }
.project-image.stone { background: #c7c2b7; }.project-image.charcoal { background: #4c4e4a; }.project-image.brick { background: #a76854; }
.project-image.sage { background: #95a096; }.project-image.sand { background: #d5c09c; }.project-image.blue { background: #9eafb5; }
.project-meta { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 11px; border-top: 1px solid var(--rule); font-size: 10px; color: var(--muted); }
.project-card h3 { margin: 17px 0 4px; font-family: Georgia, serif; font-size: clamp(26px, 2.5vw, 38px); font-weight: 400; }
.project-card p, .project-card small { margin: 0; font-size: 12px; }
.project-card small { display: block; margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

.services-section { background: #22231f; color: #f1eee7; }
.services-section .eyebrow, .services-section .service-list p { color: #a8aaa1; }
.service-list { border-top: 1px solid #51524c; }
.service-list article { display: grid; grid-template-columns: 80px minmax(250px, .9fr) 1.5fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid #51524c; align-items: baseline; }
.service-list article > span { color: #a8aaa1; font-size: 11px; }
.service-list h3 { margin: 0; font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.service-list p { margin: 0; line-height: 1.6; font-size: 14px; }

.profile-content { display: grid; grid-template-columns: 1fr 1.35fr; gap: 70px; margin-left: 29%; }
.profile-intro { font-family: Georgia, serif; font-size: 25px; line-height: 1.45; }
.profile-intro p:first-child { margin-top: 0; }
.credentials { border-top: 1px solid var(--rule); }
.credentials div { padding: 17px 0; border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; gap: 5px; }
.credentials b { font-size: 13px; }.credentials span { color: var(--muted); font-size: 12px; }
.teaching { grid-column: 2; border-left: 3px solid var(--accent); padding: 8px 0 8px 22px; }
.teaching span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.teaching p { margin: 8px 0 0; line-height: 1.5; }

.contact-section { display: grid; grid-template-columns: .9fr 1.4fr; gap: 80px; }
.contact-section .section-heading { display: block; margin: 0; }
.contact-section .section-heading h2 { margin-bottom: 30px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 22px; }
.contact-form label { display: flex; flex-direction: column; gap: 9px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.contact-form label small { color: var(--muted); text-transform: none; letter-spacing: 0; }
.contact-form .full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding: 10px 2px; background: transparent; color: inherit; font: inherit; font-size: 15px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 1px 0 var(--accent); }
textarea { resize: vertical; }
.privacy { flex-direction: row !important; align-items: flex-start; text-transform: none !important; letter-spacing: 0 !important; line-height: 1.4; }
.privacy input { width: 18px; height: 18px; flex: 0 0 auto; }
button { grid-column: 1 / -1; justify-self: start; border: 0; background: var(--accent); color: #fff; padding: 18px 24px; min-width: 240px; display: flex; justify-content: space-between; cursor: pointer; font: inherit; }
button:hover { background: #8f4431; }
.menu-toggle { display: none; min-width: auto; padding: 8px 0; background: transparent; color: var(--ink); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-notice { grid-column: 1 / -1; padding: 16px; border-left: 3px solid var(--accent); background: #ece7dc; }
.form-notice.error { border-color: #922; }
.button-link { display: inline-flex; align-items: center; justify-content: space-between; min-width: 250px; padding: 18px 24px; background: var(--accent); color: #fff; }
.contact-teaser { display: grid; grid-template-columns: 1fr 1.6fr auto; align-items: end; gap: 42px; }
.contact-teaser h2 { margin: 0; font-size: clamp(46px, 6vw, 82px); }
.archive-projects .section-heading h1 { font-size: clamp(48px, 6vw, 86px); }
.content-page { min-height: 65vh; }.content-page > h1 { font-size: clamp(48px, 7vw, 90px); }.entry-content { max-width: 780px; margin-left: 29%; font-size: 18px; line-height: 1.7; }
.single-project { padding-bottom: 80px; }.project-hero { display: grid; grid-template-columns: 1.8fr 1fr; gap: 70px; padding: 90px clamp(24px, 5vw, 76px) 60px; }
.project-hero h1 { margin: 0; font-size: clamp(52px, 7vw, 100px); }.project-location { font-family: Georgia, serif; font-size: 24px; }
.project-hero dl { margin: 42px 0 0; border-top: 1px solid var(--rule); }.project-hero dl div { padding: 14px 0; border-bottom: 1px solid var(--rule); }
.project-hero dt { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }.project-hero dd { margin: 6px 0 0; }
.single-project-image { margin: 0; max-height: 78vh; overflow: hidden; }.single-project-image img { height: 100%; object-fit: cover; }
.single-project-image.is-photo img { filter: grayscale(1) contrast(1.08) brightness(.98); }
.project-body { max-width: 780px; margin: 72px auto; padding: 0 24px; font-family: Georgia, serif; font-size: 24px; line-height: 1.55; }
.project-gallery { padding: 14px clamp(24px, 5vw, 76px) 96px; }
.project-gallery > .eyebrow { margin-bottom: 28px; }
.project-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.project-gallery figure { margin: 0; }
.project-gallery figure:last-child:nth-child(odd) { grid-column: 1 / -1; }
.project-gallery a { display: block; overflow: hidden; background: #e8e3d9; }
.project-gallery img { aspect-ratio: 16 / 10; object-fit: cover; filter: grayscale(1) contrast(1.08) brightness(.98); transition: transform .45s ease; }
.project-gallery a:hover img, .project-gallery a:focus-visible img { transform: scale(1.018); }
.project-gallery figcaption { margin-top: 10px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.project-navigation { padding: 30px clamp(24px, 5vw, 76px); border-top: 1px solid var(--rule); display: flex; justify-content: space-between; }

footer { min-height: 210px; padding: 48px clamp(24px, 5vw, 76px); display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 30px; }
footer div { display: flex; flex-direction: column; gap: 6px; } footer strong { font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
footer span, footer p, footer a { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }

@media (max-width: 900px) {
  .site-header { min-height: 82px; }.brand small { display: none; }.menu-toggle { display: block; } nav { display: none; position: absolute; top: 82px; left: 0; right: 0; padding: 20px 24px 30px; background: var(--paper); border-bottom: 1px solid var(--rule); } nav.is-open { display: block; } nav ul { flex-direction: column; gap: 10px; }
  .hero { grid-template-columns: 1fr; }.hero-copy { min-height: 610px; }.hero-visual { min-height: 540px; }
  .metrics { grid-template-columns: 1fr 1fr; }.metrics div:nth-child(2) { border-right: 0; }.metrics div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .section { padding-top: 80px; padding-bottom: 80px; }.section-heading, .section-heading.compact { grid-template-columns: 1fr; }.section-heading.compact > p:last-child { grid-column: 1; }
  .section-heading h2 { font-size: 55px; }.project-grid { gap: 56px 18px; }
  .service-list article { grid-template-columns: 45px 1fr; }.service-list article p { grid-column: 2; }
  .profile-content { margin-left: 0; grid-template-columns: 1fr; }.teaching { grid-column: 1; }
  .contact-section { grid-template-columns: 1fr; }.contact-form { grid-template-columns: 1fr; }.contact-form label { grid-column: 1; }
  .contact-teaser { grid-template-columns: 1fr; }.project-hero { grid-template-columns: 1fr; }.entry-content { margin-left: 0; }
  .project-gallery-grid { gap: 18px; }
}

@media (max-width: 620px) {
  .site-header { padding: 20px; }.brand { font-size: 18px; } nav a { font-size: 12px; }
  .hero-copy { padding: 58px 22px 40px; min-height: 580px; } h1 { font-size: 50px; }.hero-lead { font-size: 16px; }
  .hero-visual { min-height: 380px; }.metrics strong { font-size: 31px; }.metrics span { font-size: 9px; }
  .section { padding-left: 20px; padding-right: 20px; }.section-heading { margin-bottom: 48px; }.section-heading h2 { font-size: 45px; }
  .project-grid { grid-template-columns: 1fr; }.service-list h3 { font-size: 24px; }.profile-intro { font-size: 21px; }
  .project-gallery { padding-left: 20px; padding-right: 20px; }.project-gallery-grid { grid-template-columns: 1fr; }.project-gallery figure:last-child:nth-child(odd) { grid-column: auto; }
  footer { grid-template-columns: 1fr; align-items: start; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
