@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --paper: #e8e0d4;
  --paper-light: #f3eee6;
  --bone: #faf8f2;
  --ink: #171815;
  --ink-soft: #5f5b53;
  --ink-faint: #898276;
  --copper: #a95234;
  --copper-light: #c47858;
  --line: rgba(23, 24, 21, 0.18);
  --line-light: rgba(250, 248, 242, 0.2);
  --shadow: 0 24px 60px rgba(23, 24, 21, 0.12);
  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --utility: 'Manrope', 'Avenir Next', Avenir, Helvetica, Arial, sans-serif;
  --shell: min(1280px, calc(100% - 64px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--utility);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--copper);
  color: var(--bone);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
summary,
input,
select,
textarea {
  outline-color: var(--copper);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 16px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--bone);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  color: var(--ink);
  background: rgba(232, 224, 212, 0.16);
  border-bottom: 1px solid rgba(250, 248, 242, 0.18);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

/* The homepage header sits over a deliberately dark editorial hero. Keep its
   navigation legible until it takes on the solid scroll treatment below. */
body:has(.hero) .site-header {
  color: var(--bone);
}

body:has(.hero) .site-header .brand-subtitle {
  color: rgba(250, 248, 242, 0.62);
}

.site-header.is-scrolled {
  background: rgba(250, 248, 242, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(23, 24, 21, 0.08);
  color: var(--ink);
}

.site-header.is-scrolled .brand-subtitle {
  color: var(--ink-soft);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.35;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-wordmark {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.05;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav > a:not(.header-call) {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-nav > a:not(.header-call)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.header-call):hover::after,
.site-nav > a:not(.header-call):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: inline-flex;
  min-height: 50px;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  padding: 7px 12px 8px 14px;
  background: var(--ink);
  color: var(--bone);
  font-size: 10px;
  line-height: 1.15;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.header-call strong {
  color: var(--copper-light);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--copper);
  color: var(--bone);
}

.header-call:hover strong,
.header-call:focus-visible strong {
  color: var(--bone);
}

.menu-toggle {
  display: none;
  min-width: 72px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle-lines {
  display: grid;
  gap: 4px;
}

.menu-toggle-lines i {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines i:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines i:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  filter: saturate(0.82) contrast(1.06);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(8, 10, 8, 0.94) 0%, rgba(14, 15, 12, 0.84) 30%, rgba(18, 18, 15, 0.43) 61%, rgba(18, 18, 15, 0.08) 100%), linear-gradient(180deg, rgba(8, 10, 8, 0.24) 0%, transparent 36%, rgba(8, 10, 8, 0.84) 100%), radial-gradient(circle at 25% 45%, rgba(8, 10, 8, 0.22), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(940px, 100svh);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 180px;
}

.eyebrow {
  margin: 0;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--copper-light);
}

.hero h1,
.section-heading h2,
.work-heading h2,
.standard-copy h2,
.reviews-header h2,
.about-copy h2,
.process-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 8.9vw, 138px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.79;
}

.hero h1 {
  max-width: 730px;
  margin-top: 24px;
  color: var(--bone);
  font-size: clamp(76px, 10.5vw, 162px);
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.62);
}

.hero h1 em,
h2 em {
  color: var(--copper-light);
  font-style: italic;
}

.hero-intro {
  max-width: 480px;
  margin: 32px 0 0;
  color: rgba(250, 248, 242, 0.82);
  font-size: 17px;
  line-height: 1.65;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.56);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-copper {
  background: var(--copper);
  color: var(--bone);
}

.button-copper:hover,
.button-copper:focus-visible {
  background: var(--copper-light);
  color: var(--ink);
}

.button-copper span {
  color: rgba(250, 248, 242, 0.75);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.button-copper:hover span,
.button-copper:focus-visible span {
  color: var(--ink);
}

.button b {
  font-size: 16px;
  font-weight: 400;
  line-height: 0;
}

.button-quiet {
  border-color: rgba(250, 248, 242, 0.45);
  color: var(--bone);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--copper-light);
  background: rgba(250, 248, 242, 0.08);
}

.hero-note {
  margin: 48px 0 0;
  color: rgba(250, 248, 242, 0.56);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(250, 248, 242, 0.34);
}

.hero-proof-item {
  display: flex;
  min-height: 91px;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 16px 22px 17px 0;
  border-right: 1px solid rgba(250, 248, 242, 0.22);
}

.hero-proof-item:not(:first-child) {
  padding-left: 22px;
}

.hero-proof-item:last-child {
  border-right: 0;
}

.hero-proof-item strong {
  color: var(--bone);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.hero-proof-item span {
  color: rgba(250, 248, 242, 0.64);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-pad {
  padding-top: clamp(88px, 10vw, 160px);
  padding-bottom: clamp(88px, 10vw, 160px);
}

.section-paper {
  background: var(--paper);
}

.section-bone {
  background: var(--bone);
}

.section-heading-intro {
  display: grid;
  grid-template-columns: 0.78fr 1fr 0.72fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}

.section-heading h2,
.work-heading h2,
.standard-copy h2,
.reviews-header h2,
.about-copy h2,
.process-heading h2,
.contact-copy h2 {
  margin-top: 19px;
  font-size: clamp(58px, 7vw, 112px);
}

.section-heading > p:last-child,
.work-heading > p,
.process-heading > p:last-child {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  gap: 16px;
}

.pathway {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
}

.pathway-urgent {
  background: var(--ink);
  color: var(--bone);
}

.pathway-project {
  min-height: 350px;
  background: var(--paper-light);
}

.pathway-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pathway-urgent .pathway-topline {
  color: var(--copper-light);
}

.pathway h3 {
  max-width: 580px;
  margin: 54px 0 18px;
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.pathway p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.pathway-urgent p {
  color: rgba(250, 248, 242, 0.7);
}

.pathway-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
}

.text-action,
.inline-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-action:hover,
.inline-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.text-action-light {
  color: var(--copper-light);
}

.text-action strong {
  color: var(--bone);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.pathway-caption {
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.pathway-urgent .pathway-caption {
  color: rgba(250, 248, 242, 0.48);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(52px, 10vw, 150px);
}

.services-intro {
  position: sticky;
  top: 128px;
  align-self: start;
}

.services-intro .inline-link {
  margin-top: 34px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  border-bottom: 1px solid var(--line);
}

.service-row summary {
  display: grid;
  min-height: 90px;
  grid-template-columns: 55px 1fr 30px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.service-row summary::-webkit-details-marker {
  display: none;
}

.service-number {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-name {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.service-name em {
  color: var(--ink-soft);
  font-style: italic;
}

.service-arrow {
  color: var(--copper);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.service-row[open] .service-arrow {
  transform: rotate(45deg);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 0 30px 28px 71px;
}

.service-detail p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.service-detail a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-detail a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.work {
  background: var(--paper-light);
}

.work-heading {
  display: grid;
  grid-template-columns: 0.9fr 0.6fr;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 66px;
}

.work-heading h2 {
  font-size: clamp(68px, 8vw, 126px);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.work-card {
  min-width: 0;
  margin: 0;
}

.work-card-wide {
  grid-column: 1 / -1;
}

.work-card-tall {
  grid-column: 1 / span 5;
}

.work-column {
  display: grid;
  grid-column: 6 / -1;
  gap: 18px;
}

.work-card-plant {
  grid-column: 9 / -1;
  margin-top: 26px;
}

.work-image {
  position: relative;
  overflow: hidden;
  background: #d6c9ba;
}

.work-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(250, 248, 242, 0.2);
  content: '';
  pointer-events: none;
}

.work-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
}

.work-card:hover .work-image img,
.work-card:focus-within .work-image img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.work-card figcaption {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
}

.work-card figcaption strong,
.work-card figcaption small {
  display: block;
}

.work-card figcaption strong {
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.work-card figcaption small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.figure-index {
  color: var(--copper);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}

.standard {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}

.standard::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  background: radial-gradient(circle at 30% 50%, rgba(169, 82, 52, 0.22), transparent 53%);
  content: '';
  pointer-events: none;
}

.standard-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: clamp(54px, 10vw, 160px);
}

.standard-art {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(250, 248, 242, 0.28);
  background: linear-gradient(135deg, rgba(250, 248, 242, 0.04), transparent 48%);
}

.standard-art-ring,
.standard-art-cross {
  position: absolute;
  display: block;
}

.standard-art-ring {
  top: 50%;
  left: 50%;
  border: 1px solid var(--copper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 43%;
  aspect-ratio: 1;
}

.ring-two {
  width: 71%;
  aspect-ratio: 1;
  border-color: rgba(250, 248, 242, 0.35);
}

.standard-art-cross {
  top: 50%;
  left: 13%;
  width: 74%;
  height: 1px;
  background: rgba(250, 248, 242, 0.3);
}

.cross-two {
  transform: rotate(90deg);
}

.standard-art-letter {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--copper-light);
  font-family: var(--display);
  font-size: clamp(100px, 14vw, 190px);
  font-weight: 500;
  line-height: 0.7;
  transform: translate(-50%, -50%);
}

.standard-art-label {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(250, 248, 242, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.standard-copy h2 {
  margin-bottom: 32px;
  color: var(--bone);
}

.standard-lede {
  max-width: 560px;
  margin: 0;
  color: rgba(250, 248, 242, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.principles-list {
  max-width: 650px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.principles-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
}

.principles-list li > span {
  color: var(--copper-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.principles-list strong {
  display: block;
  color: var(--bone);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.principles-list p {
  max-width: 470px;
  margin: 7px 0 0;
  color: rgba(250, 248, 242, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 65px;
}

.rating-lockup {
  display: flex;
  align-items: end;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}

.rating-lockup strong {
  color: var(--copper);
  font-family: var(--display);
  font-size: 84px;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.rating-lockup span {
  padding-bottom: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.review-layout {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 18px;
}

.review-feature {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(30px, 5vw, 70px);
  background: var(--copper);
  color: var(--bone);
}

.review-feature p {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.review-feature footer,
.review-stack footer {
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.review-stack {
  display: grid;
  gap: 18px;
}

.review-stack blockquote {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 25px 28px 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.review-stack p {
  max-width: 490px;
  margin: 0 0 25px;
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 37px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.review-stack footer {
  color: var(--copper);
}

.evidence-note {
  margin: 26px 0 0;
  color: var(--ink-faint);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 13vw, 190px);
}

.about-mark {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 48%, rgba(169, 82, 52, 0.12), transparent 38%);
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  border: 1px solid var(--copper);
  border-radius: 50%;
  content: '';
}

.about-mark::before {
  width: 52%;
  aspect-ratio: 1;
}

.about-mark::after {
  width: 73%;
  aspect-ratio: 1;
  border-color: rgba(23, 24, 21, 0.22);
}

.about-mark-letter {
  position: relative;
  z-index: 1;
  color: var(--copper);
  font-family: var(--display);
  font-size: clamp(150px, 19vw, 260px);
  font-weight: 500;
  letter-spacing: -0.12em;
  line-height: 0.65;
  transform: translateX(-6%);
}

.about-mark-rule {
  position: absolute;
  top: 50%;
  right: 13%;
  left: 13%;
  height: 1px;
  background: var(--line);
}

.about-mark-caption {
  position: absolute;
  right: 18px;
  bottom: 17px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 32px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 0 0 17px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.about-copy .inline-link {
  margin-top: 22px;
}

.process {
  background: var(--paper-light);
}

.process .shell {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(60px, 12vw, 180px);
}

.process-heading {
  align-self: start;
}

.process-heading h2 {
  margin-bottom: 34px;
}

.process-heading > p:last-child {
  max-width: 260px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 28px 0 31px;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin: -3px 0 10px;
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.process-list p {
  max-width: 510px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(55px, 11vw, 170px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-family: var(--display);
  font-size: clamp(25px, 2.8vw, 39px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.faq-list summary b {
  color: var(--copper);
  font-size: 23px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 610px;
  margin: -2px 50px 26px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}

.contact::after {
  position: absolute;
  top: -35%;
  right: -6%;
  width: 46vw;
  max-width: 720px;
  aspect-ratio: 1;
  border: 1px solid rgba(169, 82, 52, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(169, 82, 52, 0.04), 0 0 0 160px rgba(169, 82, 52, 0.025);
  content: '';
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: clamp(50px, 10vw, 155px);
}

.contact-copy h2 {
  margin-bottom: 32px;
  color: var(--bone);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: rgba(250, 248, 242, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.contact-direct {
  display: grid;
  max-width: 400px;
  margin-top: 46px;
  border-top: 1px solid var(--line-light);
}

.contact-direct a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
  color: var(--bone);
  text-decoration: none;
}

.contact-direct a:hover strong {
  color: var(--copper-light);
}

.contact-direct span {
  color: var(--copper-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-direct strong {
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.enquiry-form {
  padding: clamp(24px, 4vw, 50px);
  background: rgba(250, 248, 242, 0.07);
  border: 1px solid rgba(250, 248, 242, 0.2);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
  color: var(--bone);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading small {
  color: rgba(250, 248, 242, 0.5);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.enquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(250, 248, 242, 0.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.enquiry-form label > span {
  color: var(--copper-light);
}

.enquiry-form label small {
  margin-left: 5px;
  color: rgba(250, 248, 242, 0.42);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(250, 248, 242, 0.28);
  border-radius: 0;
  background: rgba(250, 248, 242, 0.06);
  color: var(--bone);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.enquiry-form input,
.enquiry-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.enquiry-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(250, 248, 242, 0.36);
}

.enquiry-form select option {
  color: var(--ink);
}

.enquiry-form input:hover,
.enquiry-form input:focus,
.enquiry-form select:hover,
.enquiry-form select:focus,
.enquiry-form textarea:hover,
.enquiry-form textarea:focus {
  border-color: var(--copper-light);
  background: rgba(250, 248, 242, 0.1);
}

.enquiry-form > label {
  margin-top: 18px;
}

.form-note {
  margin: 20px 0 0;
  color: rgba(250, 248, 242, 0.53);
  font-size: 11px;
  line-height: 1.6;
}

.form-submit {
  margin-top: 24px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--copper-light);
  font-size: 11px;
  line-height: 1.5;
}

.site-footer {
  background: var(--paper);
  color: var(--ink);
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 68px 0 52px;
  border-bottom: 1px solid var(--line);
}

.brand-footer .brand-subtitle {
  color: var(--ink-soft);
}

.footer-statement {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 55px);
  letter-spacing: -0.05em;
  line-height: 0.88;
  text-align: right;
}

.footer-statement span {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 42px 0 50px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-label {
  margin-bottom: 11px;
  color: var(--copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid address {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-map {
  margin-top: 7px;
  color: var(--copper) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 18px 0 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mobile-call-bar {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-body {
  min-height: 100vh;
}

.simple-header {
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.privacy-main {
  max-width: 900px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.privacy-main h1 {
  margin: 22px 0 30px;
  font-family: var(--display);
  font-size: clamp(66px, 10vw, 132px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.privacy-intro {
  max-width: 600px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.privacy-sections {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.privacy-section {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 40px;
  padding: 34px 0 40px;
  border-bottom: 1px solid var(--line);
}

.privacy-section h2 {
  margin: 0;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.privacy-section p,
.privacy-section li {
  margin: 0 0 15px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.privacy-section p:last-child,
.privacy-section li:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  margin: 0;
  padding-left: 20px;
}

.privacy-section a {
  color: var(--copper);
  font-weight: 700;
}

@media (max-width: 1060px) {
  :root {
    --shell: min(100% - 48px, 900px);
  }

  .site-nav {
    gap: 16px;
  }

  .section-heading-intro,
  .services-layout,
  .standard-layout,
  .about-layout,
  .process .shell,
  .faq-layout,
  .contact-layout {
    gap: 56px;
  }

  .section-heading-intro {
    grid-template-columns: 0.65fr 1fr 0.7fr;
  }

  .services-layout {
    grid-template-columns: 0.62fr 1.38fr;
  }

  .standard-layout {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .about-layout {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .contact-layout {
    grid-template-columns: 0.78fr 1.22fr;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 650px);
  }

  /* On the homepage the desktop header is intentionally light over the dark
     hero. The mobile header and its menu are paper surfaces, so reset that
     inherited treatment before the menu is revealed. */
  body:has(.hero) .site-header {
    color: var(--ink);
  }

  body:has(.hero) .site-header .brand-subtitle {
    color: var(--ink-soft);
  }

  .site-header {
    background: rgba(250, 248, 242, 0.92);
    border-bottom-color: var(--line);
    box-shadow: 0 6px 22px rgba(23, 24, 21, 0.05);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-wordmark {
    font-size: 14px;
  }

  .brand-subtitle {
    font-size: 7px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 11px 18px 18px;
    border: 1px solid var(--line);
    background: var(--bone);
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(23, 24, 21, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .site-nav[data-open='true'] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav > a:not(.header-call) {
    min-height: 52px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.header-call)::after {
    bottom: 0;
  }

  .header-call {
    min-height: 58px;
    margin-top: 13px;
    padding-left: 15px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    min-height: 820px;
    justify-content: flex-start;
    padding-top: 175px;
    padding-bottom: 205px;
  }

  .hero h1 {
    max-width: 650px;
    margin-top: 25px;
    font-size: clamp(72px, 15vw, 125px);
  }

  .hero-intro {
    max-width: 500px;
    margin-top: 30px;
    font-size: 15px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof-item {
    min-height: 71px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(250, 248, 242, 0.22);
  }

  .hero-proof-item:nth-child(2) {
    border-right: 0;
  }

  .hero-proof-item:nth-child(3),
  .hero-proof-item:nth-child(4) {
    border-bottom: 0;
  }

  .hero-proof-item:nth-child(3) {
    padding-left: 0;
  }

  .section-heading-intro,
  .services-layout,
  .standard-layout,
  .about-layout,
  .process .shell,
  .faq-layout,
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-heading-intro {
    align-items: start;
    gap: 28px;
    margin-bottom: 40px;
  }

  .section-heading-intro > p:last-child {
    max-width: 500px;
  }

  .services-intro {
    position: static;
  }

  .services-intro .inline-link {
    margin-top: 22px;
  }

  .pathway-grid,
  .review-layout {
    grid-template-columns: 1fr;
  }

  .pathway,
  .pathway-project {
    min-height: 330px;
  }

  .work-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
  }

  .work-heading > p {
    max-width: 510px;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card-wide,
  .work-card-tall,
  .work-column,
  .work-card-plant {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .work-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .standard-art {
    width: min(100%, 480px);
  }

  .standard-copy {
    max-width: 640px;
  }

  .about-mark {
    min-height: min(480px, 80vw);
  }

  .process-heading > p:last-child {
    max-width: 430px;
  }

  .contact-copy > p:not(.eyebrow) {
    max-width: 520px;
  }

  .footer-top {
    display: block;
  }

  .footer-statement {
    margin-top: 42px;
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 36px);
  }

  body {
    padding-bottom: 70px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .brand-wordmark {
    font-size: 13px;
    letter-spacing: 0.13em;
  }

  .brand-subtitle {
    display: none;
  }

  .menu-toggle {
    min-width: 68px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-media img {
    object-position: 63% 43%;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(8, 10, 8, 0.96) 0%, rgba(14, 15, 12, 0.82) 72%, rgba(18, 18, 15, 0.22) 100%), linear-gradient(180deg, rgba(8, 10, 8, 0.28) 0%, transparent 35%, rgba(8, 10, 8, 0.9) 100%);
  }

  .hero-content {
    min-height: 790px;
    padding-top: 150px;
    padding-bottom: 205px;
  }

  .hero h1 {
    max-width: 320px;
    margin-top: 22px;
    font-size: clamp(69px, 21vw, 105px);
    line-height: 0.79;
  }

  .hero-intro {
    max-width: 315px;
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    width: min(100%, 310px);
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    max-width: 290px;
    margin-top: 30px;
    font-size: 8px;
  }

  .hero-proof-item {
    min-height: 63px;
    padding-right: 10px;
  }

  .hero-proof-item:not(:first-child) {
    padding-left: 10px;
  }

  .hero-proof-item:nth-child(3) {
    padding-left: 0;
  }

  .hero-proof-item strong {
    font-size: 25px;
  }

  .hero-proof-item span {
    font-size: 7px;
    letter-spacing: 0.09em;
  }

  .section-pad {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading h2,
  .work-heading h2,
  .standard-copy h2,
  .reviews-header h2,
  .about-copy h2,
  .process-heading h2,
  .contact-copy h2 {
    font-size: clamp(58px, 18vw, 95px);
    line-height: 0.8;
  }

  .pathways .section-heading-intro {
    gap: 24px;
    margin-bottom: 38px;
  }

  .pathway {
    min-height: 390px;
    padding: 28px 24px;
  }

  .pathway-project {
    min-height: 350px;
  }

  .pathway h3 {
    margin-top: 45px;
    font-size: 58px;
  }

  .pathway p {
    font-size: 14px;
  }

  .pathway-actions {
    display: block;
    margin-top: 36px;
  }

  .pathway-caption {
    display: block;
    margin-top: 12px;
    text-align: left;
  }

  .service-row summary {
    min-height: 76px;
    grid-template-columns: 34px 1fr 24px;
    gap: 8px;
  }

  .service-name {
    font-size: clamp(26px, 8.3vw, 37px);
  }

  .service-detail {
    display: block;
    padding: 0 20px 24px 42px;
  }

  .service-detail a {
    margin-top: 14px;
  }

  .work-grid,
  .work-column {
    display: grid;
    grid-template-columns: 1fr;
  }

  .work-card figcaption {
    padding-top: 12px;
  }

  .standard-layout {
    gap: 56px;
  }

  .standard-art {
    width: 100%;
  }

  .principles-list {
    margin-top: 38px;
  }

  .principles-list li {
    grid-template-columns: 31px 1fr;
    gap: 11px;
  }

  .principles-list strong {
    font-size: 27px;
  }

  .reviews-header {
    display: block;
    margin-bottom: 45px;
  }

  .rating-lockup {
    width: fit-content;
    margin-top: 40px;
  }

  .rating-lockup strong {
    font-size: 70px;
  }

  .review-feature {
    min-height: 390px;
    padding: 30px 24px;
  }

  .review-feature p {
    font-size: 48px;
  }

  .review-stack {
    gap: 12px;
  }

  .review-stack blockquote {
    padding: 21px 20px 20px;
  }

  .review-stack p {
    margin-bottom: 21px;
    font-size: 30px;
  }

  .about-mark {
    min-height: 330px;
  }

  .about-mark-letter {
    font-size: 170px;
  }

  .process-list li {
    grid-template-columns: 35px 1fr;
    gap: 10px;
    padding: 25px 0 27px;
  }

  .process-list h3 {
    font-size: 37px;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-list summary {
    min-height: 70px;
    gap: 16px;
  }

  .faq-list summary span {
    font-size: 29px;
  }

  .faq-list details p {
    margin-right: 25px;
    font-size: 12px;
  }

  .contact-layout {
    gap: 44px;
  }

  .contact-direct {
    margin-top: 32px;
  }

  .form-heading {
    display: block;
  }

  .form-heading small {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .enquiry-form {
    padding: 22px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-top {
    padding-top: 58px;
  }

  .footer-statement {
    font-size: 41px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px 0 38px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 70px;
    align-items: stretch;
    background: var(--ink);
    box-shadow: 0 -8px 22px rgba(23, 24, 21, 0.15);
  }

  .mobile-call-bar a {
    display: flex;
    min-height: 70px;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--bone);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-call-bar a:first-child {
    flex-direction: column;
    gap: 1px;
    background: var(--copper);
  }

  .mobile-call-bar a:first-child span {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .mobile-call-bar a:first-child strong {
    font-size: 13px;
    letter-spacing: 0.03em;
  }

  .mobile-call-bar a:last-child {
    max-width: 90px;
    border-left: 1px solid rgba(250, 248, 242, 0.22);
  }

  .privacy-main {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .privacy-main h1 {
    font-size: 75px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0 31px;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-image-link img {
    transition: none;
  }

  .consent-banner {
    scroll-behavior: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Cloudflare site extension: the public archive and private operational UI keep
   the same limestone / ink / copper vocabulary as the preserved prototype. */
[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.async-state {
  grid-column: 1 / -1;
  min-height: 80px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.async-state.error,
.form-status[data-state='error'],
.admin-status[data-state='error'] {
  color: #8c321d;
}

.form-status[data-state='success'],
.admin-status[data-state='success'] {
  color: var(--copper-light);
}

.button-dark {
  background: var(--ink);
  color: var(--bone);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--copper);
  color: var(--bone);
}

.section-pad-small {
  padding-top: 42px;
  padding-bottom: 42px;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
}

.credential-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(100%, 900px);
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-rail > span {
  display: flex;
  min-width: 180px;
  flex: 1 1 180px;
  flex-direction: column;
  gap: 4px;
  padding: 15px 20px 16px 0;
  border-right: 1px solid var(--line);
}

.credential-rail > span:not(:first-child) {
  padding-left: 20px;
}

.credential-rail > span:last-child {
  border-right: 0;
}

.credential-rail strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.credential-rail small {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.4;
}

.credential-rail-dark {
  border-color: rgba(250, 248, 242, 0.24);
}

.credential-rail-dark > span {
  border-color: rgba(250, 248, 242, 0.2);
}

.credential-rail-dark strong {
  color: var(--bone);
}

.credential-rail-dark small {
  color: rgba(250, 248, 242, 0.58);
}

.credential-rail-light {
  width: 100%;
  max-width: 1000px;
  margin-top: 50px;
}

.credential-rail-light > span {
  padding-top: 17px;
  padding-bottom: 17px;
}

.archive-preview {
  background: var(--paper-light);
}

.home-project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.home-project-card {
  grid-column: span 4;
  margin: 0;
}

.home-project-card:nth-child(1) {
  grid-column: span 7;
}

.home-project-card:nth-child(2) {
  grid-column: span 5;
  margin-top: 72px;
}

.home-project-card:nth-child(3) {
  grid-column: span 4;
  margin-top: -20px;
}

.home-project-card:nth-child(4) {
  grid-column: span 4;
}

.home-project-card:nth-child(5) {
  grid-column: span 4;
  margin-top: 64px;
}

.project-image-link {
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.project-image-link img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.home-project-card:nth-child(2) .project-image-link img,
.home-project-card:nth-child(5) .project-image-link img {
  aspect-ratio: 0.98;
}

.project-image-link:hover img,
.project-image-link:focus-visible img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.035);
}

.project-card-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.project-card-caption > span:first-child {
  display: grid;
  gap: 4px;
}

.project-card-caption strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-card-caption small {
  color: var(--ink-soft);
  font-size: 11px;
}

.figure-index {
  color: var(--copper);
  font-size: 18px;
}

.home-feedback-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.92fr 0.92fr;
  gap: 16px;
}

.feedback-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--bone);
}

.feedback-card blockquote {
  display: flex;
  min-height: 245px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 28px;
}

.feedback-card blockquote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.feedback-card footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 30px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feedback-card footer span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.feedback-context-image {
  margin: 0;
  border-top: 1px solid var(--line);
}

.feedback-context-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.feedback-context-image figcaption,
.feedback-source {
  margin: 0;
  padding: 10px 16px 12px;
  color: var(--ink-faint);
  font-size: 9px;
  line-height: 1.45;
}

.feedback-source {
  border-top: 1px solid var(--line);
}

.archive-main,
.feedback-main,
.project-main {
  padding-top: 104px;
}

.archive-hero {
  padding-top: 92px;
  padding-bottom: 92px;
}

.archive-hero h1,
.feedback-hero h1,
.project-story h1,
.admin-hero h1 {
  margin: 22px 0 30px;
  font-family: var(--display);
  font-size: clamp(72px, 10.5vw, 150px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.archive-hero h1 em,
.feedback-hero h1 em,
.project-story h1 em,
.admin-hero h1 em {
  color: var(--copper);
  font-style: italic;
}

.archive-intro,
.feedback-intro {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.archive-controls {
  background: var(--ink);
  color: var(--bone);
}

.archive-controls-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.archive-controls-heading > p:last-child {
  margin: 0;
  color: rgba(250, 248, 242, 0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.button-filter {
  min-height: 42px;
  padding: 10px 14px;
  border-color: rgba(250, 248, 242, 0.3);
  color: var(--bone);
  cursor: pointer;
  font-size: 9px;
}

.button-filter:hover,
.button-filter:focus-visible,
.button-filter.is-active {
  border-color: var(--copper-light);
  background: var(--copper);
  color: var(--bone);
}

.archive-grid-section {
  background: var(--paper-light);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 38px 18px;
  align-items: start;
}

.archive-card {
  grid-column: span 4;
  margin: 0;
}

.archive-card:nth-child(4n + 1) {
  grid-column: span 7;
}

.archive-card:nth-child(4n + 2) {
  grid-column: span 5;
  margin-top: 76px;
}

.archive-card:nth-child(4n + 3) {
  margin-top: -20px;
}

.archive-card:nth-child(4n + 4) {
  margin-top: 58px;
}

.archive-card .project-image-link img {
  aspect-ratio: 1.3;
}

.archive-card:nth-child(4n + 2) .project-image-link img {
  aspect-ratio: 0.95;
}

.archive-note {
  background: var(--bone);
}

.archive-note p:not(.eyebrow),
.feedback-disclosure p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.project-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 58px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-breadcrumb a {
  text-decoration: none;
}

.project-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-status {
  width: var(--shell);
  margin: 56px auto 0;
}

.project-story {
  padding-top: 62px;
  padding-bottom: 92px;
}

.project-story-header,
.project-story-layout {
  width: var(--shell);
  margin-inline: auto;
}

.project-story-header {
  max-width: 980px;
  margin-inline: auto;
}

.project-story h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(65px, 9vw, 136px);
}

.project-story-summary {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 36px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-story-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(42px, 9vw, 140px);
  margin-top: 76px;
}

.project-story-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.project-source-block {
  margin-top: 54px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.project-source-block p:not(.eyebrow) {
  margin: 13px 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.project-source-block a {
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.project-detail-media {
  margin: 0;
}

.project-detail-media:first-child {
  grid-column: 1 / -1;
}

.project-detail-media img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.project-detail-media:first-child img {
  aspect-ratio: 1.35;
}

.project-detail-media:not(:first-child) img {
  aspect-ratio: 1;
}

.project-detail-media figcaption {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.project-detail-media figcaption strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-detail-media figcaption small {
  color: var(--ink-faint);
  font-size: 10px;
}

.project-back {
  display: flex;
  width: var(--shell);
  align-items: center;
  gap: 26px;
  margin: 0 auto;
  padding-bottom: 108px;
}

.feedback-main {
  background: var(--paper-light);
}

.feedback-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  padding-top: 92px;
  padding-bottom: 76px;
}

.feedback-rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 14px;
  padding-bottom: 6px;
}

.feedback-rating strong {
  font-family: var(--display);
  font-size: 100px;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.feedback-rating span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.feedback-credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feedback-credential-strip span {
  flex: 1 1 220px;
  padding: 17px 20px 18px 0;
  border-right: 1px solid var(--line);
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feedback-credential-strip span:not(:first-child) {
  padding-left: 20px;
}

.feedback-credential-strip span:last-child {
  border-right: 0;
}

.feedback-list-section {
  background: var(--bone);
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.feedback-archive-card {
  grid-column: span 5;
}

.feedback-archive-card:nth-child(3n + 1) {
  grid-column: span 7;
}

.feedback-archive-card:nth-child(3n + 2) {
  margin-top: 76px;
}

.feedback-archive-card:nth-child(3n + 3) {
  margin-top: -28px;
}

.feedback-archive-card blockquote {
  min-height: 270px;
}

.feedback-disclosure {
  background: var(--paper);
}

/* Private admin */
.admin-body {
  min-width: 320px;
  background: #121311;
  color: var(--bone);
}

.admin-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(250, 248, 242, 0.16);
  background: #121311;
}

.admin-header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-admin {
  color: var(--bone);
}

.brand-admin .brand-subtitle {
  color: rgba(250, 248, 242, 0.52);
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-access-note {
  color: rgba(250, 248, 242, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-admin-quiet {
  border-color: rgba(250, 248, 242, 0.3);
  color: var(--bone);
}

.button-admin-quiet:hover,
.button-admin-quiet:focus-visible {
  border-color: var(--copper-light);
  background: rgba(250, 248, 242, 0.1);
}

.button-small {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 9px;
}

.button-danger {
  border-color: rgba(210, 102, 75, 0.55);
  color: #e1977b;
}

.button-danger:hover,
.button-danger:focus-visible {
  border-color: #e1977b;
  background: rgba(210, 102, 75, 0.16);
}

.admin-main {
  min-height: 100vh;
  padding: 0 0 110px;
  background: #121311;
}

.admin-hero {
  display: flex;
  min-height: 420px;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 92px;
  padding-bottom: 66px;
}

.admin-hero h1 {
  margin-bottom: 24px;
  color: var(--bone);
}

.admin-hero h1 em {
  color: var(--copper-light);
}

.admin-hero > div:first-child > p:last-child {
  max-width: 590px;
  margin: 0;
  color: rgba(250, 248, 242, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

.admin-hero-meta {
  display: grid;
  min-width: 180px;
  gap: 9px;
  padding-bottom: 8px;
  color: var(--copper-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.admin-status {
  min-height: 24px;
  margin: 0 0 24px;
  color: var(--copper-light);
  font-size: 11px;
}

.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-summary-card {
  display: grid;
  min-height: 174px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(250, 248, 242, 0.19);
  background: rgba(250, 248, 242, 0.045);
}

.admin-summary-card .eyebrow {
  color: var(--copper-light);
}

.admin-summary-card strong {
  font-family: var(--display);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.admin-summary-card small {
  color: rgba(250, 248, 242, 0.52);
  font-size: 10px;
  line-height: 1.4;
}

.admin-panel {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(250, 248, 242, 0.16);
  background: rgba(250, 248, 242, 0.035);
}

.admin-retention-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  background: rgba(169, 82, 52, 0.13);
}

.admin-retention-panel h2,
.admin-panel-heading h2 {
  margin: 13px 0 10px;
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.admin-retention-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(250, 248, 242, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.retention-chip,
.panel-count {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(250, 248, 242, 0.25);
  color: var(--copper-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
}

.admin-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.admin-panel-heading h2 {
  margin-bottom: 0;
}

.admin-table-wrap {
  overflow-x: auto;
}

.table-scroll {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  padding: 12px 12px;
  border-top: 1px solid rgba(250, 248, 242, 0.17);
  border-bottom: 1px solid rgba(250, 248, 242, 0.17);
  color: var(--copper-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table td {
  padding: 15px 12px;
  border-bottom: 1px solid rgba(250, 248, 242, 0.11);
  color: rgba(250, 248, 242, 0.72);
  font-size: 12px;
  line-height: 1.5;
  vertical-align: top;
}

.admin-table td strong {
  display: block;
  color: var(--bone);
  font-size: 12px;
}

.admin-table td small,
.admin-primary-cell small {
  display: block;
  margin-top: 4px;
  color: rgba(250, 248, 242, 0.46);
  font-size: 10px;
}

.admin-secondary-link {
  color: var(--copper-light);
  font-size: 10px;
  text-decoration: none;
}

.admin-secondary-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-message {
  max-width: 300px;
}

.admin-message summary {
  cursor: pointer;
  color: var(--bone);
  font-size: 11px;
}

.admin-message p {
  margin: 9px 0 0;
  color: rgba(250, 248, 242, 0.62);
  white-space: pre-wrap;
}

.admin-status-select {
  min-height: 36px;
  padding: 7px 9px;
  border: 1px solid rgba(250, 248, 242, 0.25);
  border-radius: 0;
  background: #20211e;
  color: var(--bone);
  font-size: 10px;
}

.retention-cell {
  color: var(--copper-light) !important;
  font-size: 10px !important;
}

.admin-project-layout,
.admin-feedback-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 28px;
  align-items: start;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-record {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 17px;
  border: 1px solid rgba(250, 248, 242, 0.15);
  background: rgba(250, 248, 242, 0.035);
}

.admin-record-kicker {
  color: var(--copper-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.admin-record h3 {
  margin: 9px 0 5px;
  color: var(--bone);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.admin-record p {
  max-width: 430px;
  margin: 0;
  color: rgba(250, 248, 242, 0.64);
  font-size: 12px;
  line-height: 1.5;
}

.admin-record small {
  display: block;
  margin-top: 8px;
  color: rgba(250, 248, 242, 0.4);
  font-size: 10px;
}

.admin-record-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 7px;
}

.admin-form,
.admin-upload-form {
  display: grid;
  gap: 15px;
  padding: 22px;
  border: 1px solid rgba(250, 248, 242, 0.15);
  background: rgba(250, 248, 242, 0.04);
}

.admin-form-heading {
  margin-bottom: 4px;
}

.admin-form label,
.admin-upload-form label {
  display: grid;
  gap: 7px;
  color: rgba(250, 248, 242, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-form label > span,
.admin-upload-form label > span {
  color: var(--copper-light);
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-upload-form input {
  width: 100%;
  min-height: 43px;
  padding: 9px 11px;
  border: 1px solid rgba(250, 248, 242, 0.23);
  border-radius: 0;
  background: rgba(250, 248, 242, 0.06);
  color: var(--bone);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.admin-form textarea {
  min-height: 95px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-upload-form input:focus {
  border-color: var(--copper-light);
  background: rgba(250, 248, 242, 0.11);
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.admin-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 9px !important;
}

.admin-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--copper);
}

.admin-subheading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(250, 248, 242, 0.14);
  color: var(--copper-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-media-editor {
  display: grid;
  gap: 10px;
}

.project-media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(250, 248, 242, 0.14);
}

.project-media-row .media-field {
  gap: 5px;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.project-media-row .media-field:nth-child(1),
.project-media-row .media-field:nth-child(2),
.project-media-row .media-field:nth-child(3),
.project-media-row button {
  grid-column: 1 / -1;
}

.project-media-row .media-field span {
  color: rgba(250, 248, 242, 0.46);
  font-size: 8px;
}

.project-media-row input {
  min-height: 36px;
  padding: 7px 9px;
  font-size: 11px;
}

.admin-empty {
  margin: 0;
  padding: 20px;
  border: 1px dashed rgba(250, 248, 242, 0.2);
  color: rgba(250, 248, 242, 0.48);
  font-size: 12px;
  line-height: 1.6;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.upload-result {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 17px;
  border: 1px solid rgba(169, 82, 52, 0.45);
  background: rgba(169, 82, 52, 0.1);
}

.upload-result code {
  color: var(--bone);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.admin-footer {
  padding: 22px 0 55px;
  background: #121311;
  color: rgba(250, 248, 242, 0.44);
  font-size: 10px;
}

.admin-footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(250, 248, 242, 0.15);
  padding-top: 18px;
}

.admin-footer p {
  margin: 0;
}

.admin-footer a {
  color: var(--copper-light);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.consent-banner {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  max-width: 960px;
  align-items: end;
  gap: 32px;
  margin-inline: auto;
  padding: 22px 24px;
  border: 1px solid rgba(250, 248, 242, 0.3);
  background: rgba(23, 24, 21, 0.97);
  box-shadow: 0 22px 60px rgba(23, 24, 21, 0.3);
  color: var(--bone);
}

.consent-banner h2 {
  margin: 9px 0 9px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.consent-banner p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 9px;
  color: rgba(250, 248, 242, 0.67);
  font-size: 11px;
  line-height: 1.55;
}

.consent-banner a {
  color: var(--copper-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.button-consent-reject {
  border-color: rgba(250, 248, 242, 0.35);
  color: var(--bone);
  cursor: pointer;
}

.button-consent-reject:hover,
.button-consent-reject:focus-visible {
  border-color: var(--copper-light);
  background: rgba(250, 248, 242, 0.09);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

@media (max-width: 820px) {
  .credential-rail > span {
    flex-basis: 50%;
    border-right: 0;
  }

  .credential-rail > span:nth-child(odd) {
    padding-left: 0;
  }

  .credential-rail > span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .credential-rail-dark > span:nth-child(-n + 2) {
    border-bottom-color: rgba(250, 248, 242, 0.2);
  }

  .home-project-grid,
  .archive-grid,
  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-project-card,
  .home-project-card:nth-child(1),
  .home-project-card:nth-child(2),
  .home-project-card:nth-child(3),
  .home-project-card:nth-child(4),
  .home-project-card:nth-child(5),
  .archive-card,
  .archive-card:nth-child(4n + 1),
  .archive-card:nth-child(4n + 2),
  .archive-card:nth-child(4n + 3),
  .archive-card:nth-child(4n + 4),
  .feedback-archive-card,
  .feedback-archive-card:nth-child(3n + 1),
  .feedback-archive-card:nth-child(3n + 2),
  .feedback-archive-card:nth-child(3n + 3) {
    grid-column: span 1;
    margin-top: 0;
  }

  .home-project-card:nth-child(1),
  .archive-card:nth-child(4n + 1),
  .feedback-archive-card:nth-child(3n + 1) {
    grid-column: 1 / -1;
  }

  .home-feedback-grid,
  .project-story-layout,
  .feedback-hero,
  .admin-project-layout,
  .admin-feedback-layout {
    grid-template-columns: 1fr;
  }

  .project-story-layout {
    gap: 48px;
  }

  .feedback-rating {
    justify-self: start;
  }

  .admin-hero {
    display: block;
  }

  .admin-hero-meta {
    margin-top: 32px;
    text-align: left;
  }

  .admin-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consent-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .consent-actions {
    display: flex;
    flex-direction: row;
    min-width: 0;
  }

  .consent-actions .button {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .section-actions,
  .project-back,
  .admin-footer .shell {
    align-items: stretch;
    flex-direction: column;
  }

  .credential-rail > span,
  .credential-rail > span:not(:first-child) {
    flex-basis: 100%;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credential-rail-dark > span {
    border-bottom-color: rgba(250, 248, 242, 0.2);
  }

  .credential-rail > span:last-child {
    border-bottom: 0;
  }

  .home-project-grid,
  .archive-grid,
  .feedback-grid,
  .project-media-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-project-card,
  .archive-card,
  .feedback-archive-card,
  .project-detail-media:first-child,
  .project-detail-media:not(:first-child) {
    grid-column: 1;
  }

  .project-story-layout,
  .project-story-header,
  .project-back {
    width: var(--shell);
  }

  .project-story h1,
  .archive-hero h1,
  .feedback-hero h1,
  .admin-hero h1 {
    font-size: clamp(63px, 19vw, 100px);
  }

  .archive-controls-heading,
  .admin-panel-heading,
  .admin-retention-panel {
    display: block;
  }

  .archive-controls-heading > p:last-child,
  .panel-count,
  .retention-chip {
    display: inline-flex;
    margin-top: 15px;
  }

  .feedback-rating strong {
    font-size: 75px;
  }

  .feedback-card blockquote {
    min-height: 280px;
    padding: 24px;
  }

  .admin-header-inner,
  .admin-header-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-header-inner {
    gap: 15px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .admin-summary-grid,
  .admin-form-grid,
  .project-media-row {
    grid-template-columns: 1fr;
  }

  .admin-summary-card {
    min-height: 145px;
    padding: 17px;
  }

  .admin-summary-card strong {
    font-size: 49px;
  }

  .admin-record {
    display: block;
  }

  .admin-record-actions {
    justify-content: start;
    margin-top: 15px;
  }

  .project-media-row .media-field:nth-child(1),
  .project-media-row .media-field:nth-child(2),
  .project-media-row .media-field:nth-child(3),
  .project-media-row button {
    grid-column: auto;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 18px;
  }

  .consent-banner h2 {
    font-size: 31px;
  }

  .consent-actions {
    display: grid;
  }
}
