/* Arkive — shared architectural layout system */
:root {
  --paper: #fcfcfa;
  --ink: #252923;
  --muted: #646b63;
  --line: #d8ddd4;
  --wash: #eff2ec;
  --accent: #a9441c;
  --gutter: clamp(22px, 3vw, 60px);
  --space: clamp(44px, 4vw, 72px);
  --gap: clamp(24px, 3vw, 48px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.65 Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; width: 100%; height: auto; }
p { margin: 0 0 18px; }
h1, h2, h3 { margin: 0; font-weight: 400; line-height: 1.12; letter-spacing: -.045em; }
h1 { font-size: clamp(44px, 4.7vw, 84px); }
h2 { font-size: clamp(34px, 3.2vw, 52px); }
h3 { font-size: 22px; letter-spacing: -.025em; }
em { font-style: normal; }
.wrap { width: calc(100% - var(--gutter) * 2); margin-inline: auto; }
.muted, .section-note { color: var(--muted); }
.eyebrow, .micro { font-size: 12px; line-height: 1.5; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow { margin-bottom: 24px; color: var(--accent); font-weight: 700; }
.micro { color: var(--muted); }
.section, .story { padding-block: var(--space); border-top: 1px solid var(--line); }
.projects { position: relative; isolation: isolate; }
.projects::before { content: ''; position: absolute; z-index: -1; inset: 0; clip-path: inset(0 -100vw); opacity: .42; background: repeating-linear-gradient(118deg, transparent 0 104px, rgba(37,41,35,.12) 105px 106px, transparent 107px 192px), repeating-linear-gradient(64deg, transparent 0 158px, rgba(169,68,28,.2) 159px 161px, transparent 162px 286px); pointer-events: none; }
.projects > * { position: relative; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 100; padding: 12px 20px; background: var(--ink); color: white; }
.skip-link:focus { top: 12px; }
/* Header */
.site-header { position: relative; z-index: 10; min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.brand { display: block; flex-shrink: 0; width: 300px; max-width: 100%; }
.brand-logo { width: 100%; height: auto; mix-blend-mode: multiply; }
nav { display: flex; align-items: center; gap: 32px; font-size: 14px; }
nav>a { padding: 12px 0; }
nav>a:hover { color: var(--accent); font-weight: 700; }
.nav-contact { display: flex; gap: 30px; margin-left: 10px; border-bottom: 1px solid var(--ink); }
.menu { display: none; }
.site-header .menu { font-size: 0; }
.site-header .menu span { font-size: 24px; line-height: 1; }
.text-link, .button-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 46px; font-size: 14px; }
.text-link { padding: 9px 0; border-bottom: 1px solid var(--ink); }
.text-link:hover { color: var(--accent); font-weight: 700; border-color: var(--accent); font-weight: 700; }
.button-link { padding: 12px 20px; background: var(--ink); color: white; }
.button-link:hover { background: var(--accent); }
/* Opening composition */
.hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 28px var(--gap); padding-block: 24px 44px; align-items: center; }
.hero-topline { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hero-topline .eyebrow { margin: 0; display: flex; align-items: center; gap: 10px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-intro { min-width: 0; }
.hero-intro h1 em { color: var(--muted); }
.hero-description { max-width: 560px; margin-top: 26px; }
.hero-description>p:first-child { font-size: 20px; line-height: 1.5; max-width: 460px; margin-bottom: 12px; }
.hero-description .muted { max-width: 470px; font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 24px; }
.hero-gallery { width: 100%; max-width: 620px; justify-self: start; }
.hero-figure { margin: 0; }
.hero-photo { aspect-ratio: 8/5; background: var(--wash); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure figcaption { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.hero-figure .micro { font-size: 11px; }
.hero-figure figcaption p { margin: 5px 0 0; font-size: 13px; line-height: 1.5; }
.slide-controls { display: flex; gap: 4px; flex-shrink: 0; }
.slide-button { width: 38px; min-height: 44px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 12px; cursor: pointer; }
.slide-button[aria-pressed=true] { color: var(--ink); border-bottom: 2px solid var(--accent); }
.slide-button:hover { background: var(--wash); }
/* Section introductions share the same two-column alignment. */
.about>.eyebrow, .why>.eyebrow { margin-bottom: 24px; }
.section-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px var(--gap); }
.about-copy, .why-intro { max-width: 700px; margin: 0; }
.about-copy p:last-child { margin-bottom: 0; }
.metrics { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); padding-top: 24px; }
.metrics>div { border-left: 1px solid var(--line); padding-inline: 28px; }
.metrics>div:first-child { padding-left: 0; border: 0; }
.metrics strong { font-size: 48px; font-weight: 400; letter-spacing: -.06em; line-height: 1.15; }
.metrics strong span { font-size: 30px; color: var(--accent); font-weight: 700; }
.metrics p { font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: var(--gap); margin-bottom: 32px; }
.section-heading .eyebrow { margin-bottom: 18px; }
.section-note { font-size: 14px; margin: 0; }
.project-grid, .blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: var(--gap); }
.project-card { min-width: 0; transition: transform 280ms ease; }
.blog-grid article { min-width: 0; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.project-photo { position: relative; overflow: hidden; border: 1px solid var(--ink); border-radius: 8px; background: var(--wash); }
.project-photo::before { content: ''; position: absolute; z-index: 1; inset: 10px; border: 1px solid rgba(169,68,28,.72); border-radius: 4px; pointer-events: none; transition: inset 280ms ease, border-color 280ms ease; }
.project-photo::after { content: ''; position: absolute; inset: 0; background: rgba(13,19,16,.18); opacity: 0; transition: opacity 280ms ease; pointer-events: none; }
.project-photo, .blog-grid article>img { background: var(--wash); }
.project-photo img, .blog-grid article>img { aspect-ratio: 8/5; object-fit: cover; }
.project-photo img { border-radius: inherit; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.project-card:hover { transform: translateY(-6px); }
.project-card:hover .project-photo::before { inset: 7px; border-color: var(--accent); }
.project-card:hover .project-photo::after { opacity: 1; }
.project-card:hover .project-photo img { transform: scale(1.045); }
.project-card.is-hidden { display: none; }
.project-pagination { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin-top: 30px; }
.project-page-button { width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; color: var(--ink); font: inherit; cursor: pointer; }
.project-page-button:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.project-page-button:disabled { color: var(--muted); cursor: not-allowed; opacity: .5; }
.project-page-status { min-width: 52px; color: var(--muted); font-size: 12px; letter-spacing: .1em; text-align: center; }
.project-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 18px; }
.project-title .micro { font-size: 10px; }
.project-card>p { color: var(--muted); font-size: 14px; margin: 6px 0 0; }
/* Expertise and process */
.division-band { background: var(--wash); }
.divisions, .faq { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: var(--gap); }
.divisions { border-top: 0; }
.divisions h2 { margin-bottom: 24px; }
.division-list, .accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; display: flex; align-items: baseline; gap: 20px; list-style: none; padding: 22px 34px 22px 0; cursor: pointer; font-size: 16px; line-height: 1.5; }
summary::-webkit-details-marker { display: none; }
summary:after { content: '+'; position: absolute; right: 2px; top: 20px; font-size: 22px; color: var(--muted); }
details[open]>summary:after { content: '−'; color: var(--accent); font-weight: 700; }
summary:hover { color: var(--accent); font-weight: 700; }
summary .micro { flex-shrink: 0; font-size: 11px; }
.division-list summary { font-size: 22px; letter-spacing: -.025em; }
details>p { padding: 0 34px 24px; margin: 0; max-width: 720px; color: var(--muted); font-size: 14px; }
.division-link { margin: 0 34px 24px; min-height: 34px; font-size: 12px; }
.division-page { min-height: calc(100svh - var(--header-height)); padding-top: clamp(70px, 10vw, 140px); }
.division-page h1 { max-width: 900px; margin-bottom: 64px; }
.division-page h1 em { color: var(--muted); }
.division-page-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--gap); max-width: 900px; padding-top: 28px; border-top: 1px solid var(--line); }
.division-page-grid p { max-width: 500px; }
.division-page-visual { margin: 0; max-width: 520px; overflow: hidden; }
.division-page-visual img { display: block; width: 100%; aspect-ratio: 8/5; object-fit: cover; border: 1px solid var(--ink); border-radius: 8px; transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 500ms ease; }
.division-page-visual:hover img { transform: scale(1.035); filter: saturate(.86) contrast(1.04); }
.division-page-visual figcaption { padding-top: 12px; color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.division-lead { font-size: 20px; line-height: 1.5; }
.division-page-grid .button-link { margin-top: 20px; }
.forma-page #services .section-heading h2 { display: none; }
.steps { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: var(--gap); }
.steps article { border-top: 1px solid var(--line); padding-top: 20px; }
.steps .micro { color: var(--accent); font-weight: 700; }
.steps h3 { margin: 20px 0 12px; }
.steps p { font-size: 15px; color: var(--muted); margin: 0; max-width: 350px; }
.story { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); column-gap: clamp(44px,6vw,96px); row-gap: var(--gap); align-items: center; }
.story-photos { display: grid; grid-template-columns: minmax(0,1fr); gap: 18px; margin-left: calc(-1 * var(--gutter)); width: calc(100% + var(--gutter)); }
.story-photos .story-photo { max-width: none; }
.story-photo { position: relative; width: 100%; max-width: 600px; overflow: hidden; }
.story-photo img { aspect-ratio: 8/5; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 500ms ease; }
.story-photo figcaption { margin: 0; }
.story-photo:hover img, .blog-grid article:hover>img { transform: scale(1.035); filter: saturate(.86) contrast(1.04); }
.photo-label { display: block; padding-top: 12px; font-size: 11px; letter-spacing: .08em; color: var(--muted); }
.story-copy { max-width: 700px; }
.story-copy>.muted { margin: 24px 0; }
.process-list { padding: 0; margin: 0 0 18px; list-style: none; }
.process-list li { border-top: 1px solid var(--line); padding: 12px 0; font-size: 14px; }
.process-list span { color: var(--accent); font-weight: 700; font-size: 11px; margin-right: 24px; }
.blog-grid article { overflow: hidden; }
.blog-grid article>img { transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 500ms ease; }
.blog-grid .micro { font-size: 11px; margin: 18px 0 10px; }
.blog-grid h3 { line-height: 1.3; }
.blog-grid .muted { font-size: 14px; margin: 12px 0 0; }
.journal-filters { display: flex; flex-wrap: wrap; gap: 22px; margin: -8px 0 30px; border-bottom: 1px solid var(--line); }
.journal-filter { position: relative; padding: 0 0 12px; border: 0; background: transparent; color: var(--muted); font: inherit; font-size: 13px; cursor: pointer; }
.journal-filter::after { content: ''; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--accent); opacity: 0; transform: scaleX(0); transition: opacity 180ms ease, transform 180ms ease; }
.journal-filter:hover, .journal-filter.is-active { color: var(--ink); }
.journal-filter.is-active { font-weight: 700; }
.journal-filter.is-active::after { opacity: 1; transform: scaleX(1); }
.blog-grid article.is-hidden { display: none; }
/* Follow and contact */
.follow { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 0 var(--gap); padding: 36px; background: var(--wash); border-block: 1px solid var(--line); }
.follow>.eyebrow { grid-column: 1; margin-bottom: 18px; }
.follow>h2 { grid-column: 1; }
.follow>div { grid-column: 2; grid-row: 1/3; }
.follow>div>p { max-width: 460px; }
.social-icons { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 18px 0; list-style: none; }
.social-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--ink); border: 1px solid #c8cec3; background: var(--paper); }
.social-icon svg { width: 22px; height: 22px; }
.faq { border-top: 0; }
.faq h2 { margin-bottom: 24px; }
.faq .muted { font-size: 14px; margin: 0; }
.contact-page { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: var(--gap); }
.contact-intro h2 { margin-bottom: 24px; }
.contact-intro>.muted { max-width: 430px; }
.contact-details { display: grid; gap: 22px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); }
.contact-details .eyebrow { margin-bottom: 6px; font-size: 10px; }
.contact-details p { margin: 0; font-size: 14px; }
.contact-details a { font-size: 14px; }
.contact-details a:hover { color: var(--accent); }
.contact-form { display: grid; gap: 22px; align-content: start; padding: 30px; border: 1px solid var(--line); background: var(--wash); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.form-field { display: grid; gap: 8px; }
.form-field label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding: 10px 0; background: transparent; color: var(--ink); font: inherit; outline: 0; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { cursor: pointer; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); box-shadow: 0 1px 0 var(--accent); }
.contact-form .button-link { justify-self: start; border: 0; cursor: pointer; }
footer { background: #e9ede4; padding-top: var(--space); }
.footer-top { display: flex; align-items: end; justify-content: space-between; gap: var(--gap); padding-bottom: 42px; }
.footer-top h2 { font-size: clamp(38px,4vw,64px); }
.contact-link { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-block: 12px; border-bottom: 1px solid var(--ink); font-size: 20px; }
.contact-link:hover, .footer-link:hover { color: var(--accent); font-weight: 700; }
.footer-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: var(--gap); border-top: 1px solid #c8cec3; padding-block: 32px; }
.footer-grid .brand { width: 280px; margin-bottom: 16px; }
.footer-grid .eyebrow { font-size: 11px; margin-bottom: 16px; }
.footer-grid p, .footer-link { font-size: 14px; }
.footer-grid .micro { font-size: 10px; }
.footer-link { display: inline-block; overflow-wrap: anywhere; min-height: 30px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid #c8cec3; color: var(--muted); font-size: 11px; }
@media(min-width:1600px) { .hero-gallery { max-width: 650px; } .hero-description { max-width: 600px; } }
@media(max-width:1100px) {
  nav { gap: 22px; } .brand { width: 250px; }
  .hero-intro h1 { font-size: clamp(42px,4.7vw,54px); }
  .hero-description>p:first-child { font-size: 18px; }
  .hero-figure figcaption { align-items: start; flex-direction: column; gap: 10px; }
  .project-title { display: block; } .project-title .micro { display: block; margin-top: 6px; }
  .story-copy h2 { font-size: 34px; }
  .story { grid-template-columns: minmax(0,1fr); }
}
@media(max-width:900px) {
  .site-header { min-height: 90px; }
  .menu { display: flex; align-items: center; gap: 14px; min-height: 44px; padding: 8px 0; background: none; border: 0; color: var(--ink); font-size: 14px; cursor: pointer; }
  .site-header nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); padding: 18px 24px; border: 1px solid var(--line); }
  .site-header nav.open { display: flex; flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-contact { margin-left: 0; justify-content: space-between; }
  .story { grid-template-columns: minmax(0,1fr); }
}
@media(max-width:700px) {
  :root { --gutter: 22px; --gap: 24px; --space: 44px; }
  .brand { width: clamp(180px,56vw,240px); } .site-header { gap: 16px; }
  .hero { grid-template-columns: minmax(0,1fr); padding-block: 22px 36px; gap: 24px; }
  .hero-topline>.micro { display: none; } .hero-topline .eyebrow { font-size: 10px; }
  .hero-intro h1 { font-size: clamp(38px,8.9vw,58px); }
  .hero-description { margin-top: 20px; } .hero-description>p:first-child { font-size: 18px; }
  .hero-actions { margin-top: 20px; gap: 22px; }
  .hero-gallery { max-width: 480px; }
  .hero-figure figcaption { flex-direction: row; gap: 12px; } .hero-figure figcaption p { font-size: 12px; } .hero-figure .micro { font-size: 10px; } .slide-button { width: 32px; }
  .section-body, .divisions, .story, .faq { grid-template-columns: minmax(0,1fr); }
  .division-page-grid { grid-template-columns: minmax(0,1fr); }
  .metrics strong { font-size: 36px; } .metrics strong span { font-size: 24px; }
  .metrics>div { padding-inline: 12px; } .metrics p { font-size: 11px; }
  .section-note { display: none; }
  .project-grid, .blog-grid, .steps { grid-template-columns: minmax(0,1fr); gap: 28px; }
  .project-title { display: flex; } .project-title .micro { margin: 0; }
  .project-card, .blog-grid article { max-width: 520px; }
  .steps h3 { margin-top: 12px; } .steps p { max-width: none; }
  .division-list summary { font-size: 20px; }
  .story-copy h2 { font-size: 34px; }
  .follow { grid-template-columns: minmax(0,1fr); padding: 26px 22px; }
  .follow>div { grid-column: 1; grid-row: auto; margin-top: 22px; }
  summary { font-size: 14px; gap: 12px; } details>p { padding-inline: 26px; }
  .footer-top { align-items: start; flex-direction: column; gap: 24px; }
  .footer-grid { grid-template-columns: minmax(0,1fr); gap: 24px; }
  .footer-bottom { font-size: 10px; } .footer-bottom a { flex-shrink: 0; }
  .contact-page { grid-template-columns: minmax(0,1fr); }
  .contact-form { padding: 24px; }
}
@media(prefers-reduced-motion:reduce) { html { scroll-behavior: auto; } }
@media(prefers-reduced-motion:reduce) {
  .project-card, .project-photo::before, .project-photo::after, .project-photo img, .story-photo img, .blog-grid article>img, .division-page-visual img { transition: none; }
  .hero-background, .hero-background .hero-topline, .hero-background .hero-intro, .hero-background .hero-description, .hero-background .hero-actions, .hero-background .hero-location { animation: none; }
}

/* Requested high-resolution architectural hero background. */
.hero-background{position:relative;display:flex;flex-direction:column;align-items:stretch;justify-content:center;gap:32px;min-height:530px;margin-top:22px;margin-bottom:28px;padding:40px clamp(24px,4vw,72px);color:#fff;background:linear-gradient(90deg,rgba(13,19,16,.88) 0%,rgba(13,19,16,.68) 38%,rgba(13,19,16,.12) 75%),url('assets/background-web-1920.webp') center/cover no-repeat;animation:hero-background-in 1.4s ease-out both}
.hero-background .hero-topline{justify-content:space-between;align-items:flex-start}
.hero-background .hero-topline{animation:hero-fade-up .7s .12s ease-out both}
.hero-background .hero-topline .eyebrow{color:#ffb185;font-weight:700}
.hero-background .hero-topline>.micro{color:#fff;animation:hero-fade-in .8s .35s ease-out both}
.hero-background .hero-intro{max-width:780px}
.hero-background .hero-intro{animation:hero-fade-up .8s .25s ease-out both}
.hero-background h1{font-size:clamp(44px,4.5vw,76px)}
.hero-background .hero-intro h1 em{color:inherit}
.hero-background .hero-description{margin-top:22px;animation:hero-fade-up .8s .45s ease-out both}
.hero-background .hero-description .muted{color:#f0f2ed}
.hero-background .button-link{background:#fff;color:var(--ink)}
.hero-background .button-link:hover{background:var(--wash)}
.hero-background .text-link{border-color:#fff}
.hero-background .text-link:hover{color:#ffb185;border-color:#ffb185;font-weight:700}
@keyframes hero-background-in { from { opacity: .82; } to { opacity: 1; } }
@keyframes hero-fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-fade-in { from { opacity: 0; } to { opacity: 1; } }
@media(max-width:900px){.hero-background .hero-topline>.micro{display:none}.hero-background{min-height:500px}}
@media(max-width:700px){.hero-background{min-height:0;margin-top:16px;margin-bottom:18px;padding:30px 22px;gap:26px;background-position:center 78%;background-size:auto 245%;background-image:linear-gradient(90deg,rgba(13,19,16,.86),rgba(13,19,16,.63)),url('assets/background-web-1920.webp')}.hero-background h1{font-size:clamp(36px,8.2vw,54px)}.hero-background .hero-topline .eyebrow{line-height:1.7}.hero-background .hero-actions{gap:18px}}

/* Reserve the first viewport for the header and hero; allow content to grow. */
:root { --header-height: 108px; --hero-top: 22px; --hero-bottom: 28px; }
.site-header { min-height: var(--header-height); }
.hero-background { margin-top: var(--hero-top); margin-bottom: var(--hero-bottom); min-height: calc(100svh - var(--header-height) - var(--hero-top) - var(--hero-bottom)); }
@media(max-width:900px) { :root { --header-height: 90px; } }
@media(max-width:700px) { :root { --hero-top: 16px; --hero-bottom: 18px; } }

/* Place the location above the hero copy, aligned to its left edge. */
.hero-background { padding-top: 88px; }
.hero-background .hero-topline>.hero-location { display: block; position: absolute; top: 16px; right: clamp(24px,4vw,72px); color: #fff; }
@media(max-width:700px) {
  .hero-background { padding-top: 74px; }
  .hero-background .hero-topline>.hero-location { top: 12px; right: 22px; font-size: 11px; }
}

/* Licensed division imagery; inherited by each division's service pages. */
.design-studio-page { --division-hero: url('assets/hero-architecture-1920.webp'); --division-focal: 60% 50%; }
.digital-page { --division-hero: url('assets/hero-digital-1920.webp'); }
.forma-page { --division-hero: url('assets/hero-forma-1920.webp'); --division-focal: 50% 57%; }
.business-page { --division-hero: url('assets/hero-business-1920.webp'); --division-focal: 65% 50%; }
.design-studio-page .hero-background {
  background-image: linear-gradient(90deg,rgba(13,19,16,.9) 0%,rgba(13,19,16,.76) 42%,rgba(13,19,16,.28) 100%), var(--division-hero);
  background-position: center, var(--division-focal);
  background-size: cover;
  animation-name: division-hero-in;
}
@keyframes division-hero-in { from { opacity: .82; } to { opacity: 1; } }
@media(max-width:700px) {
  .design-studio-page .hero-background {
    background-image: linear-gradient(90deg,rgba(13,19,16,.88),rgba(13,19,16,.7)), var(--division-hero);
  }
}
@media(prefers-reduced-motion:reduce) {
  .design-studio-page .hero-background { animation: none; }
}
/* Forma furniture inspiration gallery. */
.forma-gallery-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:var(--gap); }
.forma-gallery-grid figure { margin:0; min-width:0; }
.forma-gallery-grid img { display:block; width:100%; aspect-ratio:3/2; object-fit:cover; }
.forma-gallery-grid figcaption { padding-top:18px; padding-bottom:20px; }
.forma-gallery-grid h3 { font-size:clamp(20px,2vw,28px); margin-bottom:8px; }
.forma-gallery-grid p { color:var(--muted); margin:0; font-size:14px; }
.forma-gallery-credit { margin-top:20px; font-size:12px; color:var(--muted); }
.forma-gallery-credit a { text-decoration:underline; text-underline-offset:3px; }
@media(max-width:700px) { .forma-gallery-grid { grid-template-columns:minmax(0,1fr); } .story-photos { grid-template-columns:minmax(0,1fr); } }
/* Prominent brand panel shared by every page. */
:root { --header-height: 154px; }
.site-header { gap: 28px; }
.site-header .brand {
  width: clamp(300px, 25vw, 380px);
  padding: 8px 14px;
  margin-block: 12px;
  background: #fff;
  border-left: 4px solid var(--accent);
  box-shadow: 0 5px 20px rgba(37,41,35,.08);
}
.site-header .brand-logo { mix-blend-mode: normal; }
@media(max-width:1100px) {
  .site-header .brand { width: 300px; }
}
@media(max-width:900px) {
  :root { --header-height: 138px; }
}
@media(max-width:700px) {
  :root { --header-height: 112px; }
  .site-header { gap: 14px; }
  .site-header .brand {
    width: min(260px, calc(100% - 76px));
    padding: 6px 8px;
    margin-block: 10px;
    border-left-width: 3px;
  }
}
/* Balance navigation with the prominent brand panel. */
.site-header nav { gap: clamp(24px,2.6vw,50px); font-size:16px; font-weight:600; }
.site-header nav>a { position:relative; padding-block:14px; }
.site-header nav>a:hover { font-weight:600; }
.site-header nav>a:not(.nav-contact)::after {
  content:""; position:absolute; bottom:6px; left:0; width:24px; height:2px;
  background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .18s ease;
}
.site-header nav>a:not(.nav-contact):hover::after,
.site-header nav>a[aria-current="page"]::after { transform:scaleX(1); }
.site-header .nav-contact {
  padding:14px 24px; margin-left:10px; gap:30px; border:1px solid var(--accent);
  background:var(--accent); color:#fff; min-height:52px;
}
.site-header .nav-contact:hover { background:var(--ink); border-color:var(--ink); color:#fff; }
@media(min-width:901px) and (max-width:1100px) {
  .site-header nav { gap:22px; font-size:15px; }
  .site-header .nav-contact { padding-inline:18px; gap:20px; margin-left:0; }
}
@media(max-width:900px) {
  .site-header nav { gap:8px; font-size:16px; }
  .site-header .nav-contact { margin:8px 0 0; }
  .site-header .menu { font-size:0; font-weight:600; }
}
@media(prefers-reduced-motion:reduce) {
  .site-header nav>a::after { transition:none; }
}
/* Unframed header logo. */
.site-header .brand { background: transparent; border: 0; box-shadow: none; padding: 0; }

/* Display the artwork within the square logo asset, excluding empty margins. */
:root { --header-height: 154px; }
.site-header .brand {
  position:relative; overflow:hidden; width:350px; aspect-ratio:3650 / 1480;
  margin-block:8px; padding:0; border:0; background:transparent; box-shadow:none;
}
.site-header .brand-logo {
  position:absolute; width:136.9863%; max-width:none; height:auto;
  left:-20.5479%; top:-105%;
}
@media(min-width:1600px) {
  :root { --header-height:170px; }
  .site-header .brand { width:390px; }
}
@media(min-width:901px) and (max-width:1100px) {
  :root { --header-height:132px; }
  .site-header .brand { width:290px; }
}
@media(max-width:900px) {
  :root { --header-height:132px; }
  .site-header .brand { width:300px; }
}
@media(max-width:700px) {
  :root { --header-height:104px; }
  .site-header .brand { width:min(230px,calc(100% - 80px)); margin-block:8px; }
}
/* Larger footer artwork, cropped to exclude the square asset's empty margins. */
.footer-grid .brand {
  position:relative; overflow:hidden; width:380px; max-width:100%;
  aspect-ratio:3650 / 1480; margin-bottom:18px;
}
.footer-grid .brand-logo {
  position:absolute; width:136.9863%; max-width:none; height:auto;
  left:-20.5479%; top:-105%;
}
@media(max-width:700px) { .footer-grid .brand { width:320px; } }
/* Keep the main navigation visible while scrolling. */
:root { --header-height: 160px; }
html { scroll-padding-top: calc(var(--header-height) + 20px); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  box-shadow: calc(-1 * var(--gutter)) 0 0 var(--paper), var(--gutter) 0 0 var(--paper);
}
@media(min-width:1600px) { :root { --header-height:180px; } }
@media(max-width:1100px) { :root { --header-height:140px; } }
@media(max-width:700px) { :root { --header-height:112px; } }
@media(max-width:900px) {
  .site-header nav.open { max-height:calc(100dvh - var(--header-height)); overflow-y:auto; overscroll-behavior:contain; }
}
.site-header nav>a[aria-current="location"]:not(.nav-contact) { color:var(--accent); }
.site-header nav>a[aria-current="location"]:not(.nav-contact)::after { transform:scaleX(1); }
.site-header .nav-contact[aria-current="location"] { background:var(--ink); border-color:var(--ink); }
/* Keep the photo covering tall mobile heroes and prevent label overlap. */
.hero-background { background-size:cover; background-color:#18201b; }
@media(max-width:700px) {
  .hero-background { padding-top:32px; padding-bottom:32px; background-size:auto 245%; }
  .hero-background .hero-topline>.hero-location { display:none !important; visibility:hidden; }
  .hero-background .hero-topline { flex-direction:column; gap:12px; }
  .hero-background .hero-topline .eyebrow { align-items:baseline; }
  .hero-background .status-dot { flex-shrink:0; }
  .site-header .menu { width:44px; min-width:44px; justify-content:center; padding:8px 0; }
}
@media(prefers-reduced-motion:reduce) {
  .hero-background, .hero-background .hero-topline, .hero-background .hero-intro,
  .hero-background .hero-description, .hero-background .hero-topline>.hero-location { animation:none; }
}
/* Review refinements: compact header, consistent spacing, and mobile containment. */
html, body { overflow-x:clip; }
:root { --header-height:112px; }
.site-header .brand { width:230px; margin-block:6px; }
.site-header .nav-contact { min-height:44px; padding:10px 18px; gap:20px; font-size:14px; }
.site-header nav { gap:clamp(20px,2.5vw,40px); }
.metrics strong { letter-spacing:-.035em; font-variant-numeric:tabular-nums; }
.metrics strong span { display:inline-block; margin-left:6px; }
.metrics p { color:#171a16; }
.projects .section-heading { display:block; }
.projects .section-note { display:block; margin-top:16px; }

.text-link,.button-link,.division-list a,summary,.project-page-button { transition:color .25s ease,background-color .25s ease,border-color .25s ease; }
.text-link:hover,summary:hover,.division-list a:hover { font-weight:inherit; }
.story { grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:var(--gap); }
.story-photos { margin:0; width:100%; max-width:480px; gap:20px; }
.story-photos .story-photo { margin:0; border-radius:12px; }
.story-photo img { border-radius:12px; aspect-ratio:16/10; }
.story-copy h2 { font-size:clamp(36px,4vw,60px); }
.story-copy>.muted,.story-copy .process-list { font-size:18px; }
.faq { align-items:center; }
.faq>div:first-child { text-align:center; }
.section-body>*,.story>*,.footer-grid>*,.contact-page>* { min-width:0; }
.hero-intro h1, h2, h3 { overflow-wrap:break-word; }

@media(max-width:900px) {
 :root { --header-height:104px; }
 .site-header .brand { width:220px; }
 .story { grid-template-columns:minmax(0,1fr); }
 .story-photos { max-width:none; grid-template-columns:repeat(2,minmax(0,1fr)); }
 .story-copy { max-width:none; }
}
@media(max-width:700px) {
 :root { --header-height:92px; --gutter:18px; }
 .site-header .brand { width:min(190px,calc(100% - 80px)); }
 .site-header .nav-contact { margin-left:0; }
 .story-photos { grid-template-columns:minmax(0,1fr); max-width:440px; }
 .story-copy h2 { font-size:36px; }
 .story-copy>.muted,.story-copy .process-list { font-size:16px; }
 .metrics>div { padding-inline:9px; }
 .metrics strong { font-size:32px; }
 .metrics strong span { font-size:22px; margin-left:4px; }
 .contact-link { gap:20px; font-size:18px; }
 .hero-background h1 { font-size:clamp(32px,8vw,54px); }
 .hero-actions { flex-wrap:wrap; }
}
@media(prefers-reduced-motion:reduce) {
 .text-link,.button-link,.division-list a,summary,.project-page-button { transition:none; }
}
/* Keep the hero stable while the full photograph decodes. */
.home-page #home.hero-background { animation:none; isolation:isolate; background-image:linear-gradient(90deg,rgba(13,19,16,.88),rgba(13,19,16,.12)),url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAAbADADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDJ8NzT3ExjmZW/dllGMZI7fzrtdSs4LDRBqEEJnb5SIzKF4Y4BzXnGh3629/by7gArjd9O/wClehT3ltb2t3a3gKqlu8O4ORuUDCgds9SPrRYZjDWl8guNOXevWI3B3Z9AAhzVCXxc8MqxPpCRswJ+a7BCj3+Xj8fWugj1bzbGe7htUtzGA0TKd2eDhTtHABwT1rM1OfTtZsLTzRbTXUkYikTz8MSDnjv17E1KbKduhmS+MZVtmm+xQx4BOHc84/D3rFm8fXUr+WtpbjjOdrHj86mu/CE6Mwub64t4gzBxNH520dedhyPfNVZfBlw7t/Z+oadcl1yIyxR8D0BFVr2IMPSbma4vBBHE3ythy3GK9RxBqMAS4t3nzgnceAfUelcRZRoniq6RVAVmDEDuSoJ/UmvRrYBIgFAHFUkJmOs0+laqNOs4rbE4EqCcyucAHIzu4Ax+tbolsNds5IYlV7u3j3ukZL4bJ+4SBnBHQ0mSzc81a0tFgvrYRKE81ZGfA+8RjH8zSaSGmcxqvi9wsckkDRzPgSrIpUEAYOOOvTnkVTv9Uilgt5LCW0kdDyu4x7lA5XI5HUdKz/G7tdW2oeczN9luSIOcbAQM4rgre7uNnlefJ5fJ27uM+tGuzDQ//9k='); }
.home-page #home.hero-background::before { content:""; position:absolute; inset:0; z-index:-1; pointer-events:none; background:linear-gradient(90deg,rgba(13,19,16,.88) 0%,rgba(13,19,16,.68) 38%,rgba(13,19,16,.12) 75%),url('assets/background-web-1920.webp') center/cover no-repeat; opacity:0; transition:opacity .65s ease; }
.home-page #home.hero-background.hero-image-ready::before { opacity:1; }
@media(max-width:700px) {
 .home-page #home.hero-background::before { background-image:linear-gradient(90deg,rgba(13,19,16,.86),rgba(13,19,16,.63)),url('assets/background-web-1920.webp'); background-position:center 78%; background-size:cover; }
 .home-page #home.hero-background { background-size:cover; }
}
@media(prefers-reduced-motion:reduce) { .home-page #home.hero-background::before { transition:none; } }

/* Gentle studio image movement, with matching treatment on both photographs. */
.story-photo img { transition:transform 900ms cubic-bezier(.22,1,.36,1); }
.story-photo:hover img { filter:none; transform:none; }
@media(hover:hover) and (prefers-reduced-motion:no-preference) {
 .story-photo:hover img { transform:scale(1.025); }
}
@media(prefers-reduced-motion:reduce) { .story-photo img { transition:none; } }

/* Shared, restrained motion across navigation, cards and calls to action. */
@media(prefers-reduced-motion:no-preference) {
 .button-link,.text-link,.nav-contact,.footer-link,.social-icon,.journal-filter,.project-page-button {
  transition:background-color .3s ease,color .3s ease,border-color .3s ease,transform .45s cubic-bezier(.22,1,.36,1);
 }
 .button-link span,.text-link span,.nav-contact span { display:inline-block; transition:transform .45s cubic-bezier(.22,1,.36,1); }
 .button-link:hover span,.text-link:hover span,.nav-contact:hover span { transform:translate(3px,-3px); }
 .project-photo img,.blog-grid article>img { transition:transform .8s cubic-bezier(.22,1,.36,1),filter .6s ease; }
 .division-list summary { transition:color .3s ease,background-color .3s ease; }
 .social-icon:hover { transform:translateY(-3px); }
}

/* One entrance per hero element; keep text readable while it settles. */
.hero-background .hero-intro,.hero-background .hero-description { animation:none; }
@media(prefers-reduced-motion:no-preference) {
 .hero-background .hero-topline { animation:arkive-hero-enter .65s ease-out both; }
 .hero-background h1 { animation:arkive-hero-enter .8s .06s cubic-bezier(.22,1,.36,1) both; }
 .hero-background .hero-description>p { animation:arkive-hero-enter .75s .12s cubic-bezier(.22,1,.36,1) both; }
 .hero-background .hero-actions { animation:arkive-hero-enter .75s .2s cubic-bezier(.22,1,.36,1) both; }
}
@keyframes arkive-hero-enter {
 from { opacity:.65; transform:translateY(12px); }
 to { opacity:1; transform:translateY(0); }
}
@media(prefers-reduced-motion:reduce) {
 .hero-background .hero-topline,.hero-background h1,.hero-background .hero-description>p,.hero-background .hero-actions { animation:none; }
}

/* Match mobile hero preloads with the exact image selected by CSS. */
@media(max-width:700px) {
  .home-page #home.hero-background::before { background-image:linear-gradient(90deg,rgba(13,19,16,.86),rgba(13,19,16,.63)),url('assets/background-web-960.webp'); }
  .design-studio-page { --division-hero:url('assets/hero-architecture-960.webp'); }
  .digital-page { --division-hero:url('assets/hero-digital-960.webp'); }
  .forma-page { --division-hero:url('assets/hero-forma-960.webp'); }
  .business-page { --division-hero:url('assets/hero-business-960.webp'); }
}