/* A shared vocabulary, four intentionally different page compositions. */
.landing {
  --landing-accent: #a44364;
  --landing-bg: #fcf8f5;
  --landing-button-ink: #fff;
  --landing-overlay: 0.16;
  --lnd-ink: #32252b;
  --lnd-muted: #77686e;
  --lnd-line: #e8dedf;
  --lnd-surface: #fffdfb;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--landing-bg);
  color: var(--lnd-ink);
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
.landing * {
  box-sizing: border-box;
}
.landing h1,
.landing h2,
.landing h3,
.landing p,
.landing figure {
  margin: 0;
}
.landing a {
  text-decoration: none;
  color: inherit;
}
.landing input,
.landing button {
  font: inherit;
}
.landing img {
  max-width: 100%;
  display: block;
}
.landing h1,
.landing h2,
.landing h3 {
  font-weight: 500;
}
.landing a:focus-visible,
.landing button:focus-visible {
  outline: 3px solid var(--landing-accent);
  outline-offset: 5px;
}
.landing input:focus-visible {
  outline: 2px solid var(--landing-accent);
  outline-offset: 2px;
}
.lnd-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.065;
  z-index: -1;
  pointer-events: none;
}
.lnd-wrap {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin-inline: auto;
}
.lnd-small-label {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.8px;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--landing-accent);
}
.lnd-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.landing .lnd-button--primary {
  background: var(--landing-accent);
  color: var(--landing-button-ink);
}
.lnd-button--secondary {
  border-color: var(--lnd-line);
  background: var(--lnd-surface);
}
.lnd-button > span {
  font-size: 18px;
  font-weight: 400;
}
.lnd-button:hover {
  transform: translateY(-2px);
}
.lnd-button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}
.lnd-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.3;
  min-height: 42px;
  max-width: 100%;
}
.lnd-location > span:nth-child(2) {
  overflow-wrap: anywhere;
}
.lnd-location small {
  display: block;
  font-size: 10px;
  color: var(--lnd-muted);
  margin-top: 5px;
}
.lnd-location-mark {
  color: var(--landing-accent);
  font:
    27px Georgia,
    serif;
}
.lnd-location-fixed {
  font-size: 9px;
  color: var(--lnd-muted);
  font-weight: 400;
  border-left: 1px solid var(--lnd-line);
  padding-left: 10px;
  white-space: nowrap;
}
.lnd-location--compact {
  font-size: 12px;
}
.lnd-hero-copy h1 {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 36px;
  line-height: 1.35;
  letter-spacing: 0.2px;
  white-space: pre-line;
  text-wrap: balance;
}
.lnd-subtitle {
  font-size: 14px;
  line-height: 1.95;
  color: var(--lnd-muted);
  max-width: 470px;
  white-space: pre-line;
  text-wrap: pretty;
}
.lnd-hero-copy .lnd-small-label {
  display: block;
  margin-bottom: 18px;
}
.lnd-hero-copy h1 + .lnd-subtitle {
  margin-top: 18px;
}
.lnd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-top: 26px;
}
.lnd-hero-note,
.lnd-hero-city {
  font-size: 10px;
  color: var(--lnd-muted);
}
.lnd-hero-city {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.lnd-hero-photo {
  position: relative;
  overflow: hidden;
  background: #d8c5c0;
}
.lnd-hero-photo > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.lnd-photo-overlay {
  position: absolute;
  inset: 0;
  background: #24171a;
  opacity: var(--landing-overlay);
  pointer-events: none;
}
.lnd-image-caption {
  font-size: 10px;
  letter-spacing: 0.6px;
}
.lnd-city-panel {
  position: relative;
  background: var(--lnd-surface);
  padding: 25px 23px;
  border: 1px solid var(--lnd-line);
  border-radius: 20px;
  scroll-margin-top: 28px;
  box-shadow: 0 12px 40px #68414a08;
}
.lnd-city-heading h2 {
  font-size: 24px;
  letter-spacing: -0.4px;
  line-height: 1.4;
  margin: 9px 0;
}
.lnd-city-heading > p {
  font-size: 12px;
  color: var(--lnd-muted);
  line-height: 1.9;
  max-width: 390px;
}
.lnd-city-form {
  margin-top: 23px;
}
.lnd-city-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.lnd-city-fields label > span {
  display: block;
  font-size: 12px;
  font-weight: 550;
  margin-bottom: 7px;
}
.lnd-city-fields label small {
  color: var(--lnd-muted);
  font-size: 10px;
  font-weight: 400;
  margin-left: 6px;
}
.lnd-city-fields input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--lnd-line);
  border-radius: 9px;
  padding: 11px 12px;
  color: var(--lnd-ink);
  background: transparent;
  font-size: 14px;
}
.lnd-city-fields input::placeholder {
  color: var(--lnd-muted);
  opacity: 0.78;
}
.lnd-location-suggestion {
  font-size: 10px;
  line-height: 1.7;
  color: var(--lnd-muted);
  margin-top: 11px !important;
}
.lnd-city-confirm {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
  line-height: 1.8;
  margin: 19px 0 17px;
  cursor: pointer;
  color: var(--lnd-muted);
}
.lnd-city-confirm input {
  accent-color: var(--landing-accent);
  width: 15px;
  height: 15px;
  margin: 3px 0 0;
  flex-shrink: 0;
}
.lnd-city-form > .lnd-button {
  width: 100%;
  justify-content: space-between;
  padding-inline: 18px;
}
.lnd-cookie-note {
  font-size: 10px;
  line-height: 1.9;
  margin-top: 17px !important;
  color: var(--lnd-muted);
}
.lnd-cookie-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--lnd-ink);
}
.lnd-visitor {
  font-size: 9px;
  line-height: 1.5;
  color: var(--lnd-muted);
  margin-top: 12px !important;
  overflow-wrap: anywhere;
}
.lnd-visitor span {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  margin-left: 4px;
}
.lnd-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  user-select: none;
  pointer-events: none;
}
.lnd-teaser {
  overflow: hidden;
  background: #f1e8e4;
  border-radius: 14px;
  opacity: 0.8;
}
.lnd-teaser-photo {
  height: 125px;
  background: #d3b8ae;
  position: relative;
  overflow: hidden;
}
.lnd-teaser-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(9px) saturate(0.55);
  transform: scale(1.18);
}
.lnd-teaser-photo > span {
  position: absolute;
  left: 13px;
  bottom: 9px;
  color: #fffcf7a8;
  font:
    22px Georgia,
    serif;
}
.lnd-teaser--b .lnd-teaser-photo > img {
  object-position: 20% center;
  transform: scale(1.4);
}
.lnd-teaser--c .lnd-teaser-photo > img {
  object-position: 80% center;
  transform: scale(1.65);
}
.lnd-teaser-copy {
  padding: 13px 11px 11px;
}
.lnd-teaser-copy i {
  display: block;
  width: 62%;
  height: 5px;
  border-radius: 3px;
  background: #cbbbb6;
  margin-bottom: 7px;
  opacity: 0.55;
}
.lnd-teaser-copy i:nth-child(2) {
  width: 90%;
  height: 4px;
}
.lnd-teaser-copy small {
  font-size: 7px;
  letter-spacing: 0.4px;
  color: #948580;
  white-space: nowrap;
}
.lnd-catalog {
  padding-block: 42px 54px;
  scroll-margin-top: 25px;
}
.lnd-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 24px;
}
.lnd-section-heading h2 {
  font-size: 23px;
  line-height: 1.5;
  margin-top: 9px;
  letter-spacing: -0.4px;
  text-wrap: balance;
}
.lnd-section-heading .lnd-small-label {
  font-size: 9px;
  letter-spacing: 1px;
}
.lnd-count {
  font-size: 10px;
  color: var(--lnd-muted);
  white-space: nowrap;
  padding-bottom: 4px;
}
.lnd-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 13px;
}
.lnd-profile {
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--lnd-surface);
  border: 1px solid var(--lnd-line);
}
.lnd-profile-image {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  background: #e8ded8;
  overflow: hidden;
}
.lnd-profile-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.lnd-profile:hover .lnd-profile-image > img {
  transform: scale(1.025);
}
.lnd-profile-number {
  position: absolute;
  top: 11px;
  left: 11px;
  font:
    11px Georgia,
    serif;
  color: #fff;
  text-shadow: 0 1px 5px #0008;
}
.lnd-unlocked {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 3px 8px;
  background: #fff9edeb;
  color: #755139;
  font-size: 8px;
  font-weight: 600;
  border-radius: 999px;
}
.lnd-photo-unavailable {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #75665f;
}
.lnd-profile-copy {
  padding: 13px 12px 10px;
}
.lnd-profile-name {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
}
.lnd-profile-name h3 {
  font-size: 18px;
  font-family: Georgia, "Songti SC", serif;
  font-weight: 600;
  overflow-wrap: anywhere;
  line-height: 1.4;
}
.lnd-profile-name > span {
  font-size: 11px;
  white-space: nowrap;
  color: var(--lnd-muted);
}
.lnd-profile-place {
  font-size: 10px;
  color: var(--lnd-muted);
  margin: 6px 0 9px !important;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
.lnd-profile-place > span {
  padding-inline: 2px;
}
.lnd-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.lnd-profile-tags > span {
  font-size: 8px;
  border: 1px solid var(--lnd-line);
  border-radius: 4px;
  color: var(--lnd-muted);
  padding: 2px 5px;
  line-height: 1.7;
}
.lnd-profile-tags > .lnd-verified {
  color: #486853;
  border-color: #d3e1d3;
}
.lnd-profile-copy .verification-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 6px 0 0;
}
.lnd-profile-copy .verification-tags > span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  line-height: 1.6;
  padding: 2px 4px;
  background: #edf3e9;
  color: #476744;
  border-radius: 3px;
  max-width: 100%;
}
.lnd-profile-copy .verification-tags img {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.lnd-profile-bio {
  font-size: 10px;
  line-height: 1.85;
  color: var(--lnd-muted);
  margin-top: 10px !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.lnd-profile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--lnd-line);
  font-size: 10px;
  padding: 10px 0 1px;
  margin-top: 12px;
  color: var(--landing-accent) !important;
}
.lnd-profile-link > span {
  font-size: 15px;
}
.lnd-empty-city {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--lnd-surface);
  border: 1px solid var(--lnd-line);
  border-radius: 18px;
}
.lnd-empty-photo {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: #cbbfb4;
}
.lnd-empty-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}
.lnd-empty-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #26221d77, transparent 75%);
}
.lnd-empty-photo > span {
  position: absolute;
  left: 23px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font:
    25px Georgia,
    serif;
  max-width: calc(100% - 46px);
  overflow-wrap: anywhere;
}
.lnd-empty-copy {
  padding: 26px 23px;
}
.lnd-empty-copy h3 {
  font:
    29px/1.4 Georgia,
    "Songti SC",
    serif;
  white-space: pre-line;
  margin: 12px 0;
}
.lnd-empty-copy > p {
  font-size: 12px;
  color: var(--lnd-muted);
  line-height: 1.9;
  max-width: 480px;
}
.lnd-empty-copy > .lnd-button {
  margin-top: 20px;
}
.lnd-empty-copy > .lnd-empty-footnote {
  font-size: 9px;
  margin-top: 17px;
}
.lnd-steps {
  padding: 37px 0 46px;
  background: #f4edeb;
  border-top: 1px solid var(--lnd-line);
}
.lnd-steps-intro h2 {
  font-family: Georgia, "Songti SC", serif;
  font-size: 26px;
  line-height: 1.5;
  margin-top: 8px;
}
.lnd-steps-grid {
  display: grid;
  gap: 0;
  margin-top: 24px;
}
.lnd-steps-grid article {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--lnd-line);
}
.lnd-step-number {
  font:
    24px Georgia,
    serif;
  color: var(--landing-accent);
  opacity: 0.65;
  flex-shrink: 0;
}
.lnd-steps-grid h3 {
  font-size: 14px;
  font-weight: 550;
  margin-top: 0;
}
.lnd-steps-grid p {
  font-size: 11px;
  line-height: 1.9;
  color: var(--lnd-muted);
  max-width: 350px;
  margin-top: 7px;
}
.lnd-catalog .filters {
  background: var(--lnd-surface);
  border-color: var(--lnd-line);
  box-shadow: none;
}
.lnd-catalog .filters .field > span {
  color: var(--lnd-muted);
}
.lnd-catalog .filters input,
.lnd-catalog .filters select {
  color: var(--lnd-ink);
  background: var(--landing-bg);
  border-color: var(--lnd-line);
}
.lnd-catalog .filters .btn.primary {
  background: var(--landing-accent);
  border-color: var(--landing-accent);
  color: var(--landing-button-ink);
}
.lnd-catalog .pagination {
  color: var(--lnd-muted);
}

/* 01 — cream / app-like discovery: photographic banner, floating city card, rounded grid. */
.lnd-default-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 13px 12px;
  gap: 12px;
}
.lnd-default-top .lnd-location {
  background: #fff7f7;
  border: 1px solid #ecdee1;
  border-radius: 999px;
  padding: 4px 13px;
  min-height: 35px;
  gap: 6px;
}
.lnd-default-top .lnd-location-mark {
  font-size: 20px;
}
.lnd-top-note {
  font-size: 9px;
  color: var(--lnd-muted);
  text-align: right;
  max-width: 140px;
}
.lnd-default-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--lnd-line);
  border-radius: 23px;
  overflow: hidden;
  background: #f5e9e2;
  padding-bottom: 24px;
}
.lnd-default-hero .lnd-hero-photo {
  height: 215px;
  order: 0;
  margin: -1px -1px 0;
  border-radius: 23px 23px 0 0;
}
.lnd-default-hero .lnd-hero-photo img {
  object-position: center 55%;
}
.lnd-default-hero .lnd-hero-copy {
  order: 1;
  padding: 24px 23px 0;
}
.lnd-default-hero .lnd-hero-copy h1 {
  font-size: 31px;
  line-height: 1.5;
  letter-spacing: -0.4px;
}
.lnd-default-hero .lnd-small-label {
  font-size: 9px;
  margin-bottom: 9px;
  color: #8b5c64;
}
.lnd-default-hero .lnd-subtitle {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 11px !important;
}
.lnd-default-hero .lnd-hero-actions {
  margin-top: 20px;
  gap: 12px;
}
.lnd-default-hero .lnd-hero-note {
  font-size: 9px;
}
.lnd-default-hero .lnd-image-caption {
  position: absolute;
  top: 183px;
  left: 24px;
  color: #fff;
  text-shadow: 0 1px 7px #23171a99;
  z-index: 1;
  font-size: 9px;
}
.lnd-gate {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-bottom: 43px;
}
.lnd-gate-preview {
  order: 1;
  padding: 22px 12px 0;
}
.lnd-gate-preview .lnd-teasers {
  gap: 13px;
  opacity: 0.68;
}
.lnd-gate-preview .lnd-teaser-photo {
  height: 90px;
}
.lnd-gate-preview > p {
  font-size: 10px;
  text-align: center;
  color: var(--lnd-muted);
  margin-top: 16px;
}
.lnd-gate .lnd-city-panel {
  order: 0;
}

/* 02 — editorial / asymmetrical magazine: ruled masthead, serif spread, horizontal profiles. */
.landing--editorial {
  --lnd-ink: #36322d;
  --lnd-muted: #7a7168;
  --lnd-line: #d9d1c6;
  --lnd-surface: #f9f6ef;
}
.lnd-editorial-hero {
  padding-top: 20px;
}
.lnd-editorial-wordline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-block: 1px solid var(--lnd-line);
  padding-block: 8px;
  gap: 10px;
}
.lnd-editorial-wordline > span {
  font-size: 8px;
  letter-spacing: 1.1px;
  color: var(--lnd-muted);
}
.lnd-editorial-wordline > span:last-child {
  display: none;
}
.lnd-editorial-wordline .lnd-location {
  min-height: 27px;
  font-size: 10px;
  gap: 6px;
}
.lnd-editorial-wordline .lnd-location-mark {
  font-size: 21px;
}
.lnd-editorial-spread {
  display: grid;
  gap: 30px;
  padding-top: 32px;
}
.lnd-editorial-spread .lnd-small-label {
  font-size: 9px;
  letter-spacing: 1px;
}
.lnd-editorial-spread h1 {
  font-size: 47px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -1px;
}
.lnd-editorial-spread .lnd-subtitle {
  font-size: 12px;
  line-height: 2;
}
.landing--editorial .lnd-button {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--landing-accent);
  padding: 11px 0;
  min-height: 44px;
}
.landing--editorial .lnd-button--primary {
  color: var(--landing-accent);
  background: transparent;
}
.lnd-editorial-spread .lnd-hero-actions {
  gap: 24px;
  margin-top: 18px;
}
.lnd-editorial-image .lnd-hero-photo {
  height: 290px;
  border-radius: 50% 50% 0 0;
}
.lnd-editorial-image .lnd-hero-photo img {
  object-position: center 45%;
}
.lnd-editorial-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 13px 0;
  border-bottom: 1px solid var(--lnd-line);
  font-size: 10px;
  line-height: 1.8;
  color: var(--lnd-muted);
}
.lnd-editorial-image figcaption > span:last-child {
  font-size: 18px;
  color: var(--landing-accent);
}
.lnd-editorial-postscript {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--lnd-line);
}
.lnd-editorial-postscript > span {
  font-size: 8px;
  letter-spacing: 1px;
  flex: 0 0 62px;
  line-height: 1.8;
  color: var(--landing-accent);
}
.lnd-editorial-postscript p {
  font-size: 11px;
  line-height: 1.9;
  color: var(--lnd-muted);
}
.lnd-editorial-gate {
  display: grid;
  gap: 25px;
  padding-block: 34px 46px;
}
.lnd-editorial-gate-intro > h2 {
  font:
    29px/1.4 Georgia,
    "Songti SC",
    serif;
  white-space: pre-line;
  margin-top: 10px;
}
.lnd-editorial-gate-intro .lnd-teasers {
  display: none;
}
.landing--editorial .lnd-city-panel {
  border-radius: 0;
  box-shadow: none;
  padding: 26px 22px;
}
.landing--editorial .lnd-city-fields input {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--lnd-line);
  padding: 10px 0;
}
.landing--editorial .lnd-city-form > .lnd-button {
  border: 1px solid var(--landing-accent);
  padding-inline: 16px;
  margin-top: 4px;
}
.landing--editorial .lnd-section-heading h2 {
  font-family: Georgia, "Songti SC", serif;
  font-size: 26px;
}
.landing--editorial .lnd-profile-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
.landing--editorial .lnd-profile {
  display: grid;
  grid-template-columns: 39% 1fr;
  border: 0;
  border-top: 1px solid var(--lnd-line);
  border-radius: 0;
  background: transparent;
  padding: 20px 0;
  gap: 20px;
  overflow: visible;
}
.landing--editorial .lnd-profile-image {
  aspect-ratio: 3/4;
  border-radius: 0;
}
.landing--editorial .lnd-profile-copy {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landing--editorial .lnd-profile-name h3 {
  font-size: 22px;
}
.landing--editorial .lnd-profile-bio {
  font-size: 11px;
  -webkit-line-clamp: 3;
}
.landing--editorial .lnd-profile-tags > span {
  border: 0;
  padding: 0 5px 0 0;
  font-size: 9px;
}
.landing--editorial .lnd-profile-link {
  padding-top: 10px;
  font-size: 11px;
}
.landing--editorial .lnd-empty-city {
  border-radius: 0;
}
.landing--editorial .lnd-empty-photo {
  height: 220px;
}
.lnd-steps--editorial {
  background: transparent;
}
.lnd-steps--editorial .lnd-step-number {
  font-style: italic;
}

/* 03 — sage / city journal: typographic header, landscape ribbon, notebook-like stories. */
.landing--sage {
  --lnd-ink: #263c31;
  --lnd-muted: #6c7b6d;
  --lnd-line: #d5ddcf;
  --lnd-surface: #fbfcf5;
}
.lnd-sage-hero {
  padding-top: 29px;
}
.lnd-sage-heading {
  display: grid;
  gap: 26px;
}
.lnd-sage-heading .lnd-small-label {
  font-size: 9px;
  letter-spacing: 1.1px;
  margin-bottom: 14px;
}
.lnd-sage-heading h1 {
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.2px;
}
.lnd-sage-heading .lnd-subtitle {
  font-size: 12px;
  line-height: 1.95;
  max-width: 320px;
}
.lnd-sage-heading .lnd-hero-actions {
  margin-top: 20px;
}
.landing--sage .lnd-button {
  border-radius: 7px;
}
.lnd-sage-stamp {
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--lnd-line);
  padding-top: 13px;
  align-items: center;
}
.lnd-sage-stamp > span {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--lnd-muted);
}
.lnd-sage-stamp .lnd-location {
  font-size: 11px;
  min-height: 33px;
  gap: 6px;
}
.lnd-sage-stamp .lnd-location-mark {
  font-size: 20px;
}
.lnd-sage-stamp .lnd-location small {
  display: none;
}
.lnd-sage-stamp > p {
  display: none;
}
.lnd-sage-photo {
  position: relative;
  margin-top: 15px;
}
.lnd-sage-photo .lnd-hero-photo {
  height: 245px;
  border-radius: 3px;
}
.lnd-sage-photo .lnd-hero-photo img {
  object-position: center 55%;
}
.lnd-sage-photo-note {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 70px;
  background: #f9fbf0f0;
  border: 1px solid #fbfff080;
  padding: 13px 16px;
  backdrop-filter: blur(8px);
}
.lnd-sage-photo-note > span {
  font-size: 7px;
  letter-spacing: 1.3px;
  color: var(--landing-accent);
}
.lnd-sage-photo-note > p {
  font:
    19px/1.4 Georgia,
    "Songti SC",
    serif;
  white-space: pre-line;
  margin-top: 6px;
}
.lnd-sage-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--lnd-line);
  font-size: 7px;
  letter-spacing: 0.7px;
  color: var(--lnd-muted);
}
.lnd-sage-gate {
  display: grid;
  gap: 33px;
  padding-block: 31px 40px;
}
.landing--sage .lnd-city-panel {
  border-radius: 6px;
  box-shadow: none;
}
.landing--sage .lnd-city-fields input {
  border-radius: 4px;
}
.lnd-sage-aside {
  padding-inline: 4px;
}
.lnd-sage-aside > h2 {
  font:
    27px/1.45 Georgia,
    "Songti SC",
    serif;
  margin: 12px 0;
  white-space: pre-line;
}
.lnd-sage-aside > p {
  max-width: 390px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--lnd-muted);
}
.lnd-sage-aside .lnd-teasers {
  display: none;
}
.landing--sage .lnd-section-heading h2 {
  font-family: Georgia, "Songti SC", serif;
  font-size: 25px;
}
.landing--sage .lnd-profile {
  border-radius: 3px;
  box-shadow: 0 3px 0 #d9dfcf50;
  border-color: #d8dfd1;
}
.landing--sage .lnd-profile-image {
  aspect-ratio: 4/4.6;
}
.landing--sage .lnd-profile-copy {
  padding: 14px 12px;
}
.landing--sage .lnd-profile-number {
  top: 9px;
  left: 9px;
  border: 1px solid #ffffff70;
  padding: 2px 5px;
  background: #34483430;
  font-size: 9px;
}
.landing--sage .lnd-profile-tags > span {
  border-radius: 0;
  background: #edf1e7;
  border: 0;
}
.landing--sage .lnd-unlocked {
  border-radius: 2px;
  background: #eaf2e3ed;
  color: #456438;
}
.landing--sage .lnd-empty-city {
  border-radius: 4px;
}
.lnd-steps--sage {
  background: #e8eddf;
}
.lnd-steps--sage .lnd-steps-grid article {
  gap: 17px;
}
.lnd-steps--sage .lnd-step-number {
  font-size: 16px;
  border: 1px solid #aabc9e;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 04 — dark / immersive spotlight: full screen photography, centered type, cinematic gallery. */
.landing--spotlight {
  --lnd-ink: #f2e8dd;
  --lnd-muted: #b3aba1;
  --lnd-line: #ffffff21;
  --lnd-surface: #23282a;
}
.lnd-spotlight-hero {
  position: relative;
  min-height: 680px;
  min-height: min(810px, 100svh);
  color: #fff;
  display: flex;
}
.lnd-spotlight-hero > .lnd-hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.lnd-spotlight-hero > .lnd-hero-photo img {
  object-position: 60% center;
}
.lnd-spotlight-hero > .lnd-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #14171944 0%,
    #14171900 25%,
    #14171933 48%,
    #171b1d 100%
  );
}
.lnd-spotlight-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 108px;
  padding-bottom: 27px;
}
.lnd-spotlight-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 5px;
}
.lnd-spotlight-topline > span {
  font-size: 8px;
  letter-spacing: 1px;
  text-align: right;
  max-width: 122px;
  color: #f0e4d3ad;
}
.lnd-spotlight-topline .lnd-location {
  font-size: 11px;
  gap: 7px;
}
.lnd-spotlight-topline .lnd-location-fixed {
  color: #ddcbbc99;
  border-color: #ffffff35;
}
.lnd-spotlight-topline .lnd-location-mark {
  color: #e9d0ab;
}
.lnd-spotlight-hero .lnd-hero-copy {
  margin-top: auto;
  margin-bottom: auto;
  padding-block: 60px 55px;
  text-align: center;
  width: 100%;
}
.lnd-spotlight-hero .lnd-small-label {
  color: #e8cda8;
  font-size: 9px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.lnd-spotlight-hero h1 {
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.4px;
  text-shadow: 0 3px 30px #0004;
}
.lnd-spotlight-hero .lnd-subtitle {
  font-size: 12px;
  color: #f6eee2bf;
  max-width: 295px;
  margin-inline: auto;
  line-height: 1.95;
}
.lnd-spotlight-hero .lnd-hero-actions {
  justify-content: center;
  flex-direction: column;
  margin-top: 29px;
  gap: 14px;
}
.landing--spotlight .lnd-button {
  border-radius: 4px;
}
.lnd-spotlight-hero .lnd-hero-note,
.lnd-spotlight-hero .lnd-hero-city {
  color: #e2d4c499;
}
.lnd-spotlight-bottomline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid #ffffff2b;
  padding-top: 18px;
  font-size: 9px;
  color: #ddcbbb99;
}
.lnd-spotlight-bottomline a {
  color: #f6e9d5;
  font-size: 10px;
}
.lnd-spotlight-bottomline a > span {
  margin-left: 8px;
}
.lnd-spotlight-gate {
  display: grid;
  gap: 27px;
  padding-block: 29px 44px;
}
.lnd-spotlight-gate-copy > h2 {
  font:
    29px/1.55 Georgia,
    "Songti SC",
    serif;
  white-space: pre-line;
  margin-top: 10px;
}
.lnd-spotlight-gate-copy .lnd-teasers {
  display: none;
}
.lnd-spotlight-gate-copy > p {
  font-size: 11px;
  color: var(--lnd-muted);
  margin-top: 14px;
}
.landing--spotlight .lnd-city-panel {
  border-radius: 7px;
  box-shadow: none;
  background: #222729;
}
.landing--spotlight .lnd-city-heading h2 {
  font-size: 23px;
}
.landing--spotlight .lnd-city-fields input {
  border-radius: 4px;
  background: #1b2022;
}
.landing--spotlight .lnd-teaser {
  background: #31302e;
}
.landing--spotlight .lnd-teaser-photo {
  opacity: 0.45;
}
.landing--spotlight .lnd-teaser-copy i {
  background: #8b776c;
}
.landing--spotlight .lnd-catalog {
  padding-top: 39px;
}
.landing--spotlight .lnd-section-heading h2 {
  font:
    25px/1.5 Georgia,
    "Songti SC",
    serif;
}
.landing--spotlight .lnd-profile-grid {
  display: flex;
  overflow-x: auto;
  gap: 18px;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 20px;
  margin-inline: -2px;
  scrollbar-width: thin;
  scrollbar-color: #685542 #1b2022;
}
.landing--spotlight .lnd-profile {
  flex: 0 0 82%;
  scroll-snap-align: start;
  border: 1px solid #ffffff1c;
  border-radius: 5px;
  background: #242729;
}
.landing--spotlight .lnd-profile-image {
  aspect-ratio: 4/4.7;
}
.landing--spotlight .lnd-profile-copy {
  padding: 19px 20px 14px;
}
.landing--spotlight .lnd-profile-name h3 {
  font-size: 26px;
  font-weight: 400;
}
.landing--spotlight .lnd-profile-name > span {
  font-size: 13px;
}
.landing--spotlight .lnd-profile-place,
.landing--spotlight .lnd-profile-bio {
  font-size: 12px;
}
.landing--spotlight .lnd-profile-tags > span {
  font-size: 10px;
  border-color: #ffffff2b;
  color: #c7b29b;
}
.landing--spotlight .lnd-profile-link {
  font-size: 12px;
  padding-block: 14px 2px;
}
.landing--spotlight .lnd-unlocked {
  border-radius: 3px;
  background: #d0af7deb;
  color: #2e291e;
  font-size: 10px;
  padding: 4px 9px;
}
.landing--spotlight .lnd-profile-tags > .lnd-verified {
  color: #b5c5b3;
  border-color: #627360;
}
.landing--spotlight .lnd-profile-copy .verification-tags > span {
  color: #c0d3b7;
  background: #334031;
}
.landing--spotlight .lnd-empty-city {
  border-radius: 5px;
}
.landing--spotlight .lnd-empty-photo img {
  filter: saturate(0.8) brightness(0.8);
}
.landing--spotlight .lnd-empty-copy h3 {
  font-weight: 400;
}
.lnd-steps--spotlight {
  background: #1d2224;
}
.lnd-steps--spotlight .lnd-step-number {
  color: #c5a779;
}

/* The main shell remains in charge of its navigation; only homepage color treatment lives here. */
body:has(.landing):not(.admin-page) {
  background: var(--landing-bg, #fcf8f5);
}
body:has(.landing) .site-header {
  position: relative;
  inset: auto;
  background: var(--landing-bg, #fcf8f5);
  color: #45333a;
  border-bottom-color: #e5dadd;
}
body:has(.landing) .site-header .wordmark {
  color: var(--landing-accent, #a44364);
}
body:has(.landing) .site-header .wordmark small {
  color: #8a737c;
}
body:has(.landing) .site-header .main-nav {
  color: inherit;
}
body:has(.landing) .site-header .language {
  border-color: #d7c7ce;
}
body:has(.landing--spotlight) .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  border-bottom-color: #ffffff20;
  color: #fff;
}
body:has(.landing--spotlight) .site-header .wordmark,
body:has(.landing--spotlight) .site-header .wordmark small {
  color: #f6e7d3;
}
body:has(.landing--spotlight) .site-header .language {
  border-color: #ffffff30;
}
body:has(.landing--spotlight) .site-footer {
  background: #171b1d;
  color: #b3aba1;
  border-color: #ffffff1c;
}

@media (min-width: 600px) {
  .lnd-wrap {
    width: calc(100% - 64px);
  }
  .lnd-city-fields {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .lnd-city-panel {
    padding: 30px;
  }
  .lnd-hero-copy h1 {
    font-size: 46px;
  }
  .lnd-default-hero .lnd-hero-photo {
    height: 290px;
  }
  .lnd-default-hero .lnd-hero-copy {
    padding: 30px 32px 6px;
  }
  .lnd-default-hero .lnd-hero-copy h1 {
    font-size: 39px;
  }
  .lnd-default-hero .lnd-image-caption {
    top: 255px;
    left: 33px;
  }
  .lnd-default-hero .lnd-subtitle {
    font-size: 14px;
  }
  .lnd-profile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 18px;
  }
  .lnd-profile-copy {
    padding: 17px 16px 13px;
  }
  .lnd-profile-name h3 {
    font-size: 22px;
  }
  .lnd-profile-place,
  .lnd-profile-bio {
    font-size: 11px;
  }
  .lnd-profile-tags > span {
    font-size: 9px;
  }
  .lnd-profile-link {
    font-size: 11px;
  }
  .lnd-section-heading h2 {
    font-size: 29px;
  }
  .lnd-section-heading .lnd-small-label {
    font-size: 10px;
  }
  .lnd-count {
    font-size: 11px;
  }
  .lnd-empty-city {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .lnd-empty-photo {
    height: 100%;
    min-height: 300px;
  }
  .lnd-empty-copy {
    padding: 32px 28px;
  }
  .lnd-editorial-wordline > span:last-child {
    display: block;
  }
  .lnd-editorial-spread {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
  }
  .lnd-editorial-spread h1 {
    font-size: 42px;
  }
  .lnd-editorial-image .lnd-hero-photo {
    height: 380px;
  }
  .lnd-editorial-postscript {
    margin-top: 38px;
    gap: 40px;
  }
  .lnd-editorial-postscript > span {
    flex-basis: 100px;
  }
  .lnd-editorial-gate {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 32px;
  }
  .landing--editorial .lnd-city-fields {
    grid-template-columns: 1fr;
  }
  .landing--editorial .lnd-profile-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 26px;
  }
  .landing--editorial .lnd-profile {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .landing--editorial .lnd-profile-image {
    aspect-ratio: 4/4.8;
  }
  .lnd-sage-heading {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 40px;
  }
  .lnd-sage-stamp {
    grid-template-columns: 1fr;
    border: 1px solid var(--lnd-line);
    padding: 20px;
    align-content: start;
  }
  .lnd-sage-stamp > p {
    display: block;
    font-size: 11px;
    line-height: 1.8;
    color: var(--lnd-muted);
    white-space: pre-line;
    margin-top: 18px;
  }
  .lnd-sage-stamp .lnd-location {
    margin-top: 13px;
  }
  .lnd-sage-photo {
    margin-top: 30px;
  }
  .lnd-sage-photo .lnd-hero-photo {
    height: 330px;
  }
  .lnd-sage-photo-note {
    right: auto;
    left: 25px;
    bottom: 25px;
    width: 260px;
    padding: 20px;
  }
  .lnd-sage-photo-note > p {
    font-size: 25px;
  }
  .lnd-sage-caption {
    font-size: 9px;
  }
  .lnd-sage-gate {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 35px;
    align-items: center;
  }
  .lnd-sage-gate .lnd-city-fields {
    grid-template-columns: 1fr;
  }
  .lnd-spotlight-content {
    padding-top: 118px;
  }
  .lnd-spotlight-hero h1 {
    font-size: 51px;
  }
  .lnd-spotlight-hero .lnd-subtitle {
    max-width: 420px;
    font-size: 14px;
  }
  .lnd-spotlight-gate {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
  }
  .lnd-spotlight-gate .lnd-city-fields {
    grid-template-columns: 1fr;
  }
  .landing--spotlight .lnd-profile {
    flex-basis: 44%;
  }
}
@media (min-width: 960px) {
  .lnd-wrap {
    width: calc(100% - 96px);
  }
  .lnd-small-label {
    font-size: 11px;
  }
  .lnd-default-top {
    padding-block: 24px 18px;
  }
  .lnd-default-top .lnd-location {
    padding: 6px 17px;
    font-size: 13px;
  }
  .lnd-top-note {
    max-width: none;
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  .lnd-default-hero {
    min-height: 420px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    padding: 0;
    border-radius: 26px;
    background: #f3e6df;
  }
  .lnd-default-hero .lnd-hero-photo {
    height: 100%;
    position: absolute;
    left: 44%;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0 26px 26px 0;
    margin: 0;
  }
  .lnd-default-hero .lnd-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f3e6df, transparent 25%);
  }
  .lnd-default-hero .lnd-hero-copy {
    z-index: 1;
    align-self: center;
    padding: 48px 0 52px 46px;
    grid-column: 1;
    max-width: 550px;
  }
  .lnd-default-hero .lnd-hero-copy h1 {
    font-size: 44px;
    line-height: 1.4;
    letter-spacing: -0.8px;
  }
  .lnd-default-hero .lnd-small-label {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .lnd-default-hero .lnd-subtitle {
    max-width: 330px;
    margin-top: 20px !important;
    font-size: 14px;
  }
  .lnd-default-hero .lnd-hero-actions {
    margin-top: 30px;
  }
  .lnd-default-hero .lnd-image-caption {
    top: auto;
    left: auto;
    right: 31px;
    bottom: 24px;
    font-size: 10px;
    max-width: 35%;
    text-align: right;
  }
  .lnd-gate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 58px;
    margin-top: 45px;
    margin-bottom: 62px;
  }
  .lnd-gate-preview {
    order: 0;
    padding: 0 6px;
  }
  .lnd-gate .lnd-city-panel {
    order: 1;
  }
  .lnd-gate-preview .lnd-teasers {
    gap: 18px;
    opacity: 0.9;
  }
  .lnd-gate-preview .lnd-teaser-photo {
    height: 190px;
  }
  .lnd-gate-preview .lnd-teaser:nth-child(2) {
    transform: translateY(-21px);
  }
  .lnd-gate-preview > p {
    margin-top: 23px;
    font-size: 12px;
  }
  .lnd-city-panel {
    padding: 31px 32px;
  }
  .lnd-city-heading h2 {
    font-size: 27px;
  }
  .lnd-city-heading > p {
    font-size: 13px;
  }
  .lnd-city-confirm {
    font-size: 12px;
  }
  .lnd-cookie-note {
    font-size: 11px;
  }
  .lnd-city-fields label > span {
    font-size: 13px;
  }
  .lnd-catalog {
    padding-block: 64px 78px;
  }
  .lnd-section-heading {
    margin-bottom: 31px;
  }
  .lnd-section-heading h2 {
    font-size: 33px;
    margin-top: 11px;
  }
  .lnd-count {
    font-size: 12px;
  }
  .lnd-profile-grid {
    gap: 30px 26px;
  }
  .lnd-profile-copy {
    padding: 21px 22px 15px;
  }
  .lnd-profile-name h3 {
    font-size: 27px;
  }
  .lnd-profile-name > span {
    font-size: 13px;
  }
  .lnd-profile-place {
    font-size: 12px;
  }
  .lnd-profile-tags > span {
    font-size: 10px;
    padding: 3px 7px;
  }
  .lnd-profile-copy .verification-tags > span {
    font-size: 10px;
    padding: 3px 5px;
  }
  .lnd-profile-copy .verification-tags img {
    width: 12px;
    height: 12px;
  }
  .lnd-profile-bio {
    font-size: 13px;
    margin-top: 13px !important;
  }
  .lnd-profile-link {
    font-size: 12px;
    padding-top: 14px;
    margin-top: 16px;
  }
  .lnd-profile-number {
    top: 16px;
    left: 16px;
    font-size: 13px;
  }
  .lnd-unlocked {
    left: 16px;
    bottom: 15px;
    font-size: 10px;
    padding: 4px 10px;
  }
  .lnd-empty-copy {
    padding: 43px;
  }
  .lnd-empty-copy h3 {
    font-size: 37px;
    margin-block: 17px;
  }
  .lnd-empty-copy > p {
    font-size: 14px;
  }
  .lnd-empty-copy > .lnd-empty-footnote {
    font-size: 11px;
  }
  .lnd-empty-photo > span {
    font-size: 35px;
    left: 33px;
    bottom: 26px;
  }
  .lnd-empty-photo {
    min-height: 360px;
  }
  .lnd-steps {
    padding-block: 54px 65px;
  }
  .lnd-steps-intro h2 {
    font-size: 31px;
    margin-top: 11px;
  }
  .lnd-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 32px;
  }
  .lnd-steps-grid article {
    gap: 20px;
    padding-top: 25px;
  }
  .lnd-step-number {
    font-size: 29px;
  }
  .lnd-steps-grid h3 {
    font-size: 16px;
  }
  .lnd-steps-grid p {
    font-size: 12px;
  }
  .lnd-editorial-hero {
    padding-top: 28px;
  }
  .lnd-editorial-wordline {
    padding-block: 12px;
  }
  .lnd-editorial-wordline > span {
    font-size: 10px;
    letter-spacing: 1.8px;
  }
  .lnd-editorial-wordline .lnd-location {
    font-size: 12px;
  }
  .lnd-editorial-spread {
    grid-template-columns: 1fr 0.85fr;
    gap: 86px;
    padding-top: 46px;
  }
  .lnd-editorial-spread .lnd-small-label {
    font-size: 10px;
    letter-spacing: 1.4px;
  }
  .lnd-editorial-spread h1 {
    font-size: 65px;
    line-height: 1.3;
    letter-spacing: -1.5px;
  }
  .lnd-editorial-spread .lnd-subtitle {
    font-size: 14px;
    max-width: 360px;
    margin-top: 24px !important;
  }
  .lnd-editorial-spread .lnd-hero-actions {
    margin-top: 26px;
    gap: 30px;
  }
  .lnd-editorial-image .lnd-hero-photo {
    height: 465px;
  }
  .lnd-editorial-image figcaption {
    padding-block: 17px;
    font-size: 11px;
  }
  .lnd-editorial-postscript {
    padding-bottom: 30px;
    align-items: center;
    gap: 45px;
  }
  .lnd-editorial-postscript > span {
    font-size: 10px;
    flex-basis: 140px;
  }
  .lnd-editorial-postscript p {
    font-size: 13px;
  }
  .lnd-editorial-gate {
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    padding-block: 54px 66px;
  }
  .lnd-editorial-gate-intro > h2 {
    font-size: 39px;
    margin-top: 14px;
  }
  .lnd-editorial-gate-intro .lnd-teasers {
    display: grid;
    max-width: 350px;
    margin-top: 32px;
    opacity: 0.8;
  }
  .lnd-editorial-gate-intro .lnd-teaser {
    border-radius: 0;
  }
  .lnd-editorial-gate-intro .lnd-teaser-photo {
    height: 100px;
  }
  .landing--editorial .lnd-city-panel {
    padding: 32px;
  }
  .landing--editorial .lnd-city-fields {
    grid-template-columns: 1fr 1fr;
  }
  .landing--editorial .lnd-section-heading h2 {
    font-size: 35px;
  }
  .landing--editorial .lnd-profile-grid {
    gap: 0 46px;
  }
  .landing--editorial .lnd-profile {
    grid-template-columns: 43% 1fr;
    gap: 23px;
    padding-block: 27px;
  }
  .landing--editorial .lnd-profile-image {
    aspect-ratio: 3/4;
  }
  .landing--editorial .lnd-profile-name h3 {
    font-size: 27px;
  }
  .landing--editorial .lnd-profile-tags > span {
    font-size: 10px;
  }
  .landing--editorial .lnd-profile-bio {
    font-size: 12px;
  }
  .landing--editorial .lnd-profile-link {
    font-size: 12px;
  }
  .landing--editorial .lnd-empty-photo {
    height: 100%;
  }
  .lnd-sage-hero {
    padding-top: 44px;
  }
  .lnd-sage-heading {
    grid-template-columns: 1.5fr 0.6fr;
    gap: 110px;
  }
  .lnd-sage-heading .lnd-small-label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .lnd-sage-heading h1 {
    font-size: 54px;
    line-height: 1.3;
  }
  .lnd-sage-heading .lnd-subtitle {
    max-width: 420px;
    font-size: 14px;
    margin-top: 23px !important;
  }
  .lnd-sage-heading .lnd-hero-actions {
    margin-top: 26px;
  }
  .lnd-sage-stamp {
    padding: 28px;
    margin-bottom: 4px;
  }
  .lnd-sage-stamp > span {
    font-size: 10px;
  }
  .lnd-sage-stamp .lnd-location {
    font-size: 14px;
    margin-top: 19px;
  }
  .lnd-sage-stamp .lnd-location small {
    display: block;
  }
  .lnd-sage-stamp .lnd-location-mark {
    font-size: 28px;
  }
  .lnd-sage-stamp > p {
    font-size: 12px;
    margin-top: 23px;
  }
  .lnd-sage-photo {
    margin-top: 42px;
  }
  .lnd-sage-photo .lnd-hero-photo {
    height: 380px;
  }
  .lnd-sage-photo-note {
    left: 37px;
    bottom: 30px;
    width: 285px;
    padding: 26px;
  }
  .lnd-sage-photo-note > span {
    font-size: 8px;
  }
  .lnd-sage-photo-note > p {
    font-size: 28px;
    margin-top: 9px;
  }
  .lnd-sage-caption {
    padding-block: 18px;
    font-size: 10px;
    letter-spacing: 1.4px;
  }
  .lnd-sage-gate {
    grid-template-columns: 1fr 1fr;
    gap: 95px;
    padding-block: 52px 64px;
  }
  .lnd-sage-gate .lnd-city-fields {
    grid-template-columns: 1fr 1fr;
  }
  .lnd-sage-aside > h2 {
    font-size: 36px;
    margin-block: 15px;
  }
  .lnd-sage-aside > p {
    font-size: 14px;
    max-width: 390px;
  }
  .lnd-sage-aside .lnd-teasers {
    display: grid;
    margin-top: 30px;
    max-width: 340px;
    opacity: 0.7;
  }
  .lnd-sage-aside .lnd-teaser {
    border-radius: 2px;
  }
  .lnd-sage-aside .lnd-teaser-photo {
    height: 80px;
  }
  .landing--sage .lnd-section-heading h2 {
    font-size: 34px;
  }
  .landing--sage .lnd-profile-copy {
    padding: 23px;
  }
  .landing--sage .lnd-profile-number {
    left: 15px;
    top: 15px;
    font-size: 11px;
    padding: 3px 7px;
  }
  .lnd-spotlight-hero {
    min-height: 790px;
    min-height: min(950px, 100svh);
  }
  .lnd-spotlight-content {
    padding-top: 125px;
    padding-bottom: 33px;
  }
  .lnd-spotlight-topline {
    padding-top: 0;
  }
  .lnd-spotlight-topline > span {
    font-size: 10px;
    max-width: none;
    letter-spacing: 1.8px;
  }
  .lnd-spotlight-topline .lnd-location {
    font-size: 13px;
  }
  .lnd-spotlight-hero .lnd-hero-copy {
    padding-block: 70px 80px;
  }
  .lnd-spotlight-hero .lnd-small-label {
    font-size: 11px;
    letter-spacing: 2.7px;
    margin-bottom: 24px;
  }
  .lnd-spotlight-hero h1 {
    font-size: 61px;
    line-height: 1.5;
  }
  .lnd-spotlight-hero .lnd-subtitle {
    font-size: 15px;
    max-width: 570px;
    margin-top: 22px !important;
  }
  .lnd-spotlight-hero .lnd-hero-actions {
    margin-top: 34px;
    gap: 20px;
  }
  .lnd-spotlight-hero .lnd-button {
    min-height: 51px;
    padding-inline: 29px;
    gap: 40px;
  }
  .lnd-spotlight-bottomline {
    font-size: 11px;
    padding-top: 21px;
  }
  .lnd-spotlight-bottomline a {
    font-size: 12px;
  }
  .lnd-spotlight-gate {
    gap: 110px;
    padding-block: 64px 75px;
    grid-template-columns: 1fr 1fr;
  }
  .lnd-spotlight-gate-copy > h2 {
    font-size: 42px;
    line-height: 1.5;
    margin-top: 14px;
  }
  .lnd-spotlight-gate-copy > p {
    font-size: 12px;
    margin-top: 21px;
  }
  .lnd-spotlight-gate-copy .lnd-teasers {
    display: grid;
    max-width: 370px;
    margin-top: 35px;
    opacity: 0.65;
  }
  .lnd-spotlight-gate-copy .lnd-teaser {
    border-radius: 3px;
  }
  .lnd-spotlight-gate-copy .lnd-teaser-photo {
    height: 130px;
  }
  .lnd-spotlight-gate .lnd-city-fields {
    grid-template-columns: 1fr 1fr;
  }
  .landing--spotlight .lnd-city-heading h2 {
    font-size: 27px;
  }
  .landing--spotlight .lnd-catalog {
    padding-top: 60px;
  }
  .landing--spotlight .lnd-section-heading h2 {
    font-size: 35px;
  }
  .landing--spotlight .lnd-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    gap: 26px;
  }
  .landing--spotlight .lnd-profile-copy {
    padding: 23px 25px 17px;
  }
  .landing--spotlight .lnd-profile-name h3 {
    font-size: 30px;
  }
  .landing--spotlight .lnd-profile-bio {
    font-size: 13px;
  }
}
@media (max-width: 359px) {
  .lnd-wrap {
    width: calc(100% - 28px);
  }
  .lnd-top-note {
    display: none;
  }
  .lnd-default-hero .lnd-hero-copy {
    padding-inline: 19px;
  }
  .lnd-default-hero .lnd-hero-copy h1 {
    font-size: 28px;
  }
  .lnd-city-panel {
    padding: 22px 18px;
  }
  .lnd-city-heading h2 {
    font-size: 22px;
  }
  .lnd-editorial-spread h1 {
    font-size: 41px;
  }
  .lnd-sage-heading h1,
  .lnd-spotlight-hero h1 {
    font-size: 32px;
  }
  .lnd-profile-copy {
    padding: 11px 10px;
  }
  .lnd-profile-name h3 {
    font-size: 17px;
  }
  .lnd-profile-name > span {
    font-size: 10px;
  }
  .lnd-section-heading {
    gap: 10px;
  }
  .lnd-section-heading h2 {
    font-size: 21px;
  }
  .lnd-profile-grid {
    gap: 17px 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .lnd-button:hover,
  .lnd-profile:hover .lnd-profile-image > img {
    transform: none;
  }
}
body:has(.landing--spotlight) .preview-banner + .site-header {
  top: 44px;
}
body:has(.landing) .bottom-nav a[aria-current="page"] {
  color: var(--landing-accent);
}
body:has(.landing--spotlight) .bottom-nav {
  background: #171b1df5;
  border-color: #414244;
}
body:has(.landing--spotlight) .bottom-nav a {
  color: #c4beb5;
}
body:has(.landing--spotlight) .bottom-nav a > img {
  filter: brightness(0) invert(1);
}
body:has(.landing--spotlight) .visitor-chip small {
  color: #eee2ce;
}
body:has(.landing--spotlight) .site-header {
  z-index: 10;
}
@media (max-width: 680px) {
  html[lang="en"] .app-page .wordmark {
    font-size: 18px;
    letter-spacing: 0;
    white-space: normal;
    line-height: 1.2;
    min-width: 0;
    max-width: 150px;
    flex-shrink: 1;
  }
  html[lang="en"] .app-page .wordmark small {
    font-size: 7px;
    letter-spacing: 0.7px;
    margin-top: 5px;
  }
  html[lang="en"] .app-page .main-nav {
    flex-shrink: 0;
    gap: 7px;
  }
}

.lnd-demo-note {
  margin: 24px 0 16px;
  color: inherit;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: .025em;
}

/* City suggestions stay secondary to the visitor's final, explicit confirmation. */
.lnd-location-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-top: 13px;
}
.lnd-location-controls .lnd-location-suggestion {
  margin: 0 !important;
  flex: 1;
  min-width: 0;
  font-size: 11px;
  line-height: 1.75;
}
.lnd-location-suggestion[data-state="detecting"]::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 6px 2px 0;
  border-radius: 50%;
  background: var(--landing-accent);
  animation: lnd-detect-pulse 1.3s ease-in-out infinite;
}
.lnd-device-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 44px;
  max-width: 49%;
  flex-shrink: 0;
  border: 1px solid var(--lnd-line);
  border-radius: 7px;
  background: transparent;
  color: var(--landing-accent);
  padding: 7px 10px;
  font-size: 11px !important;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}
.lnd-device-button > span:first-child {
  font: 20px Georgia, serif;
  flex-shrink: 0;
}
.lnd-device-button:disabled {
  opacity: .65;
  cursor: wait;
}
.lnd-device-note {
  color: var(--lnd-muted);
  font-size: 11px;
  line-height: 1.7;
  margin-top: 9px !important;
}
.landing--editorial .lnd-device-button { border-radius: 0; }
.landing--spotlight .lnd-device-button { border-color: #ffffff30; }
@keyframes lnd-detect-pulse { 50% { opacity: .3; } }
@media (min-width: 960px) {
  .lnd-location-controls .lnd-location-suggestion { font-size: 11px; }
  .lnd-device-button { font-size: 11px !important; }
  .lnd-device-note { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .lnd-location-suggestion[data-state="detecting"]::before { animation: none; }
}
