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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  transition: background 0.25s ease, color 0.25s ease;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
::selection {
  background: #c9171e;
  color: #fff;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-img.active {
  opacity: 1;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  padding: 24px;
}

.hero-season-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-title {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  font-optical-sizing: auto;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0;
  letter-spacing: 0.02em;
}

.hero-tagline {
  display: none;
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  font-optical-sizing: auto;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 700px;
}
.hero-tagline.active {
  display: block;
}

body.home .hero-tagline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  font-style: normal;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  max-width: 800px;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.6);
}
.hero-scroll svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}
.hero--shop {
  min-height: 50vh;
}
.hero--shop .hero-content {
  padding-bottom: 48px;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 400px;
    height: auto;
  }
  .hero-content {
    padding: 16px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 1.25rem;
    padding: 0 16px;
  }
  body.home .hero-tagline {
    font-size: 1.5rem;
  }
  .hero-scroll {
    display: none;
  }
  .hero--shop {
    min-height: 300px;
  }
  .hero-season-icon {
    width: 60px;
    height: 60px;
  }
}
.site-footer {
  margin-top: 48px;
  padding: 5rem 24px;
  background: #222;
  color: #fff;
}
.site-footer + .site-footer {
  margin-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-author {
  display: flex;
  gap: 24px;
}

.footer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #333;
}

.footer-author-info h3 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.footer-author-info p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}
.footer-nav a {
  display: block;
  margin-bottom: 16px;
  transition: opacity 0.15s ease;
}
.footer-nav a:hover {
  opacity: 0.7;
}
.footer-nav strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}
.footer-nav span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-seasons .footer-season-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-season-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.footer-season-link:hover .footer-season-icon {
  transform: scale(1.15);
}

.footer-copyright {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.footer-copyright a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-copyright a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 48px 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-avatar {
    width: 64px;
    height: 64px;
  }
  .footer-nav {
    text-align: center;
  }
  .footer-seasons .footer-season-link {
    justify-content: center;
  }
}
main {
  padding-top: 48px;
}

.content-area {
  background: repeating-linear-gradient(-45deg, #f0eeeb, #f0eeeb 8px, #ebe9e6 8px, #ebe9e6 16px);
}
.content-area + .site-footer {
  margin-top: 0;
}

.posts-grid-container {
  padding: 32px 24px;
}

.posts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.no-posts {
  text-align: center;
  padding: 48px;
  color: #999999;
}

.season-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .magazine-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.article-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.latest-minimal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.latest-minimal-inner {
  background: #f5f4f2;
  border-radius: 12px;
  padding: 32px;
}

.latest-minimal-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999999;
  margin-bottom: 24px;
}

.latest-minimal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.latest-minimal-list a {
  font-size: 0.875rem;
  color: #666666;
  text-decoration: none;
  transition: color 0.15s ease;
}
.latest-minimal-list a:hover {
  color: #1a1a1a;
}

.variants-preview {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px;
}

.variants-title {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 32px;
  text-align: center;
}

.variant-item {
  margin-bottom: 32px;
}
.variant-item .tags-variant {
  border-radius: 12px;
}

.variant-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999999;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .variants-preview {
    padding: 32px 16px;
  }
  .variant-item .tags-variant {
    padding: 24px;
  }
}
.site-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.season-tabs {
  display: flex;
  gap: 0;
}

.season-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.season-tab:hover {
  color: #fff;
}
.season-tab:hover .season-tab-icon {
  transform: scale(1.1);
}
.season-tab.active {
  color: #fff;
  border-bottom-color: #c9171e;
}

.season-tab-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  transition: transform 0.15s ease;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
.language-switcher .lang-flag {
  display: block;
  opacity: 0.6;
  transition: opacity 0.15s ease;
}
.language-switcher .lang-flag:hover, .language-switcher .lang-flag.current-lang {
  opacity: 1;
}
.language-switcher img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1024px) {
  .site-nav {
    padding: 16px 24px;
  }
  .nav-title {
    font-size: 1rem;
  }
  .season-tabs {
    display: none;
  }
  .season-tab {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  .language-switcher {
    margin-left: auto;
  }
  .language-switcher img {
    width: 20px;
    height: 20px;
  }
}
.post-thumb {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.post-thumb-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.post-thumb-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-thumb:hover .post-thumb-image > img {
  transform: scale(1.05);
}

.post-thumb-season-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px !important;
  height: 32px !important;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.15s ease;
  object-fit: contain !important;
}
.post-thumb:hover .post-thumb-season-badge {
  transform: scale(1.1);
}

.post-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f4f2 0%, rgba(0, 0, 0, 0.08) 100%);
}

.post-thumb-content {
  padding: 16px;
}

.post-thumb-category {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c9171e;
  margin-bottom: 8px;
}

.post-thumb-title {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.125rem;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.4;
}

.post-thumb-excerpt {
  display: none;
}

.post-thumb-meta {
  font-size: 0.75rem;
  color: #999999;
  margin-top: 8px;
}

.post-thumb-mood {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-style: italic;
  color: #999999;
}

.post-thumb-meta--seasonal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.month-indicator {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.month-indicator-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.5625rem;
  color: #999999;
  opacity: 0.7;
  letter-spacing: -0.02em;
}
.month-indicator-labels span {
  width: 10px;
  text-align: center;
}

.month-indicator-dots {
  display: flex;
  justify-content: space-between;
}

.month-indicator-dot {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.month-indicator-dot::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: transparent;
}
.month-indicator-dot--active::before {
  background: #c9171e;
  width: 6px;
  height: 6px;
}

.post-thumb-seasonal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.post-thumb-status {
  display: inline-block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(153, 153, 153, 0.06);
  color: #999999;
  padding: 4px 10px;
  border-radius: 3px;
  border-left: 2px solid rgba(153, 153, 153, 0.3);
}
.post-thumb-status--peak {
  background: rgba(201, 23, 30, 0.08);
  color: #c9171e;
  border-left-color: #c9171e;
}

.post-thumb-mood-corner {
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #999999;
}

.post-thumb-meta--seasonal {
  margin-bottom: 6px;
}

.post-thumb-meta--practical {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-thumb-practical-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-thumb-practical-row--wrap {
  display: block;
  line-height: 1.5;
}

.post-thumb-crowd {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-thumb-crowd-bar {
  width: 36px;
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.post-thumb-crowd-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 3px;
}
.post-thumb-crowd--low .post-thumb-crowd-bar::before {
  width: 33%;
  background: #7bc98a;
}
.post-thumb-crowd--medium .post-thumb-crowd-bar::before {
  width: 66%;
  background: #c9171e;
}
.post-thumb-crowd--high .post-thumb-crowd-bar::before {
  width: 100%;
  background: #c97b7b;
}

.post-thumb-crowd-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-thumb-effort {
  font-size: 0.6875rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
}
.post-thumb-effort--easy {
  background: rgba(123, 201, 138, 0.15);
  color: #5a9e68;
}
.post-thumb-effort--moderate {
  background: rgba(201, 23, 30, 0.12);
  color: #c9171e;
}
.post-thumb-effort--challenging {
  background: rgba(201, 123, 123, 0.15);
  color: #a85858;
}

.post-thumb-time {
  font-size: 0.6875rem;
  color: #999999;
}

.post-thumb-meta--urbex {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-thumb-urbex-stats {
  display: flex;
  gap: 8px;
}

.post-thumb-difficulty {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.post-thumb-difficulty--easy {
  background: rgba(76, 175, 80, 0.15);
  color: #388e3c;
}
.post-thumb-difficulty--moderate {
  background: rgba(255, 193, 7, 0.15);
  color: #f9a825;
}
.post-thumb-difficulty--challenging {
  background: rgba(255, 152, 0, 0.15);
  color: #e65100;
}
.post-thumb-difficulty--extreme {
  background: rgba(244, 67, 54, 0.15);
  color: #c62828;
}

.post-thumb-risk {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.post-thumb-risk--safe {
  background: rgba(76, 175, 80, 0.15);
  color: #388e3c;
}
.post-thumb-risk--caution {
  background: rgba(255, 193, 7, 0.15);
  color: #f9a825;
}
.post-thumb-risk--risky {
  background: rgba(244, 67, 54, 0.15);
  color: #c62828;
}

.post-thumb-secrecy {
  font-size: 0.875rem;
  line-height: 1;
}

.post-thumb-meta--urbex {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.post-thumb-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-thumb-bar-label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999999;
  width: 48px;
  flex-shrink: 0;
}

.difficulty-bar,
.risk-bar {
  display: flex;
  gap: 3px;
}

.difficulty-bar-segment,
.risk-bar-segment {
  width: 10px;
  height: 6px;
  background: rgba(153, 153, 153, 0.12);
  border-radius: 1px;
}

.difficulty-bar-segment--active {
  background: #999999;
}

.risk-bar--safe .risk-bar-segment--active {
  background: #4caf50;
}

.risk-bar--caution .risk-bar-segment--active {
  background: #e6a817;
}

.risk-bar--risky .risk-bar-segment--active {
  background: #e53935;
}

.post-thumb-mood-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: transform 0.15s ease, background 0.15s ease;
}
.post-thumb:hover .post-thumb-mood-badge {
  background: rgba(0, 0, 0, 0.55);
}
.post-thumb-mood-badge .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.post-thumb-mood-badge .badge-icon svg {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.post-thumb-mood-badge .badge-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.post-thumb-mood-badge .badge-text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-right: 10px;
  margin-left: -2px;
}
.post-thumb-mood-badge--icon-only {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  justify-content: center;
}
.post-thumb:hover .post-thumb-mood-badge--icon-only {
  transform: scale(1.1);
}
.post-thumb-mood-badge--with-text {
  height: 28px;
  border-radius: 14px;
  padding: 0;
}
.post-thumb:hover .post-thumb-mood-badge--with-text {
  transform: scale(1.05);
}
.post-thumb-mood-badge--text-only {
  height: 24px;
  padding: 0 12px;
  border-radius: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.magazine-item {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.magazine-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.magazine-item--featured {
  grid-column: span 3;
  grid-row: span 2;
}
.magazine-item:not(.magazine-item--featured) {
  grid-column: span 1;
}

.magazine-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
}
.magazine-item--featured .magazine-image {
  min-height: 400px;
}
.magazine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.magazine-item:hover .magazine-image img {
  transform: scale(1.03);
}
.magazine-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  border-radius: 12px;
}

.magazine-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
}
.magazine-item--featured .magazine-content {
  padding: 32px;
}
.magazine-content h2 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}
.magazine-content h3 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1rem;
  font-weight: 400;
}
.magazine-content p {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .magazine-item--featured {
    grid-column: span 1;
    grid-row: span 1;
  }
  .magazine-item:not(.magazine-item--featured) {
    grid-column: span 1;
  }
  .magazine-image {
    min-height: 140px;
  }
  .magazine-item--featured .magazine-image {
    min-height: 200px;
  }
}
.journey-card {
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journey-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.journey-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.journey-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.journey-card:hover .journey-card-image img {
  transform: scale(1.05);
}

.journey-card-placeholder {
  width: 100%;
  height: 100%;
  background: #f5f4f2;
}

.journey-card-content {
  padding: 16px 24px 24px;
}

.journey-card-category {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c9171e;
  display: block;
  margin-bottom: 8px;
}

.journey-card-title {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.post-thumb--spring .post-thumb-category {
  color: #E89AAE;
}
.post-thumb--spring .month-indicator-dot--active::before {
  background: #E89AAE;
}
.post-thumb--spring .post-thumb-status {
  border-left-color: rgba(232, 154, 174, 0.5);
}
.post-thumb--spring .post-thumb-status--peak {
  background: rgba(232, 154, 174, 0.12);
  color: rgb(222.5403225806, 112.4596774194, 140.685483871);
  border-left-color: #E89AAE;
}
.post-thumb--spring:hover {
  box-shadow: 0 8px 30px rgba(232, 154, 174, 0.2);
}

.post-thumb--summer .post-thumb-category {
  color: #4EAACC;
}
.post-thumb--summer .month-indicator-dot--active::before {
  background: #4EAACC;
}
.post-thumb--summer .post-thumb-status {
  border-left-color: rgba(78, 170, 204, 0.5);
}
.post-thumb--summer .post-thumb-status--peak {
  background: rgba(78, 170, 204, 0.12);
  color: rgb(51.6710526316, 144.8815789474, 179.3289473684);
  border-left-color: #4EAACC;
}
.post-thumb--summer:hover {
  box-shadow: 0 8px 30px rgba(78, 170, 204, 0.2);
}

.post-thumb--autumn .post-thumb-category {
  color: #D4874C;
}
.post-thumb--autumn .month-indicator-dot--active::before {
  background: #D4874C;
}
.post-thumb--autumn .post-thumb-status {
  border-left-color: rgba(212, 135, 76, 0.5);
}
.post-thumb--autumn .post-thumb-status--peak {
  background: rgba(212, 135, 76, 0.12);
  color: rgb(191.0945945946, 108.8918918919, 45.9054054054);
  border-left-color: #D4874C;
}
.post-thumb--autumn:hover {
  box-shadow: 0 8px 30px rgba(212, 135, 76, 0.2);
}

.post-thumb--winter .post-thumb-category {
  color: #7EB4D6;
}
.post-thumb--winter .month-indicator-dot--active::before {
  background: #7EB4D6;
}
.post-thumb--winter .post-thumb-status {
  border-left-color: rgba(126, 180, 214, 0.5);
}
.post-thumb--winter .post-thumb-status--peak {
  background: rgba(126, 180, 214, 0.12);
  color: rgb(87.3, 157.5, 201.7);
  border-left-color: #7EB4D6;
}
.post-thumb--winter:hover {
  box-shadow: 0 8px 30px rgba(126, 180, 214, 0.2);
}

.post-thumb--urbex.post-thumb--urbex .post-thumb-category {
  color: #8B7D9B;
}
.post-thumb--urbex.post-thumb--urbex {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.post-thumb--urbex.post-thumb--urbex:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(139, 125, 155, 0.2);
}

.post-thumb .post-thumb-image > img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.post-thumb:hover .post-thumb-image > img {
  transform: scale(1.08);
}
.post-thumb:hover {
  transform: translateY(-6px);
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.map-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  pointer-events: none;
}

.map-title {
  display: block;
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.25rem;
}

.map-count {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.map-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  opacity: 0.8;
  cursor: pointer;
}
.map-marker, .map-marker:focus, .map-marker:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.mapboxgl-popup {
  z-index: 100;
}

.mapboxgl-popup-content {
  background: rgba(26, 26, 26, 0.95) !important;
  color: #fff;
  padding: 6px 10px !important;
  border-radius: 4px !important;
  border: none !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  outline: none !important;
}
.mapboxgl-popup-content:focus, .mapboxgl-popup-content:active {
  outline: none !important;
  border: none !important;
}
.mapboxgl-popup-content a {
  color: #fff;
  text-decoration: none;
  outline: none !important;
  border: none !important;
}
.mapboxgl-popup-content a:focus, .mapboxgl-popup-content a:active, .mapboxgl-popup-content a:hover {
  color: #fff;
  outline: none !important;
  border: none !important;
}

.mapboxgl-popup-tip {
  border-top-color: rgba(26, 26, 26, 0.95);
}

.map-popup-container .mapboxgl-popup-content {
  padding: 6px 10px !important;
}

.map-popup-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}

.map-popup-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.map-popup-title {
  font-size: 0.8rem;
  line-height: 1.3;
}

.mapboxgl-ctrl-bottom-right {
  right: 10px;
  bottom: 10px;
}

.mapboxgl-ctrl-group {
  background: rgba(0, 0, 0, 0.6) !important;
  border: none !important;
  border-radius: 8px !important;
}
.mapboxgl-ctrl-group button {
  background: transparent !important;
  border: none !important;
}
.mapboxgl-ctrl-group button span {
  filter: invert(1);
}

.map-fullscreen-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}
.map-fullscreen-btn .icon-collapse {
  display: none;
}

.map-fullscreen .map-fullscreen-btn .icon-expand {
  display: none;
}
.map-fullscreen .map-fullscreen-btn .icon-collapse {
  display: block;
}

body.map-fullscreen-active {
  overflow: hidden;
}

@keyframes mapFullscreenIn {
  from {
    opacity: 0.8;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.instagram-item {
  aspect-ratio: 9/16;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-item:hover img {
  transform: scale(1.05);
}
.instagram-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.instagram-item:hover::after {
  opacity: 1;
}

.instagram-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999999;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.instagram-header:hover {
  color: #c9171e;
}
.instagram-header svg {
  width: 14px;
  height: 14px;
}

.instagram-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  flex: 1;
}
.instagram-grid-compact .instagram-item {
  aspect-ratio: 9/16;
}

.instagram-row-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #999999;
  min-width: 80px;
}
.instagram-row-header svg {
  width: 24px;
  height: 24px;
}
.instagram-row-header span {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.instagram-row-images {
  display: flex;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.instagram-row-images img {
  flex: 1;
  height: 100%;
  min-height: 120px;
  max-height: 160px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.15s ease;
}

.insta-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.insta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.insta-handle {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.insta-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}
.insta-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1.5'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E") center center no-repeat;
  background-size: 60px 60px;
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .instagram-item:nth-child(n+4) {
    display: none;
  }
}
.tags-variant {
  grid-column: span 4;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  padding: 32px;
}

.tags-va-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.tags-va-big {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
}

.tags-va-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.tags-va-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tags-va-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.tags-va-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.tags-va-card--all {
  background: #c9171e;
}
.tags-va-card--all:hover {
  background: #a01118;
}
.tags-va-card--all .tags-va-desc {
  color: rgba(255, 255, 255, 0.8);
}

.tags-va-card-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.tags-va-card-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tags-va-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

.tags-va-desc {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
}

.tags-va--featured-bg,
.tags-va--featured-blur,
.tags-va--featured-circular,
.tags-va--featured-large,
.tags-va--featured-lift {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.tags-va--featured-bg::before,
.tags-va--featured-blur::before,
.tags-va--featured-circular::before,
.tags-va--featured-large::before,
.tags-va--featured-lift::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.88) 100%);
}
.tags-va--featured-bg .tags-va-header,
.tags-va--featured-bg .tags-va-grid,
.tags-va--featured-blur .tags-va-header,
.tags-va--featured-blur .tags-va-grid,
.tags-va--featured-circular .tags-va-header,
.tags-va--featured-circular .tags-va-grid,
.tags-va--featured-large .tags-va-header,
.tags-va--featured-large .tags-va-grid,
.tags-va--featured-lift .tags-va-header,
.tags-va--featured-lift .tags-va-grid {
  position: relative;
  z-index: 1;
}

.tags-va--featured-blur::before {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(26, 26, 46, 0.75);
}

.tags-va--featured-circular .tags-va-card-thumb {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.tags-va--featured-large .tags-va-card-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
}
.tags-va--featured-large .tags-va-card {
  padding: 16px 24px;
}

.tags-va--featured-lift .tags-va-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.tags-va--featured-lift .tags-va-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.adventures-banner {
  padding: 0 24px 32px;
}

.adventures-inner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  padding: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-topics-strip {
  grid-column: span 4;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.topics-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999999;
  white-space: nowrap;
}

.topics-scroll {
  display: flex;
  gap: 8px;
  flex: 1;
  overflow-x: auto;
  padding: 2px 0;
  scrollbar-width: none;
}
.topics-scroll::-webkit-scrollbar {
  display: none;
}

.topic-pill {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  font-size: 0.8125rem;
  color: #666666;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.topic-pill:hover {
  background: #c9171e;
  border-color: #c9171e;
  color: #fff;
}

.all-posts-link {
  font-size: 0.8125rem;
  color: #c9171e;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.15s ease;
}
.all-posts-link:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .tags-variant {
    grid-column: span 1;
  }
  .bento-topics-strip {
    grid-column: span 1;
  }
  .adventures-banner .tags-va-grid,
  .variant-item .tags-va-grid,
  .tags-va-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tags-va-card {
    flex-direction: row;
    align-items: center;
  }
}
.bento-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  font-size: 0.8125rem;
  color: #666666;
  transition: all 0.15s ease;
}
.bento-tag:hover {
  background: #c9171e;
  border-color: #c9171e;
  color: #fff;
}
.bento-tag--accent {
  background: #c9171e;
  border-color: #c9171e;
  color: #fff;
}
.bento-tag--accent:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tag {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  background: #f5f4f2;
  border-radius: 20px;
  font-size: 0.8125rem;
  color: #666666;
  text-decoration: none;
  transition: all 0.15s ease;
}
.article-tag:hover {
  background: #c9171e;
  color: #fff;
}

.article-category {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #c9171e;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.bento-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c9171e;
  margin-bottom: 8px;
}

.navigation.pagination {
  margin-top: 48px;
  margin-bottom: 24px;
  text-align: center;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.navigation.pagination a,
.navigation.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #666666;
  background: #f5f4f2;
  border: 2px solid transparent;
  transition: all 0.15s ease;
}
.navigation.pagination .prev,
.navigation.pagination .next {
  min-width: auto;
  padding: 0 24px;
  font-size: 0.875rem;
}
.navigation.pagination a:hover {
  background: #fff;
  border-color: #c9171e;
  color: #c9171e;
  transform: scale(1.08);
}
.navigation.pagination .current {
  background: #c9171e;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(201, 23, 30, 0.35);
}
.navigation.pagination .dots {
  background: transparent;
  color: #999999;
  min-width: 32px;
}

body.home main {
  padding-top: 0;
  background: repeating-linear-gradient(-45deg, #f0eeeb, #f0eeeb 8px, #ebe9e6 8px, #ebe9e6 16px);
}

body.home .site-footer {
  margin-top: 0;
}

.bento-container {
  padding: 32px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bento-box {
  background: #f5f4f2;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bento-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.bento-box--featured {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  display: block;
}
.bento-box--featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bento-box--featured:hover img {
  transform: scale(1.03);
}
.bento-box--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
  border-radius: 12px;
}

.bento-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: #fff;
  z-index: 1;
}
.bento-featured-content h3 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  font-optical-sizing: auto;
  margin-bottom: 8px;
  line-height: 1.2;
}
.bento-featured-content p {
  font-size: 1rem;
  opacity: 0.85;
}

.bento-box--map {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bento-box--map:hover {
  transform: none;
  box-shadow: none;
}
.bento-box--map .bento-box-header {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  pointer-events: none;
}
.bento-box--map .bento-box-header h3 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.25rem;
}
.bento-box--map.map-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  border-radius: 0;
  grid-column: auto;
  grid-row: auto;
  animation: mapFullscreenIn 0.3s ease-out;
}
.bento-box--map.map-fullscreen .bento-map {
  min-height: 100%;
}
.bento-box--map.map-fullscreen .bento-box-header {
  top: 32px;
  left: 32px;
}
.bento-box--map.map-fullscreen .map-fullscreen-btn {
  top: 32px;
  right: 32px;
}

.bento-map-count {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.bento-map {
  width: 100%;
  flex: 1;
  min-height: 300px;
  border-radius: 12px;
}

.bento-box--category {
  grid-column: span 1;
  position: relative;
  display: block;
  container-type: inline-size;
}
.bento-box--category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bento-box--category:hover img {
  transform: scale(1.08);
}
.bento-box--category::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  border-radius: 12px;
}
.bento-box--category .bento-category-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  line-height: 1;
}

:lang(ja) .bento-box--category .bento-category-label {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 600;
  text-transform: none;
}

.bento-box--dark {
  grid-column: span 2;
  position: relative;
  display: block;
}
.bento-box--dark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bento-box--dark:hover img {
  transform: scale(1.03);
}
.bento-box--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
  border-radius: 12px;
}

.bento-dark-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}
.bento-dark-content .bento-category-label {
  position: static;
  display: block;
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.25rem;
}
.bento-dark-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.bento-box--dark-tall {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  display: block;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.bento-box--dark-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bento-box--dark-tall:hover img {
  transform: scale(1.03);
}
.bento-box--dark-tall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 12px;
}
.bento-box--dark-tall .bento-dark-content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 1;
}
.bento-box--dark-tall .bento-category-label {
  position: static;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.bento-box--dark-tall .bento-dark-content p {
  font-size: 1rem;
}

.bento-box--instagram-row {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  text-decoration: none;
}
.bento-box--instagram-row:hover .instagram-row-header {
  color: #c9171e;
}

.bento-box--insta-thumb {
  grid-column: span 1;
  grid-row: span 2;
  position: relative;
  display: block;
}
.bento-box--insta-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bento-box--insta-thumb:hover > img {
  transform: scale(1.05);
}

.bento-box--tags {
  grid-column: span 4;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-box--tags h3 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999999;
  margin-bottom: 16px;
}

.bento-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bento-box--instagram {
  grid-column: span 4;
  padding: 24px;
}
.bento-box--instagram h3 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999999;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bento-box--instagram h3 svg {
  width: 16px;
  height: 16px;
}

.bento-box--instagram-compact {
  grid-column: span 2;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.bento-latest {
  grid-column: span 4;
  background: #f5f4f2;
  border-radius: 12px;
  padding: 24px;
}

.bento-latest-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999999;
  margin-bottom: 16px;
}

.bento-latest-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.bento-latest-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.bento-latest-item:hover .bento-latest-name {
  color: #c9171e;
}

.bento-latest-name {
  font-size: 0.875rem;
  color: #1a1a1a;
  transition: color 0.15s ease;
}

.bento-latest-date {
  font-size: 0.75rem;
  color: #999999;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
    padding: 0 16px;
  }
  .bento-box--featured {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 280px;
  }
  .bento-featured-content {
    padding: 24px;
  }
  .bento-featured-content h3 {
    font-size: 1.5rem;
  }
  .bento-featured-content p {
    font-size: 0.875rem;
  }
  .bento-box--map {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 250px;
  }
  .bento-box--category {
    grid-column: span 1;
    min-height: 160px;
  }
  .bento-box--category .bento-category-label {
    font-size: 1.25rem;
  }
  .bento-box--dark,
  .bento-box--dark-tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }
  .bento-box--tags {
    grid-column: span 1;
    padding: 24px;
  }
  .bento-box--instagram,
  .bento-box--instagram-compact {
    grid-column: span 1;
  }
  .bento-box--instagram-row {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
  .bento-box--insta-thumb {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }
  .bento-latest {
    grid-column: span 1;
  }
  .bento-latest-list {
    grid-template-columns: 1fr;
  }
}
.article-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.article-hero .site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.article-hero-image {
  position: absolute;
  inset: 0;
}
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.2) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 48px 24px;
  color: #fff;
}

.article-hero .article-title,
.article-hero h1 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.875rem;
  opacity: 0.7;
  flex-wrap: wrap;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}
.article-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.article-content > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 4rem;
  line-height: 0.8;
  padding-right: 0.5rem;
  color: #c9171e;
}
.article-content h2 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 32px 0 24px;
}
.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 24px 0 16px;
}
.article-content ul,
.article-content ol {
  margin: 24px 0;
  padding-left: 1.5rem;
}
.article-content li {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
.article-content a {
  color: #c9171e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content a:hover {
  opacity: 0.8;
}

.article-content figure,
.article-content .wp-block-image {
  margin: 32px calc(-1 * 24px);
}
.article-content figure img,
.article-content .wp-block-image img {
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .article-content figure,
  .article-content .wp-block-image {
    margin-left: calc(-1 * ((100vw - 720px) / 2 - 24px));
    margin-right: calc(-1 * ((100vw - 720px) / 2 - 24px));
    max-width: none;
    width: calc(100% + 100vw - 720px - 24px * 2);
  }
}
@media (min-width: 1200px) {
  .article-content figure,
  .article-content .wp-block-image {
    margin-left: -120px;
    margin-right: -120px;
    width: 960px;
    max-width: 960px;
  }
}
.article-content figcaption,
.article-content .wp-block-image figcaption {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 0 24px;
  font-size: 0.8125rem;
  color: #999999;
  font-style: italic;
  text-align: center;
}

.article-content .mgl-gallery-container {
  margin: 32px calc(-1 * 24px);
}

@media (min-width: 900px) {
  .article-content .mgl-gallery-container {
    margin-left: calc(-1 * ((100vw - 720px) / 2 - 24px));
    margin-right: calc(-1 * ((100vw - 720px) / 2 - 24px));
    max-width: none;
    width: calc(100% + 100vw - 720px - 24px * 2);
  }
}
@media (min-width: 1200px) {
  .article-content .mgl-gallery-container {
    margin-left: -120px;
    margin-right: -120px;
    width: 960px;
    max-width: 960px;
  }
}
.article-content .wp-block-gallery {
  margin: 32px 0;
}
.article-content .wp-block-gallery figure {
  margin: 0;
}

.article-content blockquote,
.article-quote {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-content blockquote p,
.article-quote blockquote {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: #1a1a1a;
  text-align: center;
  margin: 0;
}

.useful-info {
  margin: 48px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.useful-info-title {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 24px 0;
}

.useful-info-map {
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.useful-info-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.useful-info-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid #999999;
}

.useful-info-notice--secret {
  border-left-color: #c9171e;
  background: rgba(201, 23, 30, 0.08);
}

.useful-info-notice--important {
  border-left-color: #e8943d;
  background: rgba(232, 148, 61, 0.08);
}

.useful-info-notice-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.useful-info-notice-text strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.useful-info-notice-text p {
  margin: 0;
  font-size: 0.8125rem;
  color: #666666;
  line-height: 1.4;
}

.useful-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin: 0;
  padding: 24px;
  background: rgba(245, 244, 242, 0.95);
  border-radius: 8px;
  border-left: 3px solid rgba(102, 102, 102, 0.3);
}

.useful-info-item dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.useful-info-item dd {
  margin: 0;
  font-size: 0.8125rem;
  color: #666666;
  line-height: 1.4;
}

.useful-info-icon {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .article-hero {
    min-height: 400px;
    height: auto;
  }
  .article-hero-content {
    padding: 32px 16px;
  }
  .article-hero .article-title,
  .article-hero h1 {
    font-size: 1.75rem;
  }
  .article-meta {
    font-size: 0.8125rem;
    gap: 16px;
  }
  .article-content {
    padding: 32px 16px;
  }
  .article-content p {
    font-size: 1rem;
  }
  .article-content h2 {
    font-size: 1.5rem;
  }
  .article-content li {
    font-size: 1rem;
  }
  .article-content > p:first-of-type::first-letter {
    font-size: 3rem;
  }
  .article-content figure,
  .article-content .wp-block-image,
  .article-content .mgl-gallery-container {
    margin-left: calc(-1 * 16px);
    margin-right: calc(-1 * 16px);
  }
  .useful-info {
    padding: 24px;
  }
  .useful-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .useful-info-map {
    height: 180px;
  }
}
.article-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.article-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.article-updated {
  font-size: 0.8125rem;
  color: #999999;
}

.article-tags .article-tag {
  text-decoration: none;
}
.article-tags .article-tag:hover {
  text-decoration: none;
}

.all-posts-hero {
  position: relative;
  background: #1a1a1a;
  padding: calc(48px + 60px) 24px 32px;
  text-align: center;
  color: #fff;
}
.all-posts-hero .site-nav {
  background: transparent;
}

.all-posts-hero-content h1 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.all-posts-hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 16px;
}
.all-posts-hero-content .post-count {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.archive-hero {
  position: relative;
  background: #1a1a1a;
  padding: calc(48px + 60px) 24px 32px;
  text-align: center;
  color: #fff;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.archive-hero.has-hero-image {
  min-height: 45vh;
}
.archive-hero .site-nav {
  background: transparent;
}

.archive-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.archive-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.archive-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-hero-content {
  position: relative;
  z-index: 5;
}
.archive-hero-content h1 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.archive-hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 16px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.archive-hero-content .post-count {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.post-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f4f2 0%, rgba(0, 0, 0, 0.08) 100%);
}

.journey-form {
  margin-top: 32px;
  max-width: 600px;
  width: 100%;
}

.journey-form-row {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.journey-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 24px;
  color: #fff;
  font-size: 0.9375rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-width: 0;
}
.journey-input:focus {
  outline: none;
}
.journey-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.journey-btn {
  background: #c9171e;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 16px 24px;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-btn:hover:not(:disabled) {
  transform: scale(1.02);
  filter: brightness(1.1);
}
.journey-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.journey-btn.is-loading .journey-btn-text {
  display: none;
}
.journey-btn.is-loading .journey-btn-loading {
  display: inline-flex;
}

.journey-btn-loading {
  display: none;
}

.journey-spinner {
  animation: journey-spin 1s linear infinite;
}

@keyframes journey-spin {
  to {
    transform: rotate(360deg);
  }
}
.journey-hint {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.journey-hint-loading {
  display: none;
}

.journey-form-inner.is-loading .journey-hint-default {
  display: none;
}
.journey-form-inner.is-loading .journey-hint-loading {
  display: inline;
}

@media (max-width: 1024px) {
  .journey-form {
    max-width: 100%;
    padding: 0 16px;
  }
  .journey-form-row {
    flex-direction: column;
    border-radius: 12px;
    padding: 8px;
  }
  .journey-input {
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
  }
  .journey-select {
    width: 100%;
    padding: 16px;
    text-align: center;
  }
  .journey-btn {
    width: 100%;
    padding: 16px;
  }
  .journey-hint {
    font-size: 0.6875rem;
    padding: 0 16px;
  }
}
body.journey-template {
  margin: 0;
  padding: 0;
}

.journey-page {
  min-height: 100vh;
  padding-top: 0;
}
.journey-page--404 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-page + .adventures-banner {
  margin-top: 0;
}

.journey-404 {
  text-align: center;
  padding: 48px;
}
.journey-404 h1 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.journey-404 p {
  color: #666666;
  margin-bottom: 32px;
}

.journey-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
  color: #fff;
  overflow: hidden;
}
.journey-hero .site-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
}

.journey-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.journey-nav-home {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.journey-nav-home:hover {
  opacity: 1;
}

.journey-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
}

.journey-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c9171e;
  margin-bottom: 16px;
  display: block;
}

.journey-title {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.journey-meta {
  font-size: 1rem;
  opacity: 0.8;
}

.journey-section {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 24px;
}

.journey-section-header {
  text-align: center;
  margin-bottom: 32px;
}

.journey-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c9171e;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.journey-section-title {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 8px;
}

.journey-section-desc {
  color: #666666;
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .journey-section {
    padding: 0 16px;
    margin: 32px auto;
  }
  .journey-hero {
    min-height: 400px;
    height: auto;
  }
  .journey-hero-content {
    padding: 24px;
  }
  .journey-title {
    font-size: 1.75rem;
  }
}
.journey-footer {
  text-align: center;
  padding: 48px 24px;
  background: #f5f4f2;
  margin-top: 48px;
}

.journey-footer-prompt {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-style: italic;
  font-size: 1.125rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.journey-footer-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: normal;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin-bottom: 8px;
  color: #999999;
}

.journey-footer-date {
  font-size: 0.875rem;
  color: #999999;
  margin: 16px 0 24px;
}

.journey-footer-cta {
  display: inline-block;
  background: #c9171e;
  color: #fff;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.journey-footer-cta:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.journey-share {
  margin-top: 32px;
}

.journey-share-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 8px;
}

.journey-share-box {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.journey-share-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 8px 16px;
  color: #fff;
  font-size: 0.8125rem;
  min-width: 0;
}
.journey-share-input:focus {
  outline: none;
}

.journey-share-btn {
  background: #c9171e;
  color: #fff;
  border: none;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.journey-share-btn:hover {
  filter: brightness(1.1);
}

.journey-share-expiry {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 8px;
}

.journey-map-section {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 24px;
}

.journey-map-title {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
}

.journey-map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.journey-map-marker {
  width: 32px;
  height: 32px;
  background: #c9171e;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.journey-map-marker:hover {
  transform: scale(1.15);
}
.journey-map-marker span {
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
}

/*# sourceMappingURL=main.css.map */
