/* =============================================
   FAM STIL — JAPAN 2026
   Liquid Glass Design System
   ============================================= */

:root {
  --sakura-light:   #FFF0F5;
  --sakura-mid:     #FFD6E7;
  --sakura-pink:    #F4A7C3;
  --red:            #B91C3C;
  --red-glow:       rgba(185, 28, 60, 0.25);
  --gold:           #C9A84C;
  --gold-light:     #F0CC7A;
  --ink:            #1A0A12;
  --ink-mid:        #3D1A28;

  --glass-fill:         rgba(255, 255, 255, 0.25);
  --glass-fill-mid:     rgba(255, 255, 255, 0.40);
  --glass-fill-strong:  rgba(255, 255, 255, 0.60);
  --glass-border:       rgba(255, 255, 255, 0.68);
  --glass-border-sub:   rgba(255, 255, 255, 0.35);
  --glass-shadow:       rgba(185, 28, 60, 0.09);
  --glass-blur:         blur(28px) saturate(180%);
  --glass-blur-sm:      blur(16px) saturate(160%);

  --text-dark:  #1A0A12;
  --text-mid:   #5C3048;
  --text-light: #8B5A72;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* ── GLOBAL SAKURA GRADIENT BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 130% 90% at 10%  -5%,  #FFE8F3 0%, transparent 52%),
    radial-gradient(ellipse 80%  60% at 90%  15%,  #FFD0E6 0%, transparent 48%),
    radial-gradient(ellipse 110% 70% at 40% 110%,  #FFEAF5 0%, transparent 55%),
    radial-gradient(ellipse 60%  50% at 70%  60%,  #FFF0F8 0%, transparent 45%),
    linear-gradient(160deg, #FFF5F9 0%, #FFE6F2 50%, #FFF2F8 100%);
}

/* ── FLOATING PETALS ── */
.petal {
  position: fixed;
  z-index: -1;
  border-radius: 50% 0 50% 0;
  opacity: 0;
  pointer-events: none;
  animation: petalFall linear infinite;
}

@keyframes petalFall {
  0%   { opacity: 0; transform: translateY(-30px) rotate(0deg) translateX(0); }
  8%   { opacity: 0.7; }
  50%  { transform: translateY(50vh) rotate(280deg) translateX(30px); }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(105vh) rotate(580deg) translateX(-20px); }
}

/* =============================================
   PASSWORD SCREEN
   ============================================= */
#password-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 150% 100% at 15% -10%, #FFD6E7 0%, transparent 50%),
    radial-gradient(ellipse 100% 80%  at 85% 110%, #FFB8D4 0%, transparent 50%),
    linear-gradient(155deg, #FFF5F9 0%, #FFD8EC 60%, #FFF0F8 100%);
}

/* Decorative blur blobs */
#password-screen .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.pw-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 48px 52px;
  max-width: 400px;
  width: 90%;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(48px) saturate(200%);
  -webkit-backdrop-filter: blur(48px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.80);
  box-shadow:
    0 40px 100px rgba(185, 28, 60, 0.12),
    0  2px  0   rgba(255, 255, 255, 0.90) inset,
    0 -1px  0   rgba(255, 255, 255, 0.40) inset;
}

.pw-kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: 96px;
  color: rgba(185, 28, 60, 0.10);
  line-height: 1;
  margin-bottom: -8px;
}

.pw-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 5vw, 36px);
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 7px;
  margin-bottom: 6px;
}

.pw-subtitle {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 42px;
}

.pw-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 2px 8px rgba(185, 28, 60, 0.05);
}

.pw-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 22px;
  color: var(--ink);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  letter-spacing: 2px;
  min-height: 52px;
}

.pw-form input::placeholder { color: rgba(90, 30, 50, 0.32); }

.pw-form button {
  background: var(--red);
  border: none;
  width: 52px;
  font-size: 18px;
  cursor: pointer;
  color: white;
  transition: background 0.2s var(--ease);
  flex-shrink: 0;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
}

.pw-form button:hover { background: #9B1530; }

.pw-error {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  height: 16px;
}

.pw-error.show { opacity: 1; }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  animation: heroZoom 22s ease-out forwards;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 220, 235, 0.12) 0%,
    rgba(185, 28,  60, 0.18)  45%,
    rgba(26,  10,  18, 0.68)  100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 30px 40px;
  animation: heroFade 1.6s var(--ease) forwards;
}

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

.hero-kanji-big {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(80px, 17vw, 170px);
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: -24px;
  letter-spacing: -6px;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 6.5vw, 76px);
  font-weight: 300;
  letter-spacing: 10px;
  line-height: 1.25;
  margin-bottom: 18px;
  text-shadow: 0 4px 32px rgba(185, 28, 60, 0.35);
}

.hero-title span {
  display: block;
  font-size: clamp(14px, 2.2vw, 30px);
  letter-spacing: 16px;
  color: var(--gold-light);
  font-weight: 300;
  margin-top: 6px;
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-style: italic;
}

.hero-sub {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 38px;
}

.hero-glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 26px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 40px;
}

.hero-glass-pill strong { color: var(--gold-light); font-weight: 500; }

.hero-scroll {
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.32);
  animation: bounce 2.5s ease-in-out infinite;
}

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

/* =============================================
   OVERVIEW / TIMELINE
   ============================================= */
#overview { padding: 88px 20px; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

.section-eyebrow {
  font-size: 9px;
  letter-spacing: 6px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4.5vw, 50px);
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.15;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 22px;
  border-radius: var(--radius-xl);
  background: var(--glass-fill);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px var(--glass-shadow),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.90);
}

.tl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.tl-item:hover {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 16px var(--glass-shadow);
  transform: translateY(-2px);
}

.tl-dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px; color: var(--red);
  flex-shrink: 0;
}

.tl-dot.star {
  background: var(--red);
  border-color: rgba(255,255,255,0.4);
  color: white; font-size: 15px;
  box-shadow: 0 4px 16px var(--red-glow);
}

.tl-info { display: flex; flex-direction: column; }
.tl-nights { font-size: 9px; color: var(--red); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.tl-city   { font-family: 'Noto Serif JP', serif; font-size: 16px; color: var(--ink); line-height: 1.15; }
.tl-sub    { font-size: 10px; color: var(--text-light); }

.tl-line {
  width: 22px; height: 1px;
  background: linear-gradient(90deg, rgba(185,28,60,0.22) 0%, transparent 100%);
  flex-shrink: 0;
}

/* =============================================
   TIPS TICKER
   ============================================= */
.tips-banner {
  overflow: hidden;
  padding: 13px 0;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.65);
}

.tips-scroll {
  display: flex;
  gap: 60px;
  animation: scrollLeft 35s linear infinite;
  white-space: nowrap;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tips-scroll span { font-size: 12px; color: var(--text-mid); flex-shrink: 0; }

/* =============================================
   DESTINATION SECTIONS
   ============================================= */
.destination { padding-bottom: 80px; }

.dest-header {
  position: relative;
  height: 56vh; min-height: 350px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.dest-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,220,235,0.05) 0%, rgba(26,10,18,0.62) 100%);
}

.dest-header-content { position: relative; padding: 44px 60px; color: white; }

.dest-kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: 68px; color: rgba(255,255,255,0.10);
  line-height: 1; margin-bottom: -6px;
}

.dest-header-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 300; letter-spacing: 7px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.dest-meta {
  font-size: 10px; letter-spacing: 4px;
  color: var(--gold-light); text-transform: uppercase;
  margin-top: 8px; font-weight: 400;
}

.dest-intro { padding: 42px 0 6px; }
.dest-intro p {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; line-height: 1.80;
  color: var(--text-mid); max-width: 620px; font-weight: 300;
}

/* =============================================
   MAP
   ============================================= */
.map-container {
  margin: 30px 0 42px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.8);
}

.leaflet-map { height: 350px; width: 100%; }

/* =============================================
   SECTION TITLES
   ============================================= */
.cat-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 21px; font-weight: 400;
  color: var(--ink);
  margin: 48px 0 22px;
  display: flex; align-items: center; gap: 12px;
}

.cat-title::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(185,28,60,0.20) 0%, transparent 100%);
}

.star-badge { color: var(--red); font-size: 13px; }

/* =============================================
   CARDS — LIQUID GLASS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 18px; margin-bottom: 6px;
}

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: var(--glass-fill);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 4px 20px var(--glass-shadow),
    inset 0 1.5px 0 rgba(255,255,255,0.90),
    inset 0 -1px 0 rgba(255,255,255,0.35);
  opacity: 0;
  animation: cardReveal 0.6s var(--ease) forwards;
  animation-play-state: paused;
  -webkit-tap-highlight-color: transparent;
}

.card:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow:
    0 24px 56px rgba(185, 28, 60, 0.14),
    0 0 0 1px rgba(255,255,255,0.55),
    inset 0 1.5px 0 rgba(255,255,255,0.95);
}

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

.highlight-card {
  border-top: 2.5px solid var(--red);
}

.card-img {
  height: 172px;
  background-size: cover; background-position: center;
  position: relative;
}

.card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,235,245,0.06) 0%, rgba(26,10,18,0.18) 100%);
}

.card-body { padding: 15px 17px 19px; }

.card-tag {
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red);
  font-weight: 600; display: block; margin-bottom: 5px;
}

.card-body h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 7px; color: var(--ink); line-height: 1.25;
}

.card-body p { font-size: 13px; line-height: 1.70; color: var(--text-mid); }

.card-badge {
  display: inline-flex; align-items: center;
  gap: 4px;
  background: rgba(185, 28, 60, 0.08);
  border: 1px solid rgba(185, 28, 60, 0.18);
  color: var(--red); font-size: 9px;
  padding: 4px 10px; border-radius: 50px;
  margin-top: 10px; font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

/* =============================================
   NEIGHBORHOOD TABS
   ============================================= */
.neighborhood-tabs {
  display: flex; gap: 4px;
  margin: 34px 0 20px;
  padding: 5px;
  border-radius: 50px;
  background: var(--glass-fill);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.85);
  width: fit-content;
  flex-wrap: wrap;
}

.nb-tab {
  background: none; border: none;
  padding: 9px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500;
  cursor: pointer; color: var(--text-light);
  border-radius: 50px;
  transition: all 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}

.nb-tab.active {
  background: rgba(255, 255, 255, 0.78);
  color: var(--red);
  box-shadow: 0 4px 16px var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.95);
}

.nb-tab:hover:not(.active) { background: rgba(255,255,255,0.42); color: var(--text-mid); }

.nb-content { display: none; }
.nb-content.active { display: block; }

/* =============================================
   ROUTE NOTE & TIP BOX
   ============================================= */
.route-note {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 20px; margin: 18px 0 30px;
  border-radius: var(--radius-sm);
  background: var(--glass-fill-mid);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--gold);
  font-size: 13px; color: var(--text-mid); line-height: 1.6;
}

.route-note strong { color: var(--ink); font-weight: 600; }

.tip-box {
  padding: 26px 30px; margin: 30px 0;
  border-radius: var(--radius-md);
  background: var(--glass-fill-mid);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 28px var(--glass-shadow), inset 0 1.5px 0 rgba(255,255,255,0.90);
}

.tip-box h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; color: var(--ink);
  margin-bottom: 14px;
}

.tip-box ul { list-style: none; }
.tip-box ul li {
  font-size: 14px; padding: 7px 0 7px 22px;
  color: var(--text-mid);
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.55);
}
.tip-box ul li:last-child { border-bottom: none; }
.tip-box ul li::before { content: '→'; position: absolute; left: 0; color: var(--red); }

/* =============================================
   MODAL
   ============================================= */
#modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,10,18,0.30);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  z-index: 1000;
  align-items: center; justify-content: center;
}

#modal-overlay.open { display: flex; }

#modal-box {
  background: rgba(255, 248, 252, 0.88);
  backdrop-filter: blur(48px) saturate(220%);
  -webkit-backdrop-filter: blur(48px) saturate(220%);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow:
    0 48px 120px rgba(26,10,18,0.22),
    inset 0 2px 0 rgba(255,255,255,0.96),
    inset 0 -1px 0 rgba(255,255,255,0.55);
  max-width: 570px; width: 92%;
  max-height: 82vh; overflow-y: auto;
  border-radius: var(--radius-xl);
  position: relative;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  font-size: 13px; cursor: pointer;
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease); z-index: 10;
  backdrop-filter: blur(8px);
}

.modal-close:hover { background: rgba(185,28,60,0.10); color: var(--red); }

#modal-content { padding: 38px 34px; }

#modal-content .modal-tag {
  font-size: 9px; letter-spacing: 3px; color: var(--red);
  text-transform: uppercase; font-weight: 600;
  display: block; margin-bottom: 9px;
}

#modal-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px; margin-bottom: 18px;
  line-height: 1.25; color: var(--ink);
}

#modal-content .modal-img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius-sm); margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.65);
}

#modal-content p { font-size: 14px; line-height: 1.80; color: var(--text-mid); margin-bottom: 12px; }

#modal-content .modal-info {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(185,28,60,0.08);
}

#modal-content .modal-info-row {
  display: flex; gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.65);
  font-size: 13px;
}

#modal-content .modal-info-row:last-child { border-bottom: none; }
#modal-content .modal-info-row strong { min-width: 105px; color: var(--ink); font-weight: 500; }
#modal-content .modal-info-row span   { color: var(--text-mid); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  padding: 65px 20px 48px;
  text-align: center; position: relative; overflow: hidden;
}

footer::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.70);
}

.footer-content { position: relative; }

.footer-kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: 38px; color: rgba(185,28,60,0.12);
  letter-spacing: 12px; margin-bottom: 12px;
}

footer p { color: var(--text-light); font-size: 11px; letter-spacing: 3px; margin-bottom: 8px; }

.footer-tip {
  color: var(--red) !important;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px !important;
  font-weight: 300; letter-spacing: 1px !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .dest-header-content { padding: 28px 24px; }
  .dest-kanji { font-size: 48px; }
  .dest-header-content h2 { letter-spacing: 4px; }
  .cards-grid { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: flex-start; }
  .tl-line  { width: 2px; height: 14px; margin-left: 41px; }
  .hero-title { letter-spacing: 5px; }
  #modal-content { padding: 28px 20px; }
  .neighborhood-tabs { border-radius: var(--radius-md); }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (pointer: coarse) {
  .modal-close { width: 44px; height: 44px; top: 12px; right: 12px; }
}

@media (display-mode: standalone) {
  #hero { padding-top: env(safe-area-inset-top); }
}
