@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #fbf6ee;
  --bg-soft: #f3efe8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --text: #151922;
  --muted: #4d5562;
  --muted-soft: #667085;
  --line: rgba(23, 28, 36, 0.08);
  --orange: #f97342;
  --orange-deep: #ff8a5b;
  --purple: #7c5cfc;
  --teal: #1faf95;
  --teal-soft: #7dd2c1;
  --night: #1b2131;
  --plum: #48315f;
  --sand: #f0dfcb;
  --blush: #ead6d9;
  --sky: #dfeef8;
  --forest: #1e473d;
  --shadow: 0 22px 70px rgba(23, 28, 36, 0.1);
  --shadow-strong: 0 30px 100px rgba(23, 28, 36, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1220px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Manrope", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(244, 125, 69, 0.08), transparent 26%),
    linear-gradient(180deg, #fffaf4 0%, #f6efe4 42%, #f9f7f2 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(124, 92, 252, 0.16);
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.65) 0.5px, transparent 0.8px),
    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.55) 0.5px, transparent 0.8px),
    radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.55) 0.5px, transparent 0.8px);
  background-size: 18px 18px, 24px 24px, 22px 22px;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-14px);
  width: min(1280px, calc(100% - 48px));
  z-index: 60;
  opacity: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(23, 28, 36, 0.08);
  animation: slideDown 0.65s var(--ease-out) 0.05s forwards;
  overflow: hidden;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 60px rgba(23, 28, 36, 0.1);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(120deg, rgba(249, 115, 66, 0.12), transparent 28%, rgba(124, 92, 252, 0.12) 62%, transparent 84%, rgba(31, 175, 149, 0.12));
  opacity: 0.85;
  pointer-events: none;
}

.header-inner,
.section,
.site-footer,
.category-strip,
.page-main {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.header-inner {
  width: 100%;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(23, 28, 36, 0.08);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-wordmark {
  font-size: 1.06rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a,
.footer-links a,
.inline-link {
  position: relative;
  color: rgba(23, 28, 36, 0.74);
}

.site-nav-auth-link {
  font-weight: 700;
  color: var(--text) !important;
}

.site-nav a::after,
.footer-links a::after,
.inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transition: transform 260ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.inline-link:hover::after,
.inline-link:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.menu-toggle::before {
  content: "";
  width: 16px;
  height: 11px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-sizing: border-box;
  background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
  opacity: 0.82;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    color 220ms var(--ease-out);
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  opacity: 0.65;
  z-index: -1;
}

.button::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -32%;
  width: 42%;
  height: 340%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  opacity: 0;
  z-index: -1;
  transition:
    transform 580ms var(--ease-out),
    opacity 300ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(220%) rotate(18deg);
}

.button-primary {
  color: white;
  background: linear-gradient(90deg, var(--orange), var(--purple), var(--teal));
  box-shadow: 0 18px 40px rgba(124, 92, 252, 0.24);
}

.button-secondary,
.button-ghost {
  border: 1px solid rgba(23, 28, 36, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
}

.button-icon {
  transition: transform 220ms var(--ease-out);
}

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

.header-cta {
  min-height: 48px;
  padding: 0 20px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 132px 0 56px;
  overflow: hidden;
  background: #f7f0e6;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 248, 0.96) 0%,
      rgba(255, 253, 248, 0.86) 28%,
      rgba(255, 253, 248, 0.42) 52%,
      rgba(255, 253, 248, 0.08) 100%
    ),
    linear-gradient(180deg, rgba(21, 25, 34, 0.04) 0%, rgba(21, 25, 34, 0.18) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1);
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  align-items: center;
  min-height: calc(100svh - 188px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-intro {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  margin: 0 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 28, 36, 0.08);
  background: rgba(255, 255, 255, 0.56);
  color: rgba(23, 28, 36, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(3.9rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.gradient-text {
  background: linear-gradient(90deg, var(--orange), var(--orange-deep), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description,
.section-copy,
.spot-body p,
.video-card p,
.detail-note,
.story-copy p,
.cta-shell > p,
.footer-copy,
.footer-bottom,
.map-preview p,
.submit-note p,
.submit-form label span,
.catalog-empty p,
.similar-card p {
  color: var(--muted);
}

.hero-description {
  margin: 26px 0 0;
  max-width: 36rem;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust-row span,
.detail-tags span,
.catalog-badge,
.badge-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 28, 36, 0.08);
  color: rgba(23, 28, 36, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-floating {
  position: relative;
  min-height: 620px;
}

.hero-floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  font-weight: 800;
  color: rgba(23, 28, 36, 0.84);
}

.card-a {
  top: 26%;
  right: 9%;
}

.card-b {
  top: 39%;
  right: 5%;
}

.card-c {
  bottom: 18%;
  right: 12%;
}

.card-d {
  bottom: 10%;
  right: 28%;
}

.section,
.category-strip {
  padding: 88px 0;
}

.section-headline {
  margin-bottom: 36px;
}

.split-headline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: end;
}

.section-headline h2,
.story-copy h2,
.cta-shell h2,
.page-hero h1,
.detail-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.category-strip {
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.category-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background:
    radial-gradient(circle at 12% 20%, rgba(249, 115, 66, 0.12), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(124, 92, 252, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

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

.mood-card {
  position: relative;
  grid-column: span 4;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 34px;
  overflow: hidden;
  padding: 22px;
  color: white;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.mood-card::after,
.spot-card::before,
.video-card::before,
.format-card::before,
.night-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 22%, transparent 72%, rgba(255, 255, 255, 0.12)),
    linear-gradient(120deg, rgba(249, 115, 66, 0.14), transparent 26%, rgba(124, 92, 252, 0.12) 58%, transparent 76%, rgba(31, 175, 149, 0.12));
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.mood-card:hover,
.mood-card:focus-visible {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-strong);
}

.mood-card:hover::after,
.mood-card:focus-visible::after,
.spot-card:hover::before,
.spot-card:focus-visible::before,
.video-card:hover::before,
.video-card:focus-visible::before,
.format-card:hover::before,
.format-card:focus-visible::before,
.night-card:hover::before,
.night-card:focus-visible::before {
  opacity: 0.92;
}

.mood-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(16, 22, 34, 0.74));
}

.mood-card-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.mood-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--ease-out);
}

.mood-card:hover .mood-card-media img,
.mood-card:focus-visible .mood-card-media img {
  transform: scale(1.08);
}

.mood-card-copy {
  position: relative;
  max-width: 24rem;
}

.mood-card-copy h3,
.spot-body h3,
.video-card h3,
.format-card h3,
.night-card h3,
.detail-panel h3,
.map-preview h3,
.submit-note h3,
.similar-card h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mood-card-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.mood-icon {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.mood-arrow,
.spot-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.mood-card:hover .mood-arrow,
.mood-card:focus-visible .mood-arrow,
.spot-card:hover .spot-arrow,
.spot-card:focus-visible .spot-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mood-large {
  grid-column: span 5;
  min-height: 300px;
}

.mood-wide {
  grid-column: span 7;
}

.mood-tall {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 458px;
}

.tone-photo {
  color: white;
}

.tone-sunset {
  background: linear-gradient(160deg, #ffb38c 0%, #f47d45 42%, #6f3d27 100%);
}

.tone-night {
  background: linear-gradient(160deg, #1f2433 0%, #3d2d58 50%, #68427d 100%);
}

.tone-forest {
  background: linear-gradient(160deg, #31574d 0%, #1f4138 52%, #142726 100%);
}

.tone-plum {
  background: linear-gradient(160deg, #6d4667 0%, #48315f 52%, #281f39 100%);
}

.tone-blush {
  background: linear-gradient(160deg, #f3d9d9 0%, #d6a5b2 52%, #8d5869 100%);
}

.tone-sky {
  background: linear-gradient(160deg, #dff0f6 0%, #9ac4d5 52%, #45637d 100%);
}

.filter-pills,
.catalog-filters,
.badge-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-pills {
  margin-bottom: 28px;
}

.filter-pill {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 28, 36, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

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

.filter-pill.is-active {
  color: white;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep), var(--teal));
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(244, 125, 69, 0.16);
}

.spots-editorial,
.catalog-grid,
.similar-grid,
.latest-grid {
  display: grid;
  gap: 20px;
}

.spots-editorial {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.spot-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(23, 28, 36, 0.06);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.spot-card > *,
.video-card > *,
.format-card > *,
.night-card > * {
  position: relative;
  z-index: 1;
}

.spot-card:hover,
.spot-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.spot-card[hidden] {
  display: none;
}

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

.panorama-card {
  grid-column: span 5;
}

.spot-media {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}

.feature-card .spot-media {
  min-height: 360px;
}

.panorama-card .spot-media {
  min-height: 320px;
}

.spot-media img,
.video-frame img,
.format-media img,
.portrait-card img,
.detail-hero-visual img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--ease-out);
}

.spot-card:hover .spot-media img,
.video-card:hover .video-frame img,
.portrait-card:hover img,
.similar-card:hover .spot-media img {
  transform: scale(1.05);
}

.media-cafe img {
  object-position: 46% 56%;
}

.media-neckar img {
  object-position: 52% 72%;
}

.media-zoo img {
  object-position: 66% 50%;
}

.media-kino img {
  object-position: 54% 44%;
  filter: saturate(0.9);
}

.media-dinner img {
  object-position: 70% 58%;
}

.media-tour img {
  object-position: 56% 38%;
}

.spot-media::after,
.video-frame::after,
.format-media::after,
.portrait-card::after,
.detail-hero-visual::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 28, 36, 0.04), rgba(23, 28, 36, 0.28));
}

.spot-badge,
.format-badge,
.video-meta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.spot-badge,
.format-badge {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.format-badge {
  left: auto;
  right: 18px;
}

.save-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(23, 28, 36, 0.12);
}

.save-button.is-saved {
  color: #7d4f17;
  background: rgba(255, 245, 214, 0.92);
  border-color: rgba(244, 186, 82, 0.6);
}

.spot-body {
  position: relative;
  padding: 22px 22px 26px;
}

.spot-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.spot-kicker,
.spot-access {
  font-size: 0.88rem;
}

.spot-kicker {
  color: rgba(23, 28, 36, 0.66);
  font-weight: 700;
}

.spot-access {
  color: rgba(31, 111, 95, 1);
  font-weight: 800;
}

.spot-body p {
  max-width: 28rem;
}

.section-format,
.page-hero,
.map-preview,
.detail-panel,
.submit-form,
.submit-note,
.catalog-empty {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(23, 28, 36, 0.06);
  box-shadow: var(--shadow);
}

.section-format {
  border-radius: 44px;
  padding-inline: 34px;
}

.format-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 24px;
  align-items: start;
}

.format-preview,
.format-card,
.night-card,
.video-card,
.detail-hero-visual,
.similar-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(23, 28, 36, 0.06);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.format-preview,
.video-card,
.spot-card,
.night-card,
.format-card {
  position: relative;
}

.format-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.format-body {
  padding: 24px 24px 28px;
}

.detail-label {
  margin: 0 0 12px;
  color: var(--orange-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-meta {
  margin: 18px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.format-meta li,
.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 28, 36, 0.08);
}

.format-meta strong,
.fact-row strong {
  font-size: 0.92rem;
}

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

.format-card,
.detail-panel,
.map-preview,
.submit-form,
.submit-note,
.catalog-empty {
  padding: 24px;
}

.play-pulse {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: white;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.play-pulse::before,
.play-pulse::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  animation: steamDrift 2.8s ease-in-out infinite;
}

.play-pulse::before {
  width: 8px;
  height: 22px;
  top: -22px;
  left: 18px;
}

.play-pulse::after {
  width: 6px;
  height: 16px;
  top: -16px;
  right: 18px;
  animation-delay: -1.2s;
}

.section-night {
  position: relative;
  border-radius: 44px;
  background:
    radial-gradient(circle at 10% 0%, rgba(244, 125, 69, 0.18), transparent 22%),
    linear-gradient(160deg, #161c28 0%, #21293a 48%, #291f38 100%);
  color: white;
  padding-inline: 34px;
}

.section-night::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.03) 0 2px,
      transparent 2px 22px
    );
  pointer-events: none;
}

.section-night .section-copy,
.section-night .section-label {
  color: rgba(255, 255, 255, 0.72);
}

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

.night-card {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.night-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.night-card h3 {
  max-width: 16ch;
}

.section-latest {
  padding-top: 76px;
}

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

.video-card {
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.video-card-copy {
  padding: 18px 18px 22px;
}

.video-meta {
  margin-bottom: 14px;
  background: rgba(23, 28, 36, 0.06);
  color: rgba(23, 28, 36, 0.7);
}

.section-story,
.story-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

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

.portrait-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
}

.portrait-left img {
  object-position: 40% 48%;
}

.portrait-right img {
  object-position: 68% 46%;
}

.portrait-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: white;
  font-weight: 700;
}

.section-cta {
  padding-top: 108px;
}

.cta-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 82px);
  border-radius: 40px;
  background: #151b26;
  color: white;
  box-shadow: 0 32px 120px rgba(23, 28, 36, 0.2);
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(249, 115, 66, 0.16), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(124, 92, 252, 0.14), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.cta-shell h2 {
  max-width: 780px;
}

.cta-shell > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.66);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.5;
}

.cta-glow-orange {
  width: 220px;
  height: 220px;
  left: -40px;
  bottom: -60px;
  background: rgba(244, 125, 69, 0.4);
}

.cta-glow-violet {
  width: 320px;
  height: 320px;
  top: -110px;
  right: 18%;
  background: rgba(104, 66, 125, 0.22);
}

.cta-glow-green {
  width: 220px;
  height: 220px;
  right: -20px;
  bottom: 10px;
  background: rgba(31, 159, 137, 0.24);
}

.page-main {
  padding-top: 118px;
}

.page-hero {
  padding: 40px;
  margin-top: 16px;
  border-radius: 36px;
}

.catalog-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.catalog-toolbar-top,
.catalog-toolbar-meta,
.catalog-toolbar-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.search-field {
  display: grid;
  gap: 10px;
  flex: 1 1 320px;
}

.sort-field {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.search-field span,
.sort-field span {
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(23, 28, 36, 0.72);
}

.search-field input,
.sort-field select,
.submit-form input,
.submit-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 28, 36, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.sort-field select {
  appearance: none;
}

.catalog-count {
  margin: 0;
  color: rgba(23, 28, 36, 0.68);
  font-weight: 700;
}

.toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 28, 36, 0.08);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.toggle-pill input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.catalog-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 28, 36, 0.06);
}

.catalog-hint strong {
  font-size: 0.9rem;
}

.catalog-hint span {
  color: rgba(23, 28, 36, 0.7);
}

.catalog-quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-active-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 20px;
  align-items: end;
}

.energy-field {
  display: grid;
  gap: 10px;
}

.energy-field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(23, 28, 36, 0.72);
}

.energy-field input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
}

.mode-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 28, 36, 0.06);
  border: 1px solid rgba(23, 28, 36, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.submit-form textarea {
  min-height: 140px;
  padding: 16px 18px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

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

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

.catalog-grid .spot-card,
.similar-grid .similar-card {
  grid-column: auto;
}

.map-surface {
  position: relative;
  min-height: 300px;
  margin-top: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 24%, rgba(244, 125, 69, 0.22), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(31, 159, 137, 0.18), transparent 22%),
    linear-gradient(160deg, #f4eadb 0%, #efe3d0 100%);
  overflow: hidden;
}

.map-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 28, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 28, 36, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(23, 28, 36, 0.12);
  font-weight: 700;
}

.map-pin-dynamic {
  z-index: 2;
  max-width: 160px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 28, 36, 0.06);
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
}

.map-pin-dynamic:hover,
.map-pin-dynamic:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(23, 28, 36, 0.16);
}

.map-pin-static {
  opacity: 0.42;
}

.pin-a {
  top: 20%;
  left: 16%;
}

.pin-b {
  top: 44%;
  left: 44%;
}

.pin-c {
  bottom: 22%;
  left: 18%;
}

.pin-d {
  top: 18%;
  right: 14%;
}

.catalog-empty {
  text-align: center;
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.editorial-meta-row,
.detail-trust-row,
.reviewer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.reviewer-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 28, 36, 0.08);
}

.reviewer-avatar {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 125, 69, 0.92), rgba(31, 175, 149, 0.9));
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.reviewer-copy {
  display: grid;
  gap: 1px;
}

.reviewer-copy strong,
.reviewer-copy small {
  display: block;
  line-height: 1.1;
}

.reviewer-copy small {
  color: rgba(43, 48, 58, 0.68);
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(244, 125, 69, 0.1);
  border: 1px solid rgba(244, 125, 69, 0.16);
  color: rgba(120, 66, 36, 0.92);
  font-size: 0.84rem;
  font-weight: 800;
}

.section-editorial,
.section-tonight {
  padding-top: 32px;
}

.section-notes {
  padding-top: 32px;
}

.section-saved {
  padding-top: 32px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 20px;
}

.editorial-panel,
.tonight-card,
.quote-card,
.catalog-hint,
.submit-confirmation,
.submit-proof {
  border: 1px solid rgba(23, 28, 36, 0.06);
  box-shadow: var(--shadow);
}

.editorial-panel,
.tonight-card {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
  padding: 28px;
}

.editorial-panel-large {
  background:
    radial-gradient(circle at top right, rgba(124, 92, 252, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
}

.editorial-panel h2,
.editorial-panel h3,
.tonight-card h3 {
  margin-top: 0;
}

.editorial-list,
.quote-stack,
.detail-mini-list,
.detail-steps {
  display: grid;
  gap: 14px;
}

.editorial-link,
.quote-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.editorial-link strong,
.detail-step strong {
  display: block;
  margin-bottom: 6px;
}

.editorial-link span,
.editorial-note,
.quote-card p,
.detail-step span,
.detail-mini-list span,
.submit-proof span {
  color: var(--muted);
}

.status-pill,
.review-status {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
}

.status-pill-fresh,
.review-status-fresh {
  background: rgba(31, 175, 149, 0.12);
  color: #13725f;
}

.status-pill-recent,
.review-status-recent {
  background: rgba(245, 158, 11, 0.14);
  color: #9a6500;
}

.status-pill-stale,
.review-status-stale {
  background: rgba(244, 125, 69, 0.14);
  color: #b55327;
}

.verified-seal {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 175, 149, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(31, 175, 149, 0.12);
  animation: sealPulse 2.8s ease-in-out infinite;
}

.freshness-warning {
  margin: 0;
  color: #a14c24;
}

.quote-card {
  margin: 0;
}

.quote-card footer {
  margin-top: 10px;
  font-weight: 800;
}

.tonight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.saved-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.saved-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(23, 28, 36, 0.06);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.tonight-card {
  color: var(--text);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.tonight-card:hover,
.tonight-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.note-card {
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(23, 28, 36, 0.06);
  box-shadow: var(--shadow);
}

.detail-page {
  display: grid;
  gap: 24px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.detail-hero-copy,
.detail-panel-stack {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 24, 0.72);
  color: #f5f7ff;
  font: inherit;
}

.field textarea {
  resize: vertical;
}

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

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.detail-hero-copy p {
  margin: 0;
}

.detail-subline {
  color: rgba(23, 28, 36, 0.68);
  font-weight: 700;
}

.detail-mini-list div,
.detail-step {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 28, 36, 0.06);
}

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

.access-chip {
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(244, 125, 69, 0.08), rgba(31, 159, 137, 0.08));
  border: 1px solid rgba(23, 28, 36, 0.06);
}

.access-chip strong {
  display: block;
  margin-bottom: 6px;
}

.access-chip span {
  color: var(--muted);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-hero-visual {
  position: relative;
  min-height: 520px;
}

.detail-hero-visual img {
  height: 100%;
}

.detail-video {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.detail-video-card {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 28, 36, 0.04), rgba(23, 28, 36, 0.34));
}

.detail-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duration-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.detail-columns-practical {
  align-items: start;
}

.route-preview {
  display: grid;
  gap: 12px;
}

.route-step {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 28, 36, 0.06);
}

.route-step strong {
  display: block;
  margin-bottom: 6px;
}

.route-step span {
  color: var(--muted);
}

.facts-grid,
.activities-grid,
.gallery-grid {
  display: grid;
  gap: 14px;
}

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

.fact-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 28, 36, 0.06);
}

.fact-card strong,
.gallery-card span {
  display: block;
  margin-bottom: 8px;
}

.transcript-list {
  display: grid;
  gap: 12px;
}

.transcript-list p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 28, 36, 0.06);
  color: var(--muted);
}

@keyframes sealPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 36px rgba(31, 175, 149, 0.12);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(31, 175, 149, 0.18);
  }
}

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

.activity-chip {
  min-height: 90px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(244, 125, 69, 0.1), rgba(31, 159, 137, 0.08));
  border: 1px solid rgba(23, 28, 36, 0.06);
  font-weight: 700;
}

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

.gallery-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  color: white;
  font-weight: 700;
}

.similar-grid {
  margin-top: 18px;
}

.similar-card .spot-media {
  min-height: 220px;
}

.story-page {
  margin-bottom: 72px;
}

.submit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
}

.submit-form {
  display: grid;
  gap: 18px;
}

.submit-form label {
  display: grid;
  gap: 10px;
}

.choice-group {
  display: grid;
  gap: 12px;
}

.choice-label {
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(23, 28, 36, 0.72);
}

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

.choice-pill {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 28, 36, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    background-color 200ms var(--ease-out);
}

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

.choice-pill.is-active {
  color: white;
  background: linear-gradient(90deg, var(--orange), var(--purple), var(--teal));
  box-shadow: 0 16px 34px rgba(124, 92, 252, 0.18);
}

.submit-confirmation,
.submit-proof {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.submit-confirmation {
  margin: 0;
  color: rgba(31, 111, 95, 1);
  font-weight: 700;
}

.submit-proof {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.founder-letter {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at top right, rgba(244, 125, 69, 0.12), transparent 42%);
  border: 1px solid rgba(23, 28, 36, 0.06);
}

.founder-letter p {
  margin: 0;
}

.founder-signoff {
  color: rgba(43, 48, 58, 0.66);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  padding: 50px 0 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.footer-copy {
  max-width: 420px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(23, 28, 36, 0.08);
  border-bottom: 1px solid rgba(23, 28, 36, 0.08);
}

.footer-bottom {
  margin: 22px 0 0;
  color: rgba(23, 28, 36, 0.52);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
}

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

.reveal-line {
  transform: translateY(52px);
  opacity: 0;
  animation: lineReveal 0.68s var(--ease-out) var(--line-delay, 0s) forwards;
}

.reveal-initial {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.68s var(--ease-out) var(--enter-delay, 0s) forwards;
}

.hero-background-enter {
  opacity: 0;
  filter: blur(10px);
  animation: heroMediaReveal 0.95s var(--ease-out) 0.08s forwards;
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMediaReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 0, 0) scale(1.06);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1);
  }
}

@keyframes steamDrift {
  0%,
  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.8);
  }
  30% {
    opacity: 0.75;
  }
  60% {
    opacity: 0.38;
    transform: translateY(-8px) scale(1.08);
  }
}

.hero-story {
  position: relative;
  height: 360svh;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #f7f0e6;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 240, 230, 0) 0%, rgba(247, 240, 230, 0.92) 100%);
}

.hero-backdrops,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrops {
  z-index: 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: var(--backdrop-opacity, 0);
  transform: scale(var(--backdrop-scale, 1.08));
  transition:
    opacity 380ms var(--ease-out),
    transform 380ms var(--ease-out);
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  will-change: opacity, transform;
}

.hero-backdrop-abstract {
  background:
    radial-gradient(circle at 16% 20%, rgba(244, 125, 69, 0.28), transparent 26%),
    radial-gradient(circle at 72% 32%, rgba(31, 159, 137, 0.22), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(72, 49, 95, 0.24), transparent 24%),
    linear-gradient(160deg, #f8f1e7 0%, #f2ebdd 50%, #e9ece8 100%);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 242, 0.9) 0%,
      rgba(250, 247, 242, 0.82) 20%,
      rgba(250, 247, 242, 0.64) 34%,
      rgba(250, 247, 242, 0.3) 48%,
      rgba(250, 247, 242, 0.06) 62%,
      rgba(250, 247, 242, 0) 100%
    ),
    linear-gradient(180deg, rgba(20, 24, 32, 0.04) 0%, rgba(20, 24, 32, 0.12) 100%);
}

.hero-story-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100vw - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 720px) 120px;
  align-items: center;
  gap: 24px;
}

.hero-story-copy {
  position: relative;
  min-height: 480px;
}

.hero-scene {
  position: absolute;
  inset: 50% auto auto 0;
  display: none;
  width: min(680px, 100%);
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-scene[hidden] {
  display: none !important;
}

.hero-scene.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  z-index: 4;
  animation: heroSceneReveal 360ms var(--ease-out);
}

.hero-story .hero-intro {
  margin-bottom: 18px;
}

.hero-story .hero-kicker {
  margin-bottom: 16px;
}

.hero-story .hero-title {
  max-width: 7.6ch;
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: 0.95;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(255, 250, 244, 0.22);
}

.hero-title-small {
  font-size: clamp(52px, 6vw, 86px);
}

.hero-story .hero-description {
  max-width: 30rem;
  color: var(--text);
}

.hero-story .hero-description,
.hero-story .hero-kicker,
.hero-story .hero-intro {
  text-shadow: 0 6px 20px rgba(255, 250, 244, 0.22);
}

.auth-page,
.profile-page {
  padding-top: 132px;
  padding-bottom: 88px;
}

.auth-shell,
.profile-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(280px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.auth-card,
.auth-side-note,
.profile-card,
.profile-side-note {
  border-radius: 32px;
  border: 1px solid rgba(23, 28, 36, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.auth-card,
.profile-card {
  padding: 34px;
}

.auth-side-note,
.profile-side-note {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 66, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.72);
}

.auth-actions,
.auth-email-block,
.profile-actions {
  display: grid;
  gap: 14px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: rgba(23, 28, 36, 0.42);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(23, 28, 36, 0.12);
}

.auth-field {
  display: grid;
  gap: 10px;
}

.auth-field span {
  font-size: 0.96rem;
  font-weight: 700;
}

.auth-field input {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 28, 36, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.auth-provider-button,
.auth-email-button {
  width: 100%;
}

.auth-status {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.96rem;
  font-weight: 600;
  background: rgba(21, 25, 34, 0.06);
  color: var(--text);
}

.auth-status[data-tone="success"] {
  background: rgba(31, 175, 149, 0.12);
  color: #145f53;
}

.auth-status[data-tone="warning"] {
  background: rgba(249, 115, 66, 0.12);
  color: #8d4422;
}

.auth-status[data-tone="error"] {
  background: rgba(188, 61, 61, 0.12);
  color: #8c2b2b;
}

.profile-card {
  display: grid;
  gap: 14px;
}

.profile-avatar {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(249, 115, 66, 0.18), rgba(124, 92, 252, 0.18));
  box-shadow: 0 16px 40px rgba(23, 28, 36, 0.12);
  overflow: hidden;
  font-size: 2rem;
  font-weight: 800;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-state {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.96rem;
  font-weight: 700;
}

.profile-meta {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.profile-meta-row {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(21, 25, 34, 0.04);
}

.profile-meta-row strong {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 28, 36, 0.46);
}

.profile-meta-row span {
  word-break: break-word;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.scene-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 28, 36, 0.08);
  color: rgba(23, 28, 36, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(23, 28, 36, 0.08);
}

.section-copy,
.spot-body p,
.video-card p,
.detail-note,
.story-copy p,
.map-preview p,
.submit-note p,
.catalog-empty p,
.similar-card p {
  color: var(--muted);
  line-height: 1.62;
}

.site-nav a,
.footer-links a,
.inline-link {
  color: var(--text);
}

.filter-pill,
.catalog-badge,
.badge-list span {
  min-height: 48px;
}

.hero-progress {
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.hero-progress-label {
  color: rgba(23, 28, 36, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-progress-track {
  width: 2px;
  height: 180px;
  border-radius: 999px;
  background: rgba(23, 28, 36, 0.12);
  overflow: hidden;
}

.hero-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0.04);
  transform-origin: top;
  background: linear-gradient(180deg, var(--orange), var(--orange-deep), var(--teal));
  border-radius: inherit;
}

@keyframes heroSceneReveal {
  0% {
    opacity: 0;
    transform: translateY(calc(-50% + 24px));
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@media (max-width: 1180px) {
  .mood-grid,
  .spots-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mood-card,
  .mood-large,
  .mood-wide,
  .mood-tall,
  .spot-card,
  .feature-card,
  .panorama-card {
    grid-column: auto;
    min-height: auto;
  }

  .mood-tall {
    grid-row: auto;
    min-height: 260px;
  }

  .night-grid,
  .latest-grid,
  .tonight-grid,
  .notes-grid,
  .saved-grid,
  .activities-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid,
  .format-layout,
  .detail-hero,
  .detail-video,
  .detail-columns,
  .submit-layout,
  .story-page,
  .section-story,
  .catalog-layout,
  .split-headline {
    grid-template-columns: 1fr;
  }

  .map-preview {
    order: -1;
  }

  .hero-story-shell {
    grid-template-columns: 1fr;
  }

  .hero-progress {
    justify-self: start;
    align-self: end;
    grid-auto-flow: column;
    align-items: center;
    margin-bottom: 28px;
  }

  .hero-progress-label {
    writing-mode: initial;
    transform: none;
  }

  .hero-progress-track {
    width: 180px;
    height: 2px;
  }

  .hero-progress-bar {
    transform-origin: left;
    transform: scaleX(0.04);
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100vw - 32px, 760px);
  }

  .site-header {
    top: 12px;
    width: min(1280px, calc(100% - 24px));
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 0 16px 0 18px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    min-width: 102px;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(23, 28, 36, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(23, 28, 36, 0.08);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .menu-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(23, 28, 36, 0.08);
    box-shadow: 0 22px 80px rgba(23, 28, 36, 0.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 220ms var(--ease-out),
      transform 220ms var(--ease-out);
  }

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

  .header-cta {
    display: none;
  }

  .catalog-toolbar-top,
  .catalog-toolbar-meta,
  .catalog-toolbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-experience {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .mode-pills {
    justify-content: flex-start;
  }

  .editorial-grid,
  .tonight-grid,
  .saved-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-trust-row {
    align-items: flex-start;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-story {
    min-height: 100svh;
  }

  .hero-story-copy {
    min-height: 0;
  }

  .hero-story .hero-title {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 168px);
  }

  .hero-title {
    font-size: clamp(3rem, 9.4vw, 5.2rem);
    max-width: 8.6ch;
  }

  .hero-floating {
    min-height: 220px;
    margin-top: 28px;
  }

  .hero-story-shell {
    width: min(100vw - 32px, 760px);
    padding-top: 118px;
    padding-bottom: 28px;
    align-items: end;
  }

  .hero-scene {
    inset: 0 auto auto 0;
    transform: translateY(var(--scene-shift, 32px));
    width: 100%;
  }

  .hero-story.is-mobile-static {
    height: auto;
    min-height: 100svh;
  }

  .hero-story.is-mobile-static .hero-stage {
    position: relative;
    min-height: 100svh;
    height: auto;
  }

  .hero-story.is-mobile-static .hero-story-shell {
    min-height: 100svh;
  }

  .hero-story.is-mobile-static .hero-story-copy {
    display: block;
    min-height: auto;
  }

  .hero-story.is-mobile-static .hero-scene {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
  }

  .hero-story.is-mobile-static .hero-scene.is-active {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100svh - 180px);
    animation: none;
  }

  .hero-story.is-mobile-static .hero-progress {
    display: none;
  }

  .hero-story.is-mobile-static .hero-backdrop {
    background-position: 62% center;
  }

  .card-a {
    top: 0;
    right: 8%;
  }

  .card-b {
    top: 72px;
    right: 0;
  }

  .card-c {
    bottom: 0;
    right: 10%;
  }

  .card-d {
    display: none;
  }

  .night-grid,
  .latest-grid,
  .notes-grid,
  .saved-grid,
  .catalog-grid,
  .catalog-grid.wide-only,
  .facts-grid,
  .story-portraits,
  .similar-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .section-format,
  .section-night {
    padding-inline: 24px;
  }

  .auth-shell,
  .profile-shell {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 44px;
  }

  .hero-story {
    min-height: 100svh;
  }

  .hero-stage {
    min-height: 100svh;
  }

  .hero-story-shell {
    width: calc(100vw - 28px);
    padding-top: 104px;
  }

  .hero-story .hero-title,
  .hero-title-small {
    font-size: clamp(2.65rem, 11vw, 3.85rem);
    max-width: 10ch;
  }

  .hero-story .hero-description {
    font-size: 1rem;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(250, 247, 242, 0.96) 0%,
        rgba(250, 247, 242, 0.9) 44%,
        rgba(250, 247, 242, 0.7) 72%,
        rgba(250, 247, 242, 0.42) 100%
      ),
      linear-gradient(180deg, rgba(20, 24, 32, 0.06) 0%, rgba(20, 24, 32, 0.16) 100%);
  }

  .hero-scene {
    inset: 0;
  }

  .hero-story.is-mobile-static .hero-story-shell {
    padding-top: 100px;
    padding-bottom: 24px;
  }

  .hero-story.is-mobile-static .hero-scene.is-active {
    min-height: calc(100svh - 148px);
  }

  .scene-tags {
    gap: 10px;
    margin-top: 22px;
  }

  .status-pill,
  .review-status,
  .verified-seal,
  .reviewer-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .scene-tag {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero-progress {
    margin-top: auto;
    margin-bottom: 16px;
  }

  .hero-progress-track {
    width: 132px;
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(255, 253, 248, 0.98) 0%,
        rgba(255, 253, 248, 0.96) 52%,
        rgba(255, 253, 248, 0.78) 84%,
        rgba(255, 253, 248, 0.56) 100%
      ),
      linear-gradient(180deg, rgba(21, 25, 34, 0.08) 0%, rgba(21, 25, 34, 0.24) 100%);
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-title {
    font-size: clamp(2.7rem, 11.2vw, 3.9rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-trust-row span {
    min-height: 34px;
    font-size: 0.84rem;
  }

  .hero-floating {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-height: auto;
  }

  .hero-floating-card {
    position: static;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .card-c,
  .card-d {
    display: none;
  }

  .section,
  .category-strip {
    padding: 72px 0;
  }

  .auth-card,
  .auth-side-note,
  .profile-card,
  .profile-side-note {
    padding: 24px;
    border-radius: 24px;
  }

  .mood-grid,
  .format-points,
  .activities-grid,
  .gallery-grid,
  .night-grid {
    grid-template-columns: 1fr;
  }

  .mood-card,
  .mood-large,
  .mood-wide,
  .mood-tall {
    min-height: 220px;
  }

  .detail-hero-visual,
  .detail-video-card,
  .format-media {
    min-height: 280px;
  }

  .site-footer {
    padding-top: 34px;
  }

  body {
    font-size: 16px;
  }
}

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

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

  .hero-media,
  .hero-backdrop,
  .hero-scene,
  .hero-progress-bar,
  .button::after,
  .play-pulse::before,
  .play-pulse::after {
    transform: none !important;
  }

  .button::after,
  .play-pulse::before,
  .play-pulse::after {
    animation: none !important;
  }
}
