/* ============================================
   KINGDOM WORKSHOP — Inner Page Styles
   ============================================ */

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > .site-footer {
  margin-top: auto;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 5vw 2rem;
  background: linear-gradient(
    to bottom,
    rgba(13, 31, 34, 1) 0%,
    rgba(13, 31, 34, 0.5) 60%,
    var(--bg-primary) 100%
  );
}

.page-hero.page-hero--post {
  min-height: 50vh;
  padding: 8rem 5vw 4rem;
  background: linear-gradient(
    to bottom,
    rgba(13, 31, 34, 1) 0%,
    rgba(13, 31, 34, 0.6) 50%,
    var(--bg-primary) 100%
  );
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 31, 34, 0.4) 0%,
    rgba(13, 31, 34, 0.55) 40%,
    var(--bg-primary) 100%
  );
}

.page-hero .section-label,
.page-hero .page-title,
.page-hero .page-subtitle {
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  animation: heroFadeUp 0.8s ease both;
}

.page-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.8s ease 0.15s both;
}

.page-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  max-width: 600px;
  animation: heroFadeUp 0.8s ease 0.3s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PAGE CONTENT
   ============================================ */

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 5vw;
}

.page-content--wide {
  max-width: 1200px;
}

/* ============================================
   SESSION CARDS
   ============================================ */

.session-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.session-card {
  border: 1px solid rgba(39, 182, 196, 0.15);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(39, 182, 196, 0.03);
  transition: border-color 0.3s ease, background 0.3s ease, padding 0.3s ease;
  cursor: pointer;
}

.session-card:hover {
  border-color: var(--accent);
  background: rgba(39, 182, 196, 0.06);
}

.session-label {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.session-dates {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.session-register {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent);
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease, padding 0.3s ease, background 0.3s ease;
  align-self: flex-start;
}

.session-card:hover .session-register {
  opacity: 1;
  max-height: 3rem;
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.session-register:hover {
  background: var(--accent-warm);
}

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

/* Mobile: disable hover animations, show buttons directly */
@media (max-width: 768px) {
  .session-register {
    opacity: 1;
    max-height: 3rem;
    margin-top: 0.75rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    transition: none;
  }

  .session-card:hover .session-register {
    all: unset;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--accent);
    align-self: flex-start;
    margin-top: 0.75rem;
  }

  .session-card:hover {
    border-color: rgba(39, 182, 196, 0.15);
    background: rgba(39, 182, 196, 0.03);
  }

  .map-marker-lg:hover,
  .map-marker-lg.is-hovered {
    transform: translate(-50%, -50%) scale(1);
    border-color: #000;
    box-shadow: none;
    background: rgba(50, 50, 50, 0.6);
  }

  .map-marker-lg:hover::before,
  .map-marker-lg.is-hovered::before {
    opacity: 0;
  }
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   BUILDING CARDS (Tour page)
   ============================================ */

.building-card {
  padding-top: 2rem;
  margin-bottom: 3.5rem;
  border-top: 1px solid rgba(39, 182, 196, 0.1);
}

.building-card:last-child {
  margin-bottom: 0;
}

.building-name {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.building-body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.building-features {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 2;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-item {
  border-bottom: 1px solid rgba(232, 228, 222, 0.06);
}

.faq-item:first-child {
  border-top: 1px solid rgba(232, 228, 222, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 1.5rem;
  transition: transform 0.4s ease;
  color: var(--text-secondary);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 0;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 0 2rem 0;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
}

/* ============================================
   CONTACT CHANNELS
   ============================================ */

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.contact-channel {
  border-top: 1px solid rgba(39, 182, 196, 0.1);
  padding-top: 2rem;
}

.contact-channel-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.contact-channel-value {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

a.contact-channel-value:hover {
  color: var(--accent);
}

/* ============================================
   BLOCKQUOTE
   ============================================ */

.page-quote {
  border-left: 2px solid rgba(39, 182, 196, 0.3);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 3rem 0;
}

.page-quote p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
}

.page-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

/* ============================================
   PAGE CTA
   ============================================ */

.page-cta {
  text-align: center;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(39, 182, 196, 0.1);
  margin-top: 2.5rem;
}

.page-cta p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ============================================
   SITE FOOTER
   ============================================ */

.site-footer {
  width: 100%;
  padding: 3rem 5vw;
  border-top: 1px solid rgba(232, 228, 222, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(138, 134, 128, 0.5);
  letter-spacing: 0.04em;
}

/* ============================================
   WHAT TO EXPECT (Fellowship page)
   ============================================ */

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.expect-item {
  border-top: 1px solid rgba(39, 182, 196, 0.1);
  padding-top: 2rem;
}

.expect-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.expect-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   APPLY FORM
   ============================================ */

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.apply-form-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.form-required {
  color: var(--accent);
  font-weight: 600;
}

.form-input {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 228, 222, 0.12);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus {
  border-color: var(--accent);
  background: rgba(39, 182, 196, 0.05);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-helper {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: -0.25rem;
}

.form-radio-group {
  display: flex;
  gap: 2rem;
}

.form-radio,
.form-checkbox {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(232, 228, 222, 0.8);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(232, 228, 222, 0.08);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.form-radio:hover,
.form-checkbox:hover {
  color: var(--text-primary);
  background: rgba(39, 182, 196, 0.06);
  border-color: rgba(39, 182, 196, 0.2);
}

.form-radio input {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 44px;
  height: 24px;
  background: rgba(232, 228, 222, 0.12);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
  border: none;
  outline: none;
}

.form-checkbox input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: rgba(232, 228, 222, 0.5);
  border-radius: 50%;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--accent);
}

.form-checkbox input[type="checkbox"]:checked::before {
  transform: translateX(20px);
  background: #fff;
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-error {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #e74c3c;
  margin-top: 0.25rem;
}

/* ============================================
   TOUR MAP
   ============================================ */

.tour-page-hero {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(13, 31, 34, 0.95) 0%,
    rgba(10, 10, 10, 0.8) 60%,
    transparent 100%
  );
}

.tour-map {
  position: relative;
  width: 100%;
  padding: 0 2vw 3rem;
  background: var(--bg-primary);
  margin-top: -36rem;
  z-index: 0;
  opacity: 0;
  transform: scale(0.96);
  animation: mapFadeIn 1.2s ease 0.4s forwards;
}

@keyframes mapFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.tour-map-inner {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.tour-map-markers {
  position: absolute;
  top: 0;
  left: 2vw;
  right: 2vw;
  bottom: 3rem;
  max-width: 1600px;
  margin: 0 auto;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}


.tour-map-markers .map-marker-lg {
  pointer-events: auto;
}

.map-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.map-marker-lg {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(50, 50, 50, 0.6);
  border: 4px solid #000;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  will-change: transform;
}

.map-marker-lg::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(
    circle at center,
    transparent 38%,
    rgba(39, 182, 196, 0.6) 44%,
    rgba(200, 240, 245, 0.9) 48%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(200, 240, 245, 0.9) 52%,
    rgba(39, 182, 196, 0.6) 56%,
    transparent 62%
  );
  transition: opacity 0.4s ease;
}

.map-marker-lg:hover,
.map-marker-lg.is-hovered {
  transform: translate(-50%, -50%) scale(1.25);
  background: rgba(39, 182, 196, 0.15);
  border-color: transparent;
  box-shadow:
    0 0 20px rgba(39, 182, 196, 0.5),
    0 0 40px rgba(39, 182, 196, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 2px 3px rgba(255, 255, 255, 0.2),
    inset 0 -2px 3px rgba(0, 0, 0, 0.3);
}

.map-marker-lg:hover::before,
.map-marker-lg.is-hovered::before {
  opacity: 1;
}

.map-marker-img {
  overflow: visible;
}

.map-marker-img .marker-portrait {
  clip-path: circle(50%);
}

.marker-portrait {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.map-marker-lg span {
  font-size: 20px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* ---- Map Tooltip ---- */

.map-tooltip {
  position: absolute;
  bottom: 100%;
  right: calc(50% - 1px);
  width: min(336px, 70vw);
  height: min(336px, 50vh);
  transform-origin: bottom right;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  clip-path: inset(100% 0 0 calc(100% - 2px) round 0);
  filter: blur(4px);
  box-shadow: none;
  transition: clip-path 0.3s ease, opacity 0.15s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.map-marker-lg.tooltip-step1 .map-tooltip {
  opacity: 1;
  clip-path: inset(0 0 0 calc(100% - 2px) round 0);
}

.map-marker-lg.tooltip-step2 .map-tooltip {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 12px);
  pointer-events: auto;
  filter: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-marker-lg.tooltip-step1 .map-tooltip {
  filter: blur(2px);
}

/* Right-extending tooltip variant */
.map-tooltip--right {
  bottom: auto;
  top: 100%;
  right: auto;
  left: calc(50% - 1px);
  transform-origin: top left;
  clip-path: inset(0 calc(100% - 2px) 100% 0 round 0);
}

.map-marker-lg.tooltip-step1 .map-tooltip--right {
  clip-path: inset(0 calc(100% - 2px) 0 0 round 0);
}

.map-marker-lg.tooltip-step2 .map-tooltip--right {
  clip-path: inset(0 0 0 0 round 12px);
}

/* Right-then-down tooltip variant */
.map-tooltip--right-down {
  bottom: auto;
  top: calc(50% - 1px);
  right: auto;
  left: 100%;
  transform-origin: top left;
  clip-path: inset(0 100% calc(100% - 2px) 0 round 0);
}

.map-marker-lg.tooltip-step1 .map-tooltip--right-down {
  clip-path: inset(0 0 calc(100% - 2px) 0 round 0);
}

.map-marker-lg.tooltip-step2 .map-tooltip--right-down {
  clip-path: inset(0 0 0 0 round 12px);
}

/* Responsive tooltip: default up-left, switches to right-down on small screens */
@media (max-width: 1024px) {
  .map-tooltip--bottom-responsive {
    bottom: auto;
    top: 100%;
    right: auto;
    left: calc(50% - 1px);
    transform-origin: top left;
    clip-path: inset(0 calc(100% - 2px) 100% 0 round 0);
  }

  .map-marker-lg.tooltip-step1 .map-tooltip--bottom-responsive {
    clip-path: inset(0 calc(100% - 2px) 0 0 round 0);
  }

  .map-marker-lg.tooltip-step2 .map-tooltip--bottom-responsive {
    clip-path: inset(0 0 0 0 round 12px);
  }
}

.tooltip-nav {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.tooltip-nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(232, 228, 222, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tooltip-nav-btn:hover {
  background: rgba(39, 182, 196, 0.15);
  color: var(--accent);
  border-color: var(--accent);
}

/* Left-then-down tooltip variant */
.map-tooltip--left-down {
  bottom: auto;
  top: calc(50% - 1px);
  right: 100%;
  left: auto;
  transform-origin: top right;
  clip-path: inset(0 0 calc(100% - 2px) 100% round 0);
}

.map-marker-lg.tooltip-step1 .map-tooltip--left-down {
  clip-path: inset(0 0 calc(100% - 2px) 0 round 0);
}

.map-marker-lg.tooltip-step2 .map-tooltip--left-down {
  clip-path: inset(0 0 0 0 round 12px);
}

.map-tooltip-subtitle {
  font-size: 9px;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.02em;
}

.map-tooltip-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-top: 0.25rem;
}

.map-tooltip-body {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(232, 228, 222, 0.85);
  flex: 1;
  overflow-y: auto;
  margin-bottom: 2.5rem;
  position: relative;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.05) 80%,
    transparent 100%
  );
  padding: 0.75rem;
  margin: -0.75rem;
  padding-right: 1.25rem;
}

.tooltip-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0.75rem 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map-tooltip-body p {
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  text-indent: -1.75rem;
}

.map-tooltip-body p:last-child {
  margin-bottom: 0;
}

.map-tooltip-body::-webkit-scrollbar {
  width: 3px;
}

.map-tooltip-body::-webkit-scrollbar-track {
  background: transparent;
}

.map-tooltip-body::-webkit-scrollbar-thumb {
  background: rgba(39, 182, 196, 0.3);
  border-radius: 2px;
}

.tour-map-inner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  mask-image:
    linear-gradient(to bottom, transparent 0%, transparent 28%, black 52%, black 88%, transparent 95%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, transparent 28%, black 52%, black 88%, transparent 95%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-composite: source-in;
}

/* ============================================
   JOURNAL LIST
   ============================================ */

.journal-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journal-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(232, 228, 222, 0.06);
  transition: border-color 0.3s ease;
}

.journal-item:first-child {
  border-top: 1px solid rgba(232, 228, 222, 0.06);
}

.journal-item:hover {
  border-color: var(--accent);
}

.journal-date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 0.3rem;
}

.journal-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.journal-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.journal-item:hover .journal-title {
  color: var(--accent);
}

.journal-excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================
   POST (individual article)
   ============================================ */

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(232, 228, 222, 0.06);
}

.post-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.post-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(39, 182, 196, 0.2);
  border-radius: 3px;
}

.post-body {
  margin-bottom: 4rem;
}

.post-body p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.post-body p:last-child {
  margin-bottom: 0;
}

.post-body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(39, 182, 196, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.3s ease;
}

.post-body a:hover {
  border-color: var(--accent);
}

.post-body em {
  color: var(--text-primary);
}

.post-video {
  margin: 2.5rem 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(39, 182, 196, 0.1);
}

.post-video video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

.post-nav {
  padding-top: 3rem;
  border-top: 1px solid rgba(232, 228, 222, 0.06);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 1024px) {
  .page-hero {
    padding: 4.5rem 5vw 1.5rem;
  }
  .page-hero.page-hero--post {
    min-height: 45vh;
    padding: 7rem 5vw 3rem;
  }

  .tour-map {
    margin-top: -20rem;
  }

  .map-tooltip {
    width: min(300px, 65vw);
    height: min(300px, 45vh);
  }
}

@media (max-width: 900px) {
  .tour-map {
    margin-top: -10rem;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .tour-map-inner {
    min-width: 700px;
    padding: 0 1rem;
  }

  .tour-map-inner img {
    min-width: 700px;
  }

  .tour-map-markers {
    min-width: 700px;
    left: 1rem;
    right: 1rem;
  }

  .map-tooltip {
    width: min(280px, 60vw);
    height: min(290px, 45vh);
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 6vw 1.5rem;
  }
  .page-hero.page-hero--post {
    min-height: 40vh;
    padding: 6rem 6vw 3rem;
  }

  .page-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .page-content {
    padding: 4rem 6vw;
  }

  .building-card {
    margin-bottom: 4rem;
  }

  .building-name {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .contact-channels {
    gap: 2rem;
  }

  .contact-channel-value {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .site-footer {
    padding: 3rem 6vw;
  }

  .expect-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .journal-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .journal-date {
    min-width: unset;
  }

  .tour-map {
    margin-top: -2rem;
  }

  .tour-page-hero {
    padding-bottom: 1.5rem;
  }

  .map-tooltip {
    width: min(260px, 55vw);
    height: min(280px, 42vh);
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
  .page-hero {
    padding: 3.5rem 5vw 1.5rem;
  }
  .page-hero.page-hero--post {
    min-height: 35vh;
    padding: 5rem 5vw 2rem;
  }

  .page-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .page-content {
    padding: 3rem 5vw;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 0;
  }

  .map-tooltip {
    width: min(230px, 50vw);
    height: min(250px, 40vh);
  }

  .map-marker-lg {
    width: 40px;
    height: 40px;
  }
}
