@font-face {
  font-family: "VL Gafter";
  src: url("assets/fonts/vl-gafter.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #191815;
  --ink-soft: #2a2824;
  --paper: #f4efe6;
  --paper-deep: #e8dfd1;
  --cream: #fff8ed;
  --terracotta: #d85b37;
  --terracotta-dark: #b84427;
  --sage: #65705c;
  --muted: #746f68;
  --line: rgba(25, 24, 21, 0.18);
  --line-light: rgba(255, 248, 237, 0.25);
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --serif: "VL Gafter", Georgia, serif;
  --shell: min(1280px, calc(100vw - 96px));
  --header-height: 88px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--terracotta);
  color: var(--cream);
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.reading-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--terracotta);
  transform-origin: left;
}

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

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 248, 237, 0.62);
}

.issue-bar {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 34px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 12, 10, 0.72);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.issue-bar p {
  margin: 0;
}

.site-header {
  position: absolute;
  z-index: 60;
  top: 34px;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  transition:
    background-color 240ms ease,
    color 240ms ease,
    height 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  height: 72px;
  border-color: var(--line);
  background: rgba(244, 239, 230, 0.94);
  box-shadow: 0 10px 35px rgba(25, 24, 21, 0.06);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: header-in 320ms ease both;
}

.site-header.menu-open-header {
  position: fixed;
  top: 0;
  border-color: var(--line-light);
  background: transparent;
  box-shadow: none;
  color: var(--cream);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@keyframes header-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  width: max-content;
  line-height: 1;
}

.brand__main {
  font-family: var(--serif);
  font-size: 1.62rem;
  letter-spacing: -0.045em;
}

.brand__main span {
  display: inline-block;
  margin: 0 0.03em;
  color: var(--terracotta);
  font-size: 0.72em;
  font-style: italic;
  transform: translateY(-0.04em);
}

.brand__sub {
  margin-top: 7px;
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

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

.header-cta {
  position: relative;
  justify-self: end;
  padding: 11px 0 9px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 240ms ease;
}

.menu-toggle.is-active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 132px 28px 30px;
  background: var(--ink);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 12vw, 4.5rem);
  letter-spacing: -0.04em;
}

.mobile-menu nav span {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.mobile-menu__foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 248, 237, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.mobile-menu__foot p {
  margin: 0;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: max(780px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.hero__image,
.hero__overlay,
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center center;
  animation: hero-scale 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes hero-scale {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.76) 0%, rgba(13, 12, 10, 0.44) 37%, rgba(13, 12, 10, 0.05) 67%),
    linear-gradient(0deg, rgba(13, 12, 10, 0.42) 0%, transparent 42%);
}

.hero__grain {
  z-index: 2;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(760px, 63vw);
  margin: 0 0 clamp(78px, 10vh, 112px) max(48px, calc((100vw - 1280px) / 2));
  animation: hero-copy-in 900ms 280ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: rgba(255, 248, 237, 0.72);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 8.5vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.hero h1 em {
  color: #f0bd9d;
  font-weight: 400;
}

.hero__intro {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 0.98rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button--light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--cream);
}

.button--outline-light {
  border-color: var(--line-light);
  color: var(--cream);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 5px 0 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 220ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -2px);
}

.text-link--light {
  color: var(--cream);
}

.hero__side-note {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 104px;
  display: flex;
  gap: 38px;
  color: rgba(255, 248, 237, 0.6);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  right: max(48px, calc((100vw - 1280px) / 2));
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 248, 237, 0.68);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  position: relative;
  display: block;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 248, 237, 0.3);
}

.hero__scroll-line::after {
  position: absolute;
  inset: 0;
  background: var(--cream);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  60%,
  100% {
    transform: translateX(100%);
  }
}

.destination-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--terracotta);
  color: var(--cream);
}

.destination-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 76px;
  animation: ticker 28s linear infinite;
}

.destination-ticker span {
  padding: 0 31px;
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.destination-ticker i {
  font-size: 0.58rem;
  font-style: normal;
  opacity: 0.7;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 2.08fr;
  gap: 9vw;
  padding-top: 150px;
  padding-bottom: 160px;
}

.manifesto__label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.manifesto__label span {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto__copy {
  max-width: 820px;
}

.manifesto__lead {
  max-width: 590px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.5vw, 3.7rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.manifesto__lead em {
  color: var(--terracotta);
  font-weight: 400;
}

.manifesto__statement {
  margin: 60px 0 0 12%;
  padding-left: 26px;
  border-left: 1px solid var(--terracotta);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.manifesto__statement strong {
  color: var(--ink);
  font-weight: 500;
}

.manifesto__body {
  max-width: 560px;
  margin: 38px 0 32px 12%;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.manifesto__copy .text-link {
  margin-left: 12%;
}

.editorial {
  padding-bottom: 170px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 34px;
  margin-bottom: 58px;
  border-top: 1px solid var(--ink);
}

.section-heading h2,
.field-notes h2 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5.8vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

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

.story-card--feature {
  grid-column: span 7;
  grid-row: span 2;
}

.story-card--small,
.editorial-note {
  grid-column: span 5;
}

.story-card a {
  display: block;
}

.story-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.story-card--feature .story-card__image-wrap {
  aspect-ratio: 0.9;
}

.story-card--small .story-card__image-wrap {
  aspect-ratio: 1.14;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story-card--feature img {
  object-position: center 26%;
}

.story-card--small img {
  object-position: center 52%;
}

.story-card a:hover img,
.story-card a:focus-visible img {
  transform: scale(1.025);
}

.story-card__issue,
.story-card__arrow {
  position: absolute;
  z-index: 2;
  top: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(25, 24, 21, 0.18);
  color: var(--cream);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.story-card__issue {
  left: 18px;
  width: 39px;
  height: 39px;
  font-size: 0.65rem;
}

.story-card__arrow {
  right: 18px;
  width: 39px;
  height: 39px;
  font-size: 1rem;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.story-card a:hover .story-card__arrow,
.story-card a:focus-visible .story-card__arrow {
  background: var(--cream);
  color: var(--ink);
  transform: rotate(45deg);
}

.story-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.1vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.story-card--small h3 {
  font-size: clamp(2.2rem, 3.3vw, 3.9rem);
}

.story-card h3 em {
  color: var(--terracotta);
  font-weight: 400;
}

.story-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.editorial-note {
  align-self: end;
  padding: 38px;
  margin-top: 10px;
  background: var(--sage);
  color: var(--cream);
}

.editorial-note__quote {
  margin: 0 0 64px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.35vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.editorial-note > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wardrobe {
  padding: 145px 0 150px;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.wardrobe__top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.wardrobe__top h2 {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.5vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.wardrobe__top h2 em,
.wardrobe__details h3 em,
.field-notes h2 em,
.newsletter h2 em {
  color: #eca17e;
  font-weight: 400;
}

.wardrobe__top > p {
  max-width: 500px;
  padding-bottom: 9px;
  margin: 0;
  color: rgba(255, 248, 237, 0.58);
  font-size: 0.88rem;
  line-height: 1.8;
}

.wardrobe__selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 78px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.destination-tab {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  min-height: 76px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--line-light);
  background: transparent;
  color: rgba(255, 248, 237, 0.45);
  font-family: var(--serif);
  font-size: 1.4rem;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.destination-tab:last-child {
  border-right: 0;
}

.destination-tab span {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.destination-tab::after {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  height: 2px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transition: transform 260ms ease;
}

.destination-tab:hover,
.destination-tab:focus-visible {
  color: var(--cream);
}

.destination-tab.is-active {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

.destination-tab.is-active::after {
  transform: scaleX(1);
}

.wardrobe__experience {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
  padding-top: 78px;
}

.wardrobe__visual {
  position: relative;
  aspect-ratio: 0.9;
  overflow: hidden;
  background: var(--ink-soft);
}

.wardrobe__visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.wardrobe__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 220ms ease,
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.wardrobe__visual img.is-changing {
  opacity: 0.2;
  transform: scale(1.02);
}

.wardrobe__visual-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  background: rgba(25, 24, 21, 0.76);
  color: var(--cream);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.wardrobe__details h3 {
  margin: 20px 0 26px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.wardrobe__description {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 248, 237, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.wardrobe__palette {
  display: flex;
  gap: 10px;
  margin: 31px 0 44px;
}

.wardrobe__palette span {
  display: block;
  width: 42px;
  height: 8px;
  background: var(--swatch);
  transition: background-color 220ms ease;
}

.packing-list {
  margin-bottom: 36px;
  border-top: 1px solid var(--line-light);
}

.packing-list__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 248, 237, 0.44);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.packing-list li {
  display: flex;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.1);
  color: rgba(255, 248, 237, 0.86);
  font-size: 0.78rem;
}

.packing-list li span {
  color: rgba(255, 248, 237, 0.34);
  font-size: 0.62rem;
}

.field-notes {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(64px, 10vw, 150px);
  padding-top: 155px;
  padding-bottom: 165px;
}

.field-notes__heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.field-notes h2 {
  font-size: clamp(3.1rem, 5vw, 5.9rem);
}

.field-notes h2 em {
  color: var(--terracotta);
}

.field-note {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 34px;
  gap: 24px;
  padding: 40px 0 44px;
  border-top: 1px solid var(--ink);
}

.field-note:last-child {
  border-bottom: 1px solid var(--ink);
}

.field-note__number {
  padding-top: 7px;
  color: var(--terracotta);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.field-note h3 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.field-note p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.75;
}

.field-note__mark {
  display: grid;
  place-items: center;
  align-self: start;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.9rem;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.field-note:hover .field-note__mark {
  background: var(--terracotta);
  color: var(--cream);
  transform: rotate(45deg);
}

.journal {
  padding-bottom: 160px;
}

.journal-list {
  border-bottom: 1px solid var(--ink);
}

.journal-row {
  display: grid;
  grid-template-columns: 48px 130px 1fr 100px 36px;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  border-top: 1px solid var(--line);
  transition:
    padding 240ms ease,
    background-color 240ms ease;
}

.journal-row:first-child {
  border-color: var(--ink);
}

.journal-row:hover,
.journal-row:focus-visible {
  padding-right: 14px;
  padding-left: 14px;
  background: var(--paper-deep);
}

.journal-row__index,
.journal-row__category,
.journal-row__date {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.45vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.journal-row__arrow {
  font-size: 1.35rem;
  text-align: right;
  transition: transform 220ms ease;
}

.journal-row:hover .journal-row__arrow,
.journal-row:focus-visible .journal-row__arrow {
  transform: rotate(45deg);
}

.journal-page {
  min-height: 100vh;
  background: var(--paper);
}

.journal-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--shell);
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.journal-page__header .brand {
  color: var(--ink);
}

.journal-page__header .brand__sub {
  color: var(--muted);
}

.journal-page__back {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-page__content {
  width: min(860px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 84px 0 120px;
}

.journal-page__kicker {
  margin: 0 0 20px;
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-page__title {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.journal-page__meta {
  margin: 28px 0 42px;
  color: var(--muted);
  font-size: 0.78rem;
}

.journal-page__cover {
  width: 100%;
  max-height: 620px;
  margin: 0 0 52px;
  object-fit: cover;
}

.journal-page__excerpt {
  max-width: 680px;
  margin: 0 0 38px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.journal-page__body {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.85;
}

.journal-page__body p {
  margin: 0 0 1.45em;
}

.journal-page__empty {
  padding: 110px 0;
  text-align: center;
}

.journal-page__empty h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
}

.journal-page__list {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}

.journal-page__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 26px;
  background: var(--paper);
  transition: background 180ms ease;
}

.journal-page__item:hover {
  background: var(--cream);
}

.journal-page__item h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.journal-page__item p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.journal-page__item time {
  align-self: start;
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.newsletter {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 690px;
  overflow: hidden;
  background: var(--terracotta);
  color: var(--cream);
}

.newsletter::before {
  position: absolute;
  top: -34%;
  left: -16%;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.newsletter::after {
  position: absolute;
  bottom: -49%;
  left: 10%;
  width: 43vw;
  height: 43vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.newsletter__stamp {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: 230px;
  aspect-ratio: 1;
}

.newsletter__stamp svg {
  position: absolute;
  inset: 0;
  width: 100%;
  animation: stamp-spin 26s linear infinite;
}

.newsletter__stamp text {
  fill: rgba(255, 248, 237, 0.84);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.newsletter__stamp > span {
  font-family: var(--serif);
  font-size: 3.4rem;
  letter-spacing: -0.08em;
}

@keyframes stamp-spin {
  to {
    transform: rotate(360deg);
  }
}

.newsletter__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  padding: 100px 7vw 100px 4vw;
}

.newsletter h2 {
  margin: 20px 0 26px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.newsletter h2 em {
  color: var(--cream);
}

.newsletter__content > p:not(.eyebrow, .form-message) {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 248, 237, 0.76);
  font-size: 0.9rem;
  line-height: 1.8;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 620px;
  margin-top: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.newsletter-form input {
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 248, 237, 0.52);
}

.newsletter-form:focus-within {
  border-bottom-color: var(--cream);
}

.newsletter-form button {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 0 0 22px;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-form button span {
  font-size: 1.15rem;
  transition: transform 220ms ease;
}

.newsletter-form button:hover span,
.newsletter-form button:focus-visible span {
  transform: translateX(4px);
}

.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 0.76rem;
}

.newsletter small {
  margin-top: 2px;
  color: rgba(255, 248, 237, 0.54);
  font-size: 0.62rem;
}

.site-footer {
  padding: 72px max(48px, calc((100vw - 1280px) / 2)) 24px;
  background: var(--ink);
  color: var(--cream);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 60px;
  min-height: 210px;
}

.brand--footer .brand__main {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.brand--footer .brand__sub {
  font-size: 0.54rem;
}

.site-footer__top > p {
  margin: 5px 0 0;
  color: rgba(255, 248, 237, 0.48);
  font-size: 0.75rem;
  line-height: 1.8;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.site-footer__links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__links span {
  margin-bottom: 8px;
  color: rgba(255, 248, 237, 0.42);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__links a {
  position: relative;
  font-size: 0.78rem;
}

.site-footer__links a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 248, 237, 0.38);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__bottom a {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal--delay {
  transition-delay: 100ms;
}

.reveal--delay-2 {
  transition-delay: 200ms;
}

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

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

  .site-header {
    padding-inline: 32px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero__content {
    margin-left: 42px;
  }

  .hero__side-note {
    display: none;
  }

  .wardrobe__experience {
    gap: 54px;
  }

  .journal-row {
    grid-template-columns: 42px 105px 1fr 80px 30px;
    gap: 18px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100% - 48px);
    --header-height: 78px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }

  .site-header.is-scrolled {
    height: 66px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 820px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(13, 12, 10, 0.72) 0%, rgba(13, 12, 10, 0.22) 86%),
      linear-gradient(0deg, rgba(13, 12, 10, 0.5) 0%, transparent 52%);
  }

  .hero__content {
    width: calc(100% - 48px);
    margin-right: 24px;
    margin-bottom: 92px;
    margin-left: 24px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 14vw, 6.7rem);
  }

  .hero__intro {
    max-width: 520px;
  }

  .hero__scroll {
    right: 24px;
  }

  .manifesto {
    grid-template-columns: 0.62fr 1.38fr;
    gap: 50px;
  }

  .editorial-grid {
    gap: 22px;
  }

  .story-card--feature {
    grid-column: span 7;
  }

  .story-card--small,
  .editorial-note {
    grid-column: span 5;
  }

  .editorial-note {
    padding: 26px;
  }

  .wardrobe__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .wardrobe__experience {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 38px;
  }

  .destination-tab {
    font-size: 1.15rem;
  }

  .field-notes {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .field-notes__heading {
    position: static;
    max-width: 620px;
  }

  .journal-row {
    grid-template-columns: 35px 95px 1fr 30px;
  }

  .journal-row__date {
    display: none;
  }

  .newsletter {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .newsletter__stamp {
    width: 150px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top > p {
    display: none;
  }
}

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

  .issue-bar {
    justify-content: center;
    padding-inline: 12px;
    font-size: 0.54rem;
  }

  .issue-bar__edition {
    display: none;
  }

  .brand__main {
    font-size: 1.42rem;
  }

  .brand__sub {
    font-size: 0.4rem;
  }

  .mobile-menu {
    padding-right: 20px;
    padding-left: 20px;
  }

  .mobile-menu__foot {
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    min-height: max(700px, 100svh);
  }

  .hero__image {
    object-position: 65% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(13, 12, 10, 0.58) 0%, rgba(13, 12, 10, 0.1) 100%),
      linear-gradient(0deg, rgba(13, 12, 10, 0.76) 0%, rgba(13, 12, 10, 0.06) 66%);
  }

  .hero__content {
    margin-bottom: 74px;
  }

  .hero__eyebrow {
    margin-bottom: 17px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
    line-height: 0.88;
  }

  .hero__intro {
    max-width: 92%;
    margin-top: 24px;
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 26px;
  }

  .button {
    gap: 24px;
    min-height: 48px;
  }

  .hero__scroll {
    display: none;
  }

  .destination-ticker__track {
    min-height: 60px;
  }

  .destination-ticker span {
    padding: 0 22px;
    font-size: 1.25rem;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 92px;
    padding-bottom: 105px;
  }

  .manifesto__label {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding-top: 14px;
  }

  .manifesto__lead {
    font-size: 2.45rem;
  }

  .manifesto__statement,
  .manifesto__body,
  .manifesto__copy .text-link {
    margin-left: 0;
  }

  .manifesto__statement {
    margin-top: 44px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .field-notes h2 {
    font-size: 3.35rem;
  }

  .section-heading > p br {
    display: none;
  }

  .editorial {
    padding-bottom: 105px;
  }

  .editorial-grid {
    display: block;
  }

  .story-card + .story-card,
  .editorial-note {
    margin-top: 65px;
  }

  .story-card--feature .story-card__image-wrap {
    aspect-ratio: 0.86;
  }

  .story-card--small .story-card__image-wrap {
    aspect-ratio: 0.92;
  }

  .story-card--small img {
    object-position: center;
  }

  .story-card h3,
  .story-card--small h3 {
    font-size: 2.9rem;
  }

  .editorial-note {
    padding: 30px 24px;
  }

  .editorial-note__quote {
    margin-bottom: 48px;
    font-size: 1.8rem;
  }

  .wardrobe {
    padding: 96px 0 105px;
  }

  .wardrobe__top {
    gap: 28px;
  }

  .wardrobe__top h2 {
    font-size: 3.8rem;
  }

  .wardrobe__selector {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }

  .destination-tab {
    min-height: 62px;
    border-bottom: 1px solid var(--line-light);
  }

  .destination-tab:nth-child(2) {
    border-right: 0;
  }

  .destination-tab:nth-child(3),
  .destination-tab:nth-child(4) {
    border-bottom: 0;
  }

  .wardrobe__experience {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 48px;
  }

  .wardrobe__visual {
    aspect-ratio: 0.88;
  }

  .wardrobe__details h3 {
    font-size: 3.45rem;
  }

  .wardrobe__palette {
    margin-bottom: 35px;
  }

  .field-notes {
    gap: 50px;
    padding-top: 96px;
    padding-bottom: 105px;
  }

  .field-note {
    grid-template-columns: 27px 1fr;
    gap: 16px;
    padding: 28px 0 31px;
  }

  .field-note__mark {
    display: none;
  }

  .field-note h3 {
    font-size: 2rem;
  }

  .journal {
    padding-bottom: 105px;
  }

  .journal .section-heading .text-link {
    display: none;
  }

  .journal-row {
    grid-template-columns: 28px 1fr 24px;
    gap: 14px;
    min-height: 100px;
  }

  .journal-row__category {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .journal-row h3 {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    padding-bottom: 15px;
    font-size: 1.65rem;
  }

  .journal-row__index {
    grid-row: 1 / span 2;
  }

  .journal-row__arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .newsletter {
    display: block;
    min-height: 0;
  }

  .newsletter::before {
    top: -15%;
    left: -45%;
    width: 120vw;
    height: 120vw;
  }

  .newsletter__stamp {
    position: absolute;
    top: 48px;
    right: 15px;
    width: 112px;
    opacity: 0.55;
  }

  .newsletter__content {
    padding: 92px 18px 88px;
  }

  .newsletter h2 {
    margin-top: 48px;
    font-size: 4rem;
  }

  .newsletter-form input {
    font-size: 1.05rem;
  }

  .newsletter-form button {
    gap: 10px;
    padding-left: 12px;
  }

  .site-footer {
    padding: 60px 18px 22px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-bottom: 60px;
  }

  .brand--footer .brand__main {
    font-size: 3rem;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .site-footer__bottom span:nth-child(2) {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
