@view-transition {
  navigation: auto;
}

:root {
  --primary: #b8ef67;
  --primary-deep: #8ecb41;
  --bg: #f1eee7;
  --paper: #f8f6f0;
  --ink: #191a18;
  --text: #191a18;
  --muted: #6f756e;
  --line: rgba(25, 26, 24, 0.16);
  --line-light: rgba(248, 246, 240, 0.2);
  --accent: #d66a48;
  --font: "Manrope", Arial, sans-serif;
  --font-display: "DM Serif Display", Georgia, serif;
  --shell: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.04;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img {
  display: block;
  max-width: 100%;
}

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

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

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

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

.site-shell {
  width: min(calc(100% - 80px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
  letter-spacing: -0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 32px 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 250ms var(--ease), background 250ms var(--ease), border 250ms var(--ease), transform 250ms var(--ease);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-3px);
}

.nav-cta span,
.button span {
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.nav-cta:hover,
.button-dark:hover {
  color: var(--paper);
  background: var(--ink);
}

.button-primary {
  border-color: var(--primary);
  background: var(--primary);
}

.button-primary:hover {
  background: var(--paper);
}

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

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: flex;
  width: 22px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle-icon i {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 250ms var(--ease);
}

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

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

.hero-section {
  min-height: 720px;
  padding: 92px 0 100px;
  color: var(--paper);
  background: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}

.eyebrow,
.section-kicker,
.card-number,
.project-meta,
.footer-bottom,
.form-note {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 38px;
  color: var(--primary);
}

.eyebrow span {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  font-size: clamp(60px, 8vw, 122px);
}

h2 {
  font-size: clamp(48px, 6vw, 86px);
}

h1 em,
h2 em {
  color: var(--primary);
  font-style: italic;
}

.hero-intro {
  max-width: 470px;
  margin: 38px 0 0;
  color: rgba(248, 246, 240, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

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

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 250ms var(--ease), color 250ms var(--ease);
}

.text-link:hover {
  gap: 20px;
  color: var(--primary);
}

.text-link-dark {
  color: var(--ink);
}

.hero-visual-wrap {
  position: relative;
  padding: 30px 0 0 35px;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  margin: 0;
  overflow: hidden;
  background: #7a8176;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(25, 26, 24, 0.06), rgba(25, 26, 24, 0.44));
}

.hero-visual img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  filter: saturate(0.72);
}

.hero-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  gap: 15px;
  color: var(--paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-visual figcaption span {
  color: var(--primary);
}

.hero-stamp {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  width: 104px;
  height: 104px;
  flex-direction: column;
  justify-content: center;
  padding-left: 18px;
  color: var(--ink);
  background: var(--primary);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 0.9;
  transform: rotate(-8deg);
}

.ticker-section {
  overflow: hidden;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--primary);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  align-items: center;
  padding: 18px 0;
  animation: ticker 30s linear infinite;
  font-family: var(--font-display);
  font-size: 23px;
  font-style: italic;
}

.ticker-track b {
  font-family: var(--font);
  font-size: 13px;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-30%); }
}

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

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

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

.manifesto-section {
  padding: 150px 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 2.2fr);
  gap: 70px;
}

.section-kicker {
  margin: 7px 0 0;
  color: var(--accent);
}

.manifesto-copy h2 {
  max-width: 870px;
}

.manifesto-copy h2 em,
.process-intro h2 em,
.deliverables-heading h2 em,
.principles-grid h2 em,
.contact-aside h2 em,
.faq-grid h2 em,
.cta-panel h2 em,
.page-hero h1 em {
  color: var(--accent);
}

.manifesto-copy > p {
  max-width: 575px;
  margin: 36px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.services-section {
  padding: 130px 0 140px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 72px;
}

.section-heading-light .section-kicker {
  color: var(--primary);
}

.section-heading h2 {
  width: min(75%, 800px);
  margin: 0;
}

.section-heading h2 em {
  color: var(--primary);
}

.card-grid {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px 30px 0;
  border-right: 1px solid var(--line-light);
}

.service-card + .service-card {
  padding-left: 30px;
}

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

.card-number {
  display: block;
  color: var(--primary);
}

.service-card h3,
.process-item h3,
.deliverable-card h3,
.principle-row h3 {
  margin: 24px 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.service-card p,
.process-item p,
.deliverable-card p,
.principle-row p {
  max-width: 320px;
  margin: 0;
  color: rgba(248, 246, 240, 0.64);
  font-size: 14px;
  line-height: 1.8;
}

.card-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  margin-top: 25px;
  place-items: center;
  border: 1px solid rgba(248, 246, 240, 0.33);
  border-radius: 50%;
  color: var(--primary);
  font-size: 19px;
  transition: color 250ms var(--ease), background 250ms var(--ease), transform 250ms var(--ease);
}

.card-arrow:hover {
  color: var(--ink);
  background: var(--primary);
  transform: rotate(45deg);
}

.process-section {
  padding: 150px 0;
  background-image: linear-gradient(180deg, rgba(248, 246, 240, 0.93), rgba(248, 246, 240, 0.93)), url('/images/remote/photo-1742198810079-49bb51d1c5af.jpg');
  background-size: cover;
  background-position: center;
}

.process-section .site-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(65px, 11vw, 170px);
}

.process-intro > p:last-child {
  max-width: 350px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 28px 0 34px;
  border-bottom: 1px solid var(--line);
}

.process-item .card-number {
  color: var(--accent);
}

.process-item p {
  grid-column: 2;
}

.process-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.process-item p,
.deliverable-card p,
.principle-row p {
  color: var(--muted);
}

.cta-section {
  padding: 100px 0;
  color: var(--ink);
  background: var(--primary);
}

.cta-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.cta-panel .section-kicker {
  margin-bottom: 30px;
  color: var(--ink);
}

.cta-panel h2 {
  max-width: 780px;
}

.cta-panel h2 em {
  color: var(--ink);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 180px;
}

.brand-footer {
  color: var(--paper);
}

.brand-footer .brand-mark {
  border-color: var(--paper);
}

.footer-line {
  max-width: 180px;
  margin: 0 auto;
  color: rgba(248, 246, 240, 0.56);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.05;
}

.footer-email {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.footer-email span {
  margin-left: 8px;
  color: var(--paper);
  font-size: 16px;
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(248, 246, 240, 0.42);
  border-top: 1px solid var(--line-light);
  letter-spacing: 0.08em;
}

.footer-bottom a:hover {
  color: var(--primary);
}

.page-hero {
  padding: 140px 0 150px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 2.15fr);
  gap: 70px;
  align-items: start;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(65px, 9vw, 135px);
}

.page-hero-intro {
  max-width: 520px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.projects-section {
  padding: 118px 0 150px;
}

.projects-heading {
  margin-bottom: 75px;
}

.heading-note {
  width: min(30%, 300px);
  margin: 0;
  color: rgba(248, 246, 240, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: clamp(30px, 7vw, 100px);
  row-gap: 125px;
}

.project-card:nth-child(3n+1) {
  grid-column: 1 / -1;
}

.project-card:nth-child(3n) {
  margin-top: 70px;
}

.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #4c544e;
}

.project-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(140deg, rgba(25, 26, 24, 0), rgba(25, 26, 24, 0.55));
  opacity: 0.65;
  transition: opacity 400ms var(--ease);
}

.project-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.project-card:nth-child(3n+2) .project-image img {
  height: 620px;
}

.project-image:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}

.project-image:hover::after {
  opacity: 0.28;
}

.project-image-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 22px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 16px;
  color: var(--primary);
}

.project-card h3 {
  max-width: 600px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(29px, 3vw, 47px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.project-card p {
  max-width: 500px;
  margin: 18px 0 0;
  color: rgba(248, 246, 240, 0.63);
  font-size: 14px;
  line-height: 1.75;
}

.deliverables-section {
  padding: 150px 0;
}

.deliverables-heading {
  display: grid;
  grid-template-columns: 1fr 2.15fr;
  gap: 70px;
  margin-bottom: 80px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-card {
  min-height: 260px;
  padding: 28px 25px 28px 0;
  border-right: 1px solid var(--line);
}

.deliverable-card + .deliverable-card {
  padding-left: 25px;
}

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

.deliverable-card .card-number {
  color: var(--accent);
}

.deliverable-card h3 {
  margin-top: 44px;
  font-size: 16px;
}

.deliverable-card p {
  font-size: 13px;
}

.principles-section {
  padding: 150px 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(70px, 11vw, 170px);
}

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

.principle-row {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 28px 0 31px;
  border-bottom: 1px solid var(--line);
}

.principle-row > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.principle-row h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 400;
}

.contact-hero {
  padding: 128px 0 145px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.contact-hero h1 {
  font-size: clamp(68px, 9vw, 140px);
}

.contact-hero-note {
  max-width: 300px;
  padding-bottom: 10px;
}

.contact-hero-note p {
  margin: 0;
  color: rgba(248, 246, 240, 0.65);
  font-size: 15px;
  line-height: 1.8;
}

.contact-mark {
  display: block;
  margin-top: 30px;
  color: var(--primary);
  font-size: 46px;
  line-height: 1;
}

.contact-form-section {
  padding: 145px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 12vw, 180px);
}

.contact-aside > p:not(.section-kicker) {
  max-width: 320px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.aside-rule {
  width: 100%;
  height: 1px;
  margin: 50px 0 24px;
  background: var(--line);
}

.aside-small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.aside-small a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}

.contact-form {
  border-top: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 22px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.form-row label {
  font-size: 12px;
  font-weight: 800;
}

.form-row label span {
  color: var(--accent);
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border 200ms ease;
}

input::placeholder,
textarea::placeholder,
select:invalid {
  color: #969a91;
}

input:focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--accent);
}

select {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 30px;
}

.form-note {
  max-width: 200px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-status {
  margin: 22px 0 0;
  padding: 15px 18px;
  color: var(--ink);
  border-left: 3px solid var(--primary-deep);
  background: rgba(184, 239, 103, 0.35);
  font-size: 13px;
}

.faq-section {
  padding: 140px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 12vw, 180px);
}

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

.faq-item {
  padding: 25px 0 27px;
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.1;
}

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

.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--accent);
  content: "+";
  font-family: var(--font);
  font-size: 22px;
  font-weight: 400;
  transition: transform 250ms var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 580px;
  margin: 18px 40px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

html.js [data-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms + 120ms);
}

html.js [data-reveal].is-visible [data-stagger] > * {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html.js [data-reveal],
  html.js [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .site-nav {
    gap: 20px;
  }

  .hero-section {
    min-height: auto;
    padding: 72px 0 85px;
  }

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

  .hero-visual-wrap {
    width: min(100%, 620px);
    margin-left: auto;
  }

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

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .deliverable-card:nth-child(2) {
    border-right: 0;
  }

  .deliverable-card:nth-child(3),
  .deliverable-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .deliverable-card:nth-child(3) {
    padding-left: 0;
  }

  .deliverables-grid .deliverable-card:nth-child(4) {
    border-right: 0;
  }

  .project-grid {
    column-gap: 30px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-shell {
    width: min(calc(100% - 36px), var(--shell));
  }

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 18px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(25, 26, 24, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero-section {
    padding: 65px 0 65px;
  }

  .hero-grid,
  .manifesto-grid,
  .process-section .site-shell,
  .page-hero-grid,
  .deliverables-heading,
  .principles-grid,
  .contact-hero-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  h1 {
    font-size: clamp(58px, 16vw, 92px);
  }

  h2 {
    font-size: clamp(45px, 13vw, 70px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 16px 22px;
    margin-top: 34px;
  }

  .hero-visual-wrap {
    padding: 27px 0 0 18px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 380px;
    height: 380px;
  }

  .hero-stamp {
    width: 88px;
    height: 88px;
    font-size: 14px;
  }

  .ticker-track {
    gap: 20px;
    font-size: 19px;
  }

  .manifesto-section,
  .services-section,
  .process-section,
  .projects-section,
  .deliverables-section,
  .principles-section,
  .contact-form-section,
  .faq-section {
    padding: 85px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 48px;
  }

  .section-heading h2 {
    width: 100%;
    margin-top: 28px;
  }

  .services-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card + .service-card,
  .service-card:nth-child(3),
  .deliverable-card,
  .deliverable-card + .deliverable-card,
  .deliverable-card:nth-child(3),
  .deliverables-grid .deliverable-card:nth-child(4) {
    min-height: 0;
    padding: 25px 0 30px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .service-card:last-child,
  .deliverable-card:last-child {
    border-bottom: 0;
  }

  .deliverable-card,
  .deliverable-card + .deliverable-card {
    border-bottom-color: var(--line);
  }

  .deliverable-card h3 {
    margin-top: 24px;
  }

  .process-intro > p:last-child {
    margin-top: 25px;
  }

  .process-item {
    grid-template-columns: 45px 1fr;
    gap: 12px;
  }

  .process-item h3 {
    font-size: 28px;
  }

  .cta-section {
    padding: 70px 0;
  }

  .cta-panel {
    display: block;
  }

  .cta-panel .button {
    margin-top: 34px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0;
  }

  .footer-line,
  .footer-email {
    margin: 0;
    justify-self: start;
  }

  .footer-bottom {
    flex-wrap: wrap;
    padding: 22px 0;
    font-size: 9px;
  }

  .page-hero,
  .contact-hero {
    padding: 85px 0 90px;
  }

  .page-hero-intro {
    margin-top: 30px;
    font-size: 15px;
  }

  .projects-heading {
    margin-bottom: 50px;
  }

  .heading-note {
    width: 100%;
    margin-top: 28px;
  }

  .project-grid {
    display: block;
  }

  .project-card,
  .project-card:nth-child(3n) {
    margin: 0 0 75px;
  }

  .project-card:last-child {
    margin-bottom: 0;
  }

  .project-image img,
  .project-card:nth-child(3n+2) .project-image img {
    height: 360px;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 18px 0 13px;
  }

  .project-card h3 {
    font-size: 34px;
  }

  .contact-hero-grid {
    gap: 55px;
  }

  .contact-hero h1 {
    font-size: clamp(60px, 16vw, 92px);
  }

  .contact-grid,
  .faq-grid {
    gap: 60px;
  }

  .form-row {
    display: block;
    padding: 18px 0;
  }

  .form-row label {
    display: block;
    margin-bottom: 8px;
  }

  .form-footer {
    display: block;
  }

  .form-footer .button {
    width: 100%;
    margin-top: 24px;
  }

  .faq-item summary {
    font-size: 25px;
  }
}

@media (max-width: 390px) {
  .site-shell {
    width: calc(100% - 28px);
  }

  .brand-name {
    font-size: 9px;
  }

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

  h1,
  .contact-hero h1 {
    font-size: 57px;
  }

  .hero-visual-wrap {
    padding-left: 11px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
    height: 330px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

/* --- Added for the CMS: wrappers around editable text, and the generated form fields --- */
.eyebrow .eyebrow-text { display: inline; width: auto; height: auto; background: none; }
.hero-visual figcaption .caption-text { color: inherit; }
.button .button-label, .text-link .button-label { font-size: inherit; font-weight: inherit; line-height: inherit; }
.footer-email .footer-email-text { margin-left: 0; color: inherit; font-size: inherit; }
.ticker-item { display: flex; align-items: center; gap: inherit; }

.contact-form .formField {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 22px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.contact-form .formField__label { font-size: 12px; font-weight: 800; }
.contact-form .formField__req { margin-left: 4px; color: var(--accent); }

@media (max-width: 680px) {
  .contact-form .formField { display: block; padding: 18px 0; }
  .contact-form .formField__label { display: block; margin-bottom: 8px; }
}
