:root {
  color-scheme: light;
  --ink: #11110f;
  --muted: #68655e;
  --paper: #f1eee6;
  --paper-strong: #fbf8ef;
  --line: rgba(17, 17, 15, 0.16);
  --coal: #151512;
  --smoke: #ded8c9;
  --green: #364c34;
  --clay: #b15b38;
  --gold: #d2a23a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

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

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  color: var(--gold);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill,
.cta,
button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link {
  color: var(--clay);
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(38px, 6.8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 84px);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px clamp(20px, 6vw, 84px) 34px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 45vw);
  align-items: end;
  gap: clamp(20px, 4vw, 64px);
  overflow: hidden;
  background: var(--coal);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(21, 21, 18, 0), rgba(21, 21, 18, 0.78));
  pointer-events: none;
}

.hero__main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  filter: saturate(1.18) contrast(1.03) brightness(1.16);
}

.hero__content {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  align-self: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(72px, 14.5vw, 188px);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
}

.lead {
  width: min(760px, 100%);
  margin: 26px 0 0;
  font-size: clamp(22px, 3.2vw, 42px);
  line-height: 1.04;
}

.hero__float {
  position: absolute;
  z-index: 2;
  width: clamp(150px, 18vw, 280px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.hero__float.one {
  right: clamp(18px, 6vw, 90px);
  top: 18vh;
}

.hero__float.two {
  right: clamp(120px, 22vw, 360px);
  bottom: 11vh;
}

.hero__cta {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  justify-self: start;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.subscribe-strip {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 28px clamp(20px, 6vw, 84px);
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.subscribe-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.subscribe-strip h2 {
  font-size: clamp(28px, 4vw, 62px);
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 92px);
  background: var(--paper);
}

.about__portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.about__copy {
  align-self: center;
}

.about__copy p {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(21px, 2.7vw, 36px);
  line-height: 1.14;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0;
  font-weight: 900;
}

.social-row svg {
  width: 24px;
  height: 24px;
}

.social-row a:first-child svg {
  fill: currentColor;
}

.social-row a:last-child svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.numbers div {
  min-height: 240px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  background: var(--paper-strong);
}

.numbers div:nth-child(2) {
  background: #e2dfd2;
}

.numbers div:nth-child(3) {
  background: #d8e1d0;
}

.numbers div:last-child {
  border-right: 0;
  background: #eadbcf;
}

.numbers strong {
  color: var(--clay);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.9;
}

.numbers span {
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.06;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tour-card {
  display: grid;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.tour-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(17, 17, 15, 0.16);
}

.tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tour-card__body {
  display: grid;
  padding: 22px;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 0.98;
}

.tour-card p {
  min-height: 94px;
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

dl {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.meetup {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 5vw, 70px);
  background: var(--coal);
  color: #fff;
}

.meetup__media img {
  width: 100%;
  min-height: 600px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.meetup__content {
  align-self: center;
}

.meetup__content p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.45;
}

.meetup__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.meetup__facts span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.cta.dark {
  color: #fff;
  background: var(--coal);
}

.meetup .cta.dark,
.payment .cta.dark {
  background: var(--clay);
  border-color: var(--clay);
}

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

.memory__head {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.memory-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: minmax(230px, 28vw);
  gap: 16px;
}

.memory-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.memory-grid .wide {
  grid-row: span 2;
}

.payment {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  background: var(--green);
  color: #fff;
}

.payment p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.22;
}

.contacts {
  background: var(--paper-strong);
}

.messengers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.messengers a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.messengers span {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 950;
  line-height: 1;
}

.messengers small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.request {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: clamp(30px, 6vw, 90px);
  background: var(--coal);
  color: #fff;
}

.lead-form,
.admin-card {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

button {
  min-height: 56px;
  border-color: var(--clay);
  background: var(--clay);
  color: #fff;
}

.fineprint {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.metrika-pixel {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(20px, 6vw, 84px);
  background: #050505;
  color: #fff;
}

footer a,
.fineprint a,
.policy a {
  color: #f0d64f;
}

.policy {
  min-height: 100vh;
  padding: 92px clamp(20px, 4.7vw, 60px) 90px;
  background: #000;
  color: #fff;
}

.policy__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: clamp(130px, 18vw, 220px);
  color: #fff;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 900;
}

.policy__crumbs span {
  color: rgba(255, 255, 255, 0.82);
}

.policy h1 {
  max-width: 860px;
  margin: 0 auto clamp(150px, 18vw, 210px);
  color: #fff;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.22;
  text-align: center;
  letter-spacing: 0;
}

.policy h1 span {
  color: #fff;
}

.policy__body {
  max-width: 1160px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.72vw, 24px);
  line-height: 1.42;
}

.policy__body p {
  margin: 0 0 26px;
}

.policy-list {
  margin: 0 0 44px;
  padding-left: 26px;
}

.policy-list li {
  margin: 0 0 8px;
  padding-left: 0;
}

.policy-list li::marker {
  color: #fff;
}

.policy-list strong {
  font-weight: 400;
}

.tour-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--coal);
}

.tour-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.12), rgba(8, 8, 7, 0.72));
}

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

.tour-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  padding: 150px clamp(20px, 6vw, 84px) 80px;
}

.tour-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 9vw, 124px);
  line-height: 0.92;
  letter-spacing: 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 34px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-detail {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(34px, 7vw, 96px);
  background: var(--paper-strong);
}

.tour-summary {
  align-self: start;
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.tour-summary dl {
  margin-top: 0;
}

.tour-summary .cta.dark {
  width: 100%;
  background: var(--coal);
}

.tour-story p:last-child {
  max-width: 880px;
  color: var(--muted);
  font-size: clamp(21px, 2.4vw, 34px);
  line-height: 1.22;
}

.program {
  background: #e5e0d4;
}

.program-list {
  display: grid;
  gap: 14px;
}

.program-day {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.program-day span {
  color: var(--clay);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.program-day h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.program-day p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.admin-shell {
  min-height: 100vh;
  padding: 110px 24px 60px;
  display: grid;
  place-items: start center;
  background: var(--paper);
  color: var(--ink);
}

.admin-shell.wide {
  gap: 24px;
  place-items: stretch;
}

.admin-card,
.admin-panel {
  width: min(100%, 720px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(17, 17, 15, 0.08);
}

.admin-panel {
  width: 100%;
  overflow-x: auto;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  border-top: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

code,
.notice {
  background: #eee7d8;
  border-radius: 6px;
  padding: 3px 6px;
}

.tour-editor textarea {
  min-height: 140px;
}

@media (max-width: 1080px) {
  .tour-grid,
  .messengers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__float.two {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
    mix-blend-mode: normal;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 12px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__float.one {
    top: auto;
    bottom: 120px;
    width: 150px;
  }

  .subscribe-strip,
  .about,
  .meetup,
  .memory__head,
  .payment,
  .request,
  .tour-detail {
    grid-template-columns: 1fr;
  }

  .subscribe-strip {
    align-items: start;
  }

  .subscribe-strip img {
    width: min(260px, 100%);
  }

  .numbers,
  .memory-grid {
    grid-template-columns: 1fr 1fr;
  }

  .numbers div:nth-child(2n) {
    border-right: 0;
  }

  .meetup__media img {
    min-height: 360px;
  }

  .tour-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: block;
  }

  nav {
    margin-top: 12px;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 190px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 76px);
  }

  .lead {
    font-size: 21px;
  }

  .hero__float.one {
    display: none;
  }

  .numbers,
  .tour-grid,
  .messengers,
  .memory-grid {
    grid-template-columns: 1fr;
  }

  .numbers div {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .memory-grid {
    grid-auto-rows: 260px;
  }

  .memory-grid .wide {
    grid-row: auto;
  }

  dl div {
    display: grid;
  }

  dd {
    text-align: left;
  }

  .program-day {
    grid-template-columns: 1fr;
  }

  footer {
    display: grid;
  }
}

/* Reference-inspired dark campaign skin */
body {
  background: #030303;
  overflow-x: hidden;
}

.topbar {
  position: fixed;
  color: #fff;
  mix-blend-mode: normal;
  top: 12px;
  left: clamp(12px, 2.6vw, 36px);
  right: clamp(12px, 2.6vw, 36px);
  min-height: 58px;
  padding: 6px clamp(16px, 2.8vw, 42px);
  background: rgba(3, 3, 3, 0.18);
  border-bottom: 1px solid rgba(243, 243, 243, 0.06);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.topbar nav {
  gap: clamp(14px, 1.9vw, 28px);
}

.topbar nav a:not(.pill) {
  position: relative;
  padding: 12px 0;
}

.topbar nav a:not(.pill)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: #ce6b9b;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.topbar nav a:not(.pill):hover::after {
  opacity: 1;
  transform: translateY(0);
}

.topbar .pill {
  min-height: 44px;
  padding-inline: 24px;
  border-color: rgba(243, 243, 243, 0.7);
  background: rgba(3, 3, 3, 0.04);
}

.brand span,
.hero h1 span,
.section-head h2::first-letter,
.memory__head h2,
.numbers strong,
.eyebrow {
  color: #f0d64f;
}

.hero {
  min-height: 920px;
  padding-top: 128px;
  background: #000;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.03) 46%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 28%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.54));
  pointer-events: none;
}

.hero-trail {
  position: absolute;
  z-index: 2;
  left: -14vw;
  top: 156px;
  width: 144vw;
  height: 420px;
  overflow: visible;
  pointer-events: none;
}

.hero-trail path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
}

.shoe-prints {
  position: absolute;
  z-index: 2;
  left: clamp(-12px, 1vw, 18px);
  top: 350px;
  width: 160px;
  height: 118px;
  transform: scale(0.68) rotate(-18deg);
  pointer-events: none;
}

.shoe-prints span {
  position: absolute;
  width: 34px;
  height: 72px;
  border-radius: 42% 42% 48% 48%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(0, 0, 0, 0.22) 47% 53%, transparent 54%),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(0, 0, 0, 0.22) 8px 10px),
    #f0d64f;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.12);
}

.shoe-prints span::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  height: 13px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
}

.shoe-prints span:nth-child(1) {
  left: 0;
  top: 36px;
  transform: rotate(74deg);
}

.shoe-prints span:nth-child(2) {
  left: 42px;
  top: 8px;
  transform: rotate(74deg);
}

.shoe-prints span:nth-child(3) {
  left: 79px;
  top: 52px;
  transform: rotate(74deg);
}

.shoe-prints span:nth-child(4) {
  left: 122px;
  top: 24px;
  transform: rotate(74deg);
}

.hero__main,
.hero__float {
  display: none;
}

.hero__content {
  width: min(780px, 100%);
  align-self: start;
  margin-top: 22px;
}

.hero h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero .lead {
  margin-top: 14px;
  padding-left: min(32vw, 320px);
  font-family: "Caveat", "Segoe Script", "Bradley Hand", "Comic Sans MS", cursive;
  font-size: clamp(28px, 3vw, 46px);
  font-style: normal;
  font-weight: 500;
  line-height: 0.92;
  color: #fff;
}

.shoe-walk {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  width: min(850px, 84vw);
  margin-top: 22px;
  margin-left: clamp(8px, 4vw, 64px);
  pointer-events: none;
}

.shoe-walk img {
  width: clamp(48px, 5.8vw, 78px);
  height: clamp(78px, 8.8vw, 122px);
  object-fit: cover;
  object-position: center;
  opacity: 0.46;
  filter: invert(1) grayscale(1) contrast(1.55) brightness(1.25);
  mix-blend-mode: screen;
}

.shoe-walk img:nth-child(1) {
  transform: translateY(16px) rotate(86deg) scaleX(-1);
}

.shoe-walk img:nth-child(2) {
  transform: translateY(-12px) rotate(94deg);
}

.shoe-walk img:nth-child(3) {
  transform: translateY(14px) rotate(84deg) scaleX(-1);
}

.shoe-walk img:nth-child(4) {
  transform: translateY(-10px) rotate(96deg);
}

.shoe-walk img:nth-child(5) {
  transform: translateY(12px) rotate(86deg) scaleX(-1);
  opacity: 0.38;
}

.shoe-walk img:nth-child(6) {
  transform: translateY(-12px) rotate(94deg);
  opacity: 0.34;
}

.hero__cta {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 6vw, 84px);
  top: 350px;
  min-width: 240px;
  color: #050505;
  border-color: #f0d64f;
  background: #f0d64f;
  backdrop-filter: none;
}

.hero__ghost {
  position: absolute;
  left: -18px;
  right: 0;
  bottom: -34px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(130px, 24vw, 330px);
  font-weight: 950;
  line-height: 0.75;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.subscribe-strip,
.about,
.numbers,
.section,
.meetup,
.memory,
.payment,
.contacts,
.request {
  background: #000;
  color: #fff;
}

.subscribe-strip {
  border: 0;
  grid-template-columns: 1fr auto;
  padding-top: 36px;
}

.subscribe-strip img {
  display: none;
}

.subscribe-strip .button-link,
.button-link,
.payment .cta.dark,
.meetup .cta.dark,
button {
  color: #050505;
  border-color: #f0d64f;
  background: #f0d64f;
}

.about {
  grid-template-columns: minmax(300px, 420px) 1fr;
  align-items: stretch;
  position: relative;
}

.about__portrait {
  height: 100%;
}

.about__portrait img {
  min-height: 100%;
  object-position: center top;
  border-radius: 28px;
}

.about__copy {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 28px;
  background: #f0d64f;
  color: #080808;
}

.about__copy::before {
  content: "”";
  position: absolute;
  top: -64px;
  left: 70px;
  color: #fff;
  font-size: 150px;
  font-weight: 950;
  line-height: 1;
}

.about__copy .eyebrow,
.about__copy h2,
.about__copy p {
  color: #080808;
}

.about__copy p {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 760;
  line-height: 1.3;
  text-transform: none;
}

.about__copy .eyebrow {
  margin: 0 0 14px;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.social-row a {
  border-color: #080808;
}

.numbers {
  gap: 4px;
  padding: 0 clamp(20px, 6vw, 84px) clamp(70px, 8vw, 120px);
  border: 0;
}

.numbers div,
.numbers div:nth-child(2),
.numbers div:nth-child(3),
.numbers div:last-child {
  min-height: 210px;
  border: 1px solid #222;
  border-radius: 28px 28px 0 0;
  background: #191919;
}

.numbers span {
  color: #fff;
  text-transform: uppercase;
}

.section-head h2 {
  text-transform: uppercase;
}

.tour-card {
  border-color: #222;
  border-radius: 28px;
  background: #191919;
  color: #fff;
}

.tour-card img {
  filter: saturate(0.92) contrast(1.05);
}

.tour-card p,
dt,
.meetup__content p,
.payment p,
.messengers small,
.tour-story p:last-child,
.program-day p {
  color: rgba(255, 255, 255, 0.72);
}

dl div {
  border-color: rgba(255, 255, 255, 0.16);
}

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

.meetup__media img {
  border-radius: 28px;
}

.meetup__content {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 28px;
  background: #191919;
}

.memory {
  position: relative;
  overflow: hidden;
}

.memory::before {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  top: 220px;
  height: 360px;
  border-top: 2px dashed rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: rotate(12deg);
}

.memory-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 42px;
}

.memory-grid img {
  border: 8px solid #fff;
  border-radius: 28px;
  filter: saturate(0.9);
  transform: rotate(-4deg);
}

.memory-grid img:nth-child(2) {
  transform: rotate(3deg);
}

.memory-grid img:nth-child(3) {
  transform: rotate(7deg);
}

.memory-grid img:nth-child(4) {
  transform: rotate(-8deg);
}

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

.contacts {
  background: #000;
}

.messengers a {
  border-color: #222;
  border-radius: 28px;
  background: #191919;
}

.request {
  border-top: 1px solid #222;
}

input,
select,
textarea {
  border-color: #2a2a2a;
  border-radius: 999px;
  background: #fff;
}

textarea {
  border-radius: 28px;
}

footer {
  background: #000;
  border-top: 1px solid #222;
}

.tour-hero,
.tour-detail,
.program {
  background: #000;
  color: #fff;
}

.tour-summary,
.program-day {
  border-color: #222;
  border-radius: 28px;
  background: #191919;
}

.admin-shell {
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero {
    min-height: 820px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.16) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.42) 100%);
  }

  .hero::after {
    height: 34%;
  }

  .hero-trail {
    left: -92vw;
    top: 282px;
    width: 290vw;
    height: 340px;
  }

  .shoe-prints {
    left: 26px;
    top: 468px;
    transform: scale(0.72) rotate(-18deg);
    transform-origin: left top;
  }

  .hero__cta {
    left: 20px;
    right: auto;
    top: auto;
    bottom: 96px;
    min-width: 220px;
  }

  .about,
  .meetup,
  .payment,
  .subscribe-strip {
    grid-template-columns: 1fr;
  }

  .about__portrait {
    height: auto;
  }

  .about__portrait img {
    height: min(72vh, 620px);
    min-height: 420px;
  }

  .memory-grid {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 178px;
  }

  .hero h1 {
    font-size: clamp(32px, 10.4vw, 40px);
    max-width: 350px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero .lead {
    padding-left: 140px;
    font-size: 18px;
  }

  .shoe-walk {
    gap: 12px;
    margin-top: 26px;
    margin-left: 0;
  }

  .shoe-walk img {
    width: 42px;
    height: 66px;
  }

  .hero__ghost {
    bottom: 8px;
    font-size: 100px;
  }

  .about__copy::before {
    left: 28px;
  }

  .memory-grid img,
  .memory-grid img:nth-child(n) {
    transform: none;
  }
}

/* Wordy Story palette skin */
:root {
  --ink: #0a0a0a;
  --muted: #115c73;
  --paper: #f3f3f3;
  --paper-strong: #ffffff;
  --line: rgba(17, 92, 115, 0.24);
  --coal: #000000;
  --smoke: #e9e9e9;
  --green: #115c73;
  --clay: #ce6b9b;
  --gold: #ff8562;
}

body,
.hero,
.subscribe-strip,
.about,
.numbers,
.section,
.meetup,
.memory,
.payment,
.contacts,
.request,
.tour-hero,
.tour-detail,
.program,
.policy {
  background: #000;
}

.brand span,
.hero h1 span,
.section-head h2::first-letter,
.memory__head h2,
.numbers strong,
.eyebrow,
footer a,
.fineprint a,
.policy a,
.policy__crumbs a {
  color: #ce6b9b;
}

.shoe-prints span {
  background:
    linear-gradient(90deg, transparent 46%, rgba(0, 0, 0, 0.2) 47% 53%, transparent 54%),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(0, 0, 0, 0.2) 8px 10px),
    #ce6b9b;
}

.shoe-prints span:nth-child(2),
.shoe-prints span:nth-child(4) {
  background:
    linear-gradient(90deg, transparent 46%, rgba(0, 0, 0, 0.2) 47% 53%, transparent 54%),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(0, 0, 0, 0.2) 8px 10px),
    #ff8562;
}

.hero__cta,
.subscribe-strip .button-link,
.button-link,
.payment .cta.dark,
.meetup .cta.dark,
button {
  color: #fff;
  border-color: #ce6b9b;
  background: #ce6b9b;
}

.hero__ghost {
  color: rgba(206, 107, 155, 0.18);
}

.about__copy {
  background: #f3f3f3;
  color: #0a0a0a;
}

.about__copy .eyebrow,
.about__copy h2 {
  color: #115c73;
}

.about__copy h2 {
  max-width: 820px;
  font-size: 56px;
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
}

.about__copy p {
  color: #0a0a0a;
}

@media (max-width: 1100px) {
  .about__copy h2 {
    font-size: 46px;
  }
}

@media (max-width: 640px) {
  .about__copy h2 {
    font-size: 34px;
    line-height: 1;
  }
}

.social-row a {
  border-color: #115c73;
  color: #115c73;
}

.numbers div,
.numbers div:nth-child(2),
.numbers div:nth-child(3),
.numbers div:last-child,
.tour-card,
.meetup__content,
.messengers a,
.tour-summary,
.program-day {
  border-color: rgba(17, 92, 115, 0.38);
  background: #f3f3f3;
  color: #0a0a0a;
}

.numbers span,
.tour-card h3,
.tour-card dd,
.meetup__content h2,
.messengers span,
.program-day h3,
.tour-story h2 {
  color: #0a0a0a;
}

.tour-card p,
dt,
.meetup__content p,
.payment p,
.messengers small,
.tour-story p:last-child,
.program-day p {
  color: #115c73;
}

dl div {
  border-color: rgba(17, 92, 115, 0.24);
}

.tour-meta,
.text-link,
.program-day span {
  color: #ce6b9b;
}

.meetup__facts span,
.pill,
.cta,
.button-link {
  border-color: currentColor;
}

.memory-grid img {
  border-color: #f3f3f3;
}

.payment {
  color: #fff;
  background: #115c73;
}

.contacts,
.request {
  background: #000;
}

input,
select,
textarea {
  border-color: rgba(17, 92, 115, 0.35);
  background: #f3f3f3;
  color: #0a0a0a;
}

footer {
  background: #000;
  border-color: rgba(206, 107, 155, 0.32);
}

.policy__body,
.policy__crumbs span,
.policy-list li::marker {
  color: #f3f3f3;
}

.memory {
  min-height: 860px;
  padding-block: clamp(86px, 10vw, 150px);
  background: #000;
  color: #fff;
}

.memory::before {
  left: -20vw;
  right: -18vw;
  top: 72px;
  height: 360px;
  border: 0;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 360' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M-100 170 C 80 28 190 260 350 122 S 575 32 705 175 900 330 1040 150 1215 18 1325 145 1470 310 1710 150' fill='none' stroke='%23ffffff' stroke-opacity='.58' stroke-width='2.4' stroke-linecap='round' stroke-dasharray='10 12' vector-effect='non-scaling-stroke'/%3E%3Cpath d='M-60 252 C 170 145 275 295 455 212 S 700 95 875 215 1110 340 1290 210 1455 120 1660 245' fill='none' stroke='%23ffffff' stroke-opacity='.18' stroke-width='1.6' stroke-linecap='round' stroke-dasharray='8 14' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: none;
}

.memory__head {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: clamp(42px, 5vw, 76px);
}

.memory__head h2 {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  color: #ce6b9b;
  font-size: clamp(38px, 7.2vw, 112px);
  line-height: 0.92;
  text-align: center;
  white-space: nowrap;
}

.memory-carousel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-inline: clamp(-84px, -6vw, -20px);
  padding: 30px 0 96px;
}

.memory-carousel::before,
.memory-carousel::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 12vw;
  pointer-events: none;
}

.memory-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #000, rgba(0, 0, 0, 0));
}

.memory-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #000, rgba(0, 0, 0, 0));
}

.memory-track {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  width: max-content;
  animation: memory-scroll 48s linear infinite;
}

.memory-carousel:hover .memory-track {
  animation-play-state: paused;
}

.memory-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 27vw, 430px);
  height: clamp(260px, 24vw, 380px);
  margin: 0;
  overflow: hidden;
  border: clamp(6px, 0.7vw, 10px) solid #fff;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4);
  transform: rotate(-5deg);
}

.memory-card.wide {
  width: clamp(360px, 42vw, 620px);
  height: clamp(230px, 22vw, 330px);
}

.memory-card.tall {
  width: clamp(280px, 29vw, 430px);
  height: clamp(380px, 40vw, 590px);
}

.memory-card:nth-child(2n) {
  transform: rotate(3deg) translateY(18px);
}

.memory-card:nth-child(3n) {
  transform: rotate(7deg) translateY(-12px);
}

.memory-card:nth-child(4n) {
  transform: rotate(-8deg) translateY(26px);
}

.memory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.memory-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.memory-card.video::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
}

.memory-card.video::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 33px;
  right: 34px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

@keyframes memory-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 27px));
  }
}

@media (max-width: 900px) {
  .memory {
    min-height: 760px;
  }

  .memory__head {
    margin-bottom: 34px;
  }

  .memory__head h2 {
    text-align: center;
  }

  .memory-card,
  .memory-card.tall,
  .memory-card.wide {
    width: 300px;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .memory {
    min-height: 680px;
  }

  .memory::before {
    top: 118px;
  }

  .memory-carousel {
    margin-inline: -20px;
    padding-bottom: 52px;
  }

  .memory-track {
    animation-duration: 38s;
  }

  .memory-card,
  .memory-card:nth-child(n) {
    width: 260px;
    height: 320px;
  }
}

.payment.section {
  width: min(1880px, calc(100% - clamp(36px, 5.5vw, 92px)));
  margin: clamp(48px, 6vw, 86px) auto;
  padding: clamp(52px, 6vw, 92px) clamp(24px, 6vw, 104px);
  display: flex;
  min-height: clamp(390px, 33vw, 560px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.8vw, 38px);
  border-radius: clamp(26px, 3.4vw, 48px);
  background: #181818;
  color: #fff;
  text-align: center;
}

.payment h2 {
  max-width: 1320px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(34px, 4.45vw, 72px);
  line-height: 1.1;
  text-transform: uppercase;
  overflow-wrap: normal;
  text-wrap: balance;
}

.payment h2 span {
  color: #ce6b9b;
}

.payment p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.26;
  overflow-wrap: normal;
}

.payment .cta.dark {
  min-width: min(360px, 100%);
  padding: 19px 34px;
  color: #fff;
  border-color: #ce6b9b;
  background: #ce6b9b;
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 800;
  text-transform: lowercase;
}

@media (max-width: 900px) {
  .payment.section {
    width: calc(100% - 28px);
    min-height: 0;
    margin-block: 40px;
    padding: 44px 20px;
    border-radius: 26px;
  }

  .payment h2 {
    font-size: clamp(28px, 8.1vw, 46px);
  }

  .payment p br {
    display: none;
  }
}

.request.section {
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 520px);
  align-items: start;
  gap: clamp(28px, 5vw, 76px);
  padding-top: clamp(66px, 8vw, 112px);
  padding-bottom: clamp(66px, 8vw, 112px);
  background: #000;
  color: #fff;
}

.request h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(28px, 3.35vw, 50px);
  line-height: 1.12;
  text-transform: none;
  text-wrap: balance;
}

.lead-form {
  gap: 12px;
}

.lead-form .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 58px;
  border-color: rgba(206, 107, 155, 0.28);
  border-radius: 10px;
  background: #f3f3f3;
  color: #0a0a0a;
}

.lead-form textarea {
  min-height: 126px;
}

.lead-form button {
  margin-top: 4px;
  min-height: 60px;
  border-radius: 999px;
  background: #ce6b9b;
  border-color: #ce6b9b;
  color: #fff;
  font-weight: 900;
}

.lead-form .fineprint {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .request.section {
    grid-template-columns: 1fr;
  }

  .request h2 {
    max-width: 100%;
    font-size: clamp(28px, 7.4vw, 42px);
  }
}

.hero-seo {
  position: relative;
  z-index: 3;
  width: min(690px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 750;
  line-height: 1.24;
  text-wrap: balance;
}

.section-cta {
  display: inline-flex;
  margin-top: 24px;
}

.tour-card__availability,
.seo-intro {
  font-weight: 850;
}

.tour-card__availability {
  min-height: 0;
  margin-top: 14px;
  color: #ce6b9b;
  font-size: 13px;
  text-transform: uppercase;
}

.audience,
.social-proof,
.faq,
.related-tours,
.journal {
  background: #000;
  color: #fff;
}

.audience {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.audience h2,
.social-proof h2,
.faq h2,
.related-tours h2,
.journal h1 {
  color: #fff;
  text-transform: uppercase;
}

.audience h2,
.social-proof h2,
.faq h2,
.related-tours h2 {
  max-width: 960px;
  font-size: clamp(34px, 5vw, 74px);
  line-height: 0.98;
  text-wrap: balance;
}

.audience p,
.social-proof > p,
.journal-lead {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.34;
}

.audience-list,
.proof-grid,
.faq-grid,
.journal-grid {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li,
.proof-grid article,
.faq-card,
.journal-card {
  border: 1px solid rgba(17, 92, 115, 0.38);
  border-radius: 28px;
  background: #f3f3f3;
  color: #0a0a0a;
}

.audience-list li {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 24px;
  color: #115c73;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 950;
  line-height: 1.05;
}

.social-proof > p {
  margin: -8px 0 34px;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid article {
  min-height: 160px;
  display: flex;
  align-items: end;
  padding: 24px;
}

.proof-grid h3,
.faq-card h3,
.journal-card h2 {
  margin: 0;
  color: #0a0a0a;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.02;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-card,
.journal-card {
  padding: clamp(22px, 2.6vw, 34px);
}

.faq-card p,
.journal-card p {
  margin: 14px 0 0;
  color: #115c73;
  font-size: 16px;
  line-height: 1.45;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-journal-grid {
  margin-top: 18px;
}

.seo-intro {
  margin-bottom: 18px;
  color: #ce6b9b;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.32;
}

.journal {
  min-height: 100vh;
  padding-top: clamp(132px, 14vw, 190px);
}

.journal h1 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(42px, 7.5vw, 118px);
  line-height: 0.94;
}

.journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 72px);
}

.mobile-sticky-cta {
  display: none;
}

.journal-teaser {
  background: #000;
  color: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.34);
}

.journal .journal-grid,
.journal-teaser .journal-grid {
  align-items: stretch;
}

.journal-card {
  overflow: hidden;
}

.journal-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  color: inherit;
}

.journal-card.featured {
  grid-column: span 2;
  background: #171717;
  color: #fff;
  border-color: rgba(206, 107, 155, 0.5);
}

.journal-card.featured h2,
.journal-card.featured p {
  color: #fff;
}

.journal-card__intent {
  color: #ce6b9b;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.journal-card__link {
  margin-top: auto;
  color: #115c73;
  font-weight: 950;
  text-transform: uppercase;
}

.journal-card.featured .journal-card__link {
  color: #ce6b9b;
}

.article-page {
  background: #000;
  color: #fff;
  padding: clamp(118px, 12vw, 176px) clamp(18px, 5vw, 72px) clamp(72px, 8vw, 128px);
}

.article-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.article-hero {
  margin-bottom: clamp(48px, 7vw, 92px);
}

.article-hero h1 {
  max-width: 1080px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 7.2vw, 116px);
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.article-hero > p:not(.eyebrow) {
  max-width: 820px;
  margin: clamp(24px, 3vw, 36px) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.32;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.article-meta span,
.article-meta a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-meta a {
  border-color: rgba(206, 107, 155, 0.55);
  color: #ce6b9b;
}

.article-content {
  display: grid;
  gap: clamp(34px, 5vw, 74px);
}

.article-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: clamp(28px, 4vw, 52px);
}

.article-section h2 {
  margin: 0;
  color: #ce6b9b;
  font-size: clamp(25px, 2.8vw, 46px);
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: balance;
}

.article-section p,
.article-section ul,
.article-faq p,
.article-related p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.6;
}

.article-section p + p,
.article-section p + ul,
.article-section ul + p {
  margin-top: 18px;
}

.article-section ul {
  padding-left: 20px;
}

.article-section li + li {
  margin-top: 10px;
}

.article-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border-radius: 999px;
  background: #ce6b9b;
  padding: 0 20px;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
}

.article-faq,
.article-tours,
.article-related {
  margin-top: clamp(54px, 7vw, 96px);
}

.article-faq h2,
.article-tours h2,
.article-related h2 {
  max-width: 820px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(32px, 5vw, 74px);
  line-height: 0.98;
  text-transform: uppercase;
}

.article-faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 0;
}

.article-faq__item summary {
  cursor: pointer;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 950;
  text-transform: uppercase;
}

.article-faq__item p {
  max-width: 760px;
  margin-top: 14px;
}

.article-tours > div,
.article-related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-tours a,
.article-related article a {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(206, 107, 155, 0.34);
  border-radius: 28px;
  background: #171717;
  padding: clamp(22px, 2.5vw, 32px);
  color: #fff;
}

.article-tours a {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.article-tours span,
.article-related span {
  color: #ce6b9b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.article-related h3 {
  margin: 14px 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.04;
  text-transform: uppercase;
}

.article-related p {
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .proof-grid,
  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-grid,
  .article-tours > div,
  .article-related > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .audience,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-seo {
    width: min(560px, 100%);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .hero-seo {
    max-width: 330px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.28;
  }

  .hero__cta {
    bottom: 92px;
  }

  .proof-grid,
  .journal-grid,
  .related-grid,
  .article-tours > div,
  .article-related > div {
    grid-template-columns: 1fr;
  }

  .journal-card.featured {
    grid-column: auto;
  }

  .article-section {
    grid-template-columns: 1fr;
  }

  .article-page {
    padding-top: 112px;
  }

  .article-hero h1 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .audience p,
  .social-proof > p,
  .journal-lead {
    font-size: 17px;
  }

  .audience-list li,
  .proof-grid article {
    min-height: 118px;
    border-radius: 22px;
  }

  .faq-card,
  .journal-card {
    border-radius: 22px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 60;
    left: 14px;
    right: 14px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: #ce6b9b;
    color: #fff;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
  }
}
