:root {
  --primary: #7a897c;
  --primary-deep: #4d5d54;
  --ink: #33423b;
  --ink-deep: #3f5047;
  --sage: #7a897c;
  --moss: #657269;
  --cream: #eee9df;
  --paper: #f8f5ee;
  --sand: #d8cfbd;
  --clay: #a77760;
  --line: rgba(51, 66, 59, 0.2);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

.tur-landing {
  min-height: 100vh;
}

.tur-landing .hero-media img,
.tur-landing .media-frame img,
.tur-landing .offset-photo img,
.tur-landing .species-photo img,
.tur-landing .experience-photo img,
.tur-landing .work-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.admin-bar .tur-landing .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .tur-landing .site-header {
    top: 46px;
  }
}

body::before {
  display: none;
}

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

img {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 7px 32px;
  color: #fff;
  background: rgba(122, 137, 124, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand img {
  border-radius: 50%;
}

.brand .header-logo {
  width: 118px;
  height: auto;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 42px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
  transition: opacity 180ms ease;
}

.site-header nav a:hover {
  opacity: 0.58;
}

.nav-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

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

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(17, 29, 22, 0.22) 0%,
    rgba(17, 29, 22, 0.32) 55%,
    rgba(17, 29, 22, 0.52) 100%
  );
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}

.hero h1,
.hero-intro,
.scroll-cue {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(241, 238, 229, 0.22);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 58vw;
  height: 58vw;
  right: -16vw;
  top: -18vw;
}

.hero-orbit-two {
  width: 32vw;
  height: 32vw;
  right: 7vw;
  top: 9vw;
}

.hero-copy,
.scroll-cue {
  position: relative;
  z-index: 3;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 2fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: end;
  min-height: 100svh;
  padding: 132px 4vw 7vw;
}

.eyebrow,
.section-index {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  color: var(--cream) !important;
  font-family: var(--serif);
  font-size: clamp(44px, 6.1vw, 104px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.hero .eyebrow,
.hero .hero-intro,
.hero .scroll-cue {
  color: var(--cream) !important;
}

.hero h1 em {
  color: var(--sand);
  font-weight: 400;
}

.hero-intro {
  align-self: end;
  max-width: 400px;
  padding-bottom: 4px;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
}

.hero-intro p {
  margin: 0 0 13px;
}

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(241, 238, 229, 0.5);
  border-radius: 50%;
  font-style: normal;
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: clamp(84px, 9vw, 132px) 7vw;
  background: var(--cream);
}

.manifesto-mark {
  position: absolute;
  right: -2vw;
  bottom: -5vw;
  opacity: 0.1;
  transform: rotate(-10deg) scale(2.1);
  mix-blend-mode: multiply;
}

.manifesto blockquote {
  position: relative;
  z-index: 1;
  width: min(1050px, 100%);
  margin: 0;
}

.manifesto blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6.2vw, 96px);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.manifesto blockquote p:nth-child(2) {
  margin-top: 0.34em;
  padding-left: 12vw;
  color: var(--clay);
}

.manifesto cite {
  display: block;
  margin-top: 42px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.media-frame img,
.offset-photo img,
.species-photo img,
.experience-photo img,
.work-images img {
  object-fit: cover;
}

.panorama {
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  background: var(--ink-deep);
}

.panorama img,
.species-photo img,
.experience-photo img,
.work-images img {
  object-fit: contain;
}

.panorama::after,
.offset-photo::after,
.species-photo::after,
.experience-photo::after {
  display: none;
}

.section-pad {
  padding: clamp(76px, 8vw, 124px) 4vw;
}

.section-index {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-index.light {
  color: rgba(241, 238, 229, 0.72);
  border-color: rgba(241, 238, 229, 0.22);
}

.purpose {
  background: var(--paper);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6vw;
  padding-top: 6vw;
}

.purpose h2,
.editorial-grid h2,
.section-heading h2,
.experience h2,
.join > h2,
.network h2,
.contact-intro h2,
.partners h2,
.reserve h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.purpose-statement {
  max-width: 900px;
  margin: 0;
  color: var(--clay);
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 96px);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.new-way {
  overflow: hidden;
  background: #e7e2d7;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9vw;
  padding-top: 7vw;
}

.editorial-grid h2 {
  position: sticky;
  top: 120px;
  align-self: start;
}

.prose {
  max-width: 680px;
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1.48;
}

.prose p {
  margin: 0 0 1.25em;
}

.pull-line {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 58px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.lime {
  color: var(--sand);
}

.offset-photo {
  position: relative;
  width: 72%;
  height: min(48vw, 720px);
  min-height: 430px;
  margin: 7vw 0 -9vw auto;
  overflow: hidden;
  border-radius: 140px 0 0 0;
}

.reserve {
  position: relative;
  overflow: hidden;
  padding-top: 17vw;
  color: var(--cream);
  background: var(--ink-deep);
}

.reserve::before {
  position: absolute;
  top: 0;
  right: 15%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(241, 238, 229, 0.1);
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
  padding: 7vw 0 10vw;
}

.reserve h2 {
  max-width: 850px;
  color: var(--cream) !important;
}

.reserve .pull-line,
.network h2,
.network .pull-line {
  color: var(--cream) !important;
}

.reserve .eyebrow {
  margin-bottom: 26px;
  color: var(--sand);
}

.light-prose {
  color: rgba(241, 238, 229, 0.82);
}

.video-shell {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: var(--ink);
  background: var(--sand);
  border-radius: 3px;
}

.video-ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-shell > p {
  margin: 16px 2px 2px;
  font-size: 12px;
}

.species-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 12px;
  align-items: end;
  margin-top: 12px;
}

.species-card {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 30px;
  color: var(--ink);
  background: var(--clay);
}

.species-visual {
  position: relative;
  display: grid;
  flex: 1;
  place-items: center;
}

.shell-ring {
  position: absolute;
  border: 1px solid rgba(24, 55, 47, 0.52);
  border-radius: 48% 52% 45% 55%;
}

.ring-one {
  width: 72%;
  aspect-ratio: 0.9;
  transform: rotate(18deg);
}

.ring-two {
  width: 50%;
  aspect-ratio: 0.9;
  transform: rotate(-22deg);
}

.ring-three {
  width: 28%;
  aspect-ratio: 0.9;
  transform: rotate(42deg);
}

.shell-core {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  color: var(--clay);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
}

.species-photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: var(--ink-deep);
}

.species-feature img {
  object-position: center 58%;
}

.work {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: end;
  padding: 6vw 0 8vw;
}

.section-heading p {
  margin: 0;
  color: var(--clay);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

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

.work-item {
  display: grid;
  grid-template-columns: 80px 0.9fr 1.3fr;
  gap: 28px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.work-item > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.work-item h3,
.audience-card h3,
.contact-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.6vw, 46px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.work-item p {
  max-width: 650px;
  margin: 0;
}

.work-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 8vw;
}

.work-images figure {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #e8e2d7;
}

.work-images figure:nth-child(even) {
  margin-top: 0;
}

.work-images figure:nth-child(1) {
  grid-column: 1 / span 7;
  aspect-ratio: 16 / 9;
}

.work-images figure:nth-child(2) {
  grid-column: 8 / span 5;
  margin-top: 6vw;
}

.work-images figure:nth-child(3) {
  grid-column: 1 / span 5;
}

.work-images figure:nth-child(4) {
  grid-column: 6 / span 7;
  margin-top: 4vw;
}

.experience {
  display: block;
  min-height: 0;
  padding: clamp(76px, 8vw, 124px) 4vw 0;
  background: #dde0d8;
}

.experience-photo {
  position: relative;
  width: 82%;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 4.5vw 0 0 auto;
  overflow: hidden;
  border-radius: 0 120px 0 0;
  background: var(--ink-deep);
}

.experience-copy {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8vw;
  padding: 0;
}

.experience-copy .section-index {
  grid-column: 1 / -1;
  margin-bottom: 4vw;
}

.experience h2 {
  align-self: start;
  margin: 0;
}

.experience-prose > p {
  margin: 0 0 1.4em;
  font-size: clamp(18px, 1.4vw, 23px);
}

.experience-prose .pull-line {
  font-size: clamp(34px, 4vw, 64px);
}

.join {
  background: var(--cream);
}

.join > h2 {
  max-width: 950px;
  padding: 5vw 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
}

.audience-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.audience-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}

.external-arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  font-size: clamp(34px, 3.1vw, 54px);
}

.audience-card ul {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.audience-icon {
  width: min(168px, 72%);
  height: auto;
  align-self: flex-end;
  margin-top: 38px;
  color: var(--sage);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-icon .icon-orbit {
  stroke-dasharray: 2 7;
  opacity: 0.5;
}

.audience-card:nth-child(1) {
  background: #dce1da;
}

.audience-card:nth-child(2) {
  background: var(--paper);
}

.audience-card:nth-child(3) {
  background: #e7ddd1;
}

.audience-card:nth-child(4) {
  background: var(--sand);
}

.network {
  overflow: hidden;
  color: var(--cream);
  background: var(--primary-deep);
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  padding-top: 7vw;
}

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

.network-grid > div > p {
  max-width: 700px;
  margin: 2em 0 0;
  color: rgba(241, 238, 229, 0.78);
  font-size: clamp(16px, 1.35vw, 22px);
}

.world-map {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(241, 238, 229, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 48%, rgba(216, 207, 189, 0.36), transparent 4%),
    radial-gradient(circle at 68% 43%, rgba(241, 238, 229, 0.1), transparent 25%),
    radial-gradient(circle at center, #718077 0%, #46564e 68%);
}

.globe-grid {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(241, 238, 229, 0.18);
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent 0 15%, rgba(241, 238, 229, 0.1) 15.2% 15.5%),
    repeating-linear-gradient(90deg, transparent 0 15%, rgba(241, 238, 229, 0.1) 15.2% 15.5%);
  transform: rotate(-12deg);
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-pin b {
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 1px var(--sand), 0 0 24px var(--sand);
}

.morocco { top: 43%; left: 39%; color: var(--sand); }
.cordoba { top: 34%; left: 43%; color: var(--sand); }
.future-one { top: 61%; left: 68%; opacity: 0.58; }
.future-two { top: 28%; left: 71%; opacity: 0.58; }

.contact {
  background: var(--sand);
}

.contact-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
  padding: 7vw 0 10vw;
}

.contact-intro > div {
  padding-top: 10px;
  font-size: clamp(18px, 1.4vw, 23px);
}

.contact-intro > div p {
  margin: 0 0 1.4em;
}

.contact-statement {
  padding: 10vw 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-statement p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 6.5vw, 104px);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.contact-statement p:nth-child(even) {
  padding-left: 12vw;
  color: var(--clay);
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  padding-top: 10vw;
}

.contact-prompt {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(51, 66, 59, 0.72);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
  margin-top: 28px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-dot {
  fill: currentColor;
  stroke: none;
}

.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 18px;
}

.contact-form label {
  display: block;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(24, 55, 47, 0.58);
  border-radius: 0;
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 2px 0 var(--clay);
}

.form-wide {
  grid-column: 1 / -1;
}

.contact-form button {
  display: flex;
  width: 100%;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 18px 22px;
  color: var(--cream);
  background: var(--ink);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-form button:hover {
  background: var(--clay);
  transform: translateY(-2px);
}

.contact-form button .external-arrow {
  width: 18px;
  height: 18px;
}

.form-status {
  min-height: 24px;
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
}

.partners {
  background: var(--paper);
}

.partners-copy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 7vw 0 9vw;
}

.partners-copy p {
  max-width: 780px;
  margin: 0;
  font-size: clamp(20px, 1.8vw, 30px);
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-wordmark {
  display: grid;
  min-height: 170px;
  place-items: center;
  padding: 30px clamp(22px, 2.3vw, 42px);
  border-right: 1px solid var(--line);
  color: var(--sage);
  text-align: center;
}

.partner-logo {
  display: block;
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.partner-logo--intern {
  max-width: 175px;
}

.partner-logo--adventure {
  max-width: 105px;
  height: 105px;
}

.partner-logo--rewilding {
  max-width: 178px;
}

.partner-logo--goabroad {
  max-width: 118px;
  height: 92px;
}

.partner-text-logo {
  display: inline-flex;
  min-height: 76px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(26px, 1.8vw, 31px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-transform: uppercase;
}

.partner-text-logo span:last-child {
  margin-left: 1.4em;
  font-style: italic;
  font-weight: 400;
}

.partner-wordmark:last-child {
  border-right: 0;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding: 80px 4vw 32px;
  color: var(--cream);
  background: var(--ink-deep);
}

footer a {
  color: var(--cream) !important;
}

.footer-brand {
  font-size: 20px;
}

footer > p,
.footer-actions {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-actions {
  justify-self: end;
}

.footer-actions {
  display: flex;
  gap: 24px;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-actions .external-arrow {
  width: 14px;
  height: 14px;
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: rise both linear;
    animation-timeline: view();
    animation-range: entry 10% cover 35%;
  }

  @keyframes rise {
    from {
      opacity: 0.1;
      transform: none;
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}

@media (max-width: 1080px) {
  .hero-copy {
    grid-template-columns: 90px 1fr;
  }

  .hero-intro {
    grid-column: 2;
    max-width: 720px;
  }

  .reserve-grid,
  .network-grid,
  .contact-intro {
    grid-template-columns: 1fr;
  }

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

  .partner-wordmark:nth-child(3) {
    border-right: 0;
  }
}

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

  .site-header {
    min-height: 90px;
    padding: 4px 18px;
  }

  .brand .header-logo {
    width: 96px;
  }

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

  .hero-copy {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 24px;
    padding: 112px 18px 96px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.8vw, 70px);
  }

  .hero-intro {
    max-width: 100%;
    font-size: 13px;
  }

  .hero-intro p:nth-child(2) {
    display: none;
  }

  .scroll-cue {
    right: 18px;
    bottom: 18px;
  }

  .manifesto {
    min-height: 0;
    padding: 82px 18px;
  }

  .manifesto blockquote p:nth-child(2),
  .contact-statement p:nth-child(even) {
    padding-left: 0;
  }

  .panorama {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .section-pad {
    padding: 88px 18px;
  }

  .purpose-grid,
  .editorial-grid,
  .section-heading,
  .species-grid,
  .experience,
  .audience-grid,
  .contact-grid,
  .partners-copy {
    grid-template-columns: 1fr;
  }

  .purpose-grid,
  .editorial-grid {
    gap: 46px;
    padding-top: 64px;
  }

  .editorial-grid h2 {
    position: static;
  }

  .offset-photo {
    width: calc(100% + 18px);
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    margin: 70px -18px -72px 0;
    border-radius: 80px 0 0 0;
  }

  .reserve {
    padding-top: 132px;
  }

  .reserve-grid {
    gap: 60px;
    padding: 64px 0 90px;
  }

  .video-shell {
    margin-right: -18px;
    margin-left: -18px;
    padding: 9px;
  }

  .species-card,
  .species-photo {
    min-height: 0;
  }

  .work-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .work-item p {
    grid-column: 2 / -1;
  }

  .work-images {
    grid-template-columns: 1fr;
  }

  .work-images figure {
    grid-column: 1 !important;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .work-images figure:nth-child(n) {
    margin-top: 0;
  }

  .experience {
    display: block;
    padding: 78px 18px 0;
  }

  .experience-photo {
    position: relative;
    width: calc(100% + 18px);
    height: auto;
    aspect-ratio: 3 / 2;
    margin: 62px -18px 0 0;
    border-radius: 0 70px 0 0;
  }

  .experience-copy {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0;
  }

  .experience-copy .section-index {
    margin-bottom: 24px;
  }

  .experience h2 {
    margin-bottom: 8px;
  }

  .join > h2 {
    padding: 62px 0;
  }

  .audience-card {
    min-height: 0;
  }

  .network-grid {
    gap: 72px;
    padding-top: 64px;
  }

  .contact-intro {
    gap: 52px;
    padding: 64px 0 90px;
  }

  .contact-grid {
    gap: 64px;
  }

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

  .contact-form label,
  .contact-form button,
  .form-status {
    grid-column: 1;
  }

  .partners-copy {
    gap: 46px;
    padding: 64px 0 80px;
  }

  .partner-row {
    grid-template-columns: 1fr;
  }

  .partner-wordmark,
  .partner-wordmark:nth-child(3) {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partner-wordmark:last-child {
    border-bottom: 0;
  }

  footer {
    grid-template-columns: 1fr auto;
    gap: 48px;
  }

  footer > p {
    display: none;
  }

  .footer-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

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

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