:root {
  --ink: #090909;
  --ink-soft: #151515;
  --paper: #f1f0ea;
  --paper-pure: #faf9f5;
  --acid: #6d832f;
  --acid-deep: #4f6123;
  --muted: #8f9089;
  --line-light: rgba(255, 255, 255, 0.22);
  --line-dark: rgba(9, 9, 9, 0.18);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  height: 96px;
  padding: 0 3vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid var(--line-light);
}

.site-header-solid {
  position: relative;
  background: var(--ink);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  justify-self: start;
}

.brand-logo {
  width: 250px;
  display: block;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  font-size: 0.76rem;
}

.main-nav a,
.header-cta {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 1px;
  background: var(--acid);
  transition: right 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.main-nav a[aria-current="page"] {
  color: var(--acid);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.78rem 1rem;
  background: var(--paper-pure);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--acid);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.72) contrast(1.06) brightness(0.78);
  animation: hero-scale 1.4s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.22) 66%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: clamp(8.5rem, 15vh, 11rem) 5vw 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow {
  margin: 0 0 2.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.77;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 em,
.manifesto h2 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: none;
}

.hero-bottom {
  width: min(620px, 55vw);
  align-self: flex-end;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.hero-bottom p {
  margin: 0;
  font-size: clamp(0.9rem, 1.15vw, 1.1rem);
  line-height: 1.45;
}

.button {
  min-height: 54px;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 0;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  transition:
    transform 200ms ease,
    background 200ms ease,
    color 200ms ease;
}

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

.button-primary {
  background: var(--acid);
  color: var(--ink);
  white-space: nowrap;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #fff;
}

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

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

.hero-index {
  position: absolute;
  right: 3vw;
  top: 48%;
  z-index: 3;
  display: flex;
  gap: 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.trust-strip {
  min-height: 74px;
  padding: 0 3vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: var(--acid);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.trust-strip p {
  margin: 0;
  padding: 0 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-right: 1px solid rgba(0, 0, 0, 0.35);
}

.trust-strip p:last-child {
  border-right: 0;
}

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

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-acid {
  background: var(--acid);
  color: var(--ink);
}

.contact-page {
  background: var(--paper);
}

.gallery-page {
  background: var(--paper);
}

.contact-page-hero {
  min-height: 570px;
  padding: 7rem 5vw 6rem;
  display: grid;
  grid-template-columns: 2.25fr 1fr;
  gap: 4rem;
  align-items: end;
  background: var(--ink);
  color: #fff;
}

.contact-page-hero h1 {
  margin: 2rem 0 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.contact-page-hero h1 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: none;
}

.contact-page-hero > p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.65;
}

.gallery-section {
  padding: clamp(1rem, 2vw, 2rem) 3vw 4rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(360px, 36vw, 520px);
  gap: clamp(0.65rem, 1.2vw, 1.25rem);
}

.gallery-tile {
  grid-column: span 4;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--ink-soft);
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 620ms ease,
    transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--paper);
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 850ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.gallery-tile:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-tile:nth-child(2),
.gallery-tile:nth-child(3) {
  grid-column: span 5;
}

.gallery-tile:nth-child(4) {
  grid-column: span 5;
}

.gallery-tile:nth-child(5) {
  grid-column: span 7;
}

.gallery-tile:nth-child(6),
.gallery-tile:nth-child(12),
.gallery-tile:nth-child(13),
.gallery-tile:nth-child(14) {
  grid-column: span 4;
}

.gallery-tile:nth-child(7) {
  grid-column: span 8;
}

.gallery-tile:nth-child(8),
.gallery-tile:nth-child(11) {
  grid-column: span 5;
}

.gallery-tile:nth-child(9),
.gallery-tile:nth-child(10) {
  grid-column: span 7;
}

.gallery-tile:nth-child(6n + 15),
.gallery-tile:nth-child(6n + 20) {
  grid-column: span 5;
}

.gallery-tile:nth-child(6n + 16),
.gallery-tile:nth-child(6n + 19) {
  grid-column: span 7;
}

.gallery-tile:nth-child(6n + 17) {
  grid-column: span 4;
}

.gallery-tile:nth-child(6n + 18) {
  grid-column: span 8;
}

.gallery-tile:last-child {
  grid-column: 1 / -1;
}

.gallery-tile:nth-child(3n + 2) {
  transition-delay: 90ms;
}

.gallery-tile:nth-child(3n) {
  transition-delay: 170ms;
}

.gallery-tile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile.is-visible::after {
  transform: scaleY(0);
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.04);
  transform: scale(1.08);
  transition:
    transform 1100ms cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 500ms ease;
}

.gallery-tile.is-visible img {
  transform: scale(1);
}

@media (hover: hover) {
  .gallery-tile:hover img {
    filter: saturate(0.92) contrast(1.02);
    transform: scale(1.035);
  }
}

.manifesto {
  min-height: 720px;
  padding: 8rem 5vw;
  display: grid;
  grid-template-columns: 1fr 2.25fr;
  gap: 4rem;
  align-items: center;
}

.section-kicker {
  align-self: start;
  display: flex;
  gap: 2rem;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-kicker-dark {
  color: rgba(255, 255, 255, 0.64);
}

.manifesto-copy h2,
.section-heading h2,
.contact-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.manifesto-copy h2 {
  max-width: 1050px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.98;
}

.manifesto-copy p {
  width: min(620px, 75%);
  margin: 3rem 0 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
}

.services {
  padding: 8rem 3vw 4rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.25fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.section-heading h2 {
  font-size: clamp(3.2rem, 6.8vw, 7.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.service-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink-soft);
}

.service-card img,
.service-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  filter: grayscale(1) brightness(0.55) contrast(1.08);
  transition:
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 500ms ease;
}

.service-overlay {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.86),
    rgba(0, 0, 0, 0.03) 62%
  );
}

.service-card:hover img {
  transform: scale(1.035);
  filter: grayscale(0.12) brightness(0.65) contrast(1.05);
}

.service-topline,
.service-copy {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 2rem;
}

.service-topline {
  top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-copy {
  bottom: 2.3rem;
}

.service-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.service-copy p {
  max-width: 480px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.method {
  padding: 8rem 5vw;
  display: grid;
  grid-template-columns: 1fr 2.25fr;
  gap: 4rem;
}

.method-heading {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 6rem;
}

.method-heading h2,
.projects-heading h2,
.about-copy h2,
.proof-intro h2,
.faq-content > h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.method-heading h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.94;
}

.method-heading p,
.projects-heading > p {
  margin: 0;
  line-height: 1.6;
}

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

.method-list li {
  padding: 1.8rem 0;
  display: grid;
  grid-template-columns: 70px 1fr minmax(220px, 0.85fr);
  gap: 2rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line-dark);
}

.method-list li > span {
  color: var(--acid-deep);
  font-size: 0.7rem;
  font-weight: 700;
}

.method-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.method-list p {
  margin: 0;
  color: #5f605b;
  line-height: 1.55;
}

.projects {
  padding: 8rem 3vw 4rem;
}

.projects-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 0.65fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.projects-heading h2 {
  font-size: clamp(3.5rem, 6.5vw, 7.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.projects-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(360px, 45vw));
  gap: 1rem;
}

.project-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.project-card-tall {
  grid-row: 1 / span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.project-card figcaption span {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.project-card figcaption small {
  color: var(--acid);
  font-size: 0.6rem;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.about {
  position: relative;
  min-height: 720px;
  padding: 8rem 5vw;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
  overflow: hidden;
}

.about-mark {
  align-self: center;
  width: min(100%, 560px);
}

.about-mark svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  font-family: var(--display);
  font-weight: 700;
}

.about-mark__ac {
  fill: var(--acid);
  font-size: 180px;
  letter-spacing: -14px;
}

.about-mark__evolution {
  fill: #000;
  font-size: 52px;
  letter-spacing: 0;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin-top: 5rem;
  font-size: clamp(3.2rem, 5.3vw, 6rem);
  line-height: 0.94;
}

.about-copy > p {
  max-width: 620px;
  margin: 2.5rem 0 4rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.about-facts > div {
  padding: 1.5rem 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-facts strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  text-transform: uppercase;
}

.about-facts span {
  color: #666761;
  font-size: 0.72rem;
  line-height: 1.4;
}

.reviews {
  padding: 8rem 5vw;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 2rem 8vw;
  align-items: end;
}

.reviews-heading .section-kicker {
  grid-column: 1 / -1;
}

.reviews-heading h2 {
  margin-top: 5rem;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.92;
}

.reviews-score {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

.reviews-score > strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(6rem, 11vw, 11rem);
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: -0.08em;
}

.reviews-score p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.review-stars {
  color: var(--acid);
  letter-spacing: 0.14em;
}

.reviews-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.review-card {
  min-height: 390px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
}

.review-card:last-child {
  border-right: 0;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-card-top > span:last-child {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-card blockquote,
.rating-only {
  max-width: 900px;
  margin: 3.5rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 3rem);
  line-height: 1.2;
}

.review-card footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.review-card footer strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
}

.review-card footer span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.reviews-link {
  width: fit-content;
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-link:hover,
.reviews-link:focus-visible {
  color: #fff;
}

.faq {
  padding: 8rem 5vw;
  display: grid;
  grid-template-columns: 1fr 2.25fr;
  gap: 4rem;
}

.faq-content > h2 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: 0.93;
}

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

.faq-list details {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--acid-deep);
  font-size: 1.6rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 800px;
  margin: 1.5rem 0 0;
  color: #5f605b;
  line-height: 1.6;
}

.contact-teaser {
  min-height: 260px;
  padding: 3rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-teaser p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-teaser a {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.contact-shell {
  padding: 8rem 5vw;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
}

.contact-intro h2 {
  margin-top: 5rem;
  font-size: clamp(3rem, 5.6vw, 6.4rem);
  line-height: 0.95;
}

.contact-intro > p {
  max-width: 560px;
  margin: 2rem 0;
  line-height: 1.65;
}

.direct-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1.25rem;
}

.direct-contact a {
  border-bottom: 1px solid var(--line-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--paper-pure);
  border: 1px solid var(--line-dark);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  padding: 0.8rem 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--acid-deep);
  box-shadow: 0 2px 0 var(--acid-deep);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: -0.5rem 0 0;
  color: #676861;
  font-size: 0.72rem;
  text-align: center;
}

.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-status {
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-dark);
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-status.is-success {
  border-color: var(--acid-deep);
  background: rgba(109, 131, 47, 0.12);
}

.form-status.is-error {
  border-color: #9b2c2c;
  background: rgba(155, 44, 44, 0.1);
}

.site-footer {
  padding: 7rem 3vw 2rem;
  background: var(--ink);
  color: #fff;
}

.footer-logo {
  width: min(75%, 750px);
  display: block;
  background: #000;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-grid {
  margin-top: 6rem;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line-light);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.copyright,
.made-by {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
}

.made-by {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
}

.made-by span {
  color: #ef2323;
}

.made-by a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.made-by a:hover,
.made-by a:focus-visible {
  color: var(--acid);
  text-decoration-color: currentColor;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

@keyframes hero-scale {
  from {
    transform: scale(1.04);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 78px;
    padding: 0 1.25rem;
  }

  .brand-logo {
    width: 205px;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 45;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: #fff;
  }

  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 1px;
    background: currentColor;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    padding: 8rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--ink);
    transform: translateY(-105%);
    transition: transform 320ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    font-family: var(--display);
    font-size: 2.5rem;
    text-transform: uppercase;
  }

  .hero-content {
    padding: 8rem 1.25rem 2rem;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 17vw, 7.5rem);
    line-height: 0.81;
  }

  .hero-longword {
    font-size: 0.78em;
    letter-spacing: -0.085em;
  }

  .hero-bottom {
    width: min(100%, 620px);
    grid-template-columns: 1fr;
    align-self: start;
    gap: 1.25rem;
  }

  .hero-bottom .button {
    width: fit-content;
  }

  .hero-index {
    display: none;
  }

  .manifesto,
  .section-heading,
  .method,
  .projects-heading,
  .about,
  .proof,
  .faq,
  .contact-shell,
  .contact-page-hero {
    grid-template-columns: 1fr;
  }

  .contact-page-hero {
    min-height: 520px;
    padding: 6rem 1.5rem 5rem;
    gap: 2.5rem;
  }

  .manifesto {
    min-height: auto;
    padding: 6rem 1.5rem;
  }

  .manifesto-copy p {
    width: min(100%, 620px);
  }

  .services {
    padding: 6rem 1.25rem 1.25rem;
  }

  .method,
  .about,
  .proof,
  .faq {
    padding: 6rem 1.5rem;
  }

  .method-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }

  .projects {
    padding: 6rem 1.25rem 1.25rem;
  }

  .projects-heading {
    gap: 2rem;
  }

  .about {
    min-height: auto;
  }

  .about-mark {
    font-size: 36vw;
  }

  .about-copy h2,
  .reviews-heading h2 {
    margin-top: 2.5rem;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 500px;
  }

  .contact-shell {
    padding: 6rem 1.5rem;
    gap: 4rem;
  }

  .gallery-section {
    padding: 1rem 1.5rem 3rem;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(360px, 68vw, 520px);
  }

  .gallery-tile:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-tile:nth-child(n + 2) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-tile:last-child {
    grid-column: 1 / -1;
  }

  .contact-intro h2 {
    margin-top: 2.5rem;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 64px;
  }

  .trust-strip {
    min-height: 0;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip p {
    min-height: 58px;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .method-list li {
    grid-template-columns: 42px 1fr;
    gap: 1rem;
  }

  .method-list li p {
    grid-column: 2;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(440px, 120vw));
  }

  .project-card-tall {
    grid-row: auto;
  }

  .project-card figcaption {
    padding: 1.25rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .project-card figcaption small {
    text-align: left;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .review-card:last-child {
    border-bottom: 0;
  }

  .reviews-score {
    align-items: center;
  }

  .reviews-score > strong {
    font-size: 6rem;
  }

  .service-card {
    min-height: 460px;
  }

  .service-copy {
    left: 1.25rem;
    right: 1.25rem;
  }

  .service-copy h3 {
    font-size: clamp(2rem, 8.5vw, 2.4rem);
    letter-spacing: -0.075em;
  }

  .contact-teaser {
    min-height: 220px;
    padding: 2rem 1.25rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }

  .contact-teaser a {
    gap: 0.75rem;
  }

  .contact-page-hero {
    min-height: 470px;
    padding: 5rem 1.25rem 4rem;
  }

  .contact-page-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .gallery-section {
    padding: 0.75rem 1.25rem 2.5rem;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.75rem;
  }

  .gallery-tile,
  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(n + 2) {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 2 / 3;
    transform: translateY(16px);
    transition:
      opacity 420ms ease,
      transform 450ms cubic-bezier(0.2, 0.72, 0.2, 1);
    transition-delay: 0ms;
  }

  .gallery-tile::after {
    display: none;
  }

  .gallery-tile.is-visible {
    transform: translateY(0);
  }

  .gallery-tile img {
    transform: scale(1.02);
    transition: transform 600ms ease;
  }

  .site-footer {
    padding: 5rem 1.25rem 1.5rem;
  }

  .footer-grid {
    margin-top: 4rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-contact-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    height: 64px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }

  .mobile-contact-bar a:last-child {
    background: var(--acid);
    color: var(--ink);
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .gallery-tile {
    opacity: 1;
  }

  .gallery-tile::after {
    display: none;
  }
}
