:root {
  --font-display: Georgia, 'Times New Roman', serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bone: #f3efe5;
  --paper: #fbf8f1;
  --ink: #161714;
  --soft-ink: #44463f;
  --copper: #a9532b;
  --sage: #5a685b;
  --line: rgba(22, 23, 20, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bone);
  font-family: var(--font-sans), sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-150%);
  z-index: 200;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  height: 96px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 229, 0.88);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 20;
}

.site-header nav { display: flex; align-items: center; gap: clamp(1.3rem, 3vw, 3.5rem); }
.site-header nav a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
}
.site-header nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.4rem;
  border-bottom: 1px solid currentColor;
  transition: right 220ms ease;
}
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { right: 0; }
.site-header nav a.is-active:not(.nav-cta)::after { right: 0; }
.nav-cta { border: 1px solid var(--ink); padding: 0.72rem 0.9rem; transition: 180ms ease; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--ink); color: var(--bone); }
.nav-cta.is-active { background: var(--ink); color: var(--bone); }

.site-logo {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.site-logo img { width: 100%; height: 100%; object-fit: contain; }
.site-logo--footer { width: 86px; height: 86px; }

.hero {
  min-height: calc(100svh - 96px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
}
.hero-copy {
  padding: clamp(5rem, 9vw, 9.5rem) 4.5vw 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 1.6rem;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}
h1, h2, .about-lead {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
h1 { max-width: 12ch; font-size: clamp(4.2rem, 7.7vw, 8.8rem); }
h1 em, h2 em, .about-lead em { color: var(--copper); font-weight: 400; }
.hero-intro {
  max-width: 600px;
  margin: 2.2rem 0 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}
.hero-actions { margin-top: 2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button {
  min-height: 54px;
  padding: 0.95rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button--ink { background: var(--ink); color: var(--bone); }
.button--ink:hover, .button--ink:focus-visible { background: var(--copper); }
.text-link, .closing-link {
  border-bottom: 1px solid currentColor;
  padding: 0.35rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-facts {
  margin: 4.2rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hero-facts div { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-facts dt { font-family: var(--font-display), serif; font-size: 1.65rem; }
.hero-facts dd { margin: 0; color: #71736b; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }

.hero-visual {
  min-height: 650px;
  position: relative;
  background: var(--sage);
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 8% auto auto;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
}
.hero-arch {
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 0;
  height: 91%;
  overflow: hidden;
  border-radius: 48% 48% 0 0 / 24% 24% 0 0;
  box-shadow: 0 30px 70px rgba(0,0,0,0.28);
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: saturate(0.78) contrast(1.03); }
.hero-note {
  position: absolute;
  left: 3%;
  bottom: 8%;
  z-index: 2;
  width: 178px;
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
}
.hero-note span { display: block; color: var(--copper); font-size: 0.56rem; letter-spacing: .18em; text-transform: uppercase; }
.hero-note strong { display: block; margin-top: .45rem; font-family: var(--font-display), serif; font-size: 1.15rem; font-weight: 500; }
.orbit-word {
  position: absolute;
  right: -1rem;
  z-index: -1;
  color: rgba(255,255,255,.2);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 600;
  letter-spacing: .1em;
  writing-mode: vertical-rl;
}
.orbit-word--one { top: 4%; }
.orbit-word--two { bottom: 4%; left: -1.3rem; right: auto; }

.reveal { opacity: 0; animation: rise 720ms cubic-bezier(.2,.75,.25,1) forwards; }
.reveal--one { animation-delay: 80ms; }
.reveal--two { animation-delay: 160ms; }
.reveal--three { animation-delay: 260ms; }
.reveal--four { animation-delay: 380ms; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.portfolio { padding: clamp(6rem, 11vw, 11rem) 4.5vw; background: var(--paper); }
.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.section-heading h2, .closing h2 { font-size: clamp(3.8rem, 7vw, 8rem); }
.section-heading > p { max-width: 500px; margin: 0 0 .5rem; color: #65665f; font-size: .95rem; line-height: 1.8; }

.brand-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 1.8vw, 1.8rem); }
.brand-card {
  min-height: clamp(470px, 50vw, 690px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #333;
  color: white;
}
.brand-card--wide { grid-column: span 7; }
.brand-card--narrow { grid-column: span 5; }
.brand-card__image, .brand-card__wash { position: absolute; inset: 0; width: 100%; height: 100%; }
.brand-card__image { z-index: -2; object-fit: cover; transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 450ms ease; }
.brand-card__wash { z-index: -1; background: linear-gradient(180deg, rgba(13,14,12,.28) 0%, rgba(13,14,12,.02) 38%, rgba(13,14,12,.84) 100%); transition: background 300ms ease; }
.brand-card:hover .brand-card__image, .brand-card:focus-visible .brand-card__image { transform: scale(1.045); filter: saturate(1.08); }
.brand-card:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }
.brand-card__topline {
  position: absolute;
  inset: 1.4rem 1.5rem auto;
  display: flex;
  justify-content: space-between;
  font-size: .6rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.brand-card__logo-wrap {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 44%;
  height: 28%;
  display: grid;
  place-items: center;
}
.brand-card__logo { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 3px 16px rgba(0,0,0,.22)); }
.brand-card__content {
  position: absolute;
  inset: auto 1.5rem 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand-card__content h3 { margin: 0; font-family: var(--font-display), serif; font-size: clamp(2.1rem, 3.3vw, 4rem); font-weight: 500; line-height: 1; }
.brand-card__content p { max-width: 450px; margin: .8rem 0 0; color: rgba(255,255,255,.78); font-size: .78rem; line-height: 1.65; }
.brand-card__visit {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #151611;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform 240ms ease;
}
.brand-card__visit b { position: absolute; opacity: 0; }
.brand-card:hover .brand-card__visit, .brand-card:focus-visible .brand-card__visit { transform: rotate(-8deg) scale(1.08); }
.brand-card--sensorium .brand-card__image { object-position: center 43%; }
.brand-card--sixtea .brand-card__logo-wrap { width: 48%; top: 15%; height: 20%; padding: 1rem; background: rgba(249,245,235,.88); }
.brand-card--dld .brand-card__logo-wrap { width: 23%; }
.brand-card--realty .brand-card__logo-wrap { width: 20%; }
.brand-card--brasdroit .brand-card__logo-wrap { width: 31%; height: 31%; }
.brand-card--donovan .brand-card__image { object-position: center; }
.brand-card--donovan .brand-card__logo { filter: brightness(0) invert(1) drop-shadow(0 3px 16px rgba(0,0,0,.3)); }
.brand-card--donovan .brand-card__logo-wrap { width: 27%; height: 32%; }

.about { padding: clamp(6rem, 10vw, 10rem) 4.5vw; background: var(--ink); color: var(--bone); }
.about-kicker { display: flex; gap: 1.2rem; color: #aaa99f; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }
.about-kicker p { margin: 0; }
.about-main { margin-top: 4rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; }
.about-lead { font-size: clamp(3.5rem, 6.8vw, 7.7rem); }
.about-copy { padding-top: .6rem; }
.about-copy p { margin: 0 0 1.5rem; color: #b8b7ae; font-size: .95rem; line-height: 1.9; }
.button--light { margin-top: 1.2rem; border: 1px solid rgba(255,255,255,.45); color: white; }
.button--light:hover, .button--light:focus-visible { background: var(--bone); color: var(--ink); }
.discipline-list { margin-top: 7rem; border-top: 1px solid rgba(255,255,255,.2); display: grid; grid-template-columns: repeat(4, 1fr); }
.discipline-list div { padding: 1.2rem .5rem 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.2); color: #d8d6cc; font-family: var(--font-display), serif; font-size: clamp(1.15rem, 1.5vw, 1.55rem); }
.discipline-list span { display: block; margin-bottom: .55rem; color: var(--copper); font-family: var(--font-sans), sans-serif; font-size: .55rem; letter-spacing: .15em; }

.closing { padding: clamp(6rem, 12vw, 12rem) 4.5vw; text-align: center; background: #d9d1c2; }
.closing .eyebrow { color: var(--sage); }
.closing h2 { margin-inline: auto; }
.closing-link { display: inline-flex; gap: 2rem; margin-top: 3rem; font-size: .72rem; }

/* Inner pages */
.inner-hero {
  min-height: calc(100svh - 96px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
}
.inner-hero__copy { padding: clamp(6rem, 10vw, 10rem) 4.5vw; display: flex; flex-direction: column; justify-content: center; }
.inner-hero h1 { max-width: 13ch; font-size: clamp(4rem, 7.4vw, 8.3rem); }
.inner-hero__intro { max-width: 640px; margin: 2.3rem 0 0; color: var(--soft-ink); font-size: clamp(1rem, 1.4vw, 1.22rem); line-height: 1.85; }

.about-hero__portrait { min-height: 680px; position: relative; overflow: hidden; background: var(--sage); }
.about-hero__portrait::before { content: ""; position: absolute; inset: 6% 8%; border: 1px solid rgba(255,255,255,.26); border-radius: 50% 50% 0 0; }
.about-hero__portrait img { position: absolute; left: 11%; right: 11%; bottom: 0; width: 78%; height: 91%; object-fit: cover; object-position: center 30%; border-radius: 48% 48% 0 0 / 22% 22% 0 0; filter: saturate(.8); }
.about-hero__portrait span { position: absolute; right: 1.4rem; bottom: 1.5rem; z-index: 2; max-width: 155px; color: white; font-size: .58rem; letter-spacing: .15em; line-height: 1.6; text-align: right; text-transform: uppercase; }

.story { padding: clamp(6rem, 11vw, 11rem) 4.5vw; display: grid; grid-template-columns: .25fr 1.75fr; gap: 5vw; background: var(--paper); }
.story__rail { display: flex; gap: 1rem; color: #7d7d74; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.story__rail p { margin: 0; }
.story__content { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; }
.story h2, .throughline h2, .practice-section h2, .creative-note h2, .contact-workspace h2, .inquiry-routing h2 { margin: 0; font-family: var(--font-display), serif; font-size: clamp(3.5rem, 6vw, 7rem); font-weight: 400; letter-spacing: -.045em; line-height: .92; }
.story h2 em, .throughline h2 em, .practice-section h2 em, .creative-note h2 em, .contact-workspace h2 em, .inquiry-routing h2 em { color: var(--copper); font-weight: 400; }
.story__prose p { margin: 0 0 1.55rem; color: #61625b; font-size: .95rem; line-height: 1.9; }
.story__prose .story__lead { margin-bottom: 2.1rem; color: var(--ink); font-family: var(--font-display), serif; font-size: clamp(1.8rem, 2.5vw, 2.8rem); line-height: 1.18; }

.credential-band { padding: 3.2rem 4.5vw; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: var(--bone); }
.credential-band div { min-height: 125px; padding: 0 2rem; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid rgba(255,255,255,.2); }
.credential-band div:first-child { padding-left: 0; border-left: 0; }
.credential-band strong { font-family: var(--font-display), serif; font-size: clamp(2.5rem, 4vw, 4.8rem); font-weight: 400; }
.credential-band span { max-width: 170px; color: #aaa99f; font-size: .58rem; letter-spacing: .13em; line-height: 1.6; text-transform: uppercase; }

.throughline { padding: clamp(6rem, 11vw, 11rem) 4.5vw; display: grid; grid-template-columns: 1fr .8fr; gap: 8vw; align-items: center; background: #ded6c8; }
.throughline__images { min-height: 760px; position: relative; }
.throughline__image { position: absolute; margin: 0; overflow: hidden; box-shadow: 0 25px 60px rgba(25,25,20,.18); }
.throughline__image img { width: 100%; height: 100%; object-fit: cover; }
.throughline__image--tall { inset: 0 24% 9% 0; }
.throughline__image--small { width: 42%; height: 43%; right: 0; top: 7%; }
.throughline__image--dark { width: 46%; height: 38%; right: 2%; bottom: 0; background: #060606; }
.throughline__copy > p:not(.eyebrow) { margin: 1.7rem 0 0; color: #5f6058; font-size: .94rem; line-height: 1.9; }

.principles { padding: clamp(6rem, 10vw, 10rem) 4.5vw; background: var(--paper); }
.section-heading--compact { grid-template-columns: 1fr; margin-bottom: 4.5rem; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.principle-grid article { min-height: 300px; padding: 1.5rem 2.5rem 1rem 0; border-right: 1px solid var(--line); }
.principle-grid article + article { padding-left: 2.5rem; }
.principle-grid article:last-child { border-right: 0; }
.principle-grid span { color: var(--copper); font-size: .6rem; letter-spacing: .15em; }
.principle-grid h3 { margin: 4rem 0 1rem; font-family: var(--font-display), serif; font-size: clamp(1.8rem, 2.5vw, 3rem); font-weight: 500; line-height: 1.05; }
.principle-grid p { margin: 0; color: #696a62; font-size: .82rem; line-height: 1.8; }

.practice-section { padding: clamp(6rem, 10vw, 10rem) 4.5vw; display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; background: var(--ink); color: var(--bone); }
.practice-section__heading { position: sticky; top: 2rem; align-self: start; }
.practice-list { border-top: 1px solid rgba(255,255,255,.2); }
.practice-list a { min-height: 145px; padding: 1.5rem 0; display: grid; grid-template-columns: 46px 1fr auto; gap: 1.4rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); transition: padding 200ms ease, color 200ms ease; }
.practice-list a:hover, .practice-list a:focus-visible { padding-left: 1rem; color: #dfb597; }
.practice-list > a > span { color: var(--copper); font-size: .56rem; letter-spacing: .12em; }
.practice-list h3 { margin: 0; font-family: var(--font-display), serif; font-size: clamp(1.65rem, 2.2vw, 2.5rem); font-weight: 400; }
.practice-list p { max-width: 560px; margin: .55rem 0 0; color: #aaa99f; font-size: .74rem; line-height: 1.65; }
.practice-list b { font-size: .58rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.creative-note { padding: clamp(6rem, 10vw, 10rem) 4.5vw; display: grid; grid-template-columns: .45fr 1.55fr; gap: 5vw; background: #a9532b; color: var(--bone); }
.creative-note .eyebrow { color: #efd7c7; }
.creative-note h2 em { color: #e9c19f; }
.creative-note > div > p { max-width: 720px; margin: 2rem 0 0; color: #f1ded1; font-size: .95rem; line-height: 1.9; }
.closing--about { background: #d9d1c2; }

.contact-hero { background: var(--ink); color: var(--bone); }
.contact-hero .inner-hero__intro { color: #aaa99f; }
.contact-hero__aside { margin: clamp(2rem, 5vw, 5rem); padding: clamp(2rem, 4vw, 4.5rem); align-self: stretch; display: flex; flex-direction: column; justify-content: center; background: var(--sage); }
.contact-hero__aside .eyebrow { color: #d8cbb9; }
.contact-hero__aside > a, .contact-hero__aside > div { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.24); }
.contact-hero__aside span { display: block; color: #c6c8c1; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-hero__aside strong { display: block; margin-top: .55rem; font-family: var(--font-display), serif; font-size: clamp(1.55rem, 2.4vw, 2.8rem); font-weight: 400; overflow-wrap: anywhere; }
.contact-hero__aside small { max-width: 400px; margin-top: 2rem; color: #c6c8c1; font-size: .68rem; line-height: 1.7; }

.contact-workspace { padding: clamp(6rem, 10vw, 10rem) 4.5vw; display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; background: var(--paper); }
.contact-workspace__heading > p:not(.eyebrow) { max-width: 500px; margin: 2rem 0 0; color: #6b6c64; font-size: .88rem; line-height: 1.8; }
.contact-form { padding-top: .6rem; display: grid; gap: 1.2rem; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-notice { margin: 0 0 .5rem; padding: .9rem 1rem; font-size: .76rem; line-height: 1.6; }
.form-notice--success { color: #31553c; background: #e2eee5; border: 1px solid #b5d2bc; }
.form-notice--error { color: #8a2d25; background: #f8e4df; border: 1px solid #e9bbb0; }
.contact-form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.contact-form label { color: #5d5e57; font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.contact-form label > span { float: right; color: #9a9a92; font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: .6rem; padding: 1rem 0; border: 0; border-bottom: 1px solid #aaa79e; border-radius: 0; outline: 0; background: transparent; color: var(--ink); font: 400 .95rem/1.5 var(--font-sans), sans-serif; }
.contact-form textarea { padding: 1rem; border: 1px solid #aaa79e; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--copper); box-shadow: 0 2px 0 var(--copper); }
.contact-form textarea:focus { box-shadow: 0 0 0 2px rgba(169,83,43,.16); }
.contact-form__submit { margin-top: .8rem; display: flex; gap: 1.5rem; align-items: center; }
.contact-form__submit p { margin: 0; color: #77776f; font-size: .65rem; line-height: 1.5; }

.inquiry-routing { padding: clamp(6rem, 10vw, 10rem) 4.5vw; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; background: #d9d1c2; }
.inquiry-routing__grid { border-top: 1px solid rgba(22,23,20,.25); }
.inquiry-routing__grid a { min-height: 105px; display: grid; grid-template-columns: 42px 1fr auto; gap: 1rem; align-items: center; border-bottom: 1px solid rgba(22,23,20,.25); transition: padding 180ms ease, background 180ms ease; }
.inquiry-routing__grid a:hover, .inquiry-routing__grid a:focus-visible { padding-inline: .8rem; background: rgba(255,255,255,.22); }
.inquiry-routing__grid > a > span { color: var(--copper); font-size: .58rem; letter-spacing: .12em; }
.inquiry-routing__grid small { display: block; color: #696a62; font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; }
.inquiry-routing__grid strong { display: block; margin-top: .35rem; font-family: var(--font-display), serif; font-size: clamp(1.5rem, 2vw, 2.2rem); font-weight: 500; }
.inquiry-routing__grid b { font-weight: 400; }

.contact-expectation { padding: clamp(6rem, 9vw, 9rem) 4.5vw; background: var(--ink); color: var(--bone); }
.contact-expectation__steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid rgba(255,255,255,.2); }
.contact-expectation article { min-height: 255px; padding: 1.5rem 2.5rem 0 0; border-right: 1px solid rgba(255,255,255,.2); }
.contact-expectation article + article { padding-left: 2.5rem; }
.contact-expectation article:last-child { border-right: 0; }
.contact-expectation span { color: var(--copper); font-size: .58rem; }
.contact-expectation h3 { margin: 4rem 0 1rem; font-family: var(--font-display), serif; font-size: clamp(1.6rem, 2.3vw, 2.5rem); font-weight: 400; }
.contact-expectation p { max-width: 340px; margin: 0; color: #aaa99f; font-size: .76rem; line-height: 1.8; }

footer {
  padding: 4rem 4.5vw 2rem;
  display: grid;
  grid-template-columns: auto 1fr 2fr;
  gap: 2rem;
  align-items: start;
  background: #d9d1c2;
  border-top: 1px solid rgba(22,23,20,.25);
}
.footer-statement > p { margin: 0; font-family: var(--font-display), serif; font-size: 1.2rem; }
.footer-pages { margin-top: 1.1rem; display: flex; gap: 1.4rem; }
.footer-pages a { color: #6e6c64; font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-pages a:hover, .footer-pages a:focus-visible { color: var(--copper); }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 2rem; justify-self: end; }
.footer-links a { font-size: .65rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--copper); }
.copyright { grid-column: 1 / -1; padding-top: 2rem; color: #77756d; font-family: var(--font-sans), sans-serif; font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 760px; }
  .hero-visual { min-height: 720px; }
  .section-heading, .about-main { grid-template-columns: 1fr; }
  .section-heading > p { max-width: 620px; }
  .brand-card--wide, .brand-card--narrow { grid-column: span 6; }
  .discipline-list { grid-template-columns: repeat(2, 1fr); }
  .inner-hero { grid-template-columns: 1fr; }
  .inner-hero__copy { min-height: 660px; }
  .story__content, .throughline, .practice-section, .contact-workspace, .inquiry-routing { grid-template-columns: 1fr; }
  .credential-band { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .credential-band div:nth-child(3) { padding-left: 0; border-left: 0; }
  .throughline__images { min-height: 700px; }
  .practice-section__heading { position: static; }
  .creative-note { grid-template-columns: 1fr; }
  .contact-hero__aside { min-height: 570px; }
  footer { grid-template-columns: auto 1fr; }
  .footer-links { grid-column: 1 / -1; justify-self: stretch; }
}

@media (max-width: 660px) {
  .site-header { height: 78px; padding-inline: 1.15rem; }
  .site-header nav { gap: .9rem; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .site-logo { width: 58px; height: 58px; }
  .site-logo--footer { width: 74px; height: 74px; }
  .hero { min-height: auto; }
  .hero-copy { min-height: 680px; padding: 5.6rem 1.15rem 3rem; }
  h1 { font-size: clamp(3.8rem, 18vw, 5.6rem); }
  .hero-intro { font-size: .92rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .hero-facts { margin-top: 3rem; gap: .5rem; }
  .hero-facts dt { font-size: 1.25rem; }
  .hero-facts dd { font-size: .5rem; line-height: 1.4; }
  .hero-visual { min-height: 620px; }
  .hero-arch { left: 8%; right: 8%; height: 89%; }
  .hero-note { left: 1rem; }
  .portfolio, .about, .closing, .story, .credential-band, .throughline, .principles, .practice-section, .creative-note, .contact-workspace, .inquiry-routing, .contact-expectation { padding-left: 1.15rem; padding-right: 1.15rem; }
  .section-heading h2, .closing h2 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
  .brand-grid { gap: .9rem; }
  .brand-card--wide, .brand-card--narrow { grid-column: 1 / -1; }
  .brand-card { min-height: 520px; }
  .brand-card__content { inset: auto 1rem 1rem; }
  .brand-card__topline { inset: 1rem 1rem auto; }
  .brand-card__visit { width: 62px; height: 62px; }
  .brand-card__content p { font-size: .7rem; }
  .about-main { margin-top: 3rem; }
  .about-lead { font-size: clamp(3.15rem, 15vw, 5rem); }
  .discipline-list { margin-top: 4rem; grid-template-columns: 1fr 1fr; }
  .inner-hero { min-height: auto; }
  .inner-hero__copy { min-height: 650px; padding: 5.5rem 1.15rem; }
  .inner-hero h1 { font-size: clamp(3.6rem, 17vw, 5.3rem); }
  .about-hero__portrait { min-height: 630px; }
  .story { grid-template-columns: 1fr; }
  .story__rail { margin-bottom: 1rem; }
  .story__content { grid-template-columns: 1fr; }
  .credential-band { grid-template-columns: 1fr 1fr; }
  .credential-band div { min-height: 120px; padding: 0 .8rem; }
  .credential-band div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .throughline__images { min-height: 560px; }
  .throughline__image--tall { right: 18%; }
  .principle-grid, .contact-expectation__steps { grid-template-columns: 1fr; }
  .principle-grid article, .principle-grid article + article, .contact-expectation article, .contact-expectation article + article { min-height: 230px; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-expectation article, .contact-expectation article + article { border-color: rgba(255,255,255,.2); }
  .principle-grid h3, .contact-expectation h3 { margin-top: 2.5rem; }
  .practice-list a { grid-template-columns: 32px 1fr; }
  .practice-list b { grid-column: 2; }
  .contact-hero__aside { min-height: 520px; margin: 0; padding: 3rem 1.15rem; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__submit { align-items: flex-start; flex-direction: column; }
  .inquiry-routing__grid a { grid-template-columns: 30px 1fr auto; }
  footer { padding: 3rem 1.15rem 1.5rem; grid-template-columns: auto 1fr; }
  .footer-statement > p { font-size: 1rem; }
  .footer-links { grid-template-columns: 1fr; }
}

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


/* PHP edition element mappings */
.brand-card__topline { display: flex; }
.brand-card__logo-wrap { display: grid; }
.brand-card__content > span:first-child { display: block; }
.brand-card__content strong {
  display: block;
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(2.1rem, 3.3vw, 4rem);
  font-weight: 500;
  line-height: 1;
}
.brand-card__content small {
  display: block;
  max-width: 450px;
  margin: .8rem 0 0;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  line-height: 1.65;
}
@media (max-width: 660px) {
  .brand-card__content small { font-size: .7rem; }
}
