:root {
  --ink: #191918;
  --ink-soft: #363430;
  --paper: #f5f2eb;
  --paper-deep: #ece7dd;
  --stone: #d8d2c7;
  --taupe: #9c8f7d;
  --bronze: #705b42;
  --clay: #a56652;
  --blush: #eadbd2;
  --blush-soft: #f0e5df;
  --sage: #7d8676;
  --white: #fffdfa;
  --shadow: 0 22px 70px rgba(25, 25, 24, 0.12);
  --radius: 2px;
  --max: 1240px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.section { padding: clamp(76px, 10vw, 150px) 0; }
.section--compact { padding: clamp(54px, 7vw, 96px) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--white { background: var(--white); }
.rule { width: 100%; height: 1px; background: var(--stone); }
.eyebrow {
  margin: 0 0 18px;
  font-size: .73rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bronze);
}
.section--dark .eyebrow { color: #bdae9a; }
.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  line-height: .92;
  letter-spacing: -.045em;
}
.h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.85rem, 6vw, 6.1rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -.035em;
}
.h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 690px;
}
.section--dark .lead { color: #d8d2c7; }
.muted { color: #69635b; }
.small { font-size: .9rem; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--bronze); border-color: var(--bronze); transform: translateY(-2px); }
.btn:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--bronze); outline-offset: 4px; }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: var(--white); border-color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { color: var(--paper); }
.section--dark .btn--ghost { color: var(--paper); border-color: #6b665f; }
.section--dark .btn--ghost:hover { border-color: var(--paper); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid #aaa193;
  padding-bottom: 3px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.section--dark .text-link { color: var(--paper); border-color: #7c756c; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 242, 235, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 210, 199, .75);
}
.nav {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}
.brand {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.nav-links { display: flex; justify-content: center; gap: 30px; }
.nav-links a {
  text-decoration: none;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 700;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--ink);
  transition: right .25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; width: 25px; height: 1px; background: var(--ink); margin: 7px auto; transition: transform .2s ease, opacity .2s ease; }
.mobile-panel { display: none; }

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: stretch;
  border-bottom: 1px solid var(--stone);
}
.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
}
.hero-copy {
  padding: clamp(60px, 7vw, 112px) clamp(34px, 4vw, 64px) clamp(60px, 7vw, 104px) max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--paper) 0%, var(--paper) 56%, var(--blush-soft) 100%);
  flex-direction: column;
  justify-content: center;
}
.hero-copy .display {
  max-width: 9.6ch;
  font-size: clamp(3.4rem, 5.15vw, 6.35rem);
  line-height: .94;
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow { color: var(--clay); }
.hero-emphasis { color: var(--clay); font-style: italic; }
.hero-copy::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: -95px;
  bottom: 11%;
  background: rgba(165, 102, 82, .08);
  pointer-events: none;
}
.hero-copy .btn:not(.btn--ghost) { background: var(--clay); border-color: var(--clay); }
.hero-copy .btn:not(.btn--ghost):hover { background: var(--bronze); border-color: var(--bronze); }
.hero-copy .btn--ghost { border-color: #b9a99e; }
.hero-copy .lead { margin: 28px 0 34px; max-width: 570px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { margin-top: 30px; font-size: .82rem; letter-spacing: .04em; color: #6d675f; }
.hero-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #e3ded5;
  border-left: 1px solid rgba(165, 102, 82, .22);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: grayscale(1) contrast(1.02); }
.hero-media::after {
  content: "Hand-drawn in graphite";
  position: absolute;
  right: 24px;
  bottom: 20px;
  padding: 9px 12px;
  background: rgba(245,242,235,.92);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .65rem;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  background: linear-gradient(90deg, var(--blush-soft), var(--paper) 38%, #eef0ea 100%);
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--stone);
}
.trust-item { padding: 28px 32px; text-align: center; border-right: 1px solid var(--stone); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.trust-item span { display: block; color: #716a62; font-size: .78rem; margin-top: 3px; }

.split-heading {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 90px);
}
.split-heading .lead { margin: 0; }

.gallery-feature {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.gallery-stack { display: grid; gap: clamp(26px, 4vw, 56px); }
.art-card { text-decoration: none; display: block; }
.art-frame { overflow: hidden; background: var(--paper-deep); }
.art-frame img { width: 100%; transition: transform .7s cubic-bezier(.2,.7,.2,1); filter: grayscale(1); }
.art-card:hover .art-frame img { transform: scale(1.018); }
.art-meta { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding-top: 16px; }
.art-title { font-family: var(--serif); font-size: 1.55rem; line-height: 1; }
.art-category { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: #786f64; }

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.category-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
}
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.68); transition: transform .8s ease, filter .5s ease; }
.category-card:hover img { transform: scale(1.025); filter: grayscale(1) brightness(.58); }
.category-card__content { position: absolute; inset: auto 0 0; padding: clamp(26px, 4vw, 48px); z-index: 2; }
.category-card__content p { max-width: 430px; color: #e1dbd1; }
.category-card__content .text-link { color: var(--paper); border-color: #a69e92; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #504d48; border-bottom: 1px solid #504d48; }
.process-step { padding: 38px 26px 42px; border-right: 1px solid #504d48; }
.process-step:last-child { border-right: 0; }
.process-num { font-family: var(--serif); font-size: 1.1rem; color: #a99e90; margin-bottom: 50px; }
.process-step h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; margin: 0 0 14px; }
.process-step p { margin: 0; color: #c8c1b8; font-size: .92rem; }

.quote-panel { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 560px; }
.quote-panel__image { overflow: hidden; }
.quote-panel__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.quote-panel__copy { background: var(--white); padding: clamp(50px, 7vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.quote-panel__copy .lead { margin: 22px 0 30px; }

.cta-band { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.cta-band__actions { justify-self: end; display: flex; flex-wrap: wrap; gap: 12px; }

.page-hero { padding: clamp(88px, 12vw, 170px) 0 clamp(60px, 9vw, 120px); border-bottom: 1px solid var(--stone); }
.page-hero .lead { margin: 28px 0 0; }
.page-hero--dark { background: var(--ink); color: var(--paper); }
.page-hero--dark .lead { color: #d3cdc4; }
.page-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: end; }
.page-hero__aside { max-width: 430px; justify-self: end; }

.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 38px; }
.filter-btn { border: 1px solid var(--stone); background: transparent; padding: 10px 14px; text-transform: uppercase; letter-spacing: .11em; font-size: .7rem; cursor: pointer; }
.filter-btn[aria-pressed="true"], .filter-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(22px, 3vw, 42px); }
.portfolio-grid .art-card { grid-column: span 6; }
.portfolio-grid .art-card:nth-child(4n+1), .portfolio-grid .art-card:nth-child(4n+4) { grid-column: span 7; }
.portfolio-grid .art-card:nth-child(4n+2), .portfolio-grid .art-card:nth-child(4n+3) { grid-column: span 5; }

.project-hero { display: grid; grid-template-columns: .82fr 1.18fr; min-height: calc(100svh - 82px); border-bottom: 1px solid var(--stone); }
.project-info { padding: clamp(60px, 8vw, 110px) clamp(30px, 6vw, 80px) 60px max(20px, calc((100vw - var(--max)) / 2)); display: flex; flex-direction: column; justify-content: center; }
.project-info .lead { margin: 24px 0 36px; }
.project-media { overflow: hidden; background: var(--paper-deep); }
.project-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.project-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 26px; padding-top: 24px; border-top: 1px solid var(--stone); }
.project-fact span { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: #786f64; margin-bottom: 4px; }
.project-fact strong { font-weight: 500; font-size: .9rem; }
.project-detail { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.project-gallery img { width: 100%; background: var(--paper-deep); }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card { text-decoration: none; }
.article-card__image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-deep); }
.article-card__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform .6s ease; }
.article-card:hover img { transform: scale(1.02); }
.article-card__meta { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: #766f67; margin: 16px 0 8px; }
.article-card h2 { font-family: var(--serif); font-size: 1.75rem; line-height: 1.08; font-weight: 400; margin: 0 0 12px; }
.article-card p { margin: 0; color: #625d56; }
.article-content { width: min(100%, 760px); margin-inline: auto; font-family: var(--serif); font-size: 1.22rem; line-height: 1.78; }
.article-content h2 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.1; margin: 2.3em 0 .65em; }
.article-content p { margin: 0 0 1.25em; }
.article-byline { display: flex; gap: 16px; flex-wrap: wrap; color: #766f67; font-size: .82rem; margin-top: 26px; }

.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.form-intro { position: sticky; top: 120px; }
.form-card { background: var(--white); padding: clamp(28px, 5vw, 64px); border: 1px solid #e1dbd1; box-shadow: 0 18px 60px rgba(25,25,24,.05); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa296;
  border-radius: 0;
  background: transparent;
  padding: 13px 2px;
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--ink); }
.field input[type="file"] { border: 1px dashed #a79f93; padding: 18px; background: #faf8f3; }
.field-help { font-size: .78rem; color: #766f67; }
.field-error { font-size: .78rem; color: #8f2f2c; min-height: 1.1em; }
.form-actions { margin-top: 28px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.form-status { margin-top: 18px; padding: 14px 16px; border: 1px solid var(--stone); display: none; }
.form-status.is-visible { display: block; }
.form-status.is-success { border-color: #6f8065; background: #f0f4ec; }
.form-status.is-error { border-color: #a47670; background: #f7efee; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.faq-list { border-top: 1px solid var(--stone); }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-question { width: 100%; padding: 24px 0; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 20px; text-align: left; font-family: var(--serif); font-size: 1.45rem; cursor: pointer; }
.faq-question span:last-child { font-family: var(--sans); font-size: 1.1rem; transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0 0 24px; max-width: 760px; color: #5e5952; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone); border: 1px solid var(--stone); }
.value-card { background: var(--paper); padding: 34px; min-height: 260px; }
.value-card .eyebrow { margin-bottom: 38px; }
.value-card p { color: #655f58; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { border: 1px solid var(--stone); padding: 34px; min-height: 360px; display: flex; flex-direction: column; }
.price-card h2 { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin: 0 0 16px; }
.price-card ul { padding-left: 18px; color: #615b54; }
.price-card .text-link { margin-top: auto; align-self: flex-start; }

.legal { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: 2rem; margin: 2em 0 .55em; }
.legal p, .legal li { color: #514d47; }

.site-footer { background: var(--ink); color: var(--paper); padding: 74px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, .6fr); gap: 48px; }
.footer-brand { font-family: var(--serif); font-size: 2.5rem; line-height: 1; margin-bottom: 18px; }
.footer-intro { max-width: 390px; color: #c9c2b9; }
.footer-col h2 { font-family: var(--sans); font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; color: #9f968a; margin: 0 0 18px; }
.footer-col a { display: block; color: var(--paper); text-decoration: none; margin: 9px 0; font-size: .9rem; }
.footer-col a:hover { color: #bfae98; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding-top: 28px; margin-top: 58px; border-top: 1px solid #3b3935; font-size: .75rem; color: #9f988e; }
.social-links { display: flex; gap: 16px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.empty-state { padding: 42px; border: 1px dashed var(--stone); text-align: center; color: #676058; }

@media (max-width: 1020px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: block; justify-self: end; }
  .mobile-panel {
    display: block;
    position: fixed;
    z-index: 999;
    inset: 82px 0 0;
    background: var(--paper);
    padding: 40px 20px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .mobile-panel.open { transform: none; }
  .mobile-panel a { display: block; text-decoration: none; font-family: var(--serif); font-size: 2.25rem; padding: 10px 0; border-bottom: 1px solid var(--stone); }
  .mobile-panel .btn { margin-top: 28px; font-family: var(--sans); font-size: .72rem; display: inline-flex; }
  .hero-grid, .project-hero { grid-template-columns: 1fr; }
  .hero-copy, .project-info { padding-left: max(20px, calc((100vw - var(--max)) / 2)); }
  .hero-copy .display { max-width: 11ch; font-size: clamp(3.6rem, 9vw, 6.4rem); }
  .hero-media { min-height: 620px; }
  .split-heading, .page-hero__grid, .form-layout, .project-detail { grid-template-columns: 1fr; }
  .page-hero__aside { justify-self: start; }
  .gallery-feature, .quote-panel, .cta-band { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid #504d48; }
  .form-intro { position: static; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.2fr repeat(3, .8fr); }
}

@media (max-width: 760px) {
  .container, .container--narrow { width: min(calc(100% - 28px), var(--max)); }
  .nav { height: 70px; }
  .mobile-panel { inset-top: 70px; }
  .hero { min-height: auto; }
  .hero-copy { padding: 64px 20px 56px; }
  .hero-copy .display { max-width: 10.5ch; font-size: clamp(3.05rem, 15vw, 4.9rem); }
  .hero-copy::after { width: 130px; height: 130px; right: -72px; bottom: 8%; }
  .hero-media { min-height: 470px; }
  .hero-media::after { right: 14px; bottom: 14px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--stone); }
  .trust-item:last-child { border-bottom: 0; }
  .category-grid, .article-grid, .pricing-grid, .values-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 460px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid #504d48; }
  .process-step:last-child { border-bottom: 0; }
  .portfolio-grid { display: grid; grid-template-columns: 1fr; }
  .portfolio-grid .art-card, .portfolio-grid .art-card:nth-child(n) { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-wrap { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .project-facts { grid-template-columns: 1fr; }
}

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