/* ============================================================
   MANSEOK-HWASU — Section Styles
   ============================================================ */

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100vw;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/hero/hero-coast-sunset.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(1.1);
  mask-image: linear-gradient(180deg, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 60%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero__copy { animation: fadeUp 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero__copy .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(238, 242, 247, 0.92);
  box-shadow: var(--neo-pressed);
  margin-bottom: 24px;
  color: #FF7746;
  font-weight: 600;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  white-space: pre-line;
  margin-bottom: 24px;
  color: #292121;
  text-shadow: 0 2px 16px rgba(238,242,247,0.4);
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #292121;
  opacity: 0.82;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  height: 480px;
  animation: fadeUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) 200ms both;
  overflow: hidden;
}

/* ── Hero Scene: interactive canvas + parallax layers ── */
.hero__scene {
  position: absolute;
  inset: 0;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__depth-far,
.hero__depth-mid,
.hero__depth-near {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}

.hero__depth-mid {
  display: grid;
  place-items: center;
  perspective: 900px;
  perspective-origin: center center;
}

/* Soft color blobs — ambient glow in brand palette */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.hero__blob--1 {
  width: 340px; height: 340px;
  background: var(--primary-sky);
  opacity: 0.28;
  top: -18%; left: -12%;
  animation: blobDrift 14s ease-in-out infinite;
}
.hero__blob--2 {
  width: 220px; height: 220px;
  background: var(--secondary-orange);
  opacity: 0.22;
  bottom: -8%; right: -4%;
  animation: blobDrift 11s ease-in-out infinite reverse;
}
.hero__blob--3 {
  width: 180px; height: 180px;
  background: var(--secondary-aqua);
  opacity: 0.2;
  top: 40%; right: 8%;
  animation: blobDrift 17s ease-in-out infinite 3s;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(16px, -20px) scale(1.06); }
  66%       { transform: translate(-10px, 10px) scale(0.95); }
}

/* Central neomorphic orb */
.hero__orb {
  position: relative;
  width: 280px;
  height: 280px;
  will-change: transform;
  transition: transform 80ms linear;
}

.hero__orb-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-sky), #6bbfe8);
  box-shadow:
    -20px -20px 52px rgba(255, 255, 255, 0.97),
    20px 20px 52px rgba(163, 177, 198, 0.55),
    0 0 0 2px rgba(151, 213, 255, 0.35);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__orb-core::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 28%,
    rgba(255, 255, 255, 0.28),
    transparent 60%);
  pointer-events: none;
}

.hero__orb-core img {
  width: 46%;
  height: 46%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.15));
  /* logo paths become white on the sky-blue orb, matching the nav treatment */
}

/* Expanding ring pulses */
.hero__orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(151, 213, 255, 0.55);
  animation: orbPulse 5s ease-out infinite;
  pointer-events: none;
}
.hero__orb-ring--1 { inset: -22px; animation-delay: 0s; }
.hero__orb-ring--2 { inset: -50px; animation-delay: 1.66s; border-color: rgba(132, 227, 233, 0.4); }
.hero__orb-ring--3 { inset: -80px; animation-delay: 3.33s; border-color: rgba(151, 213, 255, 0.25); }

@keyframes orbPulse {
  0%   { opacity: 0.75; transform: scale(0.9); }
  100% { opacity: 0;   transform: scale(1.15); }
}

/* Floating label tags — near layer (parallax strongest) */
.hero__tag {
  position: absolute;
  padding: 10px 16px;
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--neo-raised-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: tagFloat 7s ease-in-out infinite;
  pointer-events: none;
}
.hero__tag span { font-size: 1rem; }
.hero__tag--1 { top: 8%;  left: 2%;   animation-delay: 0s; }
.hero__tag--2 { top: 44%; right: 2%;  animation-delay: 2.3s; }
.hero__tag--3 { bottom: 10%; left: 2%;  animation-delay: 4.6s; }

@keyframes tagFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { height: 320px; max-width: 360px; margin: 0 auto; }
  .hero__orb { width: 200px; height: 200px; }
  .hero__orb-ring--2 { inset: -30px; }
  .hero__orb-ring--3 { inset: -52px; }
  .hero__tag--1 { left: 2%; }
  .hero__tag--2 { right: 2%; }
  .hero__tag--3 { left: 2%; }
  .hero__blob--1 { width: 220px; height: 220px; }
}

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

  /* Hero copy — strong frosted glass so text is always legible over the image */
  .hero__copy {
    background: rgba(238, 242, 247, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), var(--neo-raised-sm);
  }
  .hero__title { font-size: clamp(1.9rem, 6.5vw, 2.8rem); white-space: normal; }
  .hero__desc { font-size: 0.95rem; margin-bottom: 28px; }
  .hero__ctas { gap: 12px; }
  .hero__ctas .btn { flex: 1; justify-content: center; text-align: center; }

  /* Tighten visual on small screens */
  .hero__visual { height: 280px; max-width: 300px; }
  .hero__orb { width: 160px; height: 160px; }
  .hero__orb-ring--1 { inset: -16px; }
  .hero__orb-ring--2 { inset: -28px; }
  .hero__orb-ring--3 { inset: -42px; }
  .hero__tag { font-size: 0.72rem; padding: 8px 12px; }
  .hero__tag span { font-size: 0.9rem; }
  .hero__tag--1 { top: 6%; left: 2%; }
  .hero__tag--2 { top: 42%; right: 2%; }
  .hero__tag--3 { bottom: 8%; left: 2%; }

  /* Seasonal tabs scroll horizontally on very small screens */
  .seasonal__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .seasonal__tabs::-webkit-scrollbar { display: none; }
  .seasonal__tab { flex-shrink: 0; min-height: 48px; padding: 12px 20px; }

  /* Community stories become 1 column */
  .stories { grid-template-columns: 1fr; }
}

/* ── Mobile ambient parallax — CSS-driven when gyro/touch unavailable ── */
@keyframes mobileParallaxFar {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -6px); }
}
@keyframes mobileParallaxNear {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(8px, 4px); }
  66% { transform: translate(-5px, 7px); }
}

/* Tilt / gyro hint badge on mobile */
.hero__tilt-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  background: rgba(255, 250, 243, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  box-shadow: var(--neo-raised-sm);
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.6s ease;
}
.hero__tilt-hint.is-fading { opacity: 0; }

/* Orb tap burst effect */
@keyframes orbBurst {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.14); }
  100% { transform: scale(1); }
}
.hero__orb.orb-tapped { animation: orbBurst 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero__orb.orb-tapped .hero__orb-ring--1 {
  animation: orbPulse 0.35s ease-out both;
}
.hero__orb.orb-tapped .hero__orb-ring--2 {
  animation: orbPulse 0.5s 0.1s ease-out both;
}
.hero__orb.orb-tapped .hero__orb-ring--3 {
  animation: orbPulse 0.65s 0.2s ease-out both;
}

/* ─────────────────────────────────────────────
   VISIT
   ───────────────────────────────────────────── */

.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.visit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--neo-raised);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.visit-card:hover { box-shadow: var(--neo-lift); transform: translateY(-3px); }
.visit-card:active { box-shadow: var(--neo-pressed); transform: translateY(0); }

.visit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(151, 213, 255, 0.22), rgba(132, 227, 233, 0.12));
  box-shadow: var(--neo-pressed);
  display: grid;
  place-items: center;
  color: #4cacd6;
  margin-bottom: 8px;
  border: 1px solid rgba(151, 213, 255, 0.2);
}
.visit-card__icon svg { width: 24px; height: 24px; }

.visit-card h3 { font-size: 1.4rem; }
.visit-card p { font-size: 0.92rem; color: var(--ink-muted); line-height: 1.65; }

.visit-card__arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.visit-card:hover .visit-card__arrow { color: var(--accent); }
.visit-card__arrow svg { width: 14px; height: 14px; transition: transform var(--transition); }
.visit-card:hover .visit-card__arrow svg { transform: translateX(4px); }

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

/* ─────────────────────────────────────────────
   DISCOVER — interactive map
   ───────────────────────────────────────────── */

.discover {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(151, 213, 255, 0.1) 50%,
    rgba(132, 227, 233, 0.08) 100%);
}

.discover__map {
  position: relative;
  height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--neo-pressed-deep);
}

.discover__map-img {
  position: absolute;
  inset: 12px;
  border-radius: var(--radius-lg);
  background-image: url('../assets/images/discover/discover-bg.webp');
  background-size: cover;
  background-position: center;
}

.discover__map-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
  border-radius: inherit;
}

.discover__pins { position: absolute; inset: 12px; pointer-events: none; }

.discover-pin {
  position: absolute;
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), background var(--transition);
}
.discover-pin:hover {
  background: var(--accent);
  transform: translate(-50%, -100%) rotate(-45deg) scale(1.1);
}
.discover-pin:hover .discover-pin__icon { color: white; }
.discover-pin.is-active {
  background: var(--accent);
}
.discover-pin.is-active .discover-pin__icon { color: white; }

.discover-pin__icon {
  transform: rotate(45deg);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: color var(--transition);
}
.discover-pin__icon svg { width: 22px; height: 22px; }

.discover-pin::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: pulse-soft 3s ease-in-out infinite;
}

/* Pin positions — coordinates relative to the map */
.discover-pin[data-id="waterfront"] { top: 55%; left: 22%; }
.discover-pin[data-id="lookout"]    { top: 30%; left: 42%; }
.discover-pin[data-id="library"]    { top: 50%; left: 38%; }
.discover-pin[data-id="cafe"]       { top: 28%; left: 64%; }
.discover-pin[data-id="gallery"]    { top: 38%; left: 82%; }
.discover-pin[data-id="bike"]       { top: 60%; left: 70%; }

/* Detail panel that slides in */
.discover__panel {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: min(380px, calc(100% - 64px));
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), var(--neo-raised-sm);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.discover__panel.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.discover__panel-img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  box-shadow: var(--neo-pressed);
}
.discover__panel h3 { font-size: 1.4rem; margin-bottom: 10px; }
.discover__panel p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.6; }
.discover__panel-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--neo-raised-sm);
  display: grid;
  place-items: center;
  color: var(--ink-muted);
  transition: color var(--transition), box-shadow var(--transition);
}
.discover__panel-close:hover { color: var(--accent); box-shadow: var(--neo-lift); }
.discover__panel-close svg { width: 14px; height: 14px; }

/* Tour label badge */
.discover__tour-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 10px 18px;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}
.discover__tour-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-soft 2s ease-in-out infinite;
}

@media (max-width: 720px) {
  .discover__map { height: 460px; }
  .discover__panel { left: 12px; right: 12px; width: auto; bottom: 12px; padding: 18px; }
  .discover__panel-img { height: 110px; }
  .discover-pin { width: 44px; height: 44px; }
  .discover-pin__icon svg { width: 18px; height: 18px; }
  .discover__tour-badge { top: 14px; right: 14px; padding: 8px 14px; font-size: 0.67rem; }
}

@media (max-width: 480px) {
  .discover__map { height: 400px; }
  .discover__panel {
    bottom: 8px; left: 8px; right: 8px;
    padding: 16px;
    max-height: 55%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .discover__panel-img { height: 90px; margin-bottom: 12px; }
  .discover__panel h3 { font-size: 1.1rem; }
  .discover__panel p { font-size: 0.82rem; }
  .discover-pin { width: 40px; height: 40px; }
  .discover-pin__icon svg { width: 16px; height: 16px; }
  .discover__tour-badge { display: none; }
}

/* ─────────────────────────────────────────────
   READING & BOOKING
   ───────────────────────────────────────────── */

.reading__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

/* Left: date + time picker */
.booking-pane { padding: 32px; }
.booking-pane h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.calendar__nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--neo-raised-sm);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: box-shadow var(--transition);
}
.calendar__nav:hover { box-shadow: var(--neo-lift); }
.calendar__nav:active { box-shadow: var(--neo-pressed); }
.calendar__nav svg { width: 14px; height: 14px; }
.calendar__title { font-family: var(--font-display); font-size: 1.15rem; }

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar__dow {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 8px 0;
  font-weight: 500;
}
.calendar__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--ink);
  background: transparent;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.calendar__day:hover:not(:disabled):not(.is-other) {
  background: var(--bg);
  box-shadow: var(--neo-raised-sm);
}
.calendar__day.is-other { color: var(--ink-soft); opacity: 0.4; pointer-events: none; }
.calendar__day:disabled { opacity: 0.3; pointer-events: none; }
.calendar__day.is-selected {
  background: var(--primary-sky);
  color: var(--ink);
  box-shadow: var(--neo-pressed), 0 0 0 1px rgba(151, 213, 255, 0.5);
  font-weight: 600;
}
.calendar__day.is-today {
  position: relative;
}
.calendar__day.is-today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.timeslots {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.timeslot {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  box-shadow: var(--neo-raised-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  transition: box-shadow var(--transition), color var(--transition);
}
.timeslot:hover { box-shadow: var(--neo-lift); }
.timeslot.is-active {
  box-shadow: var(--neo-pressed);
  color: var(--secondary-orange);
  font-weight: 600;
  border: 1px solid rgba(255, 119, 70, 0.2);
}

/* Right: seat map */
.seatmap-pane { padding: 32px; }
.seatmap-pane__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
}
.seatmap-pane__head h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.seatmap-legend {
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  color: var(--ink-muted);
}
.seatmap-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seatmap-legend i {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.seatmap-legend .l-avail { background: var(--secondary-yellow); }
.seatmap-legend .l-sel   { background: var(--accent); }
.seatmap-legend .l-occ   { background: var(--gray-4); }

.seatmap-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.68rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.seatmap {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--neo-pressed);
  padding: 24px;
}
.seatmap svg { width: 100%; height: 100%; }

.seat {
  cursor: pointer;
  transition: fill 200ms ease, transform 200ms ease;
  transform-origin: center;
  transform-box: fill-box;
}
.seat[data-state="available"] { fill: var(--secondary-yellow); }
.seat[data-state="available"]:hover { fill: #ffd147; transform: scale(1.08); }
.seat[data-state="selected"] { fill: var(--accent); }
.seat[data-state="occupied"] { fill: var(--gray-4); cursor: not-allowed; }

.booking-confirm {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--neo-raised-sm);
}
.booking-confirm__summary { font-size: 0.88rem; color: var(--ink-muted); }
.booking-confirm__summary strong { color: var(--ink); }

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

@media (max-width: 640px) {
  .booking-pane { padding: 20px 18px; }
  .seatmap-pane { padding: 20px 18px; }

  /* Calendar: bigger tap targets */
  .calendar__grid { gap: 3px; }
  .calendar__day {
    min-height: 42px;
    font-size: 0.88rem;
    border-radius: 10px;
  }
  .calendar__nav { width: 40px; height: 40px; }
  .calendar__dow { font-size: 0.68rem; padding: 6px 0; }
  .calendar__title { font-size: 1rem; }

  /* Time slots: fill width, bigger tap area */
  .timeslots { gap: 8px; }
  .timeslot {
    flex: 1 1 calc(33% - 8px);
    text-align: center;
    padding: 12px 8px;
    min-height: 48px;
    font-size: 0.9rem;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  /* Seat map: horizontally scrollable so circles are usable size */
  .seatmap-scroll-hint { display: block; }
  .seatmap-pane__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .seatmap-legend { flex-wrap: wrap; gap: 10px 16px; }
  .seatmap {
    aspect-ratio: unset;
    height: 180px;
    padding: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-4) transparent;
  }
  .seatmap:active { cursor: grabbing; }
  .seatmap svg {
    min-width: 520px;
    height: 160px;
    display: block;
  }

  /* Booking confirm: stack vertically */
  .booking-confirm {
    flex-direction: column;
    text-align: center;
    padding: 16px 18px;
    gap: 14px;
  }
  .booking-confirm .btn {
    width: 100%;
    justify-content: center;
  }

  /* Zones grid */
  .zones-grid { gap: 16px; margin-top: 48px; }
  .zone-card__img { height: 170px; }
}

/* Reading zones grid (free zones) */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.zone-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--neo-raised);
  transition: box-shadow var(--transition), transform var(--transition);
}
.zone-card:hover { box-shadow: var(--neo-lift); transform: translateY(-3px); }
.zone-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.zone-card__body { padding: 24px; }
.zone-card__body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.zone-card__body p {
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.zone-card__tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 119, 64, 0.1);
  border-radius: var(--radius-pill);
  font-weight: 600;
}

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

/* Donate book section */
.donate {
  margin-top: 60px;
  padding: 48px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(255, 194, 41, 0.06) 100%);
  border: 1px solid rgba(255, 194, 41, 0.15);
}
.donate__icon {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: var(--bg);
  box-shadow: var(--neo-pressed);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.donate__icon svg { width: 32px; height: 32px; }
.donate__copy h4 { font-size: 1.5rem; margin-bottom: 6px; }
.donate__copy p { color: var(--ink-muted); font-size: 0.92rem; }

@media (max-width: 720px) {
  .donate { grid-template-columns: 1fr; text-align: center; padding: 32px; }
  .donate__icon { margin: 0 auto; }
}

/* ─────────────────────────────────────────────
   SEASONAL ACTIVITIES
   ───────────────────────────────────────────── */

.seasonal__tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.seasonal__tab {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  box-shadow: var(--neo-raised-sm);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow var(--transition), color var(--transition);
}
.seasonal__tab:hover { color: var(--ink); }
.seasonal__tab.is-active {
  box-shadow: var(--neo-pressed);
  color: var(--secondary-orange);
  font-weight: 600;
  border: 1px solid rgba(255, 119, 70, 0.2);
}
.seasonal__tab span { font-size: 1.1rem; }

.seasonal__panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--neo-raised-lg);
  min-height: 460px;
}
.seasonal__panel-img {
  background-size: cover;
  background-position: center;
  position: relative;
}
.seasonal__panel-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,0.2));
}
.seasonal__panel-body {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.seasonal__panel-body .eyebrow { margin-bottom: 16px; }
.seasonal__panel-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.seasonal__panel-body p { color: var(--ink-muted); line-height: 1.75; font-size: 1rem; }

@media (max-width: 880px) {
  .seasonal__panel { grid-template-columns: 1fr; }
  .seasonal__panel-img { height: 280px; }
  .seasonal__panel-body { padding: 32px; }
}

/* ─────────────────────────────────────────────
   COMMUNITY
   ───────────────────────────────────────────── */

.community { background: linear-gradient(180deg, transparent 0%, rgba(132, 227, 233, 0.07) 100%); }

.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
.community-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--neo-raised);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.community-card__icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(132, 227, 233, 0.22), rgba(151, 213, 255, 0.12));
  box-shadow: var(--neo-pressed);
  display: grid;
  place-items: center;
  color: #2baaaf;
  margin-bottom: 8px;
  border: 1px solid rgba(132, 227, 233, 0.25);
}
.community-card__icon svg { width: 24px; height: 24px; }
.community-card h3 { font-size: 1.4rem; }
.community-card p { color: var(--ink-muted); font-size: 0.92rem; line-height: 1.7; }
.community-card .btn { align-self: flex-start; margin-top: 12px; }

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

/* Visitor stories */
.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--neo-raised-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.story:hover { box-shadow: var(--neo-lift); transform: translateY(-3px); }
.story__img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.story__body { padding: 20px; }
.story__body p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 12px;
}
.story__meta {
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

@media (pointer: coarse) {
  .visit-card:active  { box-shadow: var(--neo-pressed); transform: scale(0.98); }
  .zone-card:active   { box-shadow: var(--neo-pressed); transform: scale(0.98); }
  .story:active       { box-shadow: var(--neo-raised-sm); transform: scale(0.99); }
  .community-card:active { box-shadow: var(--neo-pressed); transform: scale(0.98); }
  .discover-pin:active { transform: translate(-50%, -100%) rotate(-45deg) scale(1.15); }
  .seasonal__tab:active { box-shadow: var(--neo-pressed); }
  .timeslot:active { box-shadow: var(--neo-pressed); }
  .calendar__day:active:not(:disabled):not(.is-other) { box-shadow: var(--neo-pressed); }
}
