:root {
  --paper: #f4f2ee;
  --paper-strong: #f8f6f1;
  --ink: #232421;
  --ink-soft: #3c3f3a;
  --ink-muted: rgba(35, 36, 33, 0.72);
  --line: rgba(35, 36, 33, 0.18);
  --line-strong: rgba(35, 36, 33, 0.42);
  --light-line: rgba(255, 255, 255, 0.14);
  --accent: #ffb273;
  --accent-deep: #ea944f;
  --shadow: 0 28px 80px rgba(10, 10, 10, 0.12);
  --radius: 28px;
  --script-font: "Freestyle Script", "Brush Script MT", cursive;
  --content-width: min(1320px, calc(100vw - 4rem));
  --section-pad: clamp(4.5rem, 7vw, 8rem);
  --header-height: 4.75rem;
  --strip-height: clamp(4.4rem, 6vw, 5.9rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --noise: url("assets/noise.png");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    linear-gradient(rgba(244, 242, 238, 0.92), rgba(244, 242, 238, 0.92)),
    var(--noise),
    var(--paper);
  background-size: auto, 300px 300px, auto;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main,
section,
footer {
  width: 100%;
}

section[id] {
  scroll-margin-top: 5.6rem;
}

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

.section {
  padding: var(--section-pad) 0;
}

.section-light {
  position: relative;
}

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

.section-full {
  position: relative;
  width: 100%;
  min-height: min(58rem, 88vh);
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-muted);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.68);
}

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 50;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ffd2ab);
  box-shadow: 0 0 20px rgba(255, 178, 115, 0.65);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(244, 242, 238, 0.82);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 242, 238, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 40px rgba(10, 10, 10, 0.06);
}

.header-shell {
  width: min(1480px, calc(100vw - 2rem));
}

.main-nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-height);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav-links-left {
  justify-content: flex-start;
}

.nav-links-right {
  justify-content: flex-end;
}

.nav-links a,
.footer-nav a {
  position: relative;
}

.nav-links a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand-mark {
  justify-self: center;
}

.brand-mark img {
  width: clamp(168px, 18vw, 298px);
  height: auto;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  width: min(18rem, calc(100vw - 2rem));
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(248, 246, 241, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  padding: clamp(2.25rem, 4.2vw, 4rem) 0 clamp(1.8rem, 3.4vw, 3rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(20rem, 30rem);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  min-height: calc(100svh - var(--header-height) - var(--strip-height) - clamp(4rem, 7vw, 6rem));
}

.hero-copy {
  max-width: min(68vw, 64rem);
}

.hero-copy h1,
.contact-head h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(5.4rem, 11.2vw + 2.1vh, 13.2rem);
  line-height: 0.78;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-wrap: normal;
}

.hero-copy h1 {
  transform: scale(var(--hero-scale, 1));
  transform-origin: left center;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy h1 span:last-child {
  margin-top: -0.05em;
}

.hero-aside {
  display: grid;
  gap: clamp(1rem, 1vw, 1.4rem);
  max-width: min(31rem, 32vw);
  padding-bottom: clamp(0.75rem, 1vw, 1.25rem);
}

.hero-aside p {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1.02rem, 0.28vw + 0.96rem, 1.28rem);
  line-height: 1.58;
  font-weight: 700;
  text-wrap: pretty;
}

.hero-lead {
  font-size: clamp(1.08rem, 0.4vw + 1rem, 1.38rem);
  line-height: 1.5;
}

.hero-lead span {
  color: var(--accent-deep);
}

.hero-detail {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: clamp(0.98rem, 0.2vw + 0.94rem, 1.15rem);
  line-height: 1.7;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: translateZ(0);
}

.inline-link img {
  width: 1rem;
  transition: transform 220ms var(--ease-out);
}

.inline-link:hover img,
.inline-link:focus-visible img {
  transform: translate(0.2rem, -0.2rem);
}

.inline-link-light {
  color: #fff;
}

.clients-strip {
  overflow: hidden;
  min-height: var(--strip-height);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #1c1c1a;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  min-height: var(--strip-height);
  padding: 0 2.5rem;
}

.clients-row img {
  width: auto;
  height: clamp(1.55rem, 2.1vw, 2.2rem);
  object-fit: contain;
  opacity: 0.96;
  filter: grayscale(1) brightness(1.3);
}

.experience {
  overflow: clip;
}

.experience-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 48rem;
  padding: 4rem 0 3rem;
}

.experience-copy {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  text-align: center;
}

.experience-copy h2 {
  margin: 0 auto 1.25rem;
  max-width: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.7rem, 3.45vw, 3.55rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.testimonials-head h2,
.impact-head h2 {
  margin: 0 0 1.4rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.experience-copy p {
  margin: 1rem auto 0;
  max-width: 49ch;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--ink-soft);
  font-weight: 600;
}

.script-band {
  position: relative;
  z-index: 0;
  display: block;
  width: fit-content;
  margin: 0 auto -0.02em;
  padding: 0 0.04em 0.02em;
  font-family: var(--script-font);
  font-size: 1.62em;
  line-height: 0.68;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
}

.script-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.36em;
  right: -0.34em;
  bottom: 0.16em;
  height: 0.42em;
  background: #ffb273;
}

.experience-title-main {
  display: block;
}

.experience-title-line {
  display: block;
}

.floating-card {
  position: absolute;
  z-index: 1;
  width: min(26vw, 20rem);
  transform-style: preserve-3d;
  will-change: transform;
}

.floating-card-left {
  left: -1rem;
  bottom: 1rem;
  rotate: -10deg;
}

.floating-card-right {
  top: -0.5rem;
  right: 0.5rem;
  width: min(19vw, 15rem);
  rotate: 10deg;
}

.media-shell {
  position: relative;
  overflow: hidden;
}

.media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 25%,
      rgba(255, 255, 255, 0.36) 48%,
      rgba(255, 255, 255, 0) 72%
    );
  transform: translateX(-120%);
  animation: shimmer 1.8s infinite;
  transition: opacity 220ms ease;
}

.media-shell.is-loaded::after {
  opacity: 0;
}

.lazy-media {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(1.03);
  filter: saturate(0.92);
  transition: opacity 380ms ease, transform 900ms var(--ease-out), filter 380ms ease;
}

.lazy-media.is-loaded {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(21rem, 1fr) minmax(21rem, 1fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  height: min(100svh, 52rem);
  max-height: 52rem;
  overflow: clip;
}

.manifesto-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(3.4rem, 4.8vw, 4.8rem) clamp(2.2rem, 4.7vw, 3.8rem) clamp(2.6rem, 4.2vw, 3.2rem) clamp(2.3rem, 4vw, 3rem);
  height: 100%;
  min-height: 0;
  background: #242522;
}

.manifesto-copy h2 {
  margin: 0 0 0.3rem;
  display: flex;
  flex-direction: column;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(4rem, 6.15vw, 6.9rem);
  line-height: 0.815;
  letter-spacing: -0.078em;
  font-weight: 800;
  text-transform: uppercase;
}

.manifesto-line {
  display: block;
}

.manifesto-script,
.contact-intro span {
  display: inline-block;
  font-family: var(--script-font);
  font-size: 1.02em;
  line-height: 0.74;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
}

.manifesto-script {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: -0.2em;
  margin-left: 0.02em;
  font-size: 1.8em;
  line-height: 0.66;
  font-weight: 400;
}

.manifesto-meta {
  position: absolute;
  left: clamp(12.2rem, 14.8vw, 14.25rem);
  bottom: clamp(2.4rem, 4.2vh, 3.2rem);
  max-width: 18.75rem;
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.manifesto-copy p {
  
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.manifesto-media,
.media-shell-cover,
.impact-backdrop,
.footer-hero {
  height: 100%;
}

.manifesto-media {
  height: 100%;
  min-height: 0;
}

.manifesto-link {
  position: relative;
  gap: 0.58rem;
  padding-bottom: 0.16rem;
  font-size: 0.88rem;
  letter-spacing: 0.025em;
  transition: color 180ms ease, transform 220ms var(--ease-out);
}

.manifesto-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.02rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-out), opacity 240ms ease;
}

.manifesto-link:hover,
.manifesto-link:focus-visible {
  transform: translateX(0.18rem);
}

.manifesto-link:hover::after,
.manifesto-link:focus-visible::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.manifesto-link img {
  width: 0.8rem;
  flex: none;
  filter: brightness(0) invert(1);
  transition: transform 220ms var(--ease-out);
}

.manifesto-link:hover img,
.manifesto-link:focus-visible img {
  transform: translate(0.08rem, -0.08rem);
}

.media-shell-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials {
  position: relative;
}

.testimonials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonials-head p {
  max-width: 28rem;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 600;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.quote-card {
  position: relative;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.8rem 1.8rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 20px 45px rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 240ms var(--ease-out), border-color 240ms ease, box-shadow 240ms ease;
}

.quote-card:hover {
  border-color: rgba(255, 178, 115, 0.56);
  box-shadow: 0 30px 60px rgba(10, 10, 10, 0.1);
}

.quote-mark {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--ink);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-family: "Fraunces", serif;
}

.quote-card p {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 600;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card strong {
  margin-top: auto;
  font-size: 0.95rem;
}

.quote-card span {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.slider-dots button {
  width: 0.45rem;
  height: 0.45rem;
  border: 0;
  border-radius: 999px;
  background: rgba(35, 36, 33, 0.18);
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots button.is-active {
  width: 1.6rem;
  background: var(--ink);
}

.impact {
  min-height: 0;
  height: clamp(29rem, 35.05vw, 33.125rem);
  max-height: 33.125rem;
  overflow: hidden;
  background: #2b2b2b;
}

.impact-backdrop {
  position: absolute;
  inset: 0;
}

.impact-backdrop img {
  object-position: center 41%;
  filter: grayscale(1) contrast(0.82) brightness(0.7);
  transform: scale(1.02);
}

.impact-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(1rem, 1.6vw, 1.35rem) 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.44) 0%, rgba(16, 16, 16, 0.5) 36%, rgba(16, 16, 16, 0.62) 100%);
}

.impact-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.impact-head {
  max-width: none;
  margin: 0 auto clamp(2.9rem, 4vw, 3.7rem);
  text-align: center;
}

.impact-head h2 {
  margin: 0;
  color: #fff;
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.9rem, 2.75vw, 2.7rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}


.impact-title-line {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.12em;
  white-space: nowrap;
}

.impact-title-line em {
  display: inline-block;
  margin-inline: -0.02em;
  font-family: var(--script-font);
  font-size: 1.39em;
  line-height: 0.72;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  margin:0 15px;
  transform: translateY(-0.04em) rotate(-3deg);
}

.impact-grid {
  width: min(43rem, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 2.9vw, 3.15rem);
}

.impact-card {
  display: grid;
  justify-items: center;
  gap: 0.62rem;
  padding: 0;
  border: 0;
  background: transparent;
  transition: transform 280ms var(--ease-out), opacity 220ms ease;
}

.impact-card:hover,
.impact-card:focus-within {
  transform: translateY(-0.18rem);
}

.impact-card h3 {
  margin: 0;
  max-width: 10.7rem;
  text-align: center;
  line-height: 1.24;
  font-size: clamp(0.9rem, 1.02vw, 1rem);
  font-weight: 700;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.32);
}

.impact-icon {
  position: relative;
  width: 5.55rem;
  height: 4.85rem;
  display: grid;
  place-items: center;
}

.impact-strip {
  position: absolute;
  top: 0.72rem;
  left: 0.5rem;
  width: 4.75rem;
  height: 1rem;
  background: rgba(255, 178, 115, 0.94);
  transform: rotate(16deg);
}

.impact-icon svg {
  position: relative;
  z-index: 1;
  width: 4.35rem;
  height: 4.35rem;
  fill: none;
  stroke: #fff;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.contact {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.contact-shell {
  position: relative;
  width: min(1188px, calc(100vw - 8rem));
}

.contact-head {
  width: 100%;
}

.contact-head .eyebrow {
  margin-bottom: 0.55rem;
}

.contact-head h2 {
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(0.16em, 1.6vw, 0.34em);
  font-family: "Futura PT", "Bricolage Grotesque", sans-serif;
  font-size: clamp(6.6rem, 11.2vw, 12.125rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.contact-head h2 span {
  display: block;
  white-space: nowrap;
}

.contact-card {
  position: relative;
  margin-top: 1.15rem;
  padding: 0 0 2.3rem;
  background: rgba(248, 246, 241, 0.84);
}

.contact-topline {
  display: block;
  padding: 1.15rem 2rem;
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 180ms ease, letter-spacing 180ms ease;
}

.contact-topline:hover,
.contact-topline:focus-visible {
  background: #191a18;
  letter-spacing: 0.055em;
}

.contact-intro {
  padding: clamp(1.9rem, 3.4vw, 2.55rem) clamp(1.25rem, 6vw, 5rem) 0;
}

.contact-intro p {
  margin: 0 auto;
  max-width: 54rem;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.85rem, 2.85vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.contact-intro span {
  font-size: 1.06em;
  transform: translateY(0.01em);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1rem;
  padding: clamp(2.3rem, 4.6vw, 3.45rem) clamp(1.25rem, 6vw, 5rem) 0;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form span {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-form span b {
  font-weight: 800;
  margin-right: 0.04rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0 0 0.6rem;
  border: 0;
  border-bottom: 1.5px solid rgba(35, 36, 33, 0.44);
  background: transparent;
  border-radius: 0;
  outline: none;
  font: inherit;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.contact-form.is-submitting input,
.contact-form.is-submitting textarea {
  opacity: 0.66;
}

.contact-form textarea {
  resize: vertical;
  min-height: 5rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-deep);
  box-shadow: inset 0 -1px 0 var(--accent-deep);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(35, 36, 33, 0.34);
}

.field-full {
  grid-column: 1 / -1;
}

.form-actions {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(35, 36, 33, 0.06);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(0.45rem);
  transition: opacity 220ms ease, transform 260ms var(--ease-out), background-color 220ms ease,
    color 220ms ease;
}

.form-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-feedback.is-loading {
  background: rgba(35, 36, 33, 0.08);
  color: var(--ink);
}

.form-feedback.is-success {
  background: rgba(25, 101, 58, 0.12);
  color: #19653a;
}

.form-feedback.is-error {
  background: rgba(162, 62, 30, 0.12);
  color: #a23e1e;
}

.send-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(255, 178, 115, 0.42);
  transition: transform 220ms var(--ease-out), background 220ms ease, box-shadow 220ms ease;
}

.send-button:disabled {
  cursor: wait;
}

.send-button-label {
  transition: opacity 160ms ease, transform 180ms ease;
}

.send-button-spinner {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(35, 36, 33, 0.24);
  border-top-color: var(--ink);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 160ms ease, transform 180ms ease;
}

.contact-form.is-submitting .send-button-label {
  opacity: 0;
  transform: translateY(0.15rem);
}

.contact-form.is-submitting .send-button-spinner {
  opacity: 1;
  transform: scale(1);
  animation: submit-spin 800ms linear infinite;
}

.send-button:hover,
.send-button:focus-visible {
  transform: translateY(-0.12rem);
  background: #ffc188;
  box-shadow: 0 24px 40px rgba(255, 178, 115, 0.5);
}

@keyframes submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  position: relative;
}

.footer-hero {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1512 / 595;
  max-height: 36svh;
}

.footer-hero img {
  object-position: center 44%;
  filter: brightness(0.88) contrast(1.02);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.4rem, 6vw, 4.5rem) 0 clamp(4rem, 6vw, 6rem);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand span {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.footer-brand img {
  width: clamp(2.8rem, 4vw, 4rem);
  height: auto;
}

.footer-nav {
  display: grid;
  gap: 1.3rem;
  justify-items: end;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 700ms ease,
    transform 900ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes shimmer {
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .manifesto {
    height: auto;
    max-height: none;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-grid {
    min-height: auto;
    align-items: start;
    padding-top: 2.6rem;
  }

  .hero-aside {
    max-width: 36rem;
  }

  .experience-copy h2 {
    max-width: 13.5ch;
    font-size: clamp(2.5rem, 4.4vw, 3.45rem);
  }

  .experience-title-line {
    display: inline;
  }

  .floating-card-right {
    top: 0.25rem;
    right: -0.25rem;
    width: min(19vw, 14rem);
  }

  .manifesto-copy,
  .manifesto-media {
    height: auto;
    min-height: 32rem;
  }

  .manifesto-copy {
    padding: 3.2rem 2rem 2.6rem;
  }

  .manifesto-script {
    margin-top: -0.36em;
  }

  .manifesto-meta {
    position: static;
    left: auto;
    bottom: auto;
    margin-top: 2rem;
    max-width: 22rem;
    margin-left: 0;
  }

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

  .impact {
    height: clamp(28rem, 48vw, 31rem);
    max-height: none;
  }

  .impact-overlay {
    padding: 1.3rem 0 2rem;
  }

  .impact-head h2 {
    font-size: clamp(1.85rem, 4vw, 2.45rem);
  }

  .impact-title-line {
    white-space: normal;
    flex-wrap: wrap;
  }

  .impact-card:last-child {
    grid-column: 1 / -1;
    max-width: 20rem;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  :root {
    --content-width: min(1320px, calc(100vw - 1.5rem));
    --header-height: 4.3rem;
    --strip-height: 3.9rem;
  }

  .site-header {
    background: rgba(244, 242, 238, 0.94);
    border-bottom-color: var(--line);
  }

  .main-nav {
    grid-template-columns: auto 1fr;
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: inline-block;
    justify-self: start;
  }

  .nav-links-left,
  .nav-links-right {
    display: none;
  }

  .brand-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-self: auto;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-copy h1,
  .contact-head h2 {
    font-size: clamp(4.8rem, 19vw + 1.2vh, 8.4rem);
  }

  .hero-grid {
    min-height: calc(100svh - var(--header-height) - var(--strip-height) - 2.75rem);
    align-items: end;
  }

  .hero-aside {
    max-width: none;
  }

  .clients-row {
    gap: 2.4rem;
    padding-inline: 1.5rem;
  }

  .experience-shell {
    min-height: auto;
    padding-top: 1rem;
  }

  .manifesto-copy {
    padding: 3rem 1.5rem 2.5rem;
  }

  .manifesto-meta {
    margin-top: 2rem;
    max-width: 24rem;
    margin-left: 0;
  }

  .floating-card {
    position: relative;
    width: min(68vw, 20rem);
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0 auto 1rem;
    rotate: 0deg;
  }

  .experience-copy {
    order: -1;
    margin-bottom: 1rem;
  }

  .testimonials-head {
    flex-direction: column;
    align-items: start;
    margin-bottom: 1.8rem;
  }

  .testimonials-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .testimonials-slider::-webkit-scrollbar {
    display: none;
  }

  .quote-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: 19rem;
    scroll-snap-align: start;
  }

  .quote-mark {
    left: 50px;
    top:0;
    transform: translateX(-50%);
    z-index: 1;
  }

  .slider-dots {
    display: flex;
  }

  .impact {
    height: auto;
  }

  .impact-overlay {
    height: auto;
    min-height: auto;
    display: block;
    padding: 2.4rem 0 2.8rem;
    background:
      linear-gradient(180deg, rgba(16, 16, 16, 0.5) 0%, rgba(16, 16, 16, 0.58) 34%, rgba(16, 16, 16, 0.68) 100%);
  }

  .impact-head {
    margin-bottom: 1.85rem;
  }

  .impact-head h2 {
    font-size: clamp(1.85rem, 7vw, 2.7rem);
    line-height: 0.95;
  }

  .impact-prefix {
    display: block;
    font-size: 0.32em;
    line-height: 1.15;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.76);
  }

  .impact-title-line {
    max-width: 10.8ch;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    width: min(24rem, 100%);
    gap: 1rem;
  }

  .impact-card {
    width: 100%;
    gap: 0.95rem;
    padding: 1rem 0.85rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 17, 17, 0.18);
    backdrop-filter: blur(8px);
  }

  .impact-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 4rem;
  }

  .hero-copy h1,
  .contact-head h2 {
    font-size: clamp(4.5rem, 22vw, 6.8rem);
    line-height: 0.8;
  }

  .hero-grid {
    gap: 1.4rem;
    padding-top: 0.5rem;
  }

  .hero-aside p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .clients-row img {
    height: 1.35rem;
  }

  .experience-copy h2,
  .testimonials-head h2,
  .impact-head h2 {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }

  .manifesto-copy h2 {
    font-size: clamp(2.6rem, 16vw, 4.6rem);
    line-height: 0.84;
  }

  .manifesto-script {
    margin-top: -0.34em;
  }

  .manifesto-copy p {
    line-height: 1.55;
  }

  .manifesto-meta {
    
  }

  .manifesto-link {
    width: fit-content;
  }

  .impact-overlay {
    padding: 2.2rem 0 2.8rem;
  }

  .impact-head {
    margin-bottom: 1.6rem;
  }

  .impact-head h2 {
    font-size: clamp(1.95rem, 11vw, 3rem);
  }

  .impact-prefix {
    font-size: 0.3em;
  }

  .impact-title-line {
    max-width: 9.1ch;
  }

  .impact-card {
    padding-inline: 0.8rem;
  }

  .contact-topline {
    font-size: 0.86rem;
    padding-inline: 1rem;
  }

  .contact-head h2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.18em;
    font-size: clamp(1.72rem, 7.2vw, 2.24rem) !important;
    line-height: 0.92;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.025em;
  }

  .contact-head h2 span {
    white-space: nowrap;
  }

  .contact-intro p {
    font-size: clamp(1.85rem, 9.6vw, 2.8rem);
  }

  .send-button {
    width: 5rem;
    height: 5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .lazy-media {
    opacity: 1;
    transform: none;
  }
}
