:root {
  color-scheme: dark;
  --deep: #05080a;
  --deep-2: #0a1115;
  --ink: #f4fbff;
  --muted: rgba(244, 251, 255, 0.72);
  --quiet: rgba(244, 251, 255, 0.52);
  --aqua: #3da3c6; /* color match designers files */
  --aqua-rgb: 61, 163, 198;
  --blue: #167aa0;
  --paper: #eef9ff;
  --line: rgba(244, 251, 255, 0.2);
  --line-dark: rgba(5, 8, 10, 0.24);
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--deep);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0 calc(25% - 1px), rgba(244, 251, 255, 0.08) calc(25% - 1px) 25%, transparent 25% calc(50% - 1px), rgba(244, 251, 255, 0.08) calc(50% - 1px) 50%, transparent 50% calc(75% - 1px), rgba(244, 251, 255, 0.08) calc(75% - 1px) 75%, transparent 75%),
    linear-gradient(rgba(244, 251, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 8rem;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:link,
a:visited {
  color: inherit !important;
}

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

button {
  border-radius: 0;
}

.wpcf7-form.sent > * {
	display: none;
}

.wpcf7-form.sent > .wpcf7-response-output {
	display: block!important;
}

.extra-field {
    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;	
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(115deg, transparent 0, rgba(255, 255, 255, 0.22) 45%, transparent 46%),
    linear-gradient(35deg, rgba(255, 255, 255, 0.08), transparent 36%, rgba(0, 0, 0, 0.18));
  background-size: 5px 5px, 13px 13px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0.8rem 1rem;
  background: var(--paper);
  color: var(--deep);
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 5rem;
  padding: 1.1rem 3rem;
  color: var(--ink);
  background: rgba(5, 8, 10, 0);
  backdrop-filter: blur(0);
  transition: background 300ms ease, backdrop-filter 300ms ease, color 250ms ease;
}

.is-scrolled .site-header {
  background: rgba(5, 8, 10, calc(0.34 + (0.46 * var(--scroll-progress))));
  backdrop-filter: blur(calc(8px + (8px * var(--scroll-progress))));
}

.site-header a {
  color: var(--ink) !important;
}

.brand {
  width: 13rem;
  display: inline-flex;
  align-items: center;
}

.brand img, .brand svg {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a,
.nav-cta {
  color: var(--ink);
  transition: color 220ms ease, opacity 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--aqua);
  outline: none;
}

.nav-cta {
  justify-self: end;
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-cta:link,
.nav-cta:visited {
  color: var(--ink) !important;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
}

.hero-media,
.hero-scrim,
.hero-media video,
.hero-media .video-fallback {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.hero-media video,
.hero-media .video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.12) brightness(0.68);
  transform: scale(1.08);
  transform-origin: center;
}

.hero-media .video-fallback {
  z-index: 0;
}

.hero-media video {
  z-index: 1;
}

.hero-media video.has-video-error,
.fish-story-video.has-video-error {
  opacity: 0 !important;
  visibility: hidden !important;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.64), rgba(5, 8, 10, 0.2) 42%, rgba(5, 8, 10, 0.7)),
    linear-gradient(to top, rgba(5, 8, 10, 0.94), rgba(5, 8, 10, 0.12) 52%, rgba(5, 8, 10, 0.72));
}

.hero-title {
  position: absolute;
  left: clamp(1.6rem, 2.2vw, 2.8rem);
  right: clamp(29rem, 38vw, 40rem);
  bottom: clamp(2rem, 4vh, 3rem);
  z-index: 4;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(5.6rem, 7.4vw, 9rem);
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-title > span {
  display: block;
}

.hero-title .char-mask,
.split-headline .char-mask {
  display: inline-block;
  overflow: clip;
  vertical-align: top;
}

.hero-title .char,
.split-headline .char {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero-side {
  position: absolute;
  right: clamp(3.2rem, 5.4vw, 6rem);
  top: clamp(38%, 45vh, 48%);
  z-index: 6;
  width: clamp(18rem, 20vw, 22rem);
  transform: translateY(-50%);
}

.kicker {
  margin: 0 0 1rem;
  color: var(--aqua);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-side h1,
h2,
h3 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-side h1 {
  color: var(--ink);
  font-size: clamp(1.45rem, 1.55vw, 1.85rem);
  font-style: normal;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-side p:not(.kicker),
.intro-note,
.project span,
.process p,
.duo-copy p,
.contact-copy p,
.form-note {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.brett-portrait {
  position: absolute;
  right: clamp(21rem, 19vw, 18rem);
  bottom: 0;
  z-index: 5;
  width: clamp(22rem, 28vw, 29rem);
  pointer-events: none;
  transform-origin: bottom center;
}

.brett-portrait img {
  width: 100%;
  display: block;
  filter: drop-shadow(-2rem 2rem 2rem rgba(0, 0, 0, 0.55));
}

.brett-portrait p {
  position: absolute;
  right: clamp(-5rem, -4vw, -3rem);
  bottom: clamp(5.25rem, 10vh, 8rem);
  width: clamp(15rem, 17vw, 18rem);
  margin: 0;
  padding: 0.9rem 0;
  background: rgba(5, 8, 10, 0.16);
  backdrop-filter: blur(10px);
}

.brett-portrait span,
.brett-portrait small {
  display: block;
  padding: 0 1rem;
  font-size: 0.78rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.brett-portrait span {
  font-weight: 800;
}

.brett-portrait small {
  margin-top: 0.28rem;
  opacity: .85;
}

.hero-proof {
  position: absolute;
  left: 3rem;
  top: 8rem;
  z-index: 5;
  width: 18rem;
  padding-top: 0.8rem;
}

.hero-proof span {
  display: block;
  margin-top: 0.42rem;
  color: var(--aqua);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof img {
  opacity: 0.88;
}

.scroll-cue {
  position: absolute;
  right: clamp(5rem, 9vw, 12rem);
  bottom: 2rem;
  z-index: 7;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 1181px) and (max-width: 1399px) {
  .hero-side {
    top: clamp(16rem, 32vh, 19rem);
    left: clamp(2rem, 5vw, 3rem);
    right: auto;
    width: min(25rem, 42vw);
    transform: none;
  }

  .brett-portrait {
    right: clamp(4rem, 10vw, 8rem);
    width: clamp(22rem, 32vw, 27rem);
  }

  .brett-portrait p {
    right: clamp(-4rem, -3vw, -2rem);
  }
}

.intro,
.project-stage,
.process,
.contact,
.duo {
  padding: 8rem 4rem;
}

.intro,
.project-stage {
  position: relative;
}

.duo {
	position:relative;
}

.section-label {
  color: var(--aqua);
}

@media(min-width:1181px) {
	.duo {
	  padding-left: 0;
	}
	.intro {
	  min-height: 78svh;
	  display: grid;
	  grid-template-columns: 12rem minmax(0, 1.35fr) minmax(18rem, 0.7fr);
	  gap: 4rem;
	  align-items: center;
	  position: relative;
	  overflow: hidden;
	  background: var(--deep);
	  color: var(--ink);
	  isolation: isolate;
	}
	.section-label {
	  min-height: 25rem;
	  display: grid;
	  place-items: center;
	  color: var(--aqua);
	  font-size: 2rem;
	  line-height: 1;
	  padding: 0;
	  text-align: center;
	  white-space: nowrap;
	  writing-mode: vertical-rl;
	  transform: rotate(180deg);
	}
	.duo {
	  min-height: 88svh;
	  display: grid;
	  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	  gap: 5rem;
	  align-items: center;
	  background: var(--deep);
	}
	.duo-copy h2 {
	  max-width: 12ch;
	}

}

.intro::before,
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(127, 229, 243, 0.18), transparent 22rem);
  opacity: 0.78;
}

.intro > *,
.process > * {
  position: relative;
  z-index: 1;
}

.intro .kicker,
.process .kicker {
  color: var(--aqua);
}

h2 {
  color: inherit;
  font-size: 5rem;
  line-height: 0.92;
}

.intro h2,
.process h2,
.process h3 {
  color: var(--ink);
}

.intro-note {
  color: var(--muted);
}

.project-stage {
  background: var(--deep-2);
  z-index: 9;
  position: relative;
}

.stage-heading {
  text-align: center;
  margin-bottom: 4.5rem;
}

.project-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14rem;
  gap: 1.25rem;
  perspective: 1400px;
}

.project-view {
  position: relative;
  min-height: 46rem;
  overflow: hidden;
  background: var(--deep);
  clip-path: polygon(6% 0, 100% 0, 100% calc(100% - 4rem), calc(100% - 4rem) 100%, 0 100%, 0 7%);
}

.project {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(3rem) scale(1.04);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06) brightness(0.72);
  transform: scale(1.05);
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.92), rgba(5, 8, 10, 0.24) 62%),
    linear-gradient(to top, rgba(5, 8, 10, 0.9), transparent 54%);
}

.project div {
  position: absolute;
  left: 4rem;
  bottom: 4rem;
  z-index: 2;
  width: min(44rem, calc(100% - 4rem));
}

.project p,
.process span {
  margin: 0 0 0.8rem;
  color: var(--aqua);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  color: var(--ink);
  font-size: 2.7rem;
  line-height: 0.98;
}

.project span {
  display: block;
  margin-top: 1rem;
}

.project-controls {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.25rem;
}

.project-tab {
  min-height: 10rem;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--quiet);
  padding: 1rem;
  text-align: left;
  cursor: pointer;
}

.project-tab span {
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 800;
}

.project-tab b {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.project-tab:hover,
.project-tab:focus-visible,
.project-tab.is-active {
  background: linear-gradient(to bottom right, var(--aqua), rgba(var(--aqua-rgb), .3));
  color: var(--deep);
  outline: none;
  border: 0;
}

.project-tab:hover span,
.project-tab:hover b,
.project-tab:focus-visible span,
.project-tab:focus-visible b,
.project-tab.is-active span,
.project-tab.is-active b {
  color: var(--deep);
}

.project-tab.is-active span {
	opacity: .5;
}

.fish-story {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
}

.fish-story-video,
.fish-story-fallback {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.42);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
}

.fish-story-video {
  z-index: 1;
}

.fish-story-fallback {
  z-index: 0;
}

.full-bleed {
  position: relative;
  z-index: 2;
  min-height: 78svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 4rem 3rem;
}

.full-bleed h2 {
  font-size: 7rem;
}

.split-headline > span {
  display: block;
}

.full-bleed-title {
  max-width: 13ch;
  margin: 0 auto;
  line-height: 0.84;
  text-transform: uppercase;
}

.text-suite > * {
  will-change: transform, opacity, filter;
}

.process {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: 6rem;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
  isolation: isolate;
}

.process-copy {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.process-list {
  display: grid;
  gap: 1rem;
  perspective: 1200px;
}

.process-list article {
  position: relative;
  min-height: 18rem;
  display: grid;
  align-content: end;
  padding: 2.4rem;
  background: rgba(244, 251, 255, 0.075);
  box-shadow: 0 2.2rem 4rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.25);
  overflow: hidden;
}

.process-list article > * {
  position: relative;
  z-index: 1;
}

.process-list p {
  color: var(--muted);
}

.duo {
  background: var(--deep);
}

.duo-image {
  height: 42rem;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), calc(100% - 3rem) 100%, 0 100%);
}

.duo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.duo-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 900ms ease, transform 1400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.duo-carousel img.is-active {
  opacity: 1;
  transform: scale(1.04);
}


.duo-proof img {
  width: 22rem;
  margin-top: 2rem;
  opacity: 0.86;
}

.duo-proof p {
  margin: 0.8rem 0 0;
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(22rem, 1.22fr);
  gap: 6rem;
  align-items: start;
  background: var(--deep-2);
}

.contact-copy {
  position: sticky;
  top: 8rem;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  padding: 2.4rem;
  background: rgba(244, 251, 255, 0.035);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.55rem;
}

label span {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 4rem;
  border: 0;
  border-bottom: 1px solid rgba(244, 251, 255, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.9rem 0;
  outline: none;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

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

select option {
  background: var(--deep);
  color: var(--ink);
}

.submit-button {
  min-height: 4.6rem;
  display: grid;
  grid-template-columns: 1fr 4.6rem;
  border: 1px solid rgba(149, 216, 207, 0.72);
  background: var(--paper);
  color: var(--deep);
  padding: 0;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
}

.submit-button span,
.submit-button b {
  display: grid;
  place-items: center;
}

.submit-button b {
  border-left: 1px solid var(--line-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--aqua);
  outline: none;
}

.site-footer {
  text-align: center;
  padding: 1.4rem;
  color: var(--quiet);
  background: var(--deep-2);
  font-size: 0.82rem;
}

.page-shell {
  min-height: calc(100svh - 4rem);
  padding: 10rem 4rem 7rem;
  background: var(--deep);
}

.page-content {
  width: min(54rem, 100%);
  margin: 0 auto;
}

.page-heading {
  margin-bottom: 2.5rem;
}

.page-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.entry-content {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ink);
  margin-top: 2.4rem;
  margin-bottom: 1rem;
}

.entry-content h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.entry-content h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.entry-content a {
  color: var(--aqua) !important;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.error-shell {
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.error-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.96), rgba(5, 8, 10, 0.5) 52%, rgba(5, 8, 10, 0.92)),
    url("assets/second-hero-Riverhead-NY-fish-tank-min.jpg") center / cover no-repeat;
  transform: scale(1.04);
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-content h1 {
  margin: 0;
  max-width: 13ch;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.8vw, 5.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.error-content > p:not(.kicker) {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  line-height: 1.6;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.error-button,
.error-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.error-button {
  border: 1px solid rgba(var(--aqua-rgb), 0.72);
  background: transparent;
  color: var(--ink) !important;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.error-button:hover,
.error-button:focus-visible {
  background: linear-gradient(to bottom right, var(--aqua), rgba(var(--aqua-rgb), 0.3));
  color: var(--deep) !important;
  border-color: transparent;
  outline: none;
  transform: translateY(-2px);
}

.error-link {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink) !important;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.error-link:hover,
.error-link:focus-visible {
  background: var(--paper);
  color: var(--deep) !important;
  border-color: var(--paper);
  outline: none;
  transform: translateY(-2px);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 4rem, 0);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gsap-enhanced [data-reveal],
.gsap-enhanced [data-reveal].is-visible {
  transition: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1rem 1.4rem;
  }

  .site-nav {
    display: none;
  }

  .brand {
    width: 11rem;
  }

  .hero-title {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 2.5rem;
    font-size: 5.6rem;
  }

  .hero-side {
    top: clamp(15rem, 31vh, 18rem);
    left: 1.4rem;
    right: auto;
    width: min(22rem, calc(100% - 2.8rem));
    transform: none;
  }

  .brett-portrait {
    right: 2rem;
    width: 22rem;
  }

  .brett-portrait p {
    right: 0;
    bottom: 5rem;
  }

  .hero-proof {
    left: 1.4rem;
    width: 15rem;
  }

  .intro,
  .stage-heading,
  .process,
  .duo,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro,
  .project-stage,
  .process,
  .duo,
  .contact,
  .page-shell {
    padding: 6rem 1.4rem;
  }

  .section-label {
    min-height: 0;
    place-items: start;
    font-size: 2rem;
    writing-mode: initial;
    transform: none;
  }

  h2 {
    font-size: 3.7rem;
  }

  .project-system {
    grid-template-columns: 1fr;
  }

  .project-controls {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .project-tab {
    min-height: 7rem;
  }

  .process-copy,
  .contact-copy {
    position: relative;
    top: auto;
  }
  #studio .kicker {
  	display: none;
  }
  
  #studio, #process, .duo, .contact-copy {
  	text-align: center;
  }
  .duo-copy {
  	padding-top: 6rem;
  }
  .duo-proof img {
  	margin: 2rem auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 4.5rem;
    gap: 0.75rem;
    max-width: 100%;
    overflow: hidden;
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    font-size: clamp(0.58rem, 2.8vw, 0.68rem);
    white-space: nowrap;
  }

  .brand {
    width: clamp(7rem, 36vw, 9rem);
    min-width: 0;
  }

  .hero {
    max-width: 100%;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-title {
    font-size: 3.35rem;
    bottom: 13rem;
  }

  .hero-side {
    top: 8rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: calc(100vw - 2rem);
    transform: none;
  }

  .hero-side h1 {
    font-size: 1.32rem;
  }

  .brett-portrait {
    right: 0;
    width: clamp(12rem, 52vw, 15rem);
  }

  .brett-portrait p {
    left: auto;
    right: 0.25rem;
    bottom: 3.8rem;
    width: min(12rem, calc(100vw - 2rem));
  }

  .hero-proof {
    top: auto;
    left: 1rem;
    bottom: 2rem;
    width: 11rem;
  }

  .scroll-cue {
    right: 1rem;
    bottom: 2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  h3 {
    font-size: 2rem;
  }

  .full-bleed h2 {
    font-size: 3.4rem;
  }

  .project-view {
    min-height: 34rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
  }

  .project div {
    left: 1.2rem;
    bottom: 1.4rem;
    width: calc(100% - 2.4rem);
  }

  .project-controls,
  .field-row {
    grid-template-columns: 1fr;
  }

  .project-tab {
    min-height: 5rem;
  }

  .duo-image {
    height: 28rem;
  }

  .duo-copy img {
    width: 15rem;
  }

  .inquiry-form {
    padding: 1.2rem;
  }
	.hero-proof {
		display: none;
	}
	
	.full-bleed h2 {
		font-size: 2rem;
		
	}

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

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

.section-wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 150px;
	pointer-events: none;
}

.section-wave--top {
	top: -1px;
	bottom: auto;
	transform: scaleY(-1);
	transform-origin: center;
}

.section-wave--inverted {
	transform: scaleX(-1);
	transform-origin: center;
}

.section-wave svg {
	width: 100%;
	height: 100%;
}

.section-wave svg path {
	fill: var(--deep-2);
}

.section-wave--deep svg path {
	fill: var(--deep);
}

.section-wave--deep-2 svg path {
	fill: var(--deep-2);
}

.section-wave .desktop-wave {
	display: none;
}

@media (min-width: 1181px) {
	.section-wave .mobile-wave {
		display: none;
	}
	.section-wave .desktop-wave {
		display: block;
	}
}
