:root {
  color-scheme: light;
  --surface: #e8efed;
  --surface-deep: #d5e1de;
  --ink: #0e3339;
  --ink-soft: #496468;
  --sea: #267985;
  --sea-deep: #124e57;
  --sage: #71958b;
  --sun: #d96f55;
  --line: rgba(14, 51, 57, .19);
  --line-strong: rgba(14, 51, 57, .42);
  --serif: "Source Han Serif SC", "Noto Serif CJK SC", "Songti SC", SimSun, serif;
  --sans: Aptos, "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--surface);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(72, 135, 140, .17), transparent 29rem),
    radial-gradient(circle at 10% 61%, rgba(217, 111, 85, .07), transparent 32rem),
    var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(22, 52, 59, .025) 1px, transparent 1px);
  background-size: 100% 7px;
  content: "";
  pointer-events: none;
}

::selection {
  background: var(--sea-deep);
  color: var(--surface);
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.paper-noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: .055;
  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='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
}

.ambient {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(46, 117, 128, .18);
  border-radius: 50%;
  pointer-events: none;
}

.ambient--one {
  top: 7rem;
  right: -16rem;
  width: 42rem;
  height: 42rem;
}

.ambient--two {
  top: 41rem;
  left: -8rem;
  width: 17rem;
  height: 17rem;
}

.shell,
.header-inner {
  width: min(1280px, calc(100% - 80px));
  margin-inline: auto;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: visible;
  fill: none;
  stroke: var(--sea-deep);
  stroke-width: 1.35;
}

.brand-mark path {
  stroke-linecap: round;
}

.brand-mark .brand-sun {
  fill: var(--sun);
  stroke: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, var(--serif);
  font-size: 17px;
  letter-spacing: .05em;
}

.brand small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  letter-spacing: .05em;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}

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

.nav-random {
  padding: 11px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.nav-random:hover,
.nav-random:focus-visible {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 87px);
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, .86fr);
  align-items: center;
  gap: clamp(50px, 9vw, 138px);
  padding-block: clamp(76px, 12vh, 142px) clamp(108px, 15vh, 164px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  color: var(--sea-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 45px;
  height: 1px;
  background: var(--sea);
  content: "";
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 8.5ch;
  font-size: clamp(64px, 7.2vw, 96px);
  line-height: .94;
}

.hero h1 em {
  color: var(--sea);
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin: 35px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.9;
}

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

.primary-action {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--sea-deep);
  border-radius: 2px;
  background: var(--sea-deep);
  box-shadow: 7px 7px 0 rgba(23, 79, 88, .14);
  color: #f7f2e7;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: .03em;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s ease;
}

.primary-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .25s var(--ease-out);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #0f4149;
  box-shadow: 3px 3px 0 rgba(23, 79, 88, .17);
  transform: translate(3px, 3px);
}

.primary-action:hover svg,
.primary-action:focus-visible svg {
  transform: translateX(4px);
}

.text-link {
  padding-block: 10px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 13px;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.tide-postcard {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  width: min(100%, 470px);
  margin-left: auto;
  padding: 15px;
  border: 1px solid rgba(22, 52, 59, .17);
  background: #f6f8f5;
  box-shadow: 0 8px 8px rgba(31, 68, 70, .12);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) rotate(1.6deg);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
  will-change: transform;
}

.tide-postcard:hover {
  box-shadow: 0 10px 8px rgba(31, 68, 70, .16);
}

.tide-postcard::before,
.tide-postcard::after {
  position: absolute;
  z-index: 2;
  width: 76px;
  height: 24px;
  background: rgba(183, 200, 193, .62);
  content: "";
  transform: rotate(-8deg);
}

.tide-postcard::before {
  top: -12px;
  left: 42px;
}

.tide-postcard::after {
  right: 35px;
  bottom: -9px;
  transform: rotate(7deg);
}

.postcard-head,
.postcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.postcard-head {
  padding: 2px 2px 11px;
}

.postcard-head span:last-child {
  color: var(--sun);
}

.sea-scene {
  position: relative;
  aspect-ratio: 1 / .9;
  overflow: hidden;
  background:
    linear-gradient(to bottom, #c7dcd6 0 46%, #88b5b3 46% 58%, #397d86 58% 100%);
}

.scene-sun {
  position: absolute;
  top: 17%;
  left: 50%;
  width: 25%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #d98266;
  box-shadow: 0 0 0 18px rgba(238, 197, 146, .14);
  transform: translateX(-50%);
}

.scene-cloud {
  position: absolute;
  width: 24%;
  height: 5%;
  border-top: 1px solid rgba(22, 52, 59, .48);
  border-radius: 50%;
}

.scene-cloud--one {
  top: 23%;
  left: 7%;
}

.scene-cloud--two {
  top: 32%;
  right: 8%;
  width: 18%;
}

.scene-boat {
  position: absolute;
  z-index: 2;
  right: 23%;
  bottom: 29%;
  width: 36px;
  height: 8px;
  border-radius: 0 0 50% 50%;
  background: var(--ink);
  transform: rotate(-2deg);
}

.scene-boat::before {
  position: absolute;
  bottom: 7px;
  left: 16px;
  width: 1px;
  height: 31px;
  background: var(--ink);
  content: "";
}

.scene-boat::after {
  position: absolute;
  bottom: 13px;
  left: 17px;
  width: 17px;
  height: 21px;
  background: rgba(238, 232, 218, .85);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  content: "";
}

.wave-lines {
  position: absolute;
  inset: 42% -5% 0;
  width: 110%;
  height: 58%;
  fill: none;
  stroke: rgba(238, 232, 218, .58);
  stroke-width: 1.35;
}

.wave-lines path:nth-child(2),
.wave-lines path:nth-child(4) {
  stroke: rgba(22, 52, 59, .2);
}

.postcard-foot {
  padding: 12px 2px 0;
  letter-spacing: .06em;
  text-transform: none;
}

.postcard-foot time {
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: .12em;
}

.postcard-stamp {
  position: absolute;
  right: 28px;
  bottom: 54px;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 242, 231, .7);
  border-radius: 50%;
  color: rgba(247, 242, 231, .8);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .13em;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-11deg);
}

.scroll-note {
  position: absolute;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.scroll-note i {
  position: relative;
  width: 1px;
  height: 56px;
  overflow: hidden;
  background: var(--line);
}

.scroll-note i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sea-deep);
  content: "";
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  70%, 100% { transform: translateY(200%); }
}

.works {
  padding-block: clamp(105px, 14vw, 190px);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 390px);
  align-items: end;
  gap: 70px;
  margin-bottom: clamp(85px, 12vw, 155px);
}

.section-heading h2 {
  font-size: clamp(50px, 6.3vw, 84px);
  line-height: .99;
}

.section-heading > p {
  margin: 0 0 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: clamp(110px, 15vw, 200px);
}

.project {
  min-width: 0;
}

.project--echo {
  grid-column: 1 / span 10;
}

.project--pulse {
  grid-column: 5 / -1;
}

.project--botany {
  grid-column: 1 / span 8;
}

.project--cherry {
  grid-column: 5 / -1;
}

.project-visual {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(22, 52, 59, .22);
  background: var(--surface-deep);
  box-shadow: none;
  isolation: isolate;
}

.project--echo .project-visual,
.project--pulse .project-visual {
  aspect-ratio: 16 / 9;
}

.project--botany .project-visual {
  aspect-ratio: 16 / 10;
}

.project--cherry .project-visual {
  aspect-ratio: 4 / 3;
}

.echo-visual {
  background: #092b32;
  color: #f1ead9;
}

.echo-board {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: clamp(28px, 5vw, 74px);
  background:
    radial-gradient(circle at 76% 38%, rgba(213, 127, 97, .24), transparent 18%),
    linear-gradient(115deg, #092b32, #174b51 62%, #1f5c62);
}

.echo-board::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 232, 215, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 232, 215, .06) 1px, transparent 1px);
  background-size: 100% 25%, 12.5% 100%;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 84%);
}

.echo-board-head,
.echo-caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(241, 234, 217, .72);
  font-size: clamp(8px, .9vw, 12px);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.echo-word {
  position: absolute;
  top: 50%;
  left: clamp(28px, 5vw, 74px);
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(82px, 15vw, 220px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .75;
  transform: translateY(-46%);
}

.echo-word i {
  color: #da8066;
  font-style: normal;
}

.echo-orbit {
  position: absolute;
  top: 50%;
  right: 9%;
  width: min(25vw, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(241, 234, 217, .36);
  border-radius: 50%;
  transform: translateY(-50%);
}

.echo-orbit::before,
.echo-orbit::after {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(241, 234, 217, .22);
  border-radius: 50%;
  content: "";
}

.echo-orbit::after {
  inset: 36%;
  background: #da8066;
  border: 0;
}

.echo-orbit span {
  position: absolute;
  top: 12%;
  left: 12%;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f1ead9;
  box-shadow: 0 0 22px rgba(241, 234, 217, .8);
}

.echo-caption {
  position: absolute;
  right: clamp(28px, 5vw, 74px);
  bottom: clamp(28px, 5vw, 62px);
  left: clamp(28px, 5vw, 74px);
}

.echo-progress {
  width: min(28%, 220px);
  height: 1px;
  background: rgba(241, 234, 217, .26);
}

.echo-progress i {
  width: 61%;
  height: 100%;
  display: block;
  background: #da8066;
}

.project-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, .2), transparent 24%);
  content: "";
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(.96);
  transition: transform 1.1s var(--ease-out), filter .7s ease;
}

.project--pulse img {
  object-position: 50% 52%;
}

.project--botany img {
  object-position: center;
}

.project--cherry img {
  object-position: 50% 48%;
}

.project-visual:hover::after {
  opacity: 1;
}

.project-visual:hover img,
.project-visual:focus-visible img {
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.visual-index,
.visual-action {
  position: absolute;
  z-index: 3;
  background: rgba(239, 245, 242, .92);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.visual-index {
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 52, 59, .22);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 12px;
}

.visual-action {
  right: 16px;
  bottom: 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 14px;
  border: 1px solid rgba(22, 52, 59, .22);
  font-size: 12px;
  letter-spacing: .05em;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s var(--ease-out);
}

.project-visual:hover .visual-action,
.project-visual:focus-visible .visual-action {
  opacity: 1;
  transform: translateY(0);
}

.visual-action b {
  font-size: 16px;
  font-weight: 400;
}

.project-copy {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(260px, 1fr);
  gap: clamp(30px, 7vw, 100px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.project-type {
  margin: 0 0 8px;
  color: var(--sea);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.project h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.project-copy > p {
  max-width: 480px;
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.95;
}

.wander {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  text-align: center;
}

.wander p {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 58px);
  letter-spacing: -.04em;
}

.wander button {
  padding: 11px 0 9px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .08em;
}

.wander button span {
  display: inline-block;
  margin-left: 10px;
  transition: transform .3s var(--ease-out);
}

.wander button:hover span,
.wander button:focus-visible span {
  transform: translate(4px, -4px);
}

.wander svg {
  position: absolute;
  bottom: 36px;
  left: 50%;
  width: min(650px, 80vw);
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1;
  transform: translateX(-50%);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 134px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .07em;
}

.footer-inner p {
  margin: 0;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 16px;
}

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

.js [data-reveal].is-visible {
  animation: reveal-in .72s var(--ease-out) both;
}

.js .tide-postcard[data-reveal],
.js .tide-postcard[data-reveal].is-visible {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) rotate(1.6deg);
}

.js .tide-postcard[data-reveal].is-visible {
  animation: postcard-in .82s var(--ease-out) both;
}

@keyframes reveal-in {
  from {
    opacity: .78;
    filter: blur(2px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes postcard-in {
  from {
    opacity: .78;
    filter: blur(2px);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) rotate(1.6deg) translateY(14px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) rotate(1.6deg) translateY(0);
  }
}

:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .shell,
  .header-inner {
    width: min(100% - 48px, 1280px);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(62px, 9vw, 88px);
  }

  .project--echo {
    grid-column: 1 / span 11;
  }

  .project--pulse {
    grid-column: 4 / -1;
  }

  .project--botany {
    grid-column: 1 / span 9;
  }

  .project--cherry {
    grid-column: 4 / -1;
  }
}

@media (max-width: 760px) {
  .shell,
  .header-inner {
    width: min(100% - 32px, 1280px);
  }

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

  .site-nav a {
    display: none;
  }

  .nav-random {
    padding: 9px 11px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 74px;
    padding-block: 76px 120px;
  }

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

  .hero-lead {
    max-width: 31rem;
    margin-top: 27px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 34px;
  }

  .primary-action {
    width: min(100%, 335px);
  }

  .tide-postcard {
    width: min(91%, 440px);
    margin-inline: auto;
  }

  .scroll-note {
    display: none;
  }

  .works {
    padding-block: 100px 125px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 82px;
  }

  .section-heading h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .section-heading > p {
    max-width: 480px;
  }

  .project-grid {
    display: block;
  }

  .project + .project {
    margin-top: 105px;
  }

  .project-visual,
  .project--echo .project-visual,
  .project--pulse .project-visual,
  .project--botany .project-visual,
  .project--cherry .project-visual {
    aspect-ratio: 4 / 3;
  }

  .project-copy {
    grid-template-columns: 1fr;
    gap: 17px;
    padding-top: 23px;
  }

  .project h3 {
    font-size: 40px;
  }

  .echo-word {
    font-size: clamp(68px, 22vw, 122px);
  }

  .echo-orbit {
    right: 5%;
    width: 40vw;
    max-width: 210px;
    opacity: .72;
  }

  .visual-action {
    opacity: 1;
    transform: none;
  }

  .wander {
    min-height: 330px;
  }

  .footer-inner {
    min-height: 145px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

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

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: 59px;
  }

  .eyebrow {
    letter-spacing: .13em;
  }

  .postcard-foot span {
    max-width: 13rem;
  }

  .visual-index {
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
  }

  .visual-action {
    right: 10px;
    bottom: 10px;
    min-height: 38px;
    gap: 11px;
    padding-inline: 11px;
  }
}

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

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

  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .js .tide-postcard[data-reveal],
  .js .tide-postcard[data-reveal].is-visible {
    transform: rotate(1.6deg);
  }
}
