@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Inter+Tight:wght@400;500;600&display=swap");

:root {
  --bg: #080808;
  --panel: #111111;
  --ink: #F3F1EC;
  --muted: rgba(243, 241, 236, .56);
  --soft: rgba(243, 241, 236, .12);
  --paper: #F5F4F0;
  --paper-ink: #111111;
  --rail: clamp(230px, 19vw, 330px);
  --gap: clamp(14px, 1.25vw, 24px);
  --pad: clamp(18px, 2vw, 36px);
}

/* Contact editorial layout */
.contact-page {
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(18px, 2vw, 36px) 7.5vw clamp(34px, 4vw, 72px);
  display: grid;
  grid-template-rows: auto minmax(150px, 1fr) auto;
  gap: clamp(30px, 3.4vw, 66px);
}

.contact-title {
  grid-row: auto;
}

.contact-inquiry {
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(64px, 5vw, 96px) 7.5vw clamp(80px, 6vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(72px, 8vw, 130px);
  background: #fff;
  color: #050505;
}

.contact-inquiry__intro {
  width: min(880px, 58ch);
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
  color: #050505;
}

.contact-inquiry__grid {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(72px, 10vw, 190px);
  align-items: start;
}

.contact-inquiry__identity {
  display: grid;
  gap: clamp(28px, 3vw, 54px);
  color: #111;
}

.contact-inquiry__identity p {
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 2.2vw, 40px);
}

.contact-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.contact-form__field {
  display: grid;
  gap: 10px;
  color: #999;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(11px, .68vw, 14px);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.2;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  padding: 6px 0 12px;
  background: transparent;
  color: #050505;
  font: 400 clamp(16px, 1vw, 20px)/1.35 "Inter Tight", Arial, sans-serif;
  outline: none;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-bottom-color: #050505;
}

.contact-form button {
  width: 100%;
  min-height: 58px;
  border: 0;
  padding: 0 42px;
  background:
    linear-gradient(#050505, #050505) left top / 10px 1px no-repeat,
    linear-gradient(#050505, #050505) left top / 1px 10px no-repeat,
    linear-gradient(#050505, #050505) right top / 10px 1px no-repeat,
    linear-gradient(#050505, #050505) right top / 1px 10px no-repeat,
    linear-gradient(#050505, #050505) left bottom / 10px 1px no-repeat,
    linear-gradient(#050505, #050505) left bottom / 1px 10px no-repeat,
    linear-gradient(#050505, #050505) right bottom / 10px 1px no-repeat,
    linear-gradient(#050505, #050505) right bottom / 1px 10px no-repeat;
  color: #050505;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(11px, .68vw, 14px);
  font-weight: 500;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background-color: #050505;
  color: #fff;
}

@media (max-width: 900px) {
  .contact-page {
    min-height: auto;
    padding: 22px 20px 52px;
    grid-template-rows: auto auto auto;
    gap: clamp(40px, 11vw, 64px);
  }

  .contact-mid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }

  .contact-title {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
  }

  .contact-title h1,
  .contact-title span {
    font-size: clamp(58px, 18vw, 94px);
  }

  .contact-inquiry {
    min-height: auto;
    padding: clamp(76px, 20vw, 112px) 20px clamp(88px, 22vw, 128px);
    gap: clamp(90px, 24vw, 140px);
  }

  .contact-inquiry__intro {
    width: 100%;
    font-size: var(--text-body);
    line-height: var(--leading-body);
  }

  .contact-inquiry__grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .contact-form {
    gap: 28px;
  }

}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  width: 100%;
}

img { height: auto; }

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

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

p + p { margin-top: 1em; }

.photo-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--rail);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 42px;
  padding: var(--pad);
  color: var(--ink);
  background: transparent;
  pointer-events: none;
}

.photo-nav a,
.photo-nav button {
  pointer-events: auto;
}

.photo-brand {
  display: grid;
  gap: 3px;
  width: max-content;
  font-size: clamp(19px, 1.6vw, 27px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.04em;
}

.photo-brand span:last-child {
  color: var(--muted);
}

.photo-nav__links {
  align-self: start;
  display: grid;
  gap: 7px;
  margin-top: min(22vh, 210px);
  width: max-content;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.photo-nav__links a:hover,
.photo-contact a:hover,
.photo-footer a:hover {
  color: var(--ink);
}

.photo-contact {
  display: grid;
  gap: 14px;
  max-width: 190px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.photo-contact strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

.photo-main {
  min-height: 100svh;
  margin-left: var(--rail);
}

.photo-hero {
  min-height: 100svh;
  display: block;
  padding: var(--pad) var(--pad) var(--pad) 0;
}

.photo-hero__image-wrap {
  position: relative;
  min-height: calc(100svh - (var(--pad) * 2));
  width: 100%;
  overflow: hidden;
  background: var(--panel);
}

.photo-hero__image {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.photo-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, .08) 0%, rgba(8, 8, 8, .05) 44%, rgba(8, 8, 8, .62) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, .18) 0%, rgba(8, 8, 8, 0) 42%, rgba(8, 8, 8, .16) 100%);
  pointer-events: none;
}

.photo-hero__aside {
  position: absolute;
  inset: auto var(--pad) clamp(24px, 4vw, 70px) clamp(22px, 3vw, 54px);
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 72px);
  color: var(--ink);
}

.photo-hero__aside h1 {
  max-width: 12ch;
  font-size: clamp(68px, 11.8vw, 244px);
  font-weight: 500;
  line-height: .76;
  letter-spacing: -.095em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, .28);
}

.photo-hero__aside .micro {
  max-width: 210px;
  color: rgba(243, 241, 236, .82);
}

.wide-meta {
  position: absolute;
  z-index: 2;
  top: clamp(18px, 2vw, 34px);
  left: clamp(22px, 3vw, 54px);
  display: grid;
  gap: 4px;
  color: rgba(243, 241, 236, .82);
}

.micro,
.photo-kicker,
.caption,
.meta,
.view-toggle button,
.archive-line span,
.photo-hero__caption {
  color: var(--muted);
  font-size: clamp(12px, .62vw, 15px);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.photo-hero__caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: auto;
  z-index: 2;
  color: rgba(243, 241, 236, .82);
}

.latest {
  padding: clamp(80px, 10vw, 150px) var(--pad) clamp(86px, 10vw, 160px) 0;
}

.latest__head {
  display: grid;
  grid-template-columns: minmax(0, .34fr) minmax(0, 1fr);
  gap: var(--gap);
  margin-bottom: clamp(44px, 6vw, 90px);
  border-top: 1px solid var(--soft);
  padding-top: 18px;
}

.latest__label {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: clamp(32px, 5vw, 92px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.06em;
}

.latest__text {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1.3;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  align-items: end;
}

.work-tile {
  position: relative;
  display: grid;
  gap: 12px;
}

.work-tile img {
  height: 100%;
  object-fit: cover;
  background: var(--panel);
}

.work-tile h2 {
  font-size: clamp(27px, 2.8vw, 56px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.05em;
}

.work-tile p {
  color: var(--muted);
  font-size: 13px;
}

.work-tile--large {
  grid-column: 1 / span 7;
}

.work-tile--large img { aspect-ratio: 4 / 5; }

.work-tile--wide {
  grid-column: 7 / span 6;
  margin-top: 18vh;
}

.work-tile--wide img { aspect-ratio: 16 / 9; }

.work-tile--small {
  grid-column: 3 / span 4;
  margin-top: 10vh;
}

.work-tile--small img { aspect-ratio: 3 / 4; }

.big-footer {
  min-height: 65svh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 34px;
  padding: var(--pad) var(--pad) var(--pad) 0;
  border-top: 1px solid var(--soft);
}

.big-footer__type {
  font-size: clamp(54px, 12vw, 220px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.085em;
}

.photo-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.index-page,
.info-page,
.contact-page,
.project-page {
  min-height: 100svh;
  padding: var(--pad) var(--pad) var(--pad) 0;
}

.index-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  min-height: 45svh;
  padding-bottom: 34px;
}

.index-head h1,
.info-layout h1,
.contact-card h1 {
  max-width: 8ch;
  font-size: clamp(76px, 12vw, 230px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.09em;
}

.view-toggle {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
}

.view-toggle button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.view-toggle button[aria-pressed="true"] {
  color: var(--ink);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}

.archive-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--panel);
}

.archive-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.archive-item:hover img {
  transform: scale(1.025);
}

.archive-item:nth-child(1) {
  grid-column: 1 / span 5;
  aspect-ratio: 4 / 5;
}

.archive-item:nth-child(2) {
  grid-column: 6 / span 7;
  aspect-ratio: 16 / 9;
  margin-top: 9vh;
}

.archive-item:nth-child(3) {
  grid-column: 2 / span 4;
  aspect-ratio: 3 / 4;
  margin-top: 8vh;
}

.archive-item:nth-child(4) {
  grid-column: 8 / span 4;
  aspect-ratio: 1 / 1;
  margin-top: -4vh;
}

.archive-item__label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-size: 12px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .45);
}

.archive-list {
  display: none;
  border-top: 1px solid var(--soft);
}

.archive-line,
.archive-list a {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) minmax(120px, .18fr) 80px;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--soft);
}

.archive-list a {
  font-size: clamp(28px, 4.2vw, 84px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.065em;
}

.archive-list a span:nth-child(1),
.archive-list a span:nth-child(3),
.archive-list a span:nth-child(4) {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.archive-list-mode .archive-grid { display: none; }
body.archive-list-mode .archive-list { display: block; }

.work-page-body {
  background: #fff;
  color: #050505;
  overflow-x: hidden;
}

.work-page {
  min-height: 100svh;
  padding: clamp(18px, 2vw, 34px) 7.35vw 0;
  background: #fff;
}

.work-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(30px, 5vw, 120px);
  color: #111;
  font-size: clamp(12px, .62vw, 15px);
}

.work-top a:hover {
  color: #8f8f8f;
}

.work-top > div:nth-child(2) {
  justify-self: end;
  text-align: right;
}

.work-board {
  padding-top: clamp(58px, 6vw, 112px);
}

.work-board__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
  min-height: clamp(210px, 24vw, 405px);
  margin-bottom: clamp(22px, 3vw, 56px);
}

.work-title-group {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.4vw, 26px);
}

.work-board__head h1,
.work-board__actions > span {
  margin: 0;
  color: #050505;
  font-size: clamp(96px, 12.4vw, 250px);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.085em;
}

.work-board__actions {
  display: grid;
  justify-items: end;
  gap: 0;
}

.work-title-group .view-toggle {
  margin-top: clamp(8px, 1.2vw, 18px);
  padding: 0;
  gap: 8px;
  color: #777;
}

.work-title-group .view-toggle button {
  color: #777;
}

.work-title-group .view-toggle button[aria-pressed="true"] {
  color: #050505;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0;
  row-gap: clamp(62px, 8vw, 136px);
}

.work-card {
  display: block;
  color: #050505;
}

.work-card--wide {
  grid-column: auto;
}

.work-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #fff;
}

.work-card img,
.work-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: none;
  transition: opacity .22s ease, filter .22s ease, transform .75s ease;
}

.work-card:focus-visible img,
.work-card:focus-visible video,
.work-card.is-visible img,
.work-card.is-visible video {
  opacity: 1;
}

.work-card:hover img,
.work-card:hover video {
  opacity: 1;
  filter: grayscale(1);
}

.work-card:hover img,
.work-card:hover video {
  transform: scale(1.015);
}

.work-card__view {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
}

.work-card.is-visible .work-card__view,
.work-card:focus-visible .work-card__view {
  opacity: 0;
}

.work-card:hover .work-card__view,
.work-card:focus-visible .work-card__view {
  opacity: 1;
}

.work-card figure::before,
.work-card figure::after,
.work-card__view::before,
.work-card__view::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.work-card figure::before {
  top: 16px;
  left: 16px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.work-card figure::after {
  top: 16px;
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.work-card__view::before {
  bottom: 16px;
  left: 16px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

.work-card__view::after {
  right: 16px;
  bottom: 16px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.work-card:hover figure::before,
.work-card:hover figure::after,
.work-card:hover .work-card__view::before,
.work-card:hover .work-card__view::after,
.work-card:focus-visible figure::before,
.work-card:focus-visible figure::after,
.work-card:focus-visible .work-card__view::before,
.work-card:focus-visible .work-card__view::after {
  opacity: 1;
}

.work-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 13px 20px 0;
  color: #a8a8a8;
  font-size: clamp(12px, .62vw, 15px);
}

.work-card__meta strong {
  color: #050505;
  font-weight: 600;
}

.work-list {
  display: none;
  position: relative;
  border-top: 1px solid #dedede;
}

.work-list a {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(190px, .2fr) 112px;
  gap: clamp(16px, 2vw, 42px);
  align-items: baseline;
  padding: clamp(24px, 2.6vw, 48px) 0;
  border-bottom: 1px solid #dedede;
  color: #050505;
}

.work-list a span:nth-child(2) {
  font-size: clamp(42px, 5.6vw, 112px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.075em;
}

.work-list a span:not(:nth-child(2)) {
  color: #a8a8a8;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.work-list a:hover span:nth-child(2) {
  color: #777;
}

.work-list__preview {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}

.work-list__preview img,
.work-list__preview video {
  display: none;
}

body.archive-list-mode .work-grid {
  display: none;
}

body.archive-list-mode .work-list {
  display: block;
}

.work-footer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(28px, 7vw, 140px);
  min-height: 100svh;
  margin: clamp(90px, 11vw, 190px) -7.35vw 0;
  padding: 24px 7.35vw 42px;
  color: #050505;
  font-size: clamp(12px, .62vw, 15px);
}

.work-footer > div:nth-child(2) {
  text-align: center;
}

.work-footer > div:nth-child(3) {
  text-align: right;
}

.work-footer__quote {
  position: relative;
  grid-column: 1 / -1;
  align-self: center;
  justify-self: center;
  width: min(560px, 38vw);
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
}

.work-footer__quote p {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(22px, 1.65vw, 38px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.05em;
}

.work-footer__quote::before,
.work-footer__quote::after,
.work-footer__quote span:first-child::before,
.work-footer__quote span:last-child::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.work-footer__quote::before {
  top: 0;
  left: 0;
  border-top: 2px solid #050505;
  border-left: 2px solid #050505;
}

.work-footer__quote::after {
  top: 0;
  right: 0;
  border-top: 2px solid #050505;
  border-right: 2px solid #050505;
}

.work-footer__quote span:first-child::before {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid #050505;
  border-left: 2px solid #050505;
}

.work-footer__quote span:last-child::before {
  right: 0;
  bottom: 0;
  border-right: 2px solid #050505;
  border-bottom: 2px solid #050505;
}

.work-footer nav,
.work-footer > div:nth-last-child(-n + 2) {
  align-self: end;
  display: grid;
  gap: 4px;
}

.work-footer nav {
  grid-column: 1;
}

.work-footer > div:nth-last-child(2) {
  grid-column: 2;
}

.work-footer > div:last-child {
  grid-column: 3;
}

.work-footer nav span,
.work-footer > div:nth-last-child(-n + 2) > span {
  margin-bottom: 18px;
  color: #b9b9b9;
}

.work-footer a:hover {
  color: #8f8f8f;
}

.series-page-body {
  margin: 0;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

.series-page {
  background: #050505;
}

.series-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

.series-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.series-hero--image {
  cursor: auto;
}

.series-hero--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.feira-series-page .series-hero--image img {
  object-position: center 72%;
}

.pescador-series-page .series-hero--image img {
  object-position: center 82%;
}

.series-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .24), rgba(0, 0, 0, .06) 42%, rgba(0, 0, 0, .28));
  pointer-events: none;
}

.series-top,
.series-hero__meta {
  position: relative;
  z-index: 1;
}

.series-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(30px, 5vw, 120px);
  padding: clamp(18px, 2vw, 34px) 7.35vw;
  color: #fff;
}

.series-top a:hover {
  color: rgba(255, 255, 255, .68);
}

.series-top > div:nth-child(2) {
  justify-self: end;
  text-align: right;
}

.series-hero__meta {
  position: absolute;
  right: 7.35vw;
  bottom: clamp(28px, 3vw, 54px);
  left: 7.35vw;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  color: #fff;
}

.series-hero__play {
  position: absolute;
  z-index: 4;
  top: var(--series-cursor-y, 50%);
  left: var(--series-cursor-x, 50%);
  transform: translate(-50%, -50%);
  padding: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .86);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .5);
  pointer-events: none;
}

.series-hero__sound {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(82px, 6.4vw, 122px);
  transform: translateX(-50%);
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .86);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .5);
  cursor: pointer;
}

.series-hero__sound:hover {
  color: #fff;
}

.series-hero {
  cursor: none;
}

.series-sequence {
  display: grid;
  gap: clamp(10px, 1vw, 18px);
  padding: clamp(10px, 1vw, 18px);
  background: #fff;
}

.series-sequence--first {
  padding-top: clamp(56px, 6vw, 116px);
}

.series-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, .8vw, 16px);
}

.series-quad {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(10px, 1vw, 18px);
  height: min(82svh, 940px);
  background: #fff;
}

.series-quad figure {
  margin: 0;
  flex: 0 1 auto;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.series-media-quad {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(10px, 1vw, 18px);
  padding: clamp(10px, 1vw, 18px);
  height: min(82svh, 940px);
  background: #fff;
}

.series-media-quad figure {
  margin: 0;
  flex: 0 1 auto;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.series-pair figure,
.series-wide,
.series-quad figure,
.series-media-quad figure,
.series-duo-wide figure,
.series-media-duo figure,
.series-triptych figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.series-pair img,
.series-quad img,
.series-media-quad img,
.series-media-quad video,
.series-wide img,
.series-duo-wide img,
.series-media-duo img,
.series-media-duo video,
.series-triptych img,
.series-triptych video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.series-quad img {
  width: auto;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.series-media-quad img,
.series-media-quad video {
  width: auto;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.series-media-quad .series-video-frame,
.series-media-quad .series-video-frame video {
  background: #050505;
}

.series-pair figure {
  aspect-ratio: 2 / 2.45;
}

.series-wide {
  aspect-ratio: 16 / 8.8;
}

.series-statement,
.series-text-panel,
.series-credits {
  background: #fff;
  color: #050505;
}

.series-statement {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .42fr);
  gap: clamp(44px, 8vw, 150px);
  align-items: end;
  min-height: 58svh;
  padding: clamp(58px, 5.8vw, 112px) 7.35vw;
}

.series-statement h1 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(70px, 8.25vw, 168px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.09em;
}

.series-statement h1 span,
.series-final-image h2 span {
  display: block;
  white-space: nowrap;
}

.series-statement p,
.series-text-panel p {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(30px, 3.2vw, 64px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.055em;
}

.series-statement p {
  color: #6e6e6e;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(12px, .84vw, 17px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
  max-width: 430px;
}

.series-text-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 460px));
  justify-content: space-between;
  gap: clamp(54px, 13vw, 250px);
  min-height: 52svh;
  padding: clamp(64px, 6.8vw, 132px) 7.35vw;
  align-items: center;
}

.series-text-panel p {
  margin: 0 0 1.15em;
  color: #2c2c2c;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(11px, .72vw, 14px);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0;
}

.series-text-panel p:last-child {
  margin-bottom: 0;
}

.series-text-panel--single {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  column-gap: clamp(56px, 14vw, 260px);
  min-height: auto;
  padding-top: clamp(76px, 6.4vw, 124px);
  padding-bottom: clamp(76px, 6.4vw, 124px);
  text-align: left;
  align-items: start;
}

.series-text-panel__copy {
  width: min(430px, 100%);
  max-width: 430px;
  grid-column: 1;
}

.series-text-panel--single p {
  width: auto;
  max-width: none;
  margin: 0 0 .68em;
}

.series-text-panel--single p:last-child {
  margin-bottom: 0;
}

.series-duo-wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
  padding: clamp(10px, 1vw, 18px);
  background: #fff;
}

.series-duo-wide figure {
  aspect-ratio: 16 / 9.3;
}

.series-media-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(10px, 1vw, 18px);
  padding: clamp(10px, 1vw, 18px);
  background: #fff;
}

.series-media-duo figure {
  aspect-ratio: 16 / 10.5;
}

.series-media-duo figure:first-child img {
  object-position: center 42%;
}

.series-video-frame {
  background: #050505;
}

.series-video-frame video {
  object-fit: cover;
  background: #050505;
}

.series-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, .8vw, 16px);
  padding: clamp(8px, .8vw, 16px);
  background: #fff;
}

.series-triptych figure {
  aspect-ratio: 4 / 5.2;
}

.series-triptych figure:nth-child(2) {
  aspect-ratio: 4 / 5;
}

.bromo-series-page {
  --bromo-frame: clamp(10px, 1vw, 18px);
}

.bromo-work-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
  padding: var(--bromo-frame);
  background: #fff;
}

.bromo-work-duo figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fff;
}

.bromo-work-duo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bromo-wide-sequence {
  padding: var(--bromo-frame);
}

.bromo-wide-sequence .series-wide {
  aspect-ratio: 16 / 8.8;
}

.bromo-series-page .series-statement {
  grid-template-columns: minmax(0, .82fr) minmax(320px, .42fr);
  gap: clamp(28px, 5vw, 96px);
  padding-inline: var(--bromo-frame);
}

.bromo-series-page .series-statement p {
  max-width: 430px;
}

.bromo-series-page .series-sequence {
  padding: var(--bromo-frame);
}

.bromo-series-page .series-triptych {
  padding: var(--bromo-frame);
}

.bromo-vertical-triptych figure,
.bromo-vertical-triptych figure:nth-child(2) {
  aspect-ratio: 4 / 5.2;
}

.dono-jogo-series-page .bromo-vertical-triptych figure,
.dono-jogo-series-page .bromo-vertical-triptych figure:nth-child(2) {
  aspect-ratio: 2 / 3;
}

.dono-jogo-photo-02 {
  object-position: center top;
}

.bromo-text-panel {
  grid-template-columns: minmax(420px, 620px) minmax(0, 1fr);
  padding-inline: var(--bromo-frame);
}

.bromo-text-panel .series-text-panel__copy {
  width: min(620px, 100%);
  max-width: 620px;
  grid-column: 1;
  justify-self: start;
}

.bromo-text-panel p {
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(17px, 1.02vw, 23px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.018em;
}

.bromo-next {
  padding: clamp(112px, 12vw, 220px) clamp(28px, 3vw, 56px) clamp(74px, 7vw, 132px);
  background: #fff;
  color: #050505;
}

.bromo-next__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(34px, 4vw, 70px);
}

.bromo-next__head h2,
.bromo-next__head > span {
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(96px, 12.4vw, 250px);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.085em;
}

.bromo-next__head > span {
  justify-self: end;
  transform: translateX(-.06em);
}

.bromo-next__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
}

.bromo-next__card {
  display: grid;
  gap: 13px;
  color: #050505;
}

.bromo-next__card figure {
  margin: 0;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  background: #eee;
}

.bromo-next__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .25s ease, transform .35s ease;
}

.bromo-next__card:hover img,
.bromo-next__card:focus-visible img {
  filter: grayscale(0);
  transform: scale(1.015);
}

.bromo-next__card div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  color: #9b9b9b;
}

.bromo-next__card strong {
  color: #050505;
  font-weight: 600;
}

.series-credits {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(310px, .36fr);
  justify-content: space-between;
  gap: clamp(40px, 10vw, 190px);
  min-height: 42svh;
  padding: clamp(54px, 5.5vw, 104px) 7.35vw;
  align-items: center;
}

.series-credits h2 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(58px, 6.2vw, 128px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.09em;
}

.series-credits p {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(11px, .72vw, 14px);
  line-height: 1.38;
  letter-spacing: 0;
}

.series-credits dl {
  display: grid;
  gap: clamp(18px, 1.6vw, 32px);
  margin: 0;
}

.series-credits dt,
.series-credits a {
  color: #b0b0b0;
}

.series-credits dd {
  margin: 6px 0 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(15px, 1vw, 22px);
  line-height: 1;
  letter-spacing: -.035em;
}

.series-credits a {
  grid-column: 1 / -1;
  align-self: end;
  width: max-content;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.series-credits a:hover {
  color: #050505;
}

.series-final-image {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

.series-final-image img {
  width: 100%;
  height: 100svh;
  display: block;
  object-fit: cover;
  object-position: center 46%;
}

.series-final-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, .54), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.series-final-image h2 {
  position: absolute;
  z-index: 1;
  left: 7.35vw;
  bottom: clamp(34px, 4vw, 74px);
  max-width: 78vw;
  margin: 0;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(70px, 8.25vw, 168px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.09em;
}

.series-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
  padding: clamp(10px, 1vw, 18px) clamp(10px, 1vw, 18px) clamp(74px, 7vw, 132px);
  background: #fff;
  color: #050505;
}

.series-next a {
  display: grid;
  gap: 10px;
}

.series-next figure {
  margin: 0;
  aspect-ratio: 16 / 9.3;
  overflow: hidden;
  background: #eee;
}

.series-next img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .25s ease, transform .35s ease;
}

.series-next a:hover img {
  filter: grayscale(0);
  transform: scale(1.015);
}

.series-next div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #050505;
}

.series-next span {
  color: #a7a7a7;
}

.series-closing {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(28px, 7vw, 140px);
  min-height: 100svh;
  padding: 24px 7.35vw 42px;
  background: #fff;
  color: #050505;
}

.series-closing > div:nth-child(2) {
  text-align: center;
}

.series-closing > div:nth-child(3) {
  text-align: right;
}

.series-closing__quote {
  position: relative;
  grid-column: 1 / -1;
  align-self: center;
  justify-self: center;
  width: min(560px, 38vw);
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
}

.series-closing__quote p {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(22px, 1.55vw, 34px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
}

.series-closing__quote::before,
.series-closing__quote::after,
.series-closing__quote span:first-child::before,
.series-closing__quote span:last-child::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.series-closing__quote::before {
  top: 0;
  left: 0;
  border-top: 2px solid #050505;
  border-left: 2px solid #050505;
}

.series-closing__quote::after {
  top: 0;
  right: 0;
  border-top: 2px solid #050505;
  border-right: 2px solid #050505;
}

.series-closing__quote span:first-child::before {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid #050505;
  border-left: 2px solid #050505;
}

.series-closing__quote span:last-child::before {
  right: 0;
  bottom: 0;
  border-right: 2px solid #050505;
  border-bottom: 2px solid #050505;
}

.series-closing nav,
.series-closing > div:nth-last-child(-n + 2) {
  align-self: end;
  display: grid;
  gap: 4px;
}

.series-closing nav {
  grid-column: 1;
}

.series-closing > div:nth-last-child(2) {
  grid-column: 2;
}

.series-closing > div:last-child {
  grid-column: 3;
}

.series-closing nav span,
.series-closing > div:nth-last-child(-n + 2) > span {
  margin-bottom: 18px;
  color: #b9b9b9;
}

.series-closing a:hover {
  color: #8f8f8f;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(260px, .36fr);
  gap: var(--gap);
  min-height: calc(100svh - (var(--pad) * 2));
}

.project-hero__media img {
  max-height: calc(100svh - (var(--pad) * 2));
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.project-hero__title {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 22px;
}

.project-hero__title h1 {
  max-width: 7ch;
  font-size: clamp(58px, 8vw, 142px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.085em;
}

.photo-sequence {
  padding: clamp(90px, 10vw, 160px) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}

.story-grid img {
  max-height: 92svh;
  object-fit: contain;
  background: var(--panel);
}

.span-12 { grid-column: 1 / -1; }
.span-10 { grid-column: 2 / span 10; }
.span-8 { grid-column: 3 / span 8; }
.span-left-5 { grid-column: 1 / span 5; }
.span-right-5 { grid-column: 8 / span 5; }
.span-left-6 { grid-column: 1 / span 6; }
.span-right-6 { grid-column: 7 / span 6; }
.span-left-4 { grid-column: 2 / span 4; }
.span-right-text { grid-column: 8 / span 4; align-self: end; }

.editorial-note,
.text-block {
  background: var(--paper);
  color: var(--paper-ink);
  padding: clamp(28px, 4vw, 58px);
  font-size: clamp(20px, 2vw, 33px);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.text-block {
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.42;
}

.series-credit {
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: var(--pad);
  text-align: center;
}

.series-credit h2 {
  font-size: clamp(50px, 8vw, 146px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.085em;
}

.series-credit p {
  margin-top: 20px;
  color: var(--muted);
}

.next-story {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, .38fr);
  gap: var(--gap);
  min-height: 100svh;
  padding-right: var(--pad);
}

.next-story img {
  height: calc(100svh - (var(--pad) * 2));
  object-fit: cover;
}

.next-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 18px;
}

.next-story h2 {
  font-size: clamp(58px, 7vw, 130px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.085em;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, .46fr) minmax(0, 1fr);
  gap: var(--gap);
  min-height: calc(100svh - (var(--pad) * 2));
  align-items: end;
}

.info-image img {
  height: calc(100svh - (var(--pad) * 2));
  object-fit: cover;
}

.info-copy {
  max-width: 820px;
  font-size: clamp(24px, 2.8vw, 52px);
  line-height: .98;
  letter-spacing: -.055em;
}

.info-meta,
.contact-links {
  margin-top: 44px;
  display: grid;
  gap: 9px;
  color: var(--muted);
}

.contact-main {
  background: #fff;
  color: #050505;
}

.contact-page {
  min-height: 118svh;
  padding: clamp(18px, 2vw, 36px) 7.5vw clamp(110px, 12vw, 220px);
  display: grid;
  grid-template-rows: auto minmax(0, .62fr) auto minmax(96px, .38fr);
  gap: clamp(36px, 5vw, 90px);
  background: #fff;
  color: #050505;
}

.contact-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6.8vw, 142px);
  color: #111;
  font-size: clamp(13px, .76vw, 16px);
  font-weight: 600;
  line-height: 1.12;
}

.contact-mid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: clamp(32px, 6.8vw, 142px);
  color: #111;
  font-size: clamp(13px, .76vw, 16px);
  font-weight: 600;
  line-height: 1.12;
}

.contact-top a:hover,
.contact-mid a:hover {
  color: #9a9a9a;
}

.contact-top > div:nth-child(2) {
  justify-self: end;
  text-align: right;
}

.contact-mid {
  align-self: center;
}

.contact-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  grid-row: 3;
}

.contact-title h1,
.contact-title span {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(112px, 10vw, 220px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.075em;
}

.contact-photo-wide {
  width: 100%;
  min-height: 100svh;
  background: #fff;
}

.contact-photo-wide img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  :root {
    --rail: 0px;
    --pad: 18px;
  }

  .photo-nav {
    position: fixed;
    inset: 0 0 auto 0;
    width: auto;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(8, 8, 8, .72), rgba(8, 8, 8, 0));
  }

  .photo-contact { display: none; }

  .photo-brand {
    font-size: 17px;
  }

  .photo-nav__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 0;
    font-size: 10px;
  }

  .photo-main {
    margin-left: 0;
  }

  .photo-hero,
  .latest__head,
  .latest-grid,
  .archive-grid,
  .project-hero,
  .story-grid,
  .next-story,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .photo-hero {
    padding: 88px var(--pad) var(--pad);
  }

  .photo-hero__image-wrap {
    min-height: 65svh;
  }

  .photo-hero__aside h1 {
    max-width: 10ch;
    font-size: clamp(68px, 22vw, 124px);
  }

  .latest,
  .index-page,
  .info-page,
  .project-page {
    padding-left: var(--pad);
  }

  .contact-page {
    min-height: 108svh;
    padding: 22px 18px 82px;
    grid-template-rows: auto minmax(0, .52fr) auto minmax(70px, .48fr);
    gap: 52px;
  }

  .contact-top,
  .contact-mid {
    grid-template-columns: 1fr;
    gap: 18px;
    font-size: clamp(12px, 3vw, 14px);
  }

  .contact-top > div,
  .contact-mid > div {
    justify-self: start;
    text-align: left;
  }

  .contact-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-title h1,
  .contact-title span {
    font-size: clamp(72px, 19vw, 118px);
  }

  .contact-photo-wide,
  .contact-photo-wide img {
    min-height: 72svh;
    height: 72svh;
  }

  .work-tile,
  .work-tile--large,
  .work-tile--wide,
  .work-tile--small,
  .archive-item,
  .archive-item:nth-child(n),
  .project-hero__media,
  .project-hero__title,
  .span-12,
  .span-10,
  .span-8,
  .span-left-5,
  .span-right-5,
  .span-left-6,
  .span-right-6,
  .span-left-4,
  .span-right-text {
    grid-column: 1;
    margin-top: 0;
  }

  .index-head {
    min-height: 34svh;
    padding-top: 84px;
  }

  .archive-list a {
    grid-template-columns: 40px 1fr;
  }

  .archive-list a span:nth-child(3),
  .archive-list a span:nth-child(4) {
    grid-column: 2;
  }

  .project-page {
    padding-top: 88px;
  }

  .project-hero__media img,
  .next-story img,
  .info-image img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .big-footer,
  .series-credit,
  .next-story {
    min-height: auto;
    padding: 90px var(--pad) var(--pad);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .archive-item img,
  .work-tile img { transition: none; }
  .archive-item:hover img,
  .work-tile:hover img { transform: none; }
}

/* Photography home: first session based on the wide hero reference. */
.photo-home .photo-nav {
  display: none;
}

.photo-home .photo-main {
  margin-left: 0;
}

.photo-home .latest,
.photo-home .big-footer {
  margin-left: var(--rail);
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #080808;
  color: #f4f0e7;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .04) 28%, rgba(0, 0, 0, .03) 62%, rgba(0, 0, 0, .32) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, .16));
  pointer-events: none;
}

.home-hero__slides,
.home-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__slide {
  opacity: 0;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  transition: opacity 1200ms ease, transform 5200ms ease;
}

.home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero__slide--feira {
  object-position: center bottom;
}

.latest-card__image--feira {
  object-position: center bottom;
}

.home-hero__slide--pescador,
.latest-card__image--pescador {
  object-position: center 82%;
}

.home-hero__project-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.photo-home .micro,
.home-hero .micro {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, .54vw, 13px);
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.18;
  text-transform: uppercase;
}

.home-hero__top,
.home-hero__horizon,
.home-hero__scroll {
  position: absolute;
  z-index: 3;
  color: rgba(244, 240, 231, .92);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .45);
  font-size: clamp(10px, .54vw, 13px);
  font-weight: 600;
}

.home-hero__top {
  top: clamp(18px, 2.15vw, 42px);
  left: 12.5vw;
  right: 12.5vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(28px, 5vw, 120px);
  align-items: start;
}

.home-hero__top a {
  color: inherit;
}

.home-hero__top a:hover {
  color: #fff;
}

.home-hero__top > div:nth-child(2) {
  justify-self: end;
  text-align: right;
}

.home-hero__horizon {
  top: 49.5svh;
  left: 12.5vw;
  right: 12.5vw;
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  column-gap: clamp(28px, 5vw, 120px);
  align-items: center;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(11px, .58vw, 14px);
}

.photo-home .home-hero__top,
.photo-home .home-hero__scroll {
  font-size: clamp(10px, .54vw, 13px);
  color: rgba(244, 240, 231, .94);
}

.photo-home .home-hero__horizon {
  font-size: clamp(11px, .58vw, 14px);
  color: rgba(255, 255, 255, .98);
}

.home-hero__scroll {
  left: 50%;
  bottom: clamp(16px, 2vw, 34px);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .78);
}

.home-hero__play {
  position: absolute;
  z-index: 4;
  top: var(--video-cursor-y, 50%);
  left: var(--video-cursor-x, 50%);
  transform: translate(-50%, -50%);
  padding: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .48);
  pointer-events: none;
}

.home-hero__play[hidden] {
  display: none;
}

.home-hero.is-video-active {
  cursor: none;
}

.photo-about .photo-nav {
  display: none;
}

.photo-about .photo-main {
  margin-left: 0;
}

.about-quote {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(48px, 5vw, 96px) 8.35vw;
  background: #fff;
  color: #050505;
}

.about-quote__frame {
  position: relative;
  width: min(920px, 64vw);
  min-height: clamp(170px, 14vw, 300px);
  display: grid;
  place-items: center;
  text-align: center;
}

.about-quote__frame p {
  max-width: min(720px, 44vw);
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(24px, 2.1vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.02em;
}

.about-quote--mother .about-quote__frame {
  width: min(1040px, 72vw);
  min-height: clamp(260px, 20vw, 420px);
}

.about-quote--mother .about-quote__frame p {
  max-width: min(500px, 34vw);
  font-size: clamp(20px, 1.55vw, 34px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.018em;
}

.about-quote--text .about-quote__frame {
  width: min(1480px, 88vw);
  min-height: clamp(390px, 36vw, 660px);
}

.about-quote--text .about-quote__manifesto {
  max-width: min(1040px, 62vw);
}

.about-quote--text .about-quote__manifesto p {
  max-width: none;
  color: #555;
  font-size: clamp(18px, 1.22vw, 28px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: .004em;
  text-transform: uppercase;
}

.about-quote--text .about-quote__manifesto p + p {
  margin-top: clamp(16px, 1.2vw, 26px);
}

.about-quote__frame > span {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-quote__frame::before,
.about-quote__frame::after,
.about-quote__frame span:first-child::before,
.about-quote__frame span:last-child::before {
  content: "";
  position: absolute;
  width: clamp(13px, 1vw, 20px);
  height: clamp(13px, 1vw, 20px);
  border-color: #111;
  border-style: solid;
}

.about-quote__frame::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.about-quote__frame::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.about-quote__frame span:first-child::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.about-quote__frame span:last-child::before {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
}

.about-wide-photo {
  height: 100svh;
  overflow: hidden;
  background: #050505;
}

.about-wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-portrait-manifesto {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  align-items: stretch;
  gap: 0;
  padding: 0 8.35vw 0 0;
  background: #fff;
  color: #050505;
}

.about-portrait-manifesto figure {
  margin: 0;
  align-self: stretch;
  overflow: hidden;
  background: #050505;
}

.about-portrait-manifesto img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center center;
}

.about-portrait-manifesto p {
  align-self: end;
  max-width: min(720px, 34vw);
  margin: 0 0 clamp(34px, 4vw, 84px) clamp(46px, 5vw, 104px);
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(20px, 1.5vw, 32px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.018em;
  text-align: left;
  text-transform: uppercase;
}

.about-editorial {
  min-height: clamp(980px, 118svh, 1320px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(72px, 6.4vw, 120px) 6.4vw clamp(112px, 10vw, 200px);
  background: #fff;
  color: #050505;
}

.about-editorial h1 {
  align-self: center;
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(96px, 12.4vw, 250px);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.085em;
  white-space: nowrap;
}

.about-editorial h1 span {
  display: inline-block;
  margin-left: .035em;
  font-size: 1em;
  line-height: 1;
  transform: translateY(-.04em);
}

.about-editorial__columns {
  display: grid;
  grid-template-columns: minmax(420px, 620px) minmax(420px, 620px);
  justify-content: space-between;
  gap: clamp(80px, 13vw, 260px);
  width: 100%;
  align-self: stretch;
  margin-top: clamp(170px, 15vw, 280px);
}

.about-editorial__columns p {
  margin: 0;
}

.about-editorial__columns > div > p:not(.about-editorial__label) {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(17px, 1.02vw, 23px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.018em;
  text-transform: none;
  color: #050505;
}

.about-editorial__columns > div:last-child {
  text-align: left;
}

.about-editorial__label {
  margin-bottom: clamp(18px, 1.6vw, 30px) !important;
  color: #8a8a8a;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, .78vw, 16px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-identity {
  min-height: 112svh;
  display: grid;
  grid-template-rows: 1fr;
  align-content: center;
  place-items: center;
  padding: clamp(72px, 6vw, 120px) 5.2vw;
  background: #fff;
  color: #050505;
}

.about-identity__top {
  text-align: center;
  color: #111;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, .78vw, 16px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-identity__top p,
.about-identity__horizon span,
.about-identity__columns p {
  margin: 0;
}

.about-identity__horizon {
  display: flex;
  justify-content: center;
  align-self: center;
  justify-self: center;
  width: 100%;
  margin-left: 0;
  color: #111;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(16px, 1vw, 22px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1;
  text-transform: uppercase;
}

.about-identity__horizon span:nth-child(1),
.about-identity__horizon span:nth-child(3) {
  display: none;
}

.about-identity__horizon span:nth-child(2) {
  text-align: center;
}

.about-identity__brand {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 92vw;
  margin-inline: auto;
  text-align: center;
  left: auto;
  transform: none;
  font-size: clamp(78px, 10.6vw, 210px);
  font-weight: 400;
  letter-spacing: -.085em;
  line-height: .72;
  white-space: nowrap;
}

.about-identity__brand small {
  display: block;
  width: 100%;
  margin-top: clamp(12px, 1.1vw, 24px);
  margin-left: 0;
  margin-right: 0;
  padding-right: 0;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, .62vw, 13px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.2;
  text-align: right;
}

.about-identity__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: clamp(64px, 8vw, 160px);
  align-items: start;
  align-self: end;
  margin-top: clamp(70px, 7vw, 150px);
  text-align: center;
  color: #111;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, .78vw, 16px);
  font-weight: 500;
  letter-spacing: .025em;
  line-height: 1.42;
}

.about-identity__label {
  margin-bottom: clamp(14px, 1.2vw, 24px) !important;
  color: #9a9a9a;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-screen {
  min-height: clamp(680px, 82svh, 900px);
  display: grid;
  grid-template-rows: auto auto;
  align-content: space-between;
  row-gap: clamp(52px, 6vw, 104px);
  padding: clamp(36px, 4vw, 76px) 8.35vw clamp(34px, 3.6vw, 70px);
  background: #fff;
  color: #050505;
}

.about-screen__grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr 1fr;
  column-gap: clamp(58px, 8vw, 180px);
  align-items: start;
  color: #111;
}

.about-screen__grid p {
  margin: 0;
}

.about-screen__grid p + p {
  margin-top: clamp(34px, 3.4vw, 70px);
}

.about-screen__label {
  margin-bottom: clamp(24px, 2vw, 42px) !important;
  color: #a7a7a7;
}

.about-screen strong {
  font-weight: 600;
}

.photo-about .micro {
  color: #111;
  opacity: 1;
}

.photo-about .about-screen__label {
  color: #aaa;
}

.about-screen__base {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.about-screen__base h1 {
  font-size: clamp(112px, 13vw, 270px);
  font-weight: 400;
  line-height: .74;
  letter-spacing: -.08em;
}

.about-screen__base span {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(120px, 11vw, 230px);
  font-weight: 400;
  line-height: .7;
}

.motion-screen {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
  color: #f7f5ef;
}

.motion-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .04) 38%, rgba(0, 0, 0, .18)),
    linear-gradient(90deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, .18));
  pointer-events: none;
}

.motion-screen__video {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center center;
}

.motion-screen__label {
  position: absolute;
  z-index: 2;
  top: clamp(24px, 3vw, 58px);
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(22px, 1.45vw, 34px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 20px rgba(0, 0, 0, .42);
}

.motion-screen__label--left {
  left: 7.5vw;
}

.motion-screen__label--right {
  right: 7.5vw;
  text-align: right;
}

.motion-screen__sound {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(22px, 2.8vw, 54px);
  transform: translateX(-50%);
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .5);
  cursor: pointer;
}

.motion-screen__sound:hover {
  color: #fff;
}

.narrative-screen {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: space-between;
  gap: clamp(38px, 5vw, 86px);
  padding: clamp(58px, 5.4vw, 108px) 0 clamp(52px, 5vw, 98px);
  background: #fff;
  color: #050505;
}

.narrative-screen h2 {
  width: min(900px, 48vw);
  justify-self: center;
  text-align: center;
  font-size: clamp(27px, 2vw, 46px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.055em;
}

.narrative-screen__columns {
  display: grid;
  grid-template-columns: minmax(280px, 620px) minmax(280px, 620px);
  justify-content: space-between;
  gap: clamp(40px, 10vw, 220px);
  padding: 0 8.35vw;
  color: #111;
}

.narrative-screen__columns > div:last-child {
  text-align: right;
}

.narrative-screen__label {
  margin: 0 0 clamp(18px, 1.6vw, 34px);
  color: #b0b0b0;
}

.narrative-screen__columns p,
.series-marquee p {
  margin: 0;
}

.series-marquee {
  overflow: hidden;
  width: 100%;
  padding: clamp(12px, 1.2vw, 24px) 0;
}

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

.series-marquee__item {
  position: relative;
  display: block;
  flex: 0 0 clamp(300px, 23vw, 520px);
  height: clamp(150px, 15vw, 300px);
  overflow: hidden;
  background: #fff;
}

.series-marquee__item img {
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(1);
  transition: opacity 240ms ease, filter 240ms ease;
}

.series-marquee__item:hover img,
.series-marquee__item:focus-visible img {
  opacity: 1;
}

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

.brand-screen {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.brand-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0) 68%, rgba(0, 0, 0, .48)),
    linear-gradient(90deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0) 26%, rgba(0, 0, 0, 0) 74%, rgba(0, 0, 0, .1));
  pointer-events: none;
}

.brand-screen__image {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center center;
}

.brand-screen__brand {
  position: absolute;
  z-index: 2;
  right: 7.5vw;
  bottom: clamp(24px, 2.8vw, 54px);
  display: grid;
  justify-items: end;
  gap: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(92px, 13vw, 260px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.08em;
  text-align: right;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 2px 28px rgba(0, 0, 0, .34);
  white-space: nowrap;
}

.brand-screen__brand span {
  display: block;
}

.closing-footer {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 2vw, 36px) 8.35vw clamp(28px, 3vw, 58px);
  background: #fff;
  color: #050505;
}

.closing-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: #9f9f9f;
  font-size: clamp(13px, .76vw, 16px);
  font-weight: 600;
  line-height: 1.1;
}

.closing-footer__top span:nth-child(2) {
  justify-self: center;
}

.closing-footer__top span:nth-child(3) {
  justify-self: end;
}

.closing-footer__quote {
  align-self: center;
  justify-self: center;
  position: relative;
  width: min(760px, 44vw);
  min-height: 172px;
  display: grid;
  place-items: center;
  text-align: center;
}

.closing-footer__quote p {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(30px, 1.8vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.03em;
}

.closing-footer__quote > span {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.closing-footer__quote::before,
.closing-footer__quote::after,
.closing-footer__quote span:first-child::before,
.closing-footer__quote span:last-child::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #111;
  border-style: solid;
}

.closing-footer__quote::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.closing-footer__quote::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.closing-footer__quote span:first-child::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.closing-footer__quote span:last-child::before {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
}

.closing-footer__bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: clamp(32px, 6.8vw, 142px);
  align-items: end;
  color: #111;
  font-size: clamp(13px, .76vw, 16px);
  font-weight: 600;
  line-height: 1.18;
}

.closing-footer__bottom p {
  margin: 0 0 20px;
  color: #9f9f9f;
}

.closing-footer__bottom a:hover {
  color: #9a9a9a;
}

.closing-footer__button {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #111;
}

.closing-footer--compact {
  min-height: clamp(360px, 46svh, 620px);
  grid-template-rows: auto 1fr;
}

.closing-footer--compact .closing-footer__bottom {
  align-self: end;
}

.photo-home .latest-showcase {
  min-height: 100svh;
  margin-left: 0;
  padding: clamp(18px, 2vw, 36px) 7.5vw clamp(72px, 8vw, 130px);
  background: #fff;
  color: #050505;
}

.latest-showcase__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 120px);
  color: #171717;
  font-size: clamp(12px, .62vw, 15px);
}

.latest-showcase__top a:hover {
  color: #8f8f8f;
}

.latest-showcase__top > div:nth-child(2) {
  justify-self: end;
  text-align: right;
}

.latest-showcase__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-top: clamp(70px, 7vw, 116px);
  margin-bottom: clamp(56px, 7vw, 116px);
}

.latest-showcase__head h2,
.latest-showcase__head span {
  font-size: clamp(92px, 12.2vw, 250px);
  font-weight: 400;
  line-height: .74;
  letter-spacing: -.08em;
}

.latest-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0;
  row-gap: clamp(58px, 6vw, 110px);
  align-items: start;
}

.latest-card {
  display: grid;
  gap: 13px;
  color: #111;
}

.latest-card--one,
.latest-card--two,
.latest-card--three,
.latest-card--four {
  grid-column: auto;
  min-width: 0;
  width: 100%;
}

.latest-card figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #fff;
}

.latest-card img,
.latest-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(0);
  transition: opacity 420ms ease, filter 220ms ease;
}

.latest-card.is-revealed img,
.latest-card.is-revealed video {
  opacity: 1;
}

.latest-card:hover img,
.latest-card:hover video,
.latest-card:focus-visible img,
.latest-card:focus-visible video {
  filter: grayscale(1);
}

.latest-card__view {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, .86);
  opacity: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .42);
  transition: opacity 180ms ease;
}

.latest-card:hover .latest-card__view,
.latest-card:focus-visible .latest-card__view {
  opacity: 1;
}

.latest-card figure::before,
.latest-card figure::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.latest-card figure::before {
  top: 14px;
  left: 14px;
  border-top: 2px solid rgba(255, 255, 255, .72);
  border-left: 2px solid rgba(255, 255, 255, .72);
  box-shadow:
    calc(100vw) 0 0 -10px transparent;
}

.latest-card figure::after {
  right: 14px;
  bottom: 14px;
  border-right: 2px solid rgba(255, 255, 255, .72);
  border-bottom: 2px solid rgba(255, 255, 255, .72);
}

.latest-card:hover figure::before,
.latest-card:hover figure::after,
.latest-card:focus-visible figure::before,
.latest-card:focus-visible figure::after {
  opacity: 1;
}

.latest-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 0 clamp(10px, .8vw, 18px);
  color: #111;
  font-size: clamp(12px, .62vw, 15px);
}

.latest-card__meta strong {
  font-weight: 600;
}

.latest-card__meta span:first-child {
  color: #111;
}

.latest-card__meta span:last-child,
.latest-card__meta br + * {
  color: #9b9b9b;
}

@media (max-width: 900px) {
  .about-quote {
    min-height: 84svh;
    padding: 48px 18px;
    overflow: hidden;
  }

  .about-quote__frame,
  .about-quote--text .about-quote__frame {
    width: min(100%, 430px);
    min-height: 190px;
  }

  .about-quote__frame p,
  .about-quote--text .about-quote__frame p {
    max-width: calc(100% - 70px);
    font-size: clamp(19px, 5.2vw, 30px);
  }

  .about-quote--text .about-quote__frame {
    width: min(100%, 680px);
    min-height: 420px;
  }

  .about-quote--text .about-quote__manifesto {
    max-width: calc(100% - 54px);
  }

  .about-quote--text .about-quote__manifesto p {
    font-size: clamp(16px, 4.4vw, 24px);
    line-height: 1.12;
    letter-spacing: .004em;
  }

  .about-quote--text .about-quote__manifesto p + p {
    margin-top: 18px;
  }

  .about-wide-photo {
    height: 72svh;
  }

  .about-portrait-manifesto {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
    padding: 0 18px 82px;
    overflow: hidden;
  }

  .about-portrait-manifesto figure {
    width: min(82vw, 380px);
    min-height: 0;
  }

  .about-portrait-manifesto img {
    min-height: 0;
    aspect-ratio: 4 / 5.4;
  }

  .about-portrait-manifesto p {
    max-width: calc(100vw - 36px);
    margin: 0;
    font-size: clamp(21px, 6vw, 32px);
    line-height: 1.02;
  }

  .about-editorial {
    min-height: auto;
    padding: 86px 18px 112px;
    gap: 104px;
    overflow: hidden;
  }

  .about-editorial h1 {
    font-size: clamp(76px, 22vw, 128px);
  }

  .about-editorial h1 span {
    margin-left: .035em;
    font-size: 1em;
  }

  .about-editorial__columns {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-editorial__columns > div > p:not(.about-editorial__label) {
    font-size: clamp(24px, 7vw, 38px);
    line-height: 1.08;
  }

  .about-editorial__label {
    font-size: 14px;
    margin-bottom: 22px !important;
  }

  .about-editorial__columns > div:last-child {
    text-align: left;
  }

  .about-identity {
    min-height: 100svh;
    padding: 84px 18px;
    gap: 96px;
    overflow: hidden;
  }

  .about-identity__top,
  .about-identity__horizon {
    font-size: 14px;
  }

  .about-identity__top {
    font-size: 13px;
  }

  .about-identity__horizon {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-identity__horizon span:nth-child(2),
  .about-identity__horizon span:nth-child(3) {
    justify-self: center;
    text-align: center;
  }

  .about-identity__brand {
    font-size: clamp(60px, 17.5vw, 108px);
  }

  .about-identity__brand small {
    width: 100%;
    margin-top: 18px;
    margin-left: 0;
    text-align: center;
    font-size: 11px;
  }

  .closing-footer--compact {
    min-height: auto;
  }

  .about-screen {
    min-height: auto;
    padding: 28px 18px 44px;
  }

  .about-screen__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .about-screen__base {
    margin-top: 80px;
  }

  .about-screen__base h1 {
    font-size: clamp(78px, 24vw, 132px);
  }

  .about-screen__base span {
    font-size: clamp(86px, 22vw, 132px);
  }

  .motion-screen__label {
    top: 22px;
    font-size: 20px;
  }

  .motion-screen__label--left {
    left: 18px;
  }

  .motion-screen__label--right {
    right: 18px;
  }

  .narrative-screen {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .narrative-screen h2 {
    width: auto;
    padding: 0 18px;
    font-size: clamp(26px, 7vw, 42px);
  }

  .narrative-screen__columns {
    grid-template-columns: 1fr;
    padding: 0 18px;
    gap: 38px;
  }

  .narrative-screen__columns > div:last-child {
    text-align: left;
  }

  .series-marquee {
    overflow-x: auto;
  }

  .series-marquee__track {
    animation: none;
  }

  .series-marquee__item {
    flex-basis: 72vw;
  }

  .brand-screen__brand {
    right: 18px;
    gap: 0;
    font-size: clamp(56px, 16vw, 116px);
    line-height: .95;
    letter-spacing: -.075em;
  }

  .closing-footer {
    min-height: 100svh;
    padding: 22px 18px 30px;
  }

  .closing-footer__top {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .closing-footer__top span:nth-child(2),
  .closing-footer__top span:nth-child(3) {
    justify-self: start;
  }

  .closing-footer__quote {
    width: min(100%, 360px);
    min-height: 104px;
  }

  .closing-footer__quote p {
    font-size: clamp(24px, 6.6vw, 36px);
  }

  .closing-footer__bottom {
    grid-template-columns: 1fr;
    gap: 32px 24px;
  }

  .closing-footer__bottom p {
    margin-bottom: 14px;
  }

  .closing-footer__bottom a,
  .closing-footer__bottom span,
  .work-footer a,
  .series-closing a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .photo-home .latest,
  .photo-home .big-footer {
    margin-left: 0;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero__top {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
  }

  .home-hero__top > div:nth-child(2) {
    justify-self: end;
    text-align: right;
  }

  .home-hero__horizon {
    top: auto;
    bottom: 78px;
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr auto;
    row-gap: 12px;
  }

  .home-hero__horizon span:nth-child(2) {
    justify-self: end;
    text-align: right;
  }

  .home-hero__horizon span:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: end;
    text-align: right;
  }

  .latest-showcase__top {
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
  }

  .latest-showcase__top > div:nth-child(2) {
    justify-self: end;
    text-align: right;
  }

  .latest-showcase__head {
    margin-top: 56px;
    margin-bottom: 44px;
  }

  .latest-showcase__grid {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

.latest-card,
.latest-card--one,
.latest-card--two,
.latest-card--three,
.latest-card--four {
  grid-column: 1;
}

  .latest-card img,
  .latest-card video {
    opacity: 1;
  }

  .work-page {
    padding: 22px 18px 72px;
  }

  .work-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
  }

  .work-top > div:nth-child(2) {
    justify-self: end;
    text-align: right;
  }

  .work-board {
    padding-top: 58px;
  }

  .work-board__head {
    margin-bottom: 48px;
  }

  .work-board__head h1,
  .work-board__actions > span {
    font-size: clamp(76px, 22vw, 128px);
  }

  .work-grid {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

  .work-card,
  .work-card--wide {
    grid-column: 1;
  }

  .work-card img,
  .work-card video {
    opacity: 1;
  }

  .work-card__meta {
    padding-inline: 0;
  }

  .work-list a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px 18px;
  }

  .work-list a span:nth-child(3),
  .work-list a span:nth-child(4) {
    grid-column: 2;
  }

  .work-list a span:nth-child(2) {
    font-size: clamp(34px, 10vw, 64px);
  }

  .work-footer {
    margin: 72px 0 0;
    padding: 22px 18px 30px;
    width: 100%;
  }

  .series-top {
    grid-template-columns: 1fr 1fr;
    padding: 18px;
    row-gap: 18px;
  }

  .series-top > div:nth-child(2) {
    justify-self: end;
    text-align: right;
  }

  .series-hero__meta {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .series-pair,
  .series-quad,
  .series-media-quad,
  .series-duo-wide,
  .series-media-duo,
  .series-next,
  .bromo-work-duo,
  .bromo-vertical-triptych {
    grid-template-columns: 1fr;
  }

  .series-quad,
  .series-media-quad {
    display: grid;
    height: auto;
  }

  .series-quad figure,
  .series-media-quad figure {
    width: 100%;
    height: auto;
  }

  .series-pair figure {
    aspect-ratio: auto;
  }

  .series-pair img {
    height: auto;
  }

  .series-quad,
  .series-quad figure,
  .series-media-quad,
  .series-media-quad figure {
    min-height: auto;
  }

  .series-quad img,
  .series-media-quad img,
  .series-media-quad video,
  .series-wide img {
    width: 100%;
    height: auto;
  }

  .series-wide,
  .series-duo-wide figure,
  .series-media-duo figure,
  .series-next figure {
    aspect-ratio: 16 / 10;
  }

  .series-statement,
  .series-text-panel,
  .series-credits {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 18px;
  }

  .bromo-series-page .series-statement,
  .bromo-text-panel {
    grid-template-columns: 1fr;
    padding: 64px 18px;
  }

  .series-statement h1 {
    font-size: clamp(50px, 14vw, 88px);
    letter-spacing: -.075em;
  }

  .series-statement p {
    max-width: 100%;
    font-size: clamp(12px, 3.4vw, 16px);
  }

  .bromo-text-panel .series-text-panel__copy {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .bromo-text-panel p {
    font-size: clamp(24px, 7vw, 38px);
    line-height: 1.08;
  }

  .bromo-next {
    padding: 96px 18px 72px;
  }

  .bromo-next__head {
    margin-bottom: 48px;
  }

  .bromo-next__head h2,
  .bromo-next__head > span {
    font-size: clamp(76px, 22vw, 128px);
  }

  .bromo-next__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .bromo-next__card div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .series-final-image h2 {
    left: 18px;
    right: 18px;
    max-width: none;
    font-size: clamp(52px, 15vw, 96px);
  }

  .series-closing {
    grid-template-columns: 1fr;
    padding: 22px 18px 30px;
  }

  .series-closing > div:nth-child(2),
  .series-closing > div:nth-child(3) {
    text-align: left;
  }

  .series-closing__quote {
    width: min(100%, 360px);
  }

  .series-closing nav,
  .series-closing > div:nth-last-child(2),
  .series-closing > div:last-child {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__slide {
    transition: none;
    transform: none;
  }
}

/* Final art-direction pass: responsive rhythm, tap targets and footer hierarchy. */
:root {
  --gutter-mobile: 20px;
  --gutter-tablet: 32px;
  --gutter-desktop: clamp(40px, 4vw, 72px);
  --text-body: clamp(16px, 1.05vw, 18px);
  --text-small: clamp(11px, .78vw, 13px);
  --leading-body: 1.45;
  --measure: 58ch;
}

/* Hotfix: restore mother-statement hierarchy and minimal footer system. */
.mother-statement,
.about-quote--mother {
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(48px, 6vw, 104px) 8.35vw;
  background: #fff;
  color: #050505;
}

.mother-statement__frame,
.about-quote--mother .about-quote__frame {
  position: relative;
  width: min(1040px, 72vw);
  min-height: clamp(260px, 20vw, 420px);
  display: grid;
  place-items: center;
  text-align: center;
}

.mother-statement__frame p,
.about-quote--mother .about-quote__frame p {
  max-width: min(500px, 34vw);
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(20px, 1.55vw, 34px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.018em;
}

.mother-statement__frame > span {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mother-statement__frame::before,
.mother-statement__frame::after,
.mother-statement__frame span:first-child::before,
.mother-statement__frame span:last-child::before {
  content: "";
  position: absolute;
  width: clamp(13px, 1vw, 20px);
  height: clamp(13px, 1vw, 20px);
  border-color: #111;
  border-style: solid;
}

.mother-statement__frame::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.mother-statement__frame::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.mother-statement__frame span:first-child::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.mother-statement__frame span:last-child::before {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
}

.minimal-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 120px);
  align-items: start;
  padding: clamp(18px, 2vw, 36px) 7.5vw clamp(18px, 2vw, 36px);
  background: #fff;
  color: #050505;
  font-size: clamp(12px, .62vw, 15px);
}

.minimal-footer nav {
  min-width: 0;
}

.minimal-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.minimal-footer > div {
  justify-self: end;
  text-align: right;
}

.minimal-footer p {
  grid-column: 1 / -1;
  margin: clamp(28px, 5vw, 80px) 0 0;
  color: #9f9f9f;
  text-align: center;
}

.about-portrait-manifesto {
  position: relative;
  z-index: 0;
}

.about-identity__brand {
  font-size: clamp(78px, 10.6vw, 210px);
}

html,
body {
  max-width: 100%;
}

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

.home-hero__top a,
.latest-showcase__top a,
.work-top a,
.series-top a,
.contact-top a,
.contact-mid a,
.closing-footer a,
.work-footer a,
.series-closing a,
.view-toggle button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.view-toggle {
  align-items: center;
}

.view-toggle button {
  min-width: 44px;
  justify-content: center;
}

.motion-screen__sound,
.series-hero__sound {
  min-width: 44px;
  min-height: 44px;
}

.home-hero,
.series-hero,
.motion-screen,
.brand-screen,
.contact-photo-wide,
.series-final-image {
  min-height: 100svh;
  min-height: 100dvh;
}

.motion-screen__video,
.brand-screen__image,
.series-final-image img {
  height: 100svh;
  height: 100dvh;
}

.closing-footer__top {
  grid-template-columns: 1fr;
  color: #111;
  order: 3;
}

.closing-footer__top span {
  justify-self: stretch;
  text-align: center;
}

.closing-footer__top span:nth-child(2),
.closing-footer__top span:nth-child(3) {
  justify-self: stretch;
}

.closing-footer__bottom a,
.work-footer a,
.series-closing a {
  overflow-wrap: anywhere;
  word-break: normal;
}

.closing-footer__quote,
.work-footer__quote,
.series-closing__quote {
  order: 1;
}

.closing-footer__bottom,
.work-footer nav,
.work-footer > div:nth-last-child(2),
.work-footer > div:last-child,
.series-closing nav,
.series-closing > div:nth-last-child(2),
.series-closing > div:last-child {
  order: 2;
}

.work-footer > div:first-child,
.work-footer > div:nth-child(2),
.work-footer > div:nth-child(3),
.series-closing > div:first-child,
.series-closing > div:nth-child(2),
.series-closing > div:nth-child(3) {
  order: 3;
}

.work-footer,
.series-closing {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.work-footer > div:nth-child(2),
.series-closing > div:nth-child(2) {
  text-align: center;
}

.work-footer > div:nth-child(3),
.series-closing > div:nth-child(3) {
  text-align: right;
}

.series-tech {
  background: #fff;
  color: #050505;
  padding: clamp(58px, 6.4vw, 118px) clamp(28px, 3vw, 56px);
}

.series-tech dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 72px);
  margin: 0;
  align-items: start;
}

.series-tech dt,
.series-tech dd {
  margin: 0;
}

.series-tech dt {
  margin-bottom: 12px;
  color: #9b9b9b;
}

.series-tech dd {
  color: #050505;
  line-height: 1.35;
}

.series-text-panel p {
  max-width: 65ch;
}

.about-quote--mother {
  min-height: 92svh;
}

.about-quote--mother .about-quote__frame p {
  font-size: clamp(20px, 1.55vw, 34px);
}

.about-quote--text .about-quote__manifesto {
  max-width: min(880px, 58ch);
}

.about-quote--text .about-quote__manifesto p {
  font-size: clamp(19px, 1.12vw, 24px);
  line-height: 1.42;
  text-transform: none;
}

.about-editorial {
  min-height: clamp(760px, 96svh, 1100px);
}

.about-editorial__columns {
  margin-top: clamp(96px, 10vw, 190px);
}

.about-editorial__columns > div > p:not(.about-editorial__label) {
  max-width: 54ch;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: 0;
}

.about-identity {
  min-height: clamp(580px, 78svh, 920px);
}

.about-identity__brand {
  font-size: clamp(44px, 10.2vw, 190px);
}

.contact-page {
  min-height: 100svh;
  min-height: 100dvh;
  padding-bottom: clamp(72px, 8vw, 150px);
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .home-hero__top,
  .latest-showcase__top,
  .work-top,
  .series-top,
  .contact-top {
    padding-top: env(safe-area-inset-top);
  }

  .home-hero__top,
  .latest-showcase__top,
  .work-top,
  .series-top {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 18px;
  }

  .home-hero__top nav,
  .latest-showcase__top div:first-child,
  .work-top div:first-child,
  .series-top div:first-child {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    white-space: nowrap;
  }

  .home-hero__top a,
  .latest-showcase__top a,
  .work-top a,
  .series-top a {
    min-height: 44px;
  }

  .home-hero__horizon {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .latest-showcase__head h2,
  .latest-showcase__head span,
  .work-board__head h1,
  .work-board__actions > span,
  .bromo-next__head h2,
  .bromo-next__head > span {
    letter-spacing: -.07em;
  }

  .latest-showcase__head {
    margin-bottom: clamp(32px, 10vw, 48px);
  }

  .latest-showcase__grid,
  .work-grid {
    row-gap: clamp(48px, 14vw, 64px);
  }

  .work-board__actions > span,
  .latest-showcase__head span,
  .bromo-next__head > span {
    transform: translateX(0);
  }

  .contact-page {
    min-height: auto;
    grid-template-rows: auto auto auto;
    gap: clamp(38px, 10vw, 70px);
    padding-bottom: clamp(58px, 16vw, 110px);
  }

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

  .contact-mid a {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .contact-title {
    margin-top: clamp(12px, 6vw, 36px);
  }

  .contact-photo-wide,
  .contact-photo-wide img {
    min-height: 68svh;
    height: 68svh;
  }

  .about-quote--mother {
    min-height: 72svh;
  }

  .about-quote--mother .about-quote__frame p {
    font-size: clamp(19px, 5.2vw, 30px);
  }

  .about-portrait-manifesto {
    gap: 24px;
    padding-inline: var(--gutter-mobile);
  }

  .about-portrait-manifesto figure {
    width: 100%;
  }

  .about-portrait-manifesto p {
    font-size: clamp(19px, 5.2vw, 28px);
    line-height: 1.08;
  }

  .about-quote--text {
    min-height: auto;
    padding-block: clamp(78px, 22vw, 120px);
  }

  .about-quote--text .about-quote__frame {
    min-height: auto;
    padding: 36px 0;
  }

  .about-quote--text .about-quote__manifesto p {
    font-size: 16px;
    line-height: 1.48;
  }

  .about-editorial {
    gap: 76px;
  }

  .about-editorial h1 {
    font-size: clamp(56px, 17vw, 120px);
  }

  .about-editorial__columns {
    margin-top: 0;
  }

  .about-editorial__columns > div > p:not(.about-editorial__label) {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-identity {
    min-height: 58svh;
    padding-block: 90px;
  }

  .about-identity__brand {
    font-size: clamp(34px, 9.4vw, 52px);
    max-width: calc(100vw - 40px);
    letter-spacing: -.075em;
  }

  .closing-footer,
  .work-footer,
  .series-closing {
    min-height: auto;
    gap: 54px;
  }

  .closing-footer__top,
  .work-footer > div:first-child,
  .work-footer > div:nth-child(2),
  .work-footer > div:nth-child(3),
  .series-closing > div:first-child,
  .series-closing > div:nth-child(2),
  .series-closing > div:nth-child(3) {
    text-align: left;
  }

  .closing-footer__top span {
    text-align: left;
  }

  .work-footer,
  .series-closing {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .work-footer > div:nth-child(1),
  .work-footer > div:nth-child(2),
  .work-footer > div:nth-child(3),
  .work-footer__quote,
  .work-footer nav,
  .work-footer > div:nth-last-child(2),
  .work-footer > div:last-child,
  .series-closing > div:nth-child(1),
  .series-closing > div:nth-child(2),
  .series-closing > div:nth-child(3),
  .series-closing__quote,
  .series-closing nav,
  .series-closing > div:nth-last-child(2),
  .series-closing > div:last-child {
    grid-column: 1;
  }

  .series-tech {
    padding: 64px var(--gutter-mobile);
  }

  .series-tech dl {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .series-hero__meta {
    bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

/* Hotfix final overrides: keep this block last. */
.mother-statement,
.about-quote--mother {
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(48px, 6vw, 104px) 8.35vw;
}

.mother-statement__frame,
.about-quote--mother .about-quote__frame {
  width: min(1040px, 72vw);
  min-height: clamp(260px, 20vw, 420px);
}

.mother-statement__frame p,
.about-quote--mother .about-quote__frame p {
  max-width: min(500px, 34vw);
  font-size: clamp(20px, 1.55vw, 34px);
  line-height: 1.02;
  letter-spacing: -.018em;
}

.minimal-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 120px);
  align-items: start;
  min-height: auto;
  padding: clamp(18px, 2vw, 36px) 7.5vw clamp(18px, 2vw, 36px);
  background: #fff;
  color: #050505;
}

.minimal-footer nav {
  white-space: nowrap;
}

.minimal-footer nav a {
  min-height: 0;
}

.minimal-footer > div {
  justify-self: end;
  text-align: right;
}

.minimal-footer p {
  grid-column: 1 / -1;
  margin: clamp(28px, 5vw, 80px) 0 0;
  color: #9f9f9f;
  text-align: center;
}

.about-identity__brand {
  font-size: clamp(78px, 10.6vw, 210px);
}

@media (max-width: 900px) {
  .home-hero__top nav,
  .latest-showcase__top div:first-child,
  .work-top div:first-child,
  .series-top div:first-child,
  .contact-top div:first-child,
  .minimal-footer nav {
    display: block;
    white-space: nowrap;
    line-height: 1.25;
  }

  .home-hero__top nav a,
  .latest-showcase__top div:first-child a,
  .work-top div:first-child a,
  .series-top div:first-child a,
  .contact-top div:first-child a,
  .minimal-footer nav a {
    display: inline;
    min-height: 0;
  }

  .mother-statement,
  .about-quote--mother {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 48px 20px;
  }

  .mother-statement__frame,
  .about-quote--mother .about-quote__frame {
    width: min(100%, 430px);
    min-height: 220px;
  }

  .mother-statement__frame p,
  .about-quote--mother .about-quote__frame p {
    max-width: calc(100% - 70px);
    font-size: clamp(19px, 5.2vw, 30px);
  }

  .minimal-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 22px 20px 30px;
  }

  .minimal-footer > div {
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }

  .minimal-footer p {
    text-align: left;
  }

  .about-identity__brand {
    display: block;
    max-width: calc(100vw - 40px);
    overflow-wrap: normal;
    word-break: normal;
    white-space: nowrap;
    font-size: clamp(34px, 10vw, 52px);
    line-height: .9;
    letter-spacing: -.075em;
  }
}

/* Contact final overrides */
.contact-main .contact-page {
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(18px, 2vw, 36px) 7.5vw clamp(34px, 4vw, 72px);
  grid-template-rows: auto minmax(150px, 1fr) auto;
  gap: clamp(30px, 3.4vw, 66px);
}

.contact-main .contact-title {
  grid-row: auto;
}

.contact-main .contact-inquiry__identity.micro {
  color: #111;
}

.contact-main .contact-mid {
  align-items: start;
}

.contact-main .contact-mid > div {
  align-self: start;
  line-height: 1.25;
}

.contact-main .contact-mid a {
  display: inline;
  min-height: 0;
  line-height: inherit;
}

@media (max-width: 900px) {
  .contact-main .contact-page {
    min-height: auto;
    padding: 22px 20px 52px;
    grid-template-rows: auto auto auto;
    gap: clamp(40px, 11vw, 64px);
  }

  .contact-main .contact-title {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
  }

  .contact-main .contact-title h1,
  .contact-main .contact-title span {
    font-size: clamp(54px, 16vw, 82px);
  }

  .contact-main .contact-mid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 26px 22px;
  }

}

/* Series expansion - 26/08/26 */
.latest-showcase__more {
  display: inline-flex;
  margin-top: clamp(24px, 3vw, 48px);
  color: #111;
  text-transform: uppercase;
}

.latest-showcase__more:hover {
  color: #8f8f8f;
}

.aeon-experience {
  position: relative;
  display: block;
  min-height: 100svh;
  min-height: 100dvh;
  background: #fff;
  overflow: hidden;
}

.aeon-experience__art {
  display: block;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  object-fit: cover;
  object-position: center bottom;
  background: transparent;
}

.aeon-experience::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 7vh, 78px);
  z-index: 1;
  width: clamp(220px, 18vw, 340px);
  height: 54px;
  transform: translateX(-50%);
  background: #fff;
  pointer-events: none;
}

.aeon-experience__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto clamp(44px, 6.4vh, 96px) auto clamp(42px, 5vh, 80px);
  justify-items: center;
  pointer-events: none;
}

.aeon-experience__overlay p {
  grid-row: 2;
  margin: 0;
  color: #111;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.7vw, 32px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.aeon-experience__cta {
  grid-row: 4;
  align-self: end;
  position: relative;
  z-index: 2;
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: #b4b4b4;
  cursor: pointer;
  pointer-events: auto;
  font: inherit;
  text-transform: uppercase;
}

.aeon-experience__cta::before {
  content: "";
  position: absolute;
  inset: -10px -64px;
  z-index: -1;
  background: #fff;
}

.aeon-experience__cta span {
  display: inline-block;
  margin-left: .25em;
  color: inherit;
  font-family: "Inter Tight", Arial, sans-serif;
  line-height: 1;
}

.series-statement p,
.series-text-panel p,
.bromo-text-panel p {
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(17px, 1.02vw, 23px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.018em;
}

.series-statement p {
  max-width: 520px;
}

.bromo-series-page .series-statement {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  padding-inline: 7.5vw;
}

.bromo-text-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  padding-inline: 7.5vw;
}

.bromo-text-panel .series-text-panel__copy {
  grid-column: 2;
  justify-self: start;
  width: min(520px, 100%);
  max-width: 520px;
}

.pescador-duo figure {
  aspect-ratio: 16 / 10;
}

@media (max-width: 900px) {
  .latest-showcase__more {
    margin-top: 28px;
  }

  .aeon-experience {
    min-height: 72svh;
    min-height: 72dvh;
  }

  .aeon-experience__art {
    height: 72svh;
    height: 72dvh;
    object-fit: contain;
  }

  .aeon-experience::after {
    bottom: 10px;
    width: 210px;
    height: 42px;
  }

  .aeon-experience__overlay {
    grid-template-rows: 1fr auto 26px auto 28px;
  }

  .aeon-experience__overlay p {
    font-size: clamp(14px, 4vw, 18px);
    letter-spacing: -.035em;
  }

  .aeon-experience__cta {
    padding: 0;
  }

  .series-statement p,
  .series-text-panel p,
  .bromo-text-panel p {
    font-size: clamp(17px, 4.7vw, 21px);
    line-height: 1.18;
  }

  .bromo-series-page .series-statement,
  .bromo-text-panel {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .bromo-text-panel .series-text-panel__copy {
    grid-column: 1;
    width: 100%;
    max-width: none;
  }

  .home-hero__top nav,
  .latest-showcase__top div:first-child,
  .work-top div:first-child,
  .series-top div:first-child,
  .contact-top div:first-child,
  .minimal-footer nav {
    white-space: normal;
  }
}

/* AEON Experience platform */
.aeon-page-body,
.aeon-subpage-body {
  background: #fff;
  color: #050505;
}

.aeon-page,
.aeon-subpage {
  min-height: 100svh;
  min-height: 100dvh;
  background: #fff;
  color: #050505;
}

.aeon-top {
  position: absolute;
  inset: clamp(20px, 2.1vw, 38px) 7.5vw auto;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 120px);
  align-items: start;
  color: #050505;
}

.aeon-top.micro,
.aeon-footer.micro {
  color: #050505;
}

.aeon-top nav {
  white-space: nowrap;
}

.aeon-top a,
.aeon-footer a {
  color: inherit;
  display: inline;
}

.aeon-top a[aria-current="page"] {
  color: #FF5A16;
}

.aeon-top > div {
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.aeon-opening {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: clamp(92px, 8vw, 140px) 7.5vw clamp(72px, 7vw, 126px);
  overflow: hidden;
}

.aeon-opening h1 {
  justify-self: start;
  width: min(980px, 68vw);
  margin: clamp(42px, 5vw, 86px) 0 0;
  color: #111;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(62px, 7.2vw, 126px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.aeon-opening h1 span {
  display: block;
  white-space: nowrap;
}

.aeon-index {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 7vw, 136px) 7.5vw;
  background: #fff;
  color: #050505;
}

.aeon-index__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr) auto;
  column-gap: clamp(26px, 4.4vw, 86px);
  align-items: center;
  padding: clamp(8px, .72vw, 14px) 0;
  color: #050505;
  cursor: pointer;
  transition: color 220ms ease;
}

.aeon-index__item + .aeon-index__item {
  margin-top: clamp(6px, .9vw, 18px);
}

.aeon-index__title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .08em;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(52px, 6.25vw, 114px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.068em;
  text-transform: uppercase;
  white-space: nowrap;
}

.aeon-index__title span {
  display: inline-block;
  min-width: .7em;
  font-size: 1.48em;
  line-height: .7;
  transform: translateY(.13em);
}

.aeon-index__copy {
  align-self: center;
  max-width: 36ch;
  color: #9b9b9b;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(11px, .72vw, 14px);
  font-weight: 500;
  line-height: 1.22;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.aeon-index__arrow {
  align-self: center;
  width: 1em;
  color: #FF5A16;
  font-size: clamp(22px, 2vw, 38px);
  line-height: 1;
  opacity: 0;
  transform: translate(-8px, 6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.aeon-index__item:hover,
.aeon-index__item:focus-visible {
  color: #FF5A16;
}

.aeon-index__item:hover .aeon-index__copy,
.aeon-index__item:focus-visible .aeon-index__copy {
  color: #444;
}

.aeon-index__item:hover .aeon-index__arrow,
.aeon-index__item:focus-visible .aeon-index__arrow {
  opacity: 1;
  transform: translate(0, 6px);
}

.aeon-mother {
  position: relative;
  min-height: 112svh;
  min-height: 112dvh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  row-gap: clamp(78px, 9vw, 170px);
  align-items: center;
  padding: clamp(86px, 8vw, 150px) 7.5vw clamp(20px, 2.1vw, 38px);
  background: #fff;
  color: #050505;
}

.aeon-mother__frame {
  position: relative;
  justify-self: center;
  width: min(1040px, 72vw);
  min-height: clamp(260px, 20vw, 420px);
  display: grid;
  place-items: center;
  text-align: center;
}

.aeon-mother__frame p {
  max-width: min(500px, 34vw);
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(20px, 1.55vw, 34px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.018em;
}

.aeon-mother__frame > span {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aeon-mother__frame::before,
.aeon-mother__frame::after,
.aeon-mother__frame span:first-child::before,
.aeon-mother__frame span:last-child::before {
  content: "";
  position: absolute;
  width: clamp(13px, 1vw, 20px);
  height: clamp(13px, 1vw, 20px);
  border-color: #111;
  border-style: solid;
}

.aeon-mother__frame::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.aeon-mother__frame::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.aeon-mother__frame span:first-child::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.aeon-mother__frame span:last-child::before {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
}

.aeon-footer {
  position: static;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 120px);
  align-items: end;
  color: #050505;
}

.aeon-footer nav {
  white-space: nowrap;
}

.aeon-footer a[aria-current="page"] {
  color: #FF5A16;
}

.aeon-footer > div {
  justify-self: end;
  text-align: right;
}

.aeon-subpage {
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(92px, 8vw, 140px) 7.5vw clamp(60px, 6vw, 110px);
}

.aeon-subpage__intro {
  display: grid;
  gap: clamp(18px, 2vw, 32px);
}

.aeon-subpage__intro h1 {
  color: #111;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(72px, 13vw, 232px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.aeon-subpage__intro p:last-child {
  max-width: 48ch;
  color: #050505;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(15px, 1.1vw, 21px);
  line-height: 1.3;
  text-transform: uppercase;
}

.aeon-method-body {
  background: #fff;
  color: #050505;
}

.aeon-method-page {
  min-height: 100svh;
  min-height: 100dvh;
  background: #fff;
  color: #050505;
}

.aeon-method-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 8vw, 140px) 7.5vw clamp(72px, 7vw, 126px);
  background: #fff;
  color: #050505;
}

.aeon-method-hero h1 {
  justify-self: end;
  width: min(1040px, 72vw);
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(82px, 11.5vw, 212px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.076em;
  text-align: right;
  text-transform: uppercase;
}

.aeon-method-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 2.6vw, 46px);
  transform: translateX(-50%);
  color: #050505;
}

.aeon-method {
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(118px, 10vw, 178px) 7.5vw clamp(72px, 7vw, 126px);
  display: grid;
  align-items: center;
}

.aeon-method__accordion {
  align-self: center;
}

.aeon-method__item {
  border: 0;
}

.aeon-method__trigger {
  width: 100%;
  min-height: clamp(76px, 7vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 110px);
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: #050505;
  cursor: pointer;
  text-align: left;
  transition: color 220ms ease;
}

.aeon-method__trigger span:first-child {
  min-width: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(62px, 8.5vw, 156px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.072em;
  text-transform: uppercase;
}

.aeon-method__trigger span:last-child {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(42px, 4.8vw, 88px);
  font-weight: 400;
  line-height: .8;
}

.aeon-method__trigger:hover,
.aeon-method__trigger:focus-visible,
.aeon-method__item.is-open .aeon-method__trigger {
  color: #FF5A16;
}

.aeon-method__trigger:focus-visible,
.aeon-next-area a:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 7px;
}

.aeon-method__panel {
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 54px) 0 clamp(52px, 5.4vw, 108px);
  color: #050505;
}

.aeon-method__panel[hidden] {
  display: none;
}

.aeon-method__panel p {
  width: min(560px, 42vw);
  margin: 0 11vw 0 auto;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.018em;
  text-align: left;
  animation: aeonPanelIn 220ms ease both;
}

.aeon-next-area {
  min-height: 45svh;
  min-height: 45dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 110px);
  align-items: center;
  padding: clamp(58px, 6vw, 104px) 7.5vw;
  background: #fff;
  color: #050505;
}

.aeon-next-area > span {
  color: #9b9b9b;
}

.aeon-next-area a {
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(54px, 6.8vw, 124px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.07em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.aeon-next-area a span {
  display: inline-block;
  color: inherit;
  line-height: .78;
}

.aeon-next-area a:hover,
.aeon-next-area a:focus-visible {
  color: #FF5A16;
}

.aeon-construction-index {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(106px, 9vw, 172px) 7.5vw;
  background: #fff;
  color: #050505;
}

.aeon-construction-index__item {
  width: 100%;
  min-height: clamp(96px, 8.8vw, 160px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  color: #050505;
  transition: color 220ms ease;
}

.aeon-construction-index__item + .aeon-construction-index__item {
  margin-top: clamp(18px, 2.4vw, 48px);
}

.aeon-construction-index__item > span:first-child {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .08em;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(54px, 7.4vw, 136px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.072em;
  text-transform: uppercase;
}

.aeon-construction-index__asterisk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: .7em;
  color: #050505;
  font-size: 1.48em;
  line-height: .7;
  transform: translateY(.13em);
  transition: color 220ms ease;
}

.aeon-construction-index__item > span:last-child {
  color: #FF5A16;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(36px, 4.6vw, 84px);
  font-weight: 400;
  line-height: .8;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.aeon-construction-index__item:hover,
.aeon-construction-index__item:hover .aeon-construction-index__asterisk,
.aeon-construction-index__item:focus-visible,
.aeon-construction-index__item:focus-visible .aeon-construction-index__asterisk {
  color: #FF5A16;
}

.aeon-construction-index__item:hover > span:last-child,
.aeon-construction-index__item:focus-visible > span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.aeon-construction-index__item:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 8px;
}

.aeon-current-page {
  background: #fff;
  color: #050505;
}

.aeon-current-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 8vw, 140px) 7.5vw clamp(72px, 7vw, 126px);
  background: #fff;
  color: #050505;
}

.aeon-current-hero h1 {
  justify-self: end;
  width: min(1040px, 72vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(82px, 11.5vw, 212px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.076em;
  text-align: right;
  text-transform: uppercase;
}

.aeon-current-hero p,
.aeon-experiences-hero p {
  position: absolute;
  left: 7.5vw;
  bottom: clamp(72px, 7vw, 126px);
  margin: 0;
  color: #050505;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, .78vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.aeon-current-project {
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: clamp(96px, 9vw, 168px) 7.5vw;
  background: #fff;
  color: #050505;
}

.aeon-current-project__link {
  display: grid;
  gap: clamp(28px, 3vw, 58px);
  color: #050505;
  transition: color 220ms ease;
}

.aeon-current-project__link:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 10px;
}

.aeon-current-project__label {
  color: #777;
}

.aeon-current-project__title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .08em;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(52px, 6.25vw, 114px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.068em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 220ms ease;
}

.aeon-current-project__title span {
  display: inline-block;
  min-width: .7em;
  margin-right: 0;
  color: #050505;
  font-size: 1.48em;
  line-height: .7;
  transform: translateY(.13em);
  transition: color 220ms ease;
}

.aeon-current-project__question {
  width: min(760px, 58vw);
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(24px, 2.7vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.aeon-current-project__meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 88px);
  align-items: end;
  width: 100%;
  color: #777;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, .78vw, 16px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.aeon-current-project__meta span:nth-child(2) {
  justify-self: start;
}

.aeon-current-project__meta span:last-child {
  justify-self: end;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 92px);
  font-weight: 400;
  line-height: .78;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.aeon-current-project__link:hover .aeon-current-project__title,
.aeon-current-project__link:hover .aeon-current-project__title span,
.aeon-current-project__link:focus-visible .aeon-current-project__title,
.aeon-current-project__link:focus-visible .aeon-current-project__title span {
  color: #FF5A16;
}

.aeon-current-project__link:hover .aeon-current-project__meta span:last-child,
.aeon-current-project__link:focus-visible .aeon-current-project__meta span:last-child {
  color: #FF5A16;
  opacity: 1;
  transform: translateX(0);
}

.aeon-italy-page {
  background: #fff;
  color: #050505;
}

.aeon-italy-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 8vw, 140px) 7.5vw clamp(72px, 7vw, 126px);
  background: #fff;
  color: #050505;
}

.aeon-italy-hero h1 {
  justify-self: end;
  width: min(1040px, 72vw);
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(82px, 11.5vw, 212px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.076em;
  text-align: right;
  text-transform: uppercase;
}

.aeon-italy-opening {
  min-height: 86svh;
  min-height: 86dvh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 7vw, 140px);
  align-content: center;
  padding: clamp(108px, 9vw, 168px) 7.5vw;
  background: #fff;
}

.aeon-italy-opening__header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
  gap: clamp(44px, 7vw, 140px);
  align-items: end;
  margin-bottom: clamp(18px, 2.2vw, 38px);
}

.aeon-italy-opening__header h2 {
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 76px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.052em;
  text-transform: uppercase;
}

.aeon-italy-opening__header .micro {
  display: grid;
  gap: 8px;
  color: #777;
  text-align: right;
}

.aeon-italy-opening p,
.aeon-italy-copy p,
.aeon-italy-structure p,
.aeon-italy-articles li {
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.018em;
}

.aeon-italy-opening p + p,
.aeon-italy-copy p + p {
  margin-top: 1em;
}

.aeon-italy-accordion {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(118px, 10vw, 178px) 7.5vw clamp(88px, 8vw, 150px);
  background: #fff;
}

.aeon-italy-item {
  border: 0;
}

.aeon-italy-trigger {
  width: 100%;
  min-height: clamp(104px, 9.2vw, 170px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 110px);
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: #050505;
  cursor: pointer;
  text-align: left;
  transition: color 220ms ease;
}

.aeon-italy-trigger span:first-child {
  min-width: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(50px, 7vw, 132px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.072em;
  text-transform: uppercase;
}

.aeon-italy-trigger span:last-child {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(42px, 4.8vw, 88px);
  font-weight: 400;
  line-height: .8;
}

.aeon-italy-trigger--disabled {
  cursor: default;
}

.aeon-italy-trigger--disabled span:last-child {
  color: #777;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(11px, .82vw, 15px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-align: right;
  text-transform: uppercase;
}

.aeon-italy-trigger:hover,
.aeon-italy-trigger:focus-visible,
.aeon-italy-item.is-open .aeon-italy-trigger {
  color: #FF5A16;
}

.aeon-italy-trigger--disabled:hover {
  color: #050505;
}

.aeon-italy-trigger:focus-visible,
.aeon-italy-return a:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 7px;
}

.aeon-italy-panel {
  overflow: visible;
  padding: clamp(34px, 4vw, 72px) 0 clamp(82px, 8vw, 152px);
  animation: aeonPanelIn 220ms ease both;
}

.aeon-italy-panel[hidden] {
  display: none;
}

.aeon-italy-copy {
  width: min(680px, calc((100% - clamp(44px, 7vw, 140px)) / 2));
  margin: 0 0 0 calc((100% + clamp(44px, 7vw, 140px)) / 2);
}

.aeon-italy-copy--wide {
  width: min(760px, calc((100% - clamp(44px, 7vw, 140px)) / 2));
}

.aeon-italy-copy h2,
.aeon-italy-articles h2,
.aeon-italy-articles h3,
.aeon-italy-structure h3 {
  margin: 0 0 clamp(22px, 2.2vw, 42px);
  color: #050505;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aeon-italy-table,
.aeon-italy-articles,
.aeon-italy-structure,
.aeon-italy-field-question,
.aeon-italy-copy + .aeon-italy-copy {
  margin-top: clamp(92px, 9vw, 168px);
}

.aeon-italy-structure + .aeon-italy-copy--wide {
  margin-top: clamp(128px, 12vw, 230px);
}

.aeon-italy-table {
  width: 100%;
  display: grid;
  border-top: 1px solid #d9d9d9;
}

.aeon-italy-table div {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 86px);
  padding: clamp(18px, 1.8vw, 32px) 0;
  border-bottom: 1px solid #d9d9d9;
}

.aeon-italy-table strong,
.aeon-italy-table span {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(11px, .82vw, 15px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aeon-italy-table span {
  color: #777;
  font-weight: 500;
}

.aeon-italy-articles {
  width: min(900px, 68vw);
}

.aeon-italy-articles section + section {
  margin-top: clamp(42px, 4vw, 78px);
}

.aeon-italy-articles ol {
  display: grid;
  gap: clamp(12px, 1.2vw, 22px);
  margin: 0;
  padding-left: 1.15em;
}

.aeon-italy-structure {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 92px) clamp(44px, 7vw, 140px);
}

.aeon-italy-structure h3 {
  margin-bottom: clamp(10px, 1vw, 18px);
}

.aeon-italy-field-question {
  width: min(980px, 78vw);
}

.aeon-italy-field-question p {
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(42px, 5.6vw, 104px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.aeon-italy-return {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 120px);
  align-items: end;
  padding: clamp(110px, 11vw, 210px) 7.5vw clamp(130px, 12vw, 230px);
  background: #fff;
  color: #050505;
}

.aeon-italy-return div {
  display: grid;
  gap: 10px;
}

.aeon-italy-return strong {
  font: inherit;
}

.aeon-italy-return a {
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(32px, 4.4vw, 82px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.066em;
  text-align: right;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.aeon-italy-return a:hover,
.aeon-italy-return a:focus-visible {
  color: #FF5A16;
}

.aeon-experiences-page {
  background: #fff;
  color: #050505;
}

.aeon-experiences-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 8vw, 140px) 7.5vw clamp(72px, 7vw, 126px);
  background: #fff;
  color: #050505;
}

.aeon-experiences-hero h1 {
  justify-self: end;
  width: min(1120px, 78vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(82px, 11.5vw, 212px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.076em;
  text-align: right;
  text-transform: uppercase;
}

.aeon-experiences-index {
  min-height: 76svh;
  min-height: 76dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(96px, 8vw, 150px) 7.5vw clamp(72px, 6vw, 118px);
  background: #fff;
  color: #050505;
}

.aeon-experiences-index__item {
  width: 100%;
  min-height: clamp(126px, 10vw, 190px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .38fr) auto;
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  color: #050505;
  transition: color 220ms ease;
}

.aeon-experiences-index__item + .aeon-experiences-index__item {
  margin-top: clamp(38px, 5vw, 96px);
}

.aeon-experiences-index__title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .08em;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(52px, 6.5vw, 124px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 220ms ease;
}

.aeon-experiences-index__asterisk {
  display: inline-block;
  min-width: .7em;
  color: #050505;
  font-size: 1.48em;
  line-height: .7;
  transform: translateY(.13em);
  transition: color 220ms ease;
}

.aeon-experiences-index__title-text {
  display: inline-block;
}

.aeon-experiences-index__copy {
  color: #777;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(11px, .82vw, 15px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.aeon-experiences-index__arrow {
  justify-self: end;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 92px);
  font-weight: 400;
  line-height: .78;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.aeon-experiences-index__item:hover .aeon-experiences-index__title,
.aeon-experiences-index__item:hover .aeon-experiences-index__asterisk,
.aeon-experiences-index__item:focus-visible .aeon-experiences-index__title,
.aeon-experiences-index__item:focus-visible .aeon-experiences-index__asterisk {
  color: #FF5A16;
}

.aeon-experiences-index__item:hover .aeon-experiences-index__copy,
.aeon-experiences-index__item:focus-visible .aeon-experiences-index__copy {
  color: #555;
}

.aeon-experiences-index__item:hover .aeon-experiences-index__arrow,
.aeon-experiences-index__item:focus-visible .aeon-experiences-index__arrow {
  color: #FF5A16;
  opacity: 1;
  transform: translateX(0);
}

.aeon-experiences-index__item:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 8px;
}

.aeon-workshops-page {
  background: #fff;
  color: #050505;
}

.aeon-workshops-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 8vw, 140px) 7.5vw clamp(72px, 7vw, 126px);
  background: #fff;
  color: #050505;
}

.aeon-workshops-hero h1 {
  justify-self: end;
  width: min(1120px, 78vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(82px, 11.5vw, 212px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.076em;
  text-align: right;
  text-transform: uppercase;
}

.aeon-workshops-opening {
  min-height: 76svh;
  min-height: 76dvh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 76px) clamp(44px, 7vw, 140px);
  align-content: center;
  padding: clamp(108px, 9vw, 168px) 7.5vw;
  background: #fff;
}

.aeon-workshops-opening h2 {
  grid-column: 1 / -1;
  margin: 0;
  color: #FF5A16;
}

.aeon-workshops-opening p {
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.018em;
}

.aeon-workshops-opening.aeon-build-opening {
  min-height: 82svh;
  min-height: 82dvh;
  grid-template-columns: 1fr;
  gap: clamp(46px, 4.8vw, 88px);
  padding: clamp(86px, 7vw, 132px) 7.5vw;
}

.aeon-workshops-opening.aeon-build-opening h2 {
  grid-column: auto;
  width: min(1080px, 86vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(38px, 4.55vw, 84px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}

.aeon-workshops-opening.aeon-build-opening .aeon-build-opening__grid {
  grid-column: auto;
}

.aeon-workshops-index {
  min-height: 84svh;
  min-height: 84dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(78px, 6vw, 118px) 7.5vw clamp(70px, 5.8vw, 112px);
  background: #fff;
  color: #050505;
}

.aeon-workshops-index__item {
  width: 100%;
  min-height: clamp(112px, 8.6vw, 164px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .36fr) auto;
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  color: #050505;
  transition: color 220ms ease;
}

.aeon-workshops-index__item + .aeon-workshops-index__item {
  margin-top: clamp(34px, 4vw, 76px);
}

.aeon-workshops-page .aeon-mother {
  min-height: 100svh;
  min-height: 100dvh;
  row-gap: clamp(58px, 6vw, 118px);
  padding-top: clamp(70px, 6vw, 118px);
}

.aeon-workshops-index__title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .08em;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.45vw, 84px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.064em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.aeon-workshops-index__asterisk {
  display: inline-block;
  min-width: .7em;
  color: #050505;
  font-size: 1.48em;
  line-height: .7;
  transform: translateY(.13em);
  transition: color 220ms ease;
}

.aeon-workshops-index__title-text {
  display: inline-block;
}

.aeon-workshops-index__copy {
  color: #777;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(11px, .82vw, 15px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.aeon-workshops-index__arrow {
  justify-self: end;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.4vw, 82px);
  font-weight: 400;
  line-height: .78;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.aeon-workshops-index__item:hover .aeon-workshops-index__title,
.aeon-workshops-index__item:hover .aeon-workshops-index__asterisk,
.aeon-workshops-index__item:focus-visible .aeon-workshops-index__title,
.aeon-workshops-index__item:focus-visible .aeon-workshops-index__asterisk {
  color: #FF5A16;
}

.aeon-workshops-index__item:hover .aeon-workshops-index__copy,
.aeon-workshops-index__item:focus-visible .aeon-workshops-index__copy {
  color: #555;
}

.aeon-workshops-index__item:hover .aeon-workshops-index__arrow,
.aeon-workshops-index__item:focus-visible .aeon-workshops-index__arrow {
  color: #FF5A16;
  opacity: 1;
  transform: translateX(0);
}

.aeon-workshops-index__item:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 8px;
}

.aeon-workshop-detail-page {
  background: #fff;
  color: #050505;
}

.aeon-workshop-detail-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: clamp(118px, 10vw, 178px) 7.5vw clamp(96px, 8vw, 150px);
  background: #fff;
}

.aeon-workshop-detail-hero h1 {
  width: min(1220px, 92vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(52px, 6.35vw, 118px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.072em;
  text-transform: uppercase;
}

.aeon-workshop-italy-body .aeon-workshop-detail-hero h1 {
  width: min(1120px, 82vw);
  font-size: clamp(82px, 11.5vw, 212px);
  line-height: .84;
  letter-spacing: -.076em;
}

.aeon-workshop-detail-hero .micro {
  position: absolute;
  left: 7.5vw;
  right: 7.5vw;
  bottom: clamp(40px, 4vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(18px, 2.8vw, 56px);
  align-items: end;
  color: #777;
  text-align: left;
}

.aeon-workshop-detail-hero .micro span:first-child {
  color: #050505;
  justify-self: start;
  text-align: left;
}

.aeon-workshop-detail-hero .micro span:nth-child(2) {
  color: #050505;
  justify-self: center;
  text-align: center;
}

.aeon-workshop-detail-hero .micro span:last-child {
  justify-self: end;
  text-align: right;
}

.aeon-workshop-detail-opening {
  min-height: 56svh;
  min-height: 56dvh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 92px) clamp(44px, 7vw, 140px);
  align-content: center;
  padding: clamp(82px, 7vw, 128px) 7.5vw;
  background: #fff;
}

.aeon-workshop-detail-opening h2 {
  grid-column: 1 / -1;
  margin: 0;
  color: #FF5A16;
}

.aeon-workshop-detail-opening.aeon-build-opening {
  min-height: 82svh;
  min-height: 82dvh;
  grid-template-columns: 1fr;
  gap: clamp(46px, 4.8vw, 88px);
  padding: clamp(86px, 7vw, 132px) 7.5vw;
}

.aeon-workshop-detail-opening.aeon-build-opening h2 {
  grid-column: auto;
  width: min(1220px, 88vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(38px, 4.9vw, 92px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}

.aeon-workshop-detail-opening.aeon-build-opening .aeon-build-opening__grid {
  grid-column: auto;
}

.aeon-workshop-detail-opening p,
.aeon-workshop-detail-method p,
.aeon-workshop-detail-stories p,
.aeon-workshop-detail-questions p,
.aeon-workshop-detail-new-editions p {
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.018em;
}

.aeon-workshop-detail-question {
  min-height: 44svh;
  min-height: 44dvh;
  display: grid;
  gap: clamp(24px, 2.8vw, 52px);
  align-content: center;
  padding: clamp(72px, 6vw, 110px) 7.5vw clamp(34px, 3vw, 58px);
  background: #fff;
}

.aeon-workshop-detail-question h2 {
  margin: 0;
  color: #FF5A16;
}

.aeon-workshop-detail-question p {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 1.2vw, 22px);
  width: min(980px, 78vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.25vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.046em;
}

.aeon-workshop-detail-question p::before {
  content: "*";
  color: #FF5A16;
  flex: 0 0 auto;
  font-size: .88em;
  line-height: 1;
}

.aeon-workshop-detail-method {
  display: grid;
  gap: clamp(56px, 6vw, 108px);
  padding: clamp(42px, 4vw, 76px) 7.5vw clamp(92px, 8vw, 148px);
  background: #fff;
}

.aeon-workshop-detail-method > p {
  width: min(680px, calc((100% - clamp(44px, 7vw, 140px)) / 2));
  margin-left: calc((100% + clamp(44px, 7vw, 140px)) / 2);
}

.aeon-workshop-detail-method nav {
  display: grid;
}

.aeon-workshop-detail-method a,
.aeon-workshop-detail-stories a,
.aeon-workshop-detail-related a {
  color: #050505;
  transition: color 220ms ease;
}

.aeon-workshop-detail-method a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  min-height: clamp(88px, 8vw, 150px);
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(54px, 7.4vw, 136px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.072em;
  text-transform: uppercase;
}

.aeon-workshop-detail-method a span {
  font-size: clamp(34px, 4.4vw, 82px);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.aeon-workshop-detail-method a:hover,
.aeon-workshop-detail-method a:focus-visible,
.aeon-workshop-detail-stories a:hover,
.aeon-workshop-detail-stories a:focus-visible,
.aeon-workshop-detail-new-editions a:hover,
.aeon-workshop-detail-new-editions a:focus-visible,
.aeon-workshop-detail-related a:hover,
.aeon-workshop-detail-related a:focus-visible {
  color: #FF5A16;
}

.aeon-workshop-detail-method a:hover span,
.aeon-workshop-detail-method a:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.aeon-workshop-detail-method a:focus-visible,
.aeon-workshop-detail-stories a:focus-visible,
.aeon-workshop-detail-new-editions a:focus-visible,
.aeon-workshop-detail-related a:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 8px;
}

.aeon-workshop-detail-stories {
  display: grid;
  gap: clamp(28px, 3vw, 56px);
  padding: clamp(92px, 8vw, 148px) 7.5vw;
  background: #fff;
}

.aeon-workshop-detail-stories > h2,
.aeon-workshop-detail-related > h2 {
  color: #FF5A16;
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: clamp(10px, .75vw, 13px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 clamp(24px, 3vw, 58px);
}

.aeon-workshop-detail-stories a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr) auto;
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  min-height: clamp(96px, 7.6vw, 142px);
}

.aeon-workshop-detail-stories a > span:first-child {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.35vw, 82px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.aeon-workshop-detail-stories p {
  font-size: clamp(14px, .98vw, 18px);
  line-height: 1.22;
  letter-spacing: -.012em;
}

.aeon-workshop-detail-stories a > span:last-child {
  justify-self: end;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.4vw, 82px);
  line-height: .78;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.aeon-workshop-detail-stories a:hover > span:last-child,
.aeon-workshop-detail-stories a:focus-visible > span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.aeon-workshop-detail-questions {
  display: grid;
  gap: clamp(58px, 6vw, 112px);
  padding: clamp(92px, 8vw, 148px) 7.5vw;
  background: #fff;
}

.aeon-workshop-detail-questions > h2 {
  margin: 0 0 clamp(2px, .6vw, 12px);
  color: #FF5A16;
}

.aeon-workshop-detail-questions article {
  width: min(900px, 68vw);
}

.aeon-workshop-detail-questions article h2 {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 1.2vw, 22px);
  margin: 0 0 clamp(22px, 2.4vw, 44px);
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(28px, 3.25vw, 62px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.042em;
}

.aeon-workshop-detail-questions article h2::before {
  content: "*";
  color: #FF5A16;
  flex: 0 0 auto;
  font-size: .88em;
  line-height: 1;
}

.aeon-workshop-detail-material {
  min-height: 38svh;
  min-height: 38dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 7vw, 140px);
  align-items: center;
  padding: clamp(76px, 6vw, 116px) 7.5vw;
  background: #fff;
}

.aeon-workshop-detail-material h2 {
  margin: clamp(16px, 1.8vw, 32px) 0 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(30px, 3.5vw, 66px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.058em;
  text-transform: uppercase;
}

.aeon-workshop-detail-material > .micro {
  display: grid;
  gap: 12px;
  color: #555;
  text-align: right;
}

.aeon-workshop-detail-material .micro,
.aeon-workshop-detail-material > div:first-child > .micro {
  color: #FF5A16;
}

.aeon-workshop-detail-material > .micro span {
  color: #555;
}

.aeon-workshop-detail-new-editions {
  min-height: 50svh;
  min-height: 50dvh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 7vw, 140px);
  align-items: center;
  padding: clamp(82px, 7vw, 132px) 7.5vw;
  background: #fff;
}

.aeon-workshop-detail-new-editions a {
  justify-self: end;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(27px, 3.35vw, 64px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.052em;
  text-align: right;
  transition: color 220ms ease;
}

.aeon-workshop-detail-new-editions a span {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.aeon-workshop-detail-new-editions a:hover span,
.aeon-workshop-detail-new-editions a:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.aeon-workshop-detail-related {
  display: grid;
  gap: clamp(30px, 3vw, 58px);
  padding: clamp(92px, 8vw, 150px) 7.5vw clamp(112px, 10vw, 180px);
  background: #fff;
}

.aeon-workshop-detail-related a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
}

.aeon-workshop-detail-related a > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: .12em;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(38px, 4.9vw, 92px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.066em;
  text-transform: uppercase;
}

.aeon-workshop-detail-related a > span:first-child .aeon-workshop-detail-related__asterisk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: .72em;
  font-size: .9em;
  line-height: 1;
  transform: translateY(.02em);
}

.aeon-workshop-detail-related a > span:last-child {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.4vw, 82px);
  line-height: .78;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.aeon-workshop-detail-related a:hover > span:last-child,
.aeon-workshop-detail-related a:focus-visible > span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.aeon-workshop-accordion {
  padding-top: clamp(104px, 9vw, 168px);
}

.aeon-workshop-panel__copy {
  display: grid;
  gap: clamp(22px, 2.2vw, 42px);
}

.aeon-workshop-method-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(22px, 2vw, 36px);
  color: #FF5A16;
}

.aeon-workshop-method-links a {
  color: inherit;
  transition: color 220ms ease;
}

.aeon-workshop-method-links a:hover,
.aeon-workshop-method-links a:focus-visible {
  color: #050505;
}

.aeon-workshop-panel__copy .aeon-workshop-method-links,
.aeon-workshop-story .aeon-workshop-method-links {
  margin-top: clamp(18px, 1.8vw, 34px);
}

.aeon-workshop-question {
  width: min(980px, 72vw);
  margin-left: 0;
}

.aeon-workshop-question p {
  font-size: clamp(27px, 3.35vw, 64px);
  line-height: .94;
  letter-spacing: -.052em;
}

.aeon-workshop-panel__copy .aeon-workshop-highlight-title {
  margin: 0;
  color: #050505;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aeon-workshop-highlight-title {
  font-weight: 700;
}

.aeon-workshop-highlight-title strong {
  font-weight: 700;
}

.aeon-workshop-story-list {
  display: grid;
  gap: clamp(96px, 9vw, 172px);
}

.aeon-workshop-story {
  display: grid;
  grid-template-columns: minmax(0, calc((100% - clamp(44px, 7vw, 140px)) / 2)) minmax(0, calc((100% - clamp(44px, 7vw, 140px)) / 2));
  gap: clamp(44px, 7vw, 140px);
  align-items: end;
  color: #050505;
}

.aeon-workshop-story:nth-child(even) {
  grid-template-columns: minmax(0, calc((100% - clamp(44px, 7vw, 140px)) / 2)) minmax(0, calc((100% - clamp(44px, 7vw, 140px)) / 2));
}

.aeon-workshop-story:nth-child(even) > div {
  order: 2;
}

.aeon-workshop-story:nth-child(even) > figure {
  order: 1;
}

.aeon-workshop-story h3,
.aeon-workshop-edition-grid h3 {
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 74px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.058em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.aeon-workshop-story p {
  width: 100%;
  margin: clamp(22px, 2vw, 38px) 0 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.018em;
}

.aeon-workshop-story a.micro {
  display: inline-block;
  margin-top: clamp(28px, 3vw, 52px);
  color: #777;
  transition: color 220ms ease;
}

.aeon-workshop-story figure {
  margin: 0;
  background: #fff;
}

.aeon-workshop-story img {
  width: 100%;
  height: auto;
  display: block;
}

.aeon-workshop-story a.micro:hover,
.aeon-workshop-story a.micro:focus-visible {
  color: #FF5A16;
}

.aeon-workshop-story a.micro:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 7px;
}

.aeon-workshop-edition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 7vw, 140px);
  align-items: start;
}

.aeon-workshop-edition-grid section {
  display: grid;
  gap: clamp(16px, 1.6vw, 30px);
}

.aeon-workshop-edition-grid .micro {
  color: #FF5A16;
}

.aeon-workshop-edition-grid p {
  margin: 0;
  color: #050505;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, .9vw, 16px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aeon-observation-page {
  background: #fff;
  color: #050505;
}

.aeon-observation-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: clamp(118px, 10vw, 178px) 7.5vw clamp(108px, 9vw, 172px);
  background: #fff;
}

.aeon-observation-hero h1 {
  width: min(1220px, 92vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(58px, 7.1vw, 132px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.072em;
  text-transform: uppercase;
}

.aeon-observation-hero .micro {
  position: absolute;
  right: 7.5vw;
  bottom: clamp(40px, 4vw, 72px);
  left: 7.5vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(22px, 4vw, 72px);
  align-items: end;
  color: #777;
  text-align: left;
}

.aeon-observation-hero .micro span:first-child {
  color: #050505;
}

.aeon-observation-hero .micro span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.aeon-observation-hero .micro span:last-child {
  justify-self: end;
  text-align: right;
}

.aeon-observation-opening {
  min-height: 76svh;
  min-height: 76dvh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 88px) clamp(44px, 7vw, 140px);
  align-content: center;
  padding: clamp(98px, 8vw, 156px) 7.5vw;
  background: #fff;
}

.aeon-observation-opening h2,
.aeon-observation-question h2,
.aeon-observation-fields h2,
.aeon-observation-cases h2,
.aeon-observation-audience h2,
.aeon-observation-outcome h2,
.aeon-observation-editions .micro {
  color: #FF5A16;
}

.aeon-observation-opening h2 {
  grid-column: 1 / -1;
  margin: 0;
}

.aeon-observation-opening p,
.aeon-observation-method p,
.aeon-observation-field p,
.aeon-observation-reading p,
.aeon-observation-cases p,
.aeon-observation-cases a > span:nth-child(2),
.aeon-observation-audience p,
.aeon-observation-outcome p,
.aeon-observation-editions p {
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.018em;
}

.aeon-observation-opening strong {
  grid-column: 1 / -1;
  display: block;
  width: min(980px, 68vw);
  margin-top: clamp(54px, 6vw, 118px);
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(30px, 3.6vw, 66px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.046em;
}

.aeon-observation-audience,
.aeon-observation-outcome {
  min-height: 72svh;
  min-height: 72dvh;
  display: grid;
  gap: clamp(28px, 4vw, 76px);
  align-content: center;
  padding: clamp(94px, 8vw, 152px) 7.5vw;
  background: #fff;
}

.aeon-observation-question {
  min-height: 44svh;
  min-height: 44dvh;
  display: grid;
  gap: clamp(22px, 3vw, 48px);
  align-content: center;
  padding: clamp(72px, 6vw, 116px) 7.5vw clamp(34px, 3.2vw, 64px);
  background: #fff;
}

.aeon-observation-question p {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 1.2vw, 22px);
  width: min(980px, 78vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.25vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.046em;
}

.aeon-observation-question p::before {
  content: "*";
  color: #FF5A16;
  flex: 0 0 auto;
  font-size: .88em;
  line-height: 1;
}

.aeon-observation-method {
  display: grid;
  gap: clamp(46px, 5vw, 96px);
  padding: clamp(42px, 4vw, 76px) 7.5vw clamp(92px, 8vw, 148px);
  background: #fff;
}

.aeon-observation-method > p {
  width: min(680px, calc((100% - clamp(44px, 7vw, 140px)) / 2));
  margin-left: calc((100% + clamp(44px, 7vw, 140px)) / 2);
}

.aeon-observation-method nav,
.aeon-observation-fields {
  display: grid;
}

.aeon-observation-method a,
.aeon-observation-field button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(50px, 7vw, 132px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.072em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease;
}

.aeon-observation-method a {
  min-height: clamp(96px, 8.6vw, 160px);
}

.aeon-observation-method a span,
.aeon-observation-field button span:last-child {
  font-size: clamp(34px, 4.4vw, 82px);
  line-height: .78;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.aeon-observation-method a:hover,
.aeon-observation-method a:focus-visible,
.aeon-observation-field button:hover,
.aeon-observation-field button:focus-visible,
.aeon-observation-field.is-open button,
.aeon-observation-tabs button:hover,
.aeon-observation-tabs button:focus-visible,
.aeon-observation-tabs button[aria-selected="true"],
.aeon-observation-cases a:hover,
.aeon-observation-cases a:focus-visible,
.aeon-observation-editions a:hover,
.aeon-observation-editions a:focus-visible {
  color: #FF5A16;
}

.aeon-observation-method a:hover span,
.aeon-observation-method a:focus-visible span,
.aeon-observation-field button:hover span:last-child,
.aeon-observation-field button:focus-visible span:last-child,
.aeon-observation-field.is-open button span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.aeon-observation-method a:focus-visible,
.aeon-observation-field button:focus-visible,
.aeon-observation-tabs button:focus-visible,
.aeon-observation-cases a:focus-visible,
.aeon-observation-editions a:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 8px;
}

.aeon-observation-fields {
  min-height: 100svh;
  min-height: 100dvh;
  align-content: center;
  padding: clamp(102px, 8vw, 160px) 7.5vw;
  background: #fff;
}

.aeon-observation-fields > h2 {
  margin: 0 0 clamp(46px, 5vw, 96px);
}

.aeon-observation-field + .aeon-observation-field {
  margin-top: clamp(18px, 1.8vw, 34px);
}

.aeon-observation-field button {
  width: 100%;
  min-height: clamp(72px, 6.4vw, 122px);
}

.aeon-observation-field div {
  width: min(680px, calc((100% - clamp(44px, 7vw, 140px)) / 2));
  margin: clamp(18px, 1.8vw, 34px) 0 clamp(32px, 3.8vw, 72px) calc((100% + clamp(44px, 7vw, 140px)) / 2);
  animation: aeonPanelIn 220ms ease both;
}

.aeon-observation-field div[hidden] {
  display: none;
}

.aeon-observation-reading {
  display: grid;
  gap: clamp(42px, 4vw, 76px);
  padding: clamp(96px, 8vw, 156px) 7.5vw;
  background: #fff;
}

.aeon-observation-reading h2 {
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.25vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.046em;
}

.aeon-observation-reading__grid {
  display: grid;
  grid-template-columns: minmax(0, .52fr);
  gap: clamp(44px, 7vw, 140px);
  align-items: end;
  justify-content: start;
}

.aeon-observation-reading__image {
  min-height: clamp(320px, 42vw, 680px);
  display: grid;
  place-items: center;
  border: 1px solid #d9d9d9;
  color: #777;
}

.aeon-observation-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 38px);
  margin-bottom: clamp(30px, 3vw, 58px);
}

.aeon-observation-tabs button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(30px, 3.8vw, 72px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.056em;
  cursor: pointer;
  transition: color 220ms ease;
}

.aeon-observation-tabs button[aria-selected="true"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .12em;
}

.aeon-observation-tabpanels p[hidden] {
  display: none;
}

.aeon-observation-cases {
  display: grid;
  gap: clamp(30px, 3vw, 58px);
  padding: clamp(98px, 8vw, 156px) 7.5vw;
  background: #fff;
}

.aeon-observation-cases > h2 {
  margin: 0 0 clamp(14px, 1.4vw, 28px);
}

.aeon-observation-cases > p {
  width: min(680px, calc((100% - clamp(44px, 7vw, 140px)) / 2));
  margin: 0 0 clamp(56px, 6vw, 110px) calc((100% + clamp(44px, 7vw, 140px)) / 2);
}

.aeon-observation-cases a {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .54fr) auto;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  min-height: clamp(150px, 12vw, 220px);
  color: #050505;
  transition: color 220ms ease;
}

.aeon-observation-cases a > span:first-child {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(38px, 5.2vw, 98px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.064em;
  text-transform: uppercase;
}

.aeon-observation-cases a > span:nth-child(2) {
  font-size: clamp(14px, .98vw, 18px);
}

.aeon-observation-cases a > span:last-child {
  justify-self: end;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.4vw, 82px);
  line-height: .78;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.aeon-observation-cases a:hover > span:last-child,
.aeon-observation-cases a:focus-visible > span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.aeon-observation-audience p,
.aeon-observation-outcome p {
  width: min(760px, 58vw);
  margin-left: calc((100% + clamp(44px, 7vw, 140px)) / 2);
}

.aeon-observation-outcome strong {
  display: block;
  width: min(1120px, 84vw);
  margin-top: clamp(52px, 6vw, 114px);
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(38px, 5.4vw, 102px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.aeon-observation-editions {
  min-height: 56svh;
  min-height: 56dvh;
  display: grid;
  grid-template-columns: minmax(0, .54fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 140px);
  align-items: center;
  padding: clamp(92px, 8vw, 148px) 7.5vw;
  background: #fff;
}

.aeon-observation-editions div {
  display: grid;
  gap: clamp(24px, 3vw, 58px);
}

.aeon-observation-editions a {
  justify-self: end;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(30px, 3.8vw, 72px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.052em;
  text-align: right;
  transition: color 220ms ease;
}

.aeon-observation-editions a span {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.aeon-observation-editions a:hover span,
.aeon-observation-editions a:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.aeon-build-page {
  background: #fff;
  color: #050505;
}

.aeon-build-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background: #050505;
}

.aeon-build-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.aeon-build-pescador-hero > img {
  object-position: center 72%;
}

.aeon-build-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, .34));
  pointer-events: none;
}

.aeon-build-hero .aeon-top,
.aeon-build-hero .aeon-top.micro {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .35);
}

.aeon-build-hero .aeon-top a[aria-current="page"] {
  color: #FF5A16;
}

.aeon-build-hero__meta {
  position: absolute;
  left: 7.5vw;
  right: 7.5vw;
  bottom: clamp(28px, 3.4vw, 62px);
  z-index: 1;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .42);
}

.aeon-build-hero__meta h1 {
  margin: 0 0 8px;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}

.aeon-build-hero__meta p {
  margin: 0;
}

.aeon-build-opening {
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-content: center;
  gap: clamp(56px, 6vw, 112px);
  padding: clamp(108px, 9vw, 168px) 7.5vw;
  background: #fff;
}

.aeon-build-opening h2 {
  width: min(880px, 72vw);
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(38px, 4.9vw, 92px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}

.aeon-build-opening__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 7vw, 140px);
}

.aeon-build-opening p,
.aeon-build-panel__copy p {
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.018em;
}

.aeon-build-opening p + p,
.aeon-build-panel__copy p + p {
  margin-top: 1em;
}

.aeon-build-accordion {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(118px, 10vw, 178px) 7.5vw clamp(88px, 8vw, 150px);
  background: #fff;
}

.aeon-build-item {
  border: 0;
}

.aeon-build-trigger {
  width: 100%;
  min-height: clamp(104px, 9.2vw, 170px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 110px);
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: #050505;
  cursor: pointer;
  text-align: left;
  transition: color 220ms ease;
}

.aeon-build-trigger span:first-child {
  min-width: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(56px, 7.8vw, 144px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.072em;
  text-transform: uppercase;
}

.aeon-workshop-italy-body .aeon-workshop-edition-grid .micro {
  color: #050505;
  font-weight: 700;
}

.aeon-workshop-italy-body .aeon-workshop-edition-grid a.micro {
  color: #FF5A16;
}

.aeon-workshop-italy-body .aeon-workshop-detail-new-editions {
  min-height: 24svh;
  grid-template-columns: 1fr;
  padding-top: clamp(34px, 4vw, 76px);
}

.aeon-workshop-italy-body .aeon-workshop-detail-new-editions a {
  justify-self: end;
}

.aeon-field-reading-body .aeon-build-highlight {
  min-height: 72svh;
  min-height: 72dvh;
}

.aeon-field-reading-body .aeon-build-highlight p {
  width: min(1180px, 86vw);
}

.aeon-field-reading-body .aeon-workshop-detail-hero h1 {
  width: min(1120px, 82vw);
  font-size: clamp(82px, 11.5vw, 212px);
  line-height: .84;
  letter-spacing: -.076em;
}

.aeon-field-reading-body .aeon-workshop-detail-opening {
  min-height: auto;
  padding-top: clamp(84px, 7vw, 132px);
  padding-bottom: clamp(84px, 7vw, 132px);
}

.aeon-field-reading-body .aeon-field-reading-intro {
  padding-top: clamp(56px, 5vw, 96px);
}

.aeon-field-reading-body .aeon-build-trigger {
  min-height: clamp(82px, 7vw, 132px);
}

.aeon-field-reading-body .aeon-build-trigger span:first-child {
  font-size: clamp(44px, 5.6vw, 104px);
  line-height: .96;
  text-transform: none;
}

.aeon-field-reading-meta {
  display: grid;
  gap: clamp(12px, 1.3vw, 24px);
  align-self: start;
  justify-self: end;
  color: #050505;
  text-align: right;
}

.aeon-field-reading-form-section {
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 7vw, 140px);
  align-items: start;
  padding: clamp(72px, 6vw, 118px) 7.5vw;
  background: #fff;
  color: #050505;
}

.aeon-field-reading-form-copy h2 {
  width: min(680px, 100%);
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(48px, 6.8vw, 126px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.aeon-field-reading-form-copy p {
  width: min(520px, 100%);
  margin: clamp(42px, 5vw, 92px) 0 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.018em;
}

.aeon-field-reading-form {
  width: 100%;
  margin: 0;
}

.aeon-field-reading-options {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.2vw, 22px) clamp(22px, 2vw, 38px);
  margin: 0;
  padding: 0;
  border: 0;
  color: #050505;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, .72vw, 13px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aeon-field-reading-options legend {
  width: 100%;
  margin: 0 0 clamp(10px, 1vw, 18px);
  color: #777;
}

.aeon-field-reading-options label {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
}

.aeon-field-reading-options input[type="radio"],
.aeon-field-reading-options input[type="checkbox"] {
  width: 11px;
  height: 11px;
  accent-color: #FF5A16;
}

.aeon-field-reading-options--stack {
  display: grid;
  gap: clamp(12px, 1.1vw, 20px);
}

.aeon-field-reading-options .contact-form__field {
  margin-top: clamp(10px, 1vw, 18px);
}

.aeon-field-reading-body .aeon-workshop-detail-related p {
  width: min(620px, 100%);
  margin: clamp(28px, 3vw, 56px) 0 clamp(58px, 6vw, 112px);
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.018em;
}

.aeon-build-trigger span:last-child {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(42px, 4.8vw, 88px);
  font-weight: 400;
  line-height: .8;
}

.aeon-build-trigger:hover,
.aeon-build-trigger:focus-visible,
.aeon-build-item.is-open .aeon-build-trigger {
  color: #FF5A16;
}

.aeon-build-trigger:focus-visible,
.aeon-build-final a:focus-visible,
.aeon-build-nav a:focus-visible,
.aeon-build-return a:focus-visible {
  outline: 1px solid #050505;
  outline-offset: 7px;
}

.aeon-build-panel {
  overflow: hidden;
  padding: clamp(34px, 4vw, 72px) 0 clamp(72px, 7vw, 140px);
  animation: aeonPanelIn 220ms ease both;
}

.aeon-build-panel[hidden] {
  display: none;
}

.aeon-build-panel__copy {
  width: min(640px, calc((100% - clamp(44px, 7vw, 140px)) / 2));
  margin: 0 0 0 calc((100% + clamp(44px, 7vw, 140px)) / 2);
}

.aeon-build-panel__copy + .aeon-build-panel__copy,
.aeon-build-contact-sheet + .aeon-build-panel__copy,
.aeon-build-caption + .aeon-build-panel__copy,
.aeon-build-split-media + .aeon-build-panel__copy,
.aeon-build-wide-media + .aeon-build-panel__copy,
.aeon-build-caption + .aeon-build-highlight,
.aeon-build-highlight + .aeon-build-panel__copy {
  margin-top: clamp(64px, 7vw, 130px);
}

.aeon-build-panel__copy + .aeon-build-contact-sheet {
  margin-top: clamp(124px, 11vw, 210px);
}

.aeon-build-contact-sheet + .aeon-build-panel__copy {
  margin-top: clamp(96px, 10vw, 190px);
}

.aeon-build-panel__copy h3 {
  margin: 0 0 clamp(22px, 2.2vw, 42px);
  color: #050505;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aeon-build-side-gallery,
.aeon-build-triptych {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 22px);
  margin-top: clamp(92px, 8vw, 156px);
}

.aeon-build-side-gallery figure,
.aeon-build-triptych figure,
.aeon-build-edit__pair figure,
.aeon-build-final figure,
.aeon-build-contact-sheet {
  margin: 0;
  overflow: hidden;
  background: #f5f5f5;
}

.aeon-build-side-gallery figure,
.aeon-build-triptych figure {
  aspect-ratio: 4 / 5.2;
}

.aeon-build-side-gallery img,
.aeon-build-triptych img,
.aeon-build-final img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.aeon-build-highlight {
  width: min(740px, 56vw);
  margin: clamp(58px, 6vw, 118px) 0 clamp(48px, 5vw, 98px);
}

.aeon-build-highlight p {
  margin: 0;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(19px, 1.55vw, 30px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.026em;
}

.aeon-build-highlight--sentence {
  width: min(880px, 72vw);
}

.aeon-build-highlight--sentence p {
  font-size: clamp(19px, 1.55vw, 30px);
  line-height: 1.08;
}

.aeon-build-contact-sheet {
  width: 100%;
  background: #fff;
}

.aeon-build-contact-sheet img {
  width: 100%;
  display: block;
}

.aeon-build-natural-pair,
.aeon-build-natural-triptych,
.aeon-build-split-media {
  display: grid;
  gap: clamp(44px, 7vw, 140px);
  align-items: start;
  margin-top: clamp(92px, 8vw, 156px);
}

.aeon-build-natural-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aeon-build-natural-triptych {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aeon-build-natural-pair figure,
.aeon-build-natural-triptych figure,
.aeon-build-wide-media,
.aeon-build-split-media figure {
  margin: 0;
  background: #fff;
}

.aeon-build-natural-pair img,
.aeon-build-natural-triptych img,
.aeon-build-wide-media img,
.aeon-build-split-media img {
  width: 100%;
  height: auto;
  display: block;
}

.aeon-build-natural-pair figcaption,
.aeon-build-natural-triptych figcaption,
.aeon-build-wide-media figcaption,
.aeon-build-split-media figcaption,
.aeon-build-mixed-pair figcaption {
  margin-top: clamp(12px, 1vw, 18px);
  color: #777;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, .72vw, 13px);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.aeon-build-caption-split {
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 80px);
}

.aeon-build-caption-split span:first-child {
  max-width: 68ch;
}

.aeon-build-caption-split span:last-child {
  white-space: nowrap;
  text-align: right;
}

.aeon-build-wide-media {
  margin-top: clamp(92px, 8vw, 156px);
}

.aeon-build-split-media {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.aeon-build-split-media .aeon-build-panel__copy {
  width: 100%;
  margin: 0;
}

.aeon-build-mixed-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .4fr);
  gap: clamp(44px, 7vw, 140px);
  align-items: start;
  margin-top: clamp(92px, 8vw, 156px);
}

.aeon-build-mixed-pair figure {
  margin: 0;
  background: #fff;
}

.aeon-build-mixed-pair img {
  width: 100%;
  height: auto;
  display: block;
}

.aeon-build-final-sequence {
  display: grid;
  gap: clamp(64px, 7vw, 130px);
  margin-top: clamp(92px, 8vw, 156px);
}

.aeon-build-final-sequence figure {
  margin: 0;
  background: #fff;
}

.aeon-build-final-sequence img {
  width: 100%;
  height: auto;
  display: block;
}

.aeon-build-final-sequence .aeon-build-triptych,
.aeon-build-final-sequence .aeon-build-natural-pair {
  margin-top: 0;
}

.aeon-build-contact-sheet figcaption,
.aeon-build-caption {
  width: min(640px, calc((100% - clamp(44px, 7vw, 140px)) / 2));
  margin: clamp(12px, 1vw, 18px) 0 0 calc((100% + clamp(44px, 7vw, 140px)) / 2);
  color: #777;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(10px, .72vw, 13px);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.aeon-build-edit {
  display: grid;
  gap: clamp(86px, 9vw, 170px);
}

.aeon-build-edit section {
  display: grid;
  gap: clamp(32px, 3vw, 58px);
}

.aeon-build-edit__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 22px);
  align-items: start;
}

.aeon-build-edit__pair figure {
  aspect-ratio: 3 / 2;
  height: auto;
  display: grid;
  place-items: center;
  background: #fff;
}

.aeon-build-edit__pair img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.aeon-build-edit__pair--detail-crop img {
  object-fit: cover;
}

.aeon-build-edit__img--perseu-helmet {
  object-position: center 8%;
}

.aeon-build-edit__img--davi-hand {
  object-position: center 22%;
}

.aeon-build-edit__pair--vertical {
  width: 100%;
  margin-inline: 0;
  gap: clamp(44px, 7vw, 140px);
}

.aeon-build-edit__pair--vertical figure {
  aspect-ratio: 2 / 3;
}

.aeon-build-edit__pair--vertical img {
  object-fit: cover;
}

.aeon-build-final {
  display: grid;
  gap: clamp(28px, 3vw, 56px);
  padding: clamp(90px, 8vw, 150px) 7.5vw;
  background: #fff;
}

.aeon-build-final--link-only {
  padding-top: clamp(100px, 10vw, 190px);
  padding-bottom: clamp(170px, 14vw, 270px);
}

.aeon-build-final figure {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.aeon-build-final a {
  justify-self: start;
  color: #050505;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(34px, 4.6vw, 86px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.066em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.aeon-build-final a:hover,
.aeon-build-final a:focus-visible,
.aeon-build-nav a:hover,
.aeon-build-nav a:focus-visible {
  color: #FF5A16;
}

.aeon-build-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(72px, 7vw, 132px) clamp(36px, 8vw, 160px);
  align-items: end;
  padding: clamp(130px, 12vw, 230px) 7.5vw clamp(120px, 10vw, 200px);
  background: #fff;
  color: #050505;
}

.aeon-build-nav a {
  color: #050505;
  transition: color 220ms ease;
}

.aeon-build-nav > div {
  display: grid;
  gap: clamp(16px, 1.8vw, 32px);
}

.aeon-build-nav > div {
  justify-items: end;
  text-align: right;
}

.aeon-build-nav > a:first-child {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  text-align: center;
}

.aeon-build-nav__series {
  grid-column: 1;
  grid-row: 1;
  display: block;
}

.aeon-build-nav > div {
  grid-column: 2;
  grid-row: 1;
}

.aeon-build-nav__series,
.aeon-build-nav > div a {
  width: fit-content;
  max-width: 100%;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: clamp(32px, 4.4vw, 82px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.066em;
  text-transform: uppercase;
}

.aeon-build-nav__series span,
.aeon-build-nav > div a span {
  display: inline-block;
  margin-left: .12em;
  line-height: .7;
  transform: translateY(.04em);
}

.aeon-build-nav--two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  padding-top: clamp(150px, 13vw, 250px);
  padding-bottom: clamp(150px, 13vw, 250px);
}

.aeon-build-nav.aeon-build-nav--two-up > .aeon-build-nav__series {
  grid-row: 1;
  font-size: clamp(32px, 4.4vw, 82px);
  white-space: normal;
}

.aeon-build-nav.aeon-build-nav--two-up > .aeon-build-nav__series:first-child {
  grid-column: 1;
  justify-self: start;
  text-align: left;
}

.aeon-build-nav.aeon-build-nav--two-up > .aeon-build-nav__series:last-child {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.aeon-build-return {
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 56px) 7.5vw clamp(140px, 11vw, 220px);
  background: #fff;
}

.aeon-build-return a {
  color: #050505;
  transition: color 220ms ease;
}

.aeon-build-return a:hover,
.aeon-build-return a:focus-visible {
  color: #FF5A16;
}

.aeon-footer--standalone {
  padding: 0 7.5vw clamp(20px, 2.1vw, 38px);
}

@keyframes aeonPanelIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aeon-index__item,
  .aeon-index__copy,
  .aeon-index__arrow {
    transition: none;
  }
}

@media (max-width: 900px) {
  .aeon-top {
    position: absolute;
    inset: calc(18px + env(safe-area-inset-top)) 20px auto;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .aeon-top nav {
    white-space: normal;
    line-height: 1.35;
  }

  .aeon-top > div {
    justify-self: start;
    text-align: left;
  }

  .aeon-opening {
    padding: calc(120px + env(safe-area-inset-top)) 20px 70px;
  }

  .aeon-opening h1 {
    width: 100%;
    margin: 0;
    justify-self: start;
    font-size: clamp(36px, 10.9vw, 56px);
    line-height: .94;
    letter-spacing: -.045em;
  }

  .aeon-opening h1 span {
    white-space: normal;
  }

  .aeon-index {
    padding: 78px 20px;
    justify-content: center;
  }

  .aeon-index__item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 18px;
    align-items: center;
    padding: 18px 0;
    color: #050505;
  }

  .aeon-index__item + .aeon-index__item {
    margin-top: 14px;
  }

  .aeon-index__title {
    font-size: clamp(34px, 10.4vw, 54px);
    line-height: .94;
    white-space: normal;
  }

  .aeon-index__title span {
    min-width: .72em;
    font-size: 1.42em;
    transform: translateY(.1em);
  }

  .aeon-index__copy {
    grid-column: 1 / -1;
    max-width: 32ch;
  }

  .aeon-index__arrow {
    opacity: 1;
    transform: translate(0, 4px);
  }

  .aeon-mother {
    min-height: 108svh;
    min-height: 108dvh;
    row-gap: 76px;
    padding: 58px 20px calc(20px + env(safe-area-inset-bottom));
  }

  .aeon-mother__frame {
    width: min(100%, 430px);
    min-height: 220px;
  }

  .aeon-mother__frame p {
    max-width: calc(100% - 70px);
    font-size: clamp(19px, 5.2vw, 30px);
  }

  .aeon-mother__frame::before,
  .aeon-mother__frame::after,
  .aeon-mother__frame span:first-child::before,
  .aeon-mother__frame span:last-child::before {
    width: clamp(13px, 4vw, 20px);
    height: clamp(13px, 4vw, 20px);
    border-width: 2px 0 0 2px;
  }

  .aeon-mother__frame::after {
    border-width: 2px 2px 0 0;
  }

  .aeon-mother__frame span:first-child::before {
    border-width: 0 0 2px 2px;
  }

  .aeon-mother__frame span:last-child::before {
    border-width: 0 2px 2px 0;
  }

  .aeon-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
  }

  .aeon-footer nav {
    white-space: normal;
    line-height: 1.35;
  }

  .aeon-subpage {
    padding: calc(128px + env(safe-area-inset-top)) 20px 72px;
  }

  .aeon-subpage__intro h1 {
    font-size: clamp(54px, 16vw, 84px);
  }

  .aeon-method-hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(120px + env(safe-area-inset-top)) 20px 72px;
  }

  .aeon-method-hero h1 {
    width: 100%;
    justify-self: end;
    font-size: clamp(62px, 19vw, 96px);
    text-align: right;
  }

  .aeon-method-hero__scroll {
    bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .aeon-method {
    min-height: auto;
    padding: 78px 20px 72px;
  }

  .aeon-method__trigger {
    min-height: clamp(54px, 15vw, 78px);
    gap: 18px;
  }

  .aeon-method__trigger span:first-child {
    font-size: clamp(44px, 13.8vw, 72px);
    line-height: .9;
  }

  .aeon-method__trigger span:last-child {
    font-size: clamp(32px, 10vw, 52px);
  }

  .aeon-method__panel {
    padding: 22px 0 56px;
  }

  .aeon-method__panel p {
    width: min(100%, 32ch);
    margin: 0 0 0 clamp(34px, 10vw, 52px);
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.22;
  }

  .aeon-next-area {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 68px 20px 88px;
  }

  .aeon-next-area a {
    font-size: clamp(42px, 13vw, 70px);
  }

  .aeon-construction-index {
    min-height: auto;
    padding: 86px 20px 92px;
  }

  .aeon-construction-index__item {
    min-height: clamp(74px, 20vw, 104px);
    gap: 18px;
  }

  .aeon-construction-index__item + .aeon-construction-index__item {
    margin-top: 24px;
  }

  .aeon-construction-index__item > span:first-child {
    font-size: clamp(39px, 12.2vw, 64px);
    line-height: .9;
    white-space: normal;
  }

  .aeon-construction-index__item > span:last-child {
    align-self: center;
    font-size: clamp(30px, 9.4vw, 48px);
    opacity: 1;
    transform: none;
  }

  .aeon-current-hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(120px + env(safe-area-inset-top)) 20px 72px;
  }

  .aeon-current-hero h1 {
    width: 100%;
    justify-self: end;
    font-size: clamp(62px, 19vw, 96px);
    text-align: right;
  }

  .aeon-current-hero p,
  .aeon-experiences-hero p {
    left: 20px;
    right: 20px;
    bottom: 72px;
    margin: 0;
  }

  .aeon-current-project {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 104px 20px 112px;
  }

  .aeon-current-project__link {
    gap: 34px;
  }

  .aeon-current-project__title {
    display: inline-flex;
    font-size: clamp(34px, 10.4vw, 54px);
    line-height: .94;
    white-space: normal;
    overflow-wrap: normal;
  }

  .aeon-current-project__question {
    width: 100%;
    font-size: clamp(24px, 7.4vw, 38px);
    line-height: 1;
  }

  .aeon-current-project__meta {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .aeon-current-project__meta span:nth-child(2) {
    display: grid;
    gap: 12px;
    font-size: 0;
  }

  .aeon-current-project__meta span:nth-child(2)::before {
    content: "EM PREPARAÇÃO";
  }

  .aeon-current-project__meta span:nth-child(2)::after {
    content: "ATUALIZADO EM 30.08.2026";
  }

  .aeon-current-project__meta span:nth-child(2)::before,
  .aeon-current-project__meta span:nth-child(2)::after {
    font-size: clamp(12px, .78vw, 16px);
  }

  .aeon-current-project__meta span:last-child {
    justify-self: start;
    margin-top: 12px;
    font-size: clamp(38px, 12vw, 58px);
    opacity: 0;
  }

  .aeon-italy-hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(120px + env(safe-area-inset-top)) 20px 72px;
  }

  .aeon-italy-hero h1 {
    width: 100%;
    font-size: clamp(56px, 17vw, 92px);
    line-height: .88;
    text-align: right;
  }

  .aeon-italy-opening {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 92px 20px 84px;
  }

  .aeon-italy-opening__header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 34px;
  }

  .aeon-italy-opening__header h2 {
    font-size: clamp(28px, 8.3vw, 44px);
    line-height: .96;
  }

  .aeon-italy-opening__header .micro {
    text-align: left;
  }

  .aeon-italy-opening > div + div {
    margin-top: 1em;
  }

  .aeon-italy-opening p,
  .aeon-italy-copy p,
  .aeon-italy-structure p,
  .aeon-italy-articles li {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.22;
  }

  .aeon-italy-accordion {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 88px 20px 92px;
  }

  .aeon-italy-trigger {
    min-height: clamp(78px, 22vw, 118px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
  }

  .aeon-italy-trigger span:first-child {
    font-size: clamp(36px, 11.2vw, 58px);
    line-height: .98;
    white-space: normal;
  }

  .aeon-italy-trigger span:last-child {
    font-size: clamp(32px, 10vw, 52px);
  }

  .aeon-italy-trigger--disabled {
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: center;
  }

  .aeon-italy-trigger--disabled span:last-child {
    font-size: 11px;
    text-align: left;
  }

  .aeon-italy-panel {
    padding: 26px 0 68px;
  }

  .aeon-italy-copy,
  .aeon-italy-copy--wide,
  .aeon-italy-articles,
  .aeon-italy-field-question {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .aeon-italy-table,
  .aeon-italy-articles,
  .aeon-italy-structure,
  .aeon-italy-field-question,
  .aeon-italy-copy + .aeon-italy-copy {
    margin-top: 84px;
  }

  .aeon-italy-structure + .aeon-italy-copy--wide {
    margin-top: 112px;
  }

  .aeon-italy-table div,
  .aeon-italy-structure {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .aeon-italy-articles ol {
    gap: 14px;
  }

  .aeon-italy-field-question p {
    font-size: clamp(34px, 10vw, 52px);
    line-height: .96;
  }

  .aeon-italy-return {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 112px 20px 120px;
  }

  .aeon-italy-return a {
    justify-self: start;
    font-size: clamp(30px, 9.6vw, 52px);
    line-height: .9;
    text-align: left;
  }

  .aeon-experiences-hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(120px + env(safe-area-inset-top)) 20px 72px;
  }

  .aeon-experiences-hero h1 {
    width: 100%;
    font-size: clamp(45px, 13.5vw, 76px);
    line-height: .9;
    text-align: right;
  }

  .aeon-experiences-hero p {
    left: 20px;
    right: 20px;
    bottom: 72px;
  }

  .aeon-experiences-index {
    min-height: auto;
    padding: 78px 20px 72px;
  }

  .aeon-experiences-index__item {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 18px;
    align-items: start;
    padding: 26px 0;
  }

  .aeon-experiences-index__item + .aeon-experiences-index__item {
    margin-top: 44px;
  }

  .aeon-experiences-index__title {
    font-size: clamp(34px, 10.4vw, 54px);
    line-height: .94;
    white-space: normal;
  }

  .aeon-experiences-index__asterisk {
    min-width: .72em;
    font-size: 1.42em;
    transform: translateY(.1em);
  }

  .aeon-experiences-index__copy {
    grid-column: 1 / -1;
    max-width: 36ch;
    margin-left: clamp(34px, 10vw, 52px);
  }

  .aeon-experiences-index__copy br {
    display: none;
  }

  .aeon-experiences-index__arrow {
    align-self: center;
    font-size: clamp(38px, 12vw, 58px);
    opacity: 1;
    transform: none;
  }

  .aeon-workshops-hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(120px + env(safe-area-inset-top)) 20px 72px;
  }

  .aeon-workshops-hero h1 {
    width: 100%;
    font-size: clamp(45px, 13.5vw, 76px);
    line-height: .9;
    text-align: right;
  }

  .aeon-workshops-opening {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 92px 20px 84px;
  }

  .aeon-workshops-opening.aeon-build-opening {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 20px 68px;
  }

  .aeon-workshops-opening h2 {
    margin-bottom: 10px;
  }

  .aeon-workshops-opening.aeon-build-opening h2 {
    width: 100%;
    margin-bottom: 0;
    font-size: clamp(34px, 10vw, 52px);
    line-height: .96;
  }

  .aeon-workshops-opening p {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.22;
  }

  .aeon-workshops-index {
    min-height: auto;
    padding: 58px 20px 64px;
  }

  .aeon-workshops-index__item {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 18px;
    align-items: start;
    padding: 26px 0;
  }

  .aeon-workshops-index__item + .aeon-workshops-index__item {
    margin-top: 30px;
  }

  .aeon-workshops-index__title {
    font-size: clamp(32px, 9.4vw, 50px);
    line-height: .94;
  }

  .aeon-workshops-index__asterisk {
    min-width: .72em;
    font-size: 1.42em;
    transform: translateY(.1em);
  }

  .aeon-workshops-index__copy {
    grid-column: 1 / -1;
    max-width: 38ch;
    margin-left: clamp(34px, 10vw, 52px);
  }

  .aeon-workshops-index__copy br {
    display: none;
  }

  .aeon-workshops-index__arrow {
    align-self: center;
    font-size: clamp(38px, 12vw, 58px);
    opacity: 1;
    transform: none;
  }

  .aeon-workshop-detail-hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-content: center;
    padding: calc(120px + env(safe-area-inset-top)) 20px 104px;
  }

  .aeon-workshop-detail-hero h1 {
    width: 100%;
    font-size: clamp(42px, 12.8vw, 68px);
    line-height: .9;
  }

  .aeon-workshop-detail-hero .micro {
    left: 20px;
    right: 20px;
    bottom: 36px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 10px;
    text-align: left;
  }

  .aeon-workshop-detail-opening {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 92px 20px 84px;
  }

  .aeon-workshop-detail-opening.aeon-build-opening {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 20px 68px;
  }

  .aeon-workshop-detail-opening.aeon-build-opening h2 {
    width: 100%;
    font-size: clamp(34px, 10vw, 52px);
    line-height: .96;
  }

  .aeon-workshop-detail-opening p,
  .aeon-workshop-detail-method p,
  .aeon-workshop-detail-stories p,
  .aeon-workshop-detail-questions p,
  .aeon-workshop-detail-new-editions p {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.22;
  }

  .aeon-workshop-detail-question {
    min-height: 46svh;
    min-height: 46dvh;
    padding: 72px 20px 34px;
  }

  .aeon-workshop-detail-question p {
    width: 100%;
    font-size: clamp(30px, 8.8vw, 46px);
    line-height: 1;
  }

  .aeon-workshop-detail-method,
  .aeon-workshop-detail-stories,
  .aeon-workshop-detail-questions,
  .aeon-workshop-detail-related {
    padding-right: 20px;
    padding-left: 20px;
  }

  .aeon-workshop-detail-method {
    gap: 64px;
    padding-top: 40px;
    padding-bottom: 92px;
  }

  .aeon-workshop-detail-method > p {
    width: 100%;
    margin-left: 0;
  }

  .aeon-workshop-detail-method a {
    min-height: clamp(68px, 18vw, 92px);
    font-size: clamp(39px, 12.2vw, 64px);
    line-height: .94;
  }

  .aeon-workshop-detail-method a span {
    font-size: clamp(30px, 9.4vw, 48px);
    opacity: 1;
    transform: none;
  }

  .aeon-workshop-detail-stories {
    gap: 36px;
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .aeon-workshop-detail-stories a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 18px;
    min-height: 0;
    padding: 18px 0;
  }

  .aeon-workshop-detail-stories a > span:first-child {
    font-size: clamp(30px, 8.8vw, 46px);
    line-height: .94;
  }

  .aeon-workshop-detail-stories a p {
    grid-column: 1 / -1;
  }

  .aeon-workshop-detail-stories a > span:last-child {
    align-self: center;
    font-size: clamp(30px, 9.4vw, 48px);
    opacity: 1;
    transform: none;
  }

  .aeon-workshop-detail-questions {
    gap: 72px;
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .aeon-workshop-detail-questions article {
    width: 100%;
  }

  .aeon-workshop-detail-questions article h2 {
    font-size: clamp(28px, 8.2vw, 42px);
    line-height: 1;
  }

  .aeon-workshop-detail-material,
  .aeon-workshop-detail-new-editions {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 86px 20px 92px;
  }

  .aeon-workshop-detail-material h2 {
    font-size: clamp(32px, 9.4vw, 50px);
    line-height: .94;
  }

  .aeon-workshop-detail-material > .micro {
    text-align: left;
  }

  .aeon-workshop-detail-new-editions a {
    justify-self: start;
    font-size: clamp(28px, 8.4vw, 44px);
    line-height: .94;
    text-align: left;
  }

  .aeon-workshop-detail-new-editions a span {
    opacity: 1;
    transform: none;
  }

  .aeon-workshop-accordion {
    min-height: auto;
    padding: 76px 20px 78px;
  }

  .aeon-workshop-panel__copy {
    width: 100%;
    margin-left: 0;
  }

  .aeon-workshop-question {
    width: 100%;
  }

  .aeon-workshop-question p {
    font-size: clamp(28px, 8.4vw, 44px);
    line-height: .94;
  }

  .aeon-workshop-story-list {
    gap: 68px;
  }

  .aeon-workshop-story,
  .aeon-workshop-story:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .aeon-workshop-story:nth-child(even) > div,
  .aeon-workshop-story:nth-child(even) > figure {
    order: initial;
  }

  .aeon-workshop-story h3,
  .aeon-workshop-edition-grid h3 {
    font-size: clamp(30px, 8.8vw, 46px);
    line-height: .96;
  }

  .aeon-workshop-story p {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.22;
  }

  .aeon-workshop-story .micro {
    margin-top: 22px;
  }

  .aeon-workshop-edition-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .aeon-workshop-detail-related {
    gap: 30px;
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .aeon-workshop-detail-related a {
    gap: 16px 18px;
  }

  .aeon-workshop-detail-related a > span:first-child {
    font-size: clamp(30px, 9vw, 48px);
    line-height: .96;
  }

  .aeon-workshop-detail-related a > span:last-child {
    font-size: clamp(30px, 9.4vw, 48px);
    opacity: 1;
    transform: none;
  }

  .aeon-observation-hero {
    min-height: 100svh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    align-content: center;
    padding: calc(120px + env(safe-area-inset-top)) 20px 104px;
  }

  .aeon-observation-hero h1 {
    width: 100%;
    font-size: clamp(42px, 12.8vw, 68px);
    line-height: .9;
  }

  .aeon-observation-hero .micro {
    right: 20px;
    bottom: 36px;
    left: 20px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 10px;
    text-align: left;
  }

  .aeon-observation-hero .micro span:nth-child(2) {
    justify-self: center;
    text-align: center;
  }

  .aeon-observation-hero .micro span:last-child {
    justify-self: end;
    text-align: right;
  }

  .aeon-observation-opening {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 92px 20px 84px;
  }

  .aeon-observation-opening h2 {
    margin-bottom: 10px;
  }

  .aeon-observation-opening p,
  .aeon-observation-method p,
  .aeon-observation-field p,
  .aeon-observation-reading p,
  .aeon-observation-cases p,
  .aeon-observation-cases a > span:nth-child(2),
  .aeon-observation-audience p,
  .aeon-observation-outcome p,
  .aeon-observation-editions p {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.22;
  }

  .aeon-observation-opening strong {
    width: 100%;
    margin-top: 62px;
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1;
  }

  .aeon-observation-audience,
  .aeon-observation-outcome {
    min-height: auto;
    gap: 34px;
    padding: 92px 20px 84px;
  }

  .aeon-observation-question {
    min-height: 46svh;
    min-height: 46dvh;
    gap: 28px;
    padding: 72px 20px 34px;
  }

  .aeon-observation-question p {
    width: 100%;
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1;
  }

  .aeon-observation-method {
    gap: 54px;
    padding: 40px 20px 92px;
  }

  .aeon-observation-method > p,
  .aeon-observation-field div,
  .aeon-observation-cases > p,
  .aeon-observation-audience p,
  .aeon-observation-outcome p {
    width: 100%;
    margin-left: 0;
  }

  .aeon-observation-method a,
  .aeon-observation-field button {
    min-height: clamp(68px, 18vw, 92px);
    font-size: clamp(39px, 12.2vw, 64px);
    line-height: .94;
  }

  .aeon-observation-method a span,
  .aeon-observation-field button span:last-child {
    font-size: clamp(30px, 9.4vw, 48px);
    opacity: 1;
    transform: none;
  }

  .aeon-observation-fields {
    min-height: auto;
    padding: 86px 20px 92px;
  }

  .aeon-observation-fields > h2 {
    margin-bottom: 40px;
  }

  .aeon-observation-field div {
    margin-top: 14px;
    margin-bottom: 34px;
  }

  .aeon-observation-reading,
  .aeon-observation-cases {
    gap: 42px;
    padding: 86px 20px 92px;
  }

  .aeon-observation-reading h2 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1;
  }

  .aeon-observation-reading__grid {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .aeon-observation-tabs {
    gap: 18px 24px;
    margin-bottom: 30px;
  }

  .aeon-observation-tabs button {
    font-size: clamp(30px, 9vw, 46px);
  }

  .aeon-observation-cases > p {
    margin-bottom: 42px;
  }

  .aeon-observation-cases a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    min-height: 0;
    padding: 20px 0;
  }

  .aeon-observation-cases a > span:first-child {
    font-size: clamp(32px, 9.4vw, 50px);
    line-height: .94;
  }

  .aeon-observation-cases a > span:nth-child(2) {
    grid-column: 1 / -1;
  }

  .aeon-observation-cases a > span:last-child {
    align-self: center;
    font-size: clamp(30px, 9.4vw, 48px);
    opacity: 1;
    transform: none;
  }

  .aeon-observation-outcome strong {
    width: 100%;
    font-size: clamp(34px, 10vw, 52px);
    line-height: .96;
  }

  .aeon-observation-editions {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 86px 20px 92px;
  }

  .aeon-observation-editions a {
    justify-self: start;
    font-size: clamp(30px, 9vw, 46px);
    line-height: .94;
    text-align: left;
  }

  .aeon-observation-editions a span {
    opacity: 1;
    transform: none;
  }

  .aeon-build-hero > img {
    object-position: center bottom;
  }

  .aeon-build-hero__meta {
    left: 20px;
    right: 20px;
    bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .aeon-build-opening {
    min-height: auto;
    gap: 44px;
    padding: 92px 20px 84px;
  }

  .aeon-build-opening h2 {
    width: 100%;
    font-size: clamp(34px, 10vw, 52px);
    line-height: .96;
  }

  .aeon-build-opening__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .aeon-build-opening p,
  .aeon-build-panel__copy p {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.22;
  }

  .aeon-build-opening__grid > div + div {
    margin-top: 1em;
  }

  .aeon-build-accordion {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 88px 20px 92px;
  }

  .aeon-build-trigger {
    min-height: clamp(78px, 22vw, 118px);
    gap: 18px;
  }

  .aeon-build-trigger span:first-child {
    font-size: clamp(39px, 12.2vw, 64px);
    line-height: 1;
    white-space: normal;
  }

  .aeon-build-trigger span:last-child {
    font-size: clamp(32px, 10vw, 52px);
  }

  .aeon-build-panel {
    padding: 26px 0 68px;
  }

  .aeon-build-panel__copy,
  .aeon-build-contact-sheet figcaption,
  .aeon-build-caption {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .aeon-build-panel__copy + .aeon-build-panel__copy,
  .aeon-build-contact-sheet + .aeon-build-panel__copy,
  .aeon-build-caption + .aeon-build-panel__copy,
  .aeon-build-split-media + .aeon-build-panel__copy,
  .aeon-build-wide-media + .aeon-build-panel__copy,
  .aeon-build-caption + .aeon-build-highlight,
  .aeon-build-highlight + .aeon-build-panel__copy {
    margin-top: 70px;
  }

  .aeon-build-caption-split {
    display: grid;
    gap: 8px;
  }

  .aeon-build-caption-split span:last-child {
    text-align: left;
  }

  .aeon-build-panel__copy + .aeon-build-contact-sheet {
    margin-top: 104px;
  }

  .aeon-build-contact-sheet + .aeon-build-panel__copy {
    margin-top: 96px;
  }

  .aeon-build-side-gallery,
  .aeon-build-triptych,
  .aeon-build-edit__pair,
  .aeon-build-natural-pair,
  .aeon-build-natural-triptych,
  .aeon-build-split-media,
  .aeon-build-mixed-pair {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aeon-build-side-gallery figure,
  .aeon-build-triptych figure {
    aspect-ratio: 4 / 5.2;
  }

  .aeon-build-highlight,
  .aeon-build-highlight--sentence {
    width: 100%;
    margin: 58px 0 48px;
  }

  .aeon-build-highlight p {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.22;
  }

  .aeon-build-edit__pair figure {
    aspect-ratio: 3 / 2;
  }

  .aeon-build-edit__pair--vertical {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    gap: 28px;
  }

  .aeon-build-edit__pair--vertical figure {
    aspect-ratio: 2 / 3;
  }

  .aeon-build-edit {
    gap: 86px;
  }

  .aeon-build-final {
    gap: 24px;
    padding: 112px 20px 140px;
  }

  .aeon-build-final figure {
    aspect-ratio: 4 / 5;
  }

  .aeon-build-final a,
  .aeon-build-nav > div a {
    font-size: clamp(30px, 9.6vw, 52px);
    line-height: .9;
  }

  .aeon-build-natural-pair,
  .aeon-build-natural-triptych,
  .aeon-build-split-media,
  .aeon-build-wide-media,
  .aeon-build-mixed-pair,
  .aeon-build-final-sequence {
    margin-top: 84px;
  }

  .aeon-build-return {
    padding: 8px 20px 116px;
  }

  .aeon-build-nav {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 112px 20px 92px;
  }

  .aeon-build-nav > a:first-child,
  .aeon-build-nav__series,
  .aeon-build-nav > div {
    grid-column: 1;
  }

  .aeon-build-nav__series {
    grid-row: 1;
  }

  .aeon-build-nav > div {
    grid-row: 2;
  }

  .aeon-build-nav > a:first-child {
    grid-row: 3;
    justify-self: center;
    text-align: center;
  }

  .aeon-build-nav > div {
    justify-items: start;
    text-align: left;
  }

  .aeon-build-nav--two-up {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .aeon-build-nav.aeon-build-nav--two-up > .aeon-build-nav__series:first-child,
  .aeon-build-nav.aeon-build-nav--two-up > .aeon-build-nav__series:last-child {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .aeon-footer--standalone {
    padding: 0 20px calc(20px + env(safe-area-inset-bottom));
  }
}

/* E Ainda Sou Pescador uses high-key images; keep their tonal range untouched. */
.pescador-series-page .series-hero {
  background: #fff;
}

.pescador-series-page .series-hero::after {
  display: none;
}

.pescador-series-page .series-top,
.pescador-series-page .series-hero__meta {
  color: #050505;
  text-shadow: none;
}

.pescador-series-page .series-top a:hover {
  color: #777;
}

.pescador-series-page .bromo-vertical-triptych figure:nth-child(1) img,
.pescador-series-page .bromo-vertical-triptych figure:nth-child(2) img {
  object-position: center bottom;
}

.home-hero[data-hero-tone="light"]::after {
  opacity: 0;
}

.home-hero[data-hero-tone="light"] .home-hero__top,
.home-hero[data-hero-tone="light"] .home-hero__horizon,
.home-hero[data-hero-tone="light"] .home-hero__scroll {
  color: rgba(5, 5, 5, .88);
  text-shadow: none;
}

.home-hero[data-hero-tone="light"] .home-hero__top a:hover {
  color: #777;
}

@media (max-width: 900px) {
  .series-hero {
    min-height: 78svh;
    min-height: 78dvh;
  }

  .feira-series-page .series-hero--image img,
  .pescador-series-page .series-hero--image img {
    object-position: center bottom;
  }

  .series-wide,
  .series-duo-wide figure,
  .series-media-duo figure {
    aspect-ratio: auto;
  }

  .series-wide img,
  .series-duo-wide img,
  .series-media-duo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .series-sequence,
  .series-duo-wide,
  .series-media-duo,
  .bromo-wide-sequence {
    gap: 18px;
    padding: 18px;
  }

  .series-sequence--first {
    padding-top: 48px;
  }

  .series-text-panel,
  .series-statement,
  .bromo-text-panel {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .aeon-experience {
    min-height: 64svh;
    min-height: 64dvh;
  }

  .aeon-experience__art {
    height: 64svh;
    height: 64dvh;
    object-fit: contain;
    object-position: center bottom;
    transform: translateY(-4%);
  }

  .aeon-experience::after {
    display: none;
  }

  .aeon-experience__overlay {
    display: block;
    inset: 0;
  }

  .aeon-experience__overlay p {
    position: absolute;
    right: 20px;
    bottom: calc(94px + env(safe-area-inset-bottom));
    left: 20px;
    max-width: 92vw;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 1;
  }

  .aeon-experience__cta {
    position: absolute;
    right: 20px;
    bottom: calc(50px + env(safe-area-inset-bottom));
    left: 20px;
    width: fit-content;
    margin: 0 auto;
    font-size: 12px;
    letter-spacing: .12em;
  }

  .aeon-subpage__intro h1 {
    max-width: 100%;
    font-size: clamp(44px, 13.2vw, 62px);
    line-height: .9;
    letter-spacing: -.055em;
    overflow-wrap: normal;
  }

  .aeon-build-accordion {
    min-height: auto;
    padding: 68px 20px 76px;
  }

  .aeon-build-trigger {
    min-height: auto;
    padding: 18px 0;
  }

  .aeon-build-trigger span:first-child {
    font-size: clamp(32px, 9.4vw, 46px);
    line-height: 1.02;
    letter-spacing: -.052em;
  }

  .aeon-build-side-gallery figure,
  .aeon-build-triptych figure,
  .aeon-build-edit__pair figure,
  .aeon-build-natural-pair figure,
  .aeon-build-natural-triptych figure,
  .aeon-build-split-media figure,
  .aeon-build-wide-media figure,
  .aeon-build-mixed-pair figure,
  .aeon-build-final figure {
    aspect-ratio: auto;
  }

  .aeon-build-side-gallery img,
  .aeon-build-triptych img,
  .aeon-build-edit__pair img,
  .aeon-build-natural-pair img,
  .aeon-build-natural-triptych img,
  .aeon-build-split-media img,
  .aeon-build-wide-media img,
  .aeon-build-mixed-pair img,
  .aeon-build-final img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .aeon-build-edit__pair--detail-crop figure {
    aspect-ratio: 16 / 10;
  }

  .aeon-build-edit__pair--detail-crop img {
    height: 100%;
    object-fit: cover;
  }

  .aeon-build-nav,
  .aeon-build-nav--two-up {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
    padding: 88px 20px 108px;
  }

  .aeon-build-nav > a:first-child,
  .aeon-build-nav__series,
  .aeon-build-nav > div,
  .aeon-build-nav.aeon-build-nav--two-up > .aeon-build-nav__series:first-child,
  .aeon-build-nav.aeon-build-nav--two-up > .aeon-build-nav__series:last-child {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: 100%;
    text-align: left;
  }

  .aeon-build-nav > div {
    justify-items: start;
    text-align: left;
  }

  .aeon-build-nav__series,
  .aeon-build-nav > div a,
  .aeon-build-final a {
    width: 100%;
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 42px);
    line-height: .96;
    letter-spacing: -.052em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .aeon-build-nav__series span,
  .aeon-build-nav > div a span,
  .aeon-build-final a span,
  .aeon-experience__cta span {
    font-size: 0 !important;
  }

  .aeon-build-nav__series span::before,
  .aeon-build-nav > div a span::before,
  .aeon-build-final a span::before {
    content: "↗︎";
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: clamp(25px, 7.8vw, 39px);
    line-height: 1;
  }

  .aeon-experience__cta span::before {
    content: "↗︎";
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
  }
}
