@font-face {
  font-family: "Fjalla One";
  src: url("/myland/assets/fonts/FjallaOne-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/myland/assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/myland/assets/fonts/Roboto-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/myland/assets/fonts/Roboto-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #041e2a;
  --ink-soft: #0b3447;
  --ink-lift: #12465a;
  --gold: #d8cb6b;
  --gold-strong: #c1b249;
  --ivory: #f6f2e8;
  --paper: #fffdf7;
  --turquoise: #14a8b7;
  --mist: #dbe6e6;
  --line-dark: rgb(4 30 42 / 16%);
  --line-light: rgb(246 242 232 / 18%);
  --shadow-deep: 0 32px 90px rgb(0 9 15 / 48%);
  --shell: min(1240px, calc(100% - 64px));
  --header-height: 82px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  color: inherit;
  font: inherit;
}

p,
h1,
h2,
h3,
figure,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  border-color: rgb(246 242 232 / 12%);
  background: rgb(4 30 42 / 96%);
  box-shadow: 0 14px 45px rgb(0 8 13 / 22%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  color: var(--ivory);
  font-family: "Fjalla One", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.16em;
}

.brand img {
  width: 31px;
  height: 37px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav > a:not(.site-nav__cta) {
  position: relative;
  padding-block: 12px;
  color: rgb(246 242 232 / 82%);
}

.site-nav > a:not(.site-nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 220ms var(--ease-out);
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--ivory);
}

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

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgb(216 203 107 / 65%);
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  transition: transform 200ms var(--ease-out), background-color 200ms ease;
}

.site-nav__cta:hover {
  transform: translateY(-2px);
  background: #e5d979;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgb(246 242 232 / 28%);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--ivory);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(960px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 29%, rgb(20 168 183 / 18%), transparent 28%),
    linear-gradient(124deg, var(--ink) 0%, var(--ink-soft) 62%, #0a2c3a 100%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(to top, rgb(0 11 17 / 42%), transparent);
}

.hero__topography,
.download__topography {
  position: absolute;
  z-index: -1;
  inset: -22% -16% -22% 35%;
  opacity: 0.14;
  background:
    repeating-radial-gradient(
      ellipse at 68% 45%,
      transparent 0 25px,
      rgb(216 203 107 / 54%) 26px,
      transparent 27px 48px
    );
  transform: rotate(-11deg) scale(1.04);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  top: 32%;
  right: 16%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgb(193 178 73 / 16%);
  filter: blur(70px);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.82fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  min-height: min(880px, calc(100svh - 42px));
  padding-block: calc(var(--header-height) + 64px) 80px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-index--light {
  color: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--ivory);
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(4.8rem, 7.8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 em,
.manifesto h2 em,
.story h2 em,
.eco h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero__lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgb(246 242 232 / 82%);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 210px;
  min-height: 54px;
  padding: 13px 19px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, background-color 220ms ease;
}

.button span {
  font-size: 1.1rem;
}

.button:hover {
  transform: translateY(-3px);
}

.button--gold {
  background: var(--gold);
  color: var(--ink);
}

.button--gold:hover {
  background: #e5d979;
}

.button--quiet {
  border-color: rgb(246 242 232 / 34%);
  color: var(--ivory);
}

.button--quiet:hover {
  border-color: var(--ivory);
  background: rgb(246 242 232 / 7%);
}

.hero__availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 0;
  color: rgb(246 242 232 / 68%);
  font-size: 0.77rem;
  letter-spacing: 0.03em;
}

.hero__availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 5px rgb(20 168 183 / 15%);
}

.hero__visual {
  position: relative;
  height: 680px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgb(246 242 232 / 24%);
  background: #092b3a;
  box-shadow: var(--shadow-deep);
}

.hero-card picture,
.hero-card img {
  width: 100%;
  height: 100%;
}

.hero-card img {
  object-fit: cover;
}

.hero-card--front {
  z-index: 2;
  right: 3%;
  bottom: 0;
  width: min(330px, 55%);
  aspect-ratio: 9 / 16;
  transform: rotate(2deg);
}

.hero-card--back {
  top: 68px;
  left: 1%;
  width: min(270px, 46%);
  aspect-ratio: 9 / 16;
  opacity: 0.83;
  transform: rotate(-5deg);
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 2px;
  display: grid;
  place-content: center;
  width: 128px;
  height: 128px;
  border: 1px solid rgb(216 203 107 / 78%);
  border-radius: 50%;
  background: rgb(4 30 42 / 88%);
  color: var(--gold);
  text-align: center;
  transform: rotate(9deg);
}

.hero-stamp::before,
.hero-stamp::after {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.hero-stamp::before {
  left: 9px;
}

.hero-stamp::after {
  right: 9px;
}

.hero-stamp span {
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-stamp strong {
  font-family: "Fjalla One", sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero__footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding-block: 21px;
  border-top: 1px solid rgb(246 242 232 / 13%);
  color: rgb(246 242 232 / 36%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.manifesto {
  background: var(--ivory);
  color: var(--ink);
}

.manifesto__inner {
  display: grid;
  grid-template-columns: 0.52fr 1.12fr 0.78fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
  padding-block: clamp(100px, 12vw, 180px);
}

.manifesto .section-index,
.story .section-index,
.eco .section-index {
  color: #756d2d;
}

.manifesto h2,
.story h2,
.eco h2,
.download h2 {
  margin-bottom: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(3.25rem, 5.4vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.manifesto h2 em,
.story h2 em {
  color: #81762d;
}

.manifesto__body {
  padding-top: 6px;
  border-top: 2px solid var(--ink);
  color: #24414c;
}

.manifesto__body p {
  margin-bottom: 24px;
}

.experiences {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 11vw, 170px);
  background:
    linear-gradient(rgb(4 30 42 / 96%), rgb(4 30 42 / 96%)),
    repeating-linear-gradient(112deg, transparent 0 54px, rgb(216 203 107 / 7%) 55px, transparent 56px 109px);
}

.experiences__heading,
.gallery__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.experiences h2,
.gallery h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.experiences__intro {
  margin-bottom: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgb(246 242 232 / 70%);
}

.experiences__layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(52px, 8vw, 122px);
  align-items: start;
}

.atlas-window {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid rgb(246 242 232 / 20%);
  background: #0b3447;
  box-shadow: var(--shadow-deep);
}

.atlas-window::before {
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgb(216 203 107 / 42%);
  content: "";
  pointer-events: none;
}

.atlas-window img {
  width: 100%;
  aspect-ratio: 9 / 13.6;
  object-fit: cover;
  object-position: top;
}

.atlas-window figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  border-top: 1px solid rgb(246 242 232 / 15%);
  color: rgb(246 242 232 / 65%);
  font-size: 0.7rem;
}

.atlas-window figcaption span:first-child {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 42px;
  gap: 23px;
  align-items: start;
  min-height: 170px;
  padding-block: 30px;
  border-top: 1px solid var(--line-light);
}

.experience-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.experience-list__number {
  padding-top: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.experience-list h3 {
  margin-bottom: 10px;
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.experience-list p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgb(246 242 232 / 68%);
}

.experience-list__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(216 203 107 / 42%);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 300ms var(--ease-out), background-color 300ms ease, color 300ms ease;
}

.experience-list li:hover .experience-list__mark {
  transform: rotate(18deg) scale(1.08);
  background: var(--gold);
  color: var(--ink);
}

.story {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.story__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line-dark);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
  padding-block: clamp(100px, 12vw, 180px);
}

.story__copy {
  max-width: 650px;
}

.story__copy > p:not(.section-index) {
  max-width: 550px;
  margin: 32px 0 38px;
  color: #35505a;
  font-size: 1.06rem;
}

.story__facts {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.story__facts li {
  display: flex;
  gap: 26px;
  padding-block: 15px;
  border-top: 1px solid var(--line-dark);
  color: #173743;
  font-size: 0.88rem;
  font-weight: 500;
}

.story__facts span {
  color: #81762d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.story__image {
  position: relative;
  z-index: 1;
  margin: 0;
  box-shadow: 26px 28px 0 var(--gold), 0 28px 70px rgb(4 30 42 / 22%);
}

.story__image::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgb(246 242 232 / 40%);
  content: "";
  pointer-events: none;
}

.story__image img {
  width: 100%;
  max-height: 710px;
  object-fit: cover;
  object-position: top;
}

.eco {
  overflow: hidden;
  background: var(--gold);
  color: var(--ink);
}

.eco__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
  padding-block: clamp(100px, 12vw, 180px);
}

.eco__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.eco__visual picture {
  position: relative;
  z-index: 2;
  display: block;
  width: min(390px, 78%);
  box-shadow: 0 38px 80px rgb(4 30 42 / 40%);
  transform: rotate(-2.5deg);
}

.eco__visual img {
  width: 100%;
}

.eco__orbit {
  position: absolute;
  width: 116%;
  aspect-ratio: 1;
  border: 1px solid rgb(4 30 42 / 27%);
  border-radius: 50%;
}

.eco__orbit::before,
.eco__orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgb(4 30 42 / 18%);
  border-radius: 50%;
  content: "";
}

.eco__orbit::after {
  inset: 28%;
}

.eco__label {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid rgb(4 30 42 / 35%);
  background: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eco__label--one {
  top: 17%;
  left: 0;
}

.eco__label--two {
  right: -1%;
  bottom: 26%;
}

.eco__label--three {
  bottom: 5%;
  left: 12%;
}

.eco .section-index {
  color: #4d471f;
}

.eco h2 em {
  color: var(--ink-soft);
}

.eco__copy > p:not(.section-index):not(.eco__note) {
  max-width: 610px;
  margin: 34px 0 24px;
  color: #173743;
  font-size: 1.04rem;
}

.eco__note {
  max-width: 500px;
  margin-bottom: 34px;
  padding: 17px 0 17px 24px;
  border-left: 3px solid var(--ink-soft);
  color: #173743;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  transition: gap 220ms var(--ease-out);
}

.text-link:hover {
  gap: 29px;
}

.gallery {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 11vw, 160px);
  background:
    radial-gradient(circle at 10% 80%, rgb(20 168 183 / 12%), transparent 30%),
    var(--ink);
}

.gallery__heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 56px;
}

.gallery__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery__count {
  min-width: 76px;
  margin-right: 8px;
  color: var(--gold);
  font-family: "Fjalla One", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.gallery__controls button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgb(246 242 232 / 27%);
  background: transparent;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.gallery__controls button:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.gallery__controls button:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

.gallery__track {
  display: flex;
  gap: clamp(18px, 2.2vw, 32px);
  overflow-x: auto;
  padding: 0 max(32px, calc((100vw - 1240px) / 2)) 30px;
  scroll-padding-inline: max(32px, calc((100vw - 1240px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgb(246 242 232 / 12%);
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}

.gallery__track::-webkit-scrollbar {
  height: 6px;
}

.gallery__track::-webkit-scrollbar-track {
  background: rgb(246 242 232 / 10%);
}

.gallery__track::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.gallery-card {
  flex: 0 0 clamp(280px, 28vw, 390px);
  margin: 0;
  scroll-snap-align: start;
}

.gallery-card picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgb(246 242 232 / 20%);
  background: var(--ink-soft);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  transition: transform 600ms var(--ease-out);
}

.gallery-card--tall img {
  aspect-ratio: 9 / 16;
}

.gallery-card:hover img {
  transform: scale(1.018);
}

.gallery-card figcaption {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-top: 15px;
  color: rgb(246 242 232 / 68%);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-card figcaption span {
  color: var(--gold);
  font-weight: 700;
}

.download {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 50%, rgb(20 168 183 / 15%), transparent 28%),
    linear-gradient(105deg, #0b3447, #041e2a 62%);
}

.download__topography {
  inset: -60% 55% -60% -25%;
  opacity: 0.16;
  transform: rotate(10deg);
}

.download__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
  padding-block: clamp(100px, 12vw, 170px);
}

.download__copy > img {
  width: 62px;
  margin-bottom: 34px;
}

.download h2 {
  max-width: 680px;
  color: var(--ivory);
}

.download__copy > p:last-child {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgb(246 242 232 / 70%);
  font-size: 1.05rem;
}

.download__links {
  border-bottom: 1px solid var(--line-light);
}

.download__links > a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 105px;
  padding: 18px 12px;
  border-top: 1px solid var(--line-light);
  transition: padding 220ms var(--ease-out), background-color 220ms ease;
}

.download__links > a:hover {
  padding-inline: 21px;
  background: rgb(246 242 232 / 5%);
}

.download__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgb(216 203 107 / 55%);
  color: var(--gold);
}

.download__icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

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

.download__links small {
  margin-bottom: 2px;
  color: rgb(246 242 232 / 52%);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.download__links strong {
  color: var(--ivory);
  font-family: "Fjalla One", sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 58px 30px;
  border-top: 1px solid rgb(246 242 232 / 12%);
  background: #02151e;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__top {
  padding-bottom: 42px;
}

.site-footer__top > p {
  margin: 0;
  color: var(--gold);
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand--footer img {
  width: 41px;
  height: auto;
}

.site-footer__bottom {
  padding-top: 26px;
  border-top: 1px solid rgb(246 242 232 / 11%);
  color: rgb(246 242 232 / 50%);
  font-size: 0.75rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.site-footer__bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease;
}

.site-footer__bottom a:hover {
  color: var(--ivory);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
}

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

.hero__visual[data-reveal] {
  transition-delay: 120ms;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 1040px);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.78fr);
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 7.6vw, 6.2rem);
  }

  .hero__visual {
    height: 610px;
  }

  .hero-stamp {
    width: 108px;
    height: 108px;
  }

  .manifesto__inner {
    grid-template-columns: 0.38fr 1fr;
  }

  .manifesto__body {
    grid-column: 2;
  }

  .story__grid,
  .eco__grid {
    gap: 72px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 72px;
    --shell: calc(100% - 40px);
  }

  .js .nav-toggle {
    display: block;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    border-top: 1px solid rgb(246 242 232 / 12%);
    background: var(--ink);
    box-shadow: 0 26px 54px rgb(0 7 12 / 35%);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.site-nav__cta) {
    min-height: 52px;
    padding: 14px 4px;
    border-bottom: 1px solid rgb(246 242 232 / 10%);
  }

  .site-nav__cta {
    margin-top: 16px;
  }

  .no-js .site-header {
    position: relative;
    height: auto;
    background: var(--ink);
  }

  .no-js .site-header__inner,
  .no-js .site-nav {
    flex-wrap: wrap;
  }

  .no-js .site-header__inner {
    padding-block: 14px;
  }

  .no-js .site-nav {
    width: 100%;
    padding-block: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 110px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 13vw, 7.4rem);
  }

  .hero__visual {
    width: min(620px, 100%);
    height: 650px;
    margin: 20px auto 0;
  }

  .hero-card--front {
    right: 12%;
    width: 330px;
  }

  .hero-card--back {
    left: 10%;
    width: 268px;
  }

  .hero-stamp {
    right: 8%;
  }

  .manifesto__inner {
    grid-template-columns: 1fr;
  }

  .manifesto__body {
    grid-column: auto;
    max-width: 660px;
  }

  .experiences__heading,
  .gallery__heading,
  .experiences__layout,
  .story__grid,
  .eco__grid,
  .download__grid {
    grid-template-columns: 1fr;
  }

  .experiences__heading,
  .gallery__heading {
    gap: 30px;
  }

  .experiences__intro {
    max-width: 580px;
  }

  .experiences__layout {
    gap: 70px;
  }

  .atlas-window {
    position: relative;
    top: auto;
    width: min(500px, 78vw);
  }

  .story__line {
    display: none;
  }

  .story__grid {
    gap: 80px;
  }

  .story__image {
    width: min(500px, calc(100% - 28px));
    margin-inline: auto;
  }

  .eco__grid {
    gap: 90px;
  }

  .eco__visual {
    order: 2;
    width: min(600px, 100%);
    margin-inline: auto;
  }

  .eco__copy {
    order: 1;
  }

  .download__grid {
    gap: 70px;
  }

  .download__links {
    max-width: 650px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header__inner {
    width: calc(100% - 28px);
  }

  .brand {
    font-size: 1rem;
  }

  .brand img {
    width: 28px;
    height: 33px;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 92px;
  }

  .eyebrow,
  .section-index {
    margin-bottom: 20px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(3.95rem, 18.1vw, 5.25rem);
    line-height: 0.92;
  }

  .hero__lede {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero__availability {
    align-items: flex-start;
  }

  .hero__availability span {
    flex: 0 0 auto;
    margin-top: 8px;
  }

  .hero__visual {
    height: 505px;
    margin-top: 24px;
  }

  .hero-card--front {
    right: 2%;
    width: 62%;
  }

  .hero-card--back {
    top: 52px;
    left: 1%;
    width: 48%;
  }

  .hero-stamp {
    top: 0;
    right: 0;
    width: 92px;
    height: 92px;
  }

  .hero-stamp strong {
    font-size: 1.2rem;
  }

  .hero-stamp span {
    font-size: 0.39rem;
  }

  .hero__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 5px;
  }

  .hero__footer span:nth-child(even) {
    text-align: right;
  }

  .manifesto__inner,
  .experiences,
  .story__grid,
  .eco__grid,
  .gallery,
  .download__grid {
    padding-block: 92px;
  }

  .manifesto h2,
  .story h2,
  .eco h2,
  .download h2,
  .experiences h2,
  .gallery h2 {
    font-size: clamp(3rem, 14.4vw, 4.25rem);
  }

  .experiences__heading,
  .gallery__heading {
    margin-bottom: 46px;
  }

  .atlas-window {
    width: 100%;
  }

  .atlas-window figcaption {
    display: grid;
    gap: 2px;
  }

  .experience-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding-block: 25px;
  }

  .experience-list__mark {
    display: none;
  }

  .experience-list h3 {
    font-size: 1.85rem;
  }

  .experience-list p {
    font-size: 0.92rem;
  }

  .story__grid {
    gap: 64px;
  }

  .story__image {
    width: calc(100% - 16px);
    box-shadow: 16px 17px 0 var(--gold), 0 24px 55px rgb(4 30 42 / 20%);
  }

  .eco__grid {
    gap: 72px;
  }

  .eco__visual picture {
    width: 72%;
  }

  .eco__label--one {
    left: 3%;
  }

  .eco__label--two {
    right: 1%;
  }

  .gallery__heading {
    gap: 28px;
  }

  .gallery__controls {
    justify-content: space-between;
  }

  .gallery__track {
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .gallery-card {
    flex-basis: min(78vw, 330px);
  }

  .download__copy > img {
    width: 52px;
  }

  .download__links > a {
    grid-template-columns: 47px minmax(0, 1fr) 18px;
    gap: 14px;
    min-height: 96px;
    padding-inline: 4px;
  }

  .download__icon {
    width: 46px;
    height: 46px;
  }

  .download__links strong {
    font-size: 1.25rem;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom nav {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }

  .site-footer__bottom a {
    width: 100%;
    border-top: 1px solid rgb(246 242 232 / 9%);
  }
}

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

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

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