/* =========================================================
   VRC Morning Café — plain HTML/CSS/JS edition
   Direction: 朝カフェ × クラフト × 丸ゴシック × 手書き
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&family=M+PLUS+Rounded+1c:wght@400;500;700;800&family=Yomogi&family=Caveat:wght@500;700&family=DM+Serif+Display&display=swap');

:root {
  --orange:        #EF8128;
  --orange-deep:   #C9531A;
  --orange-bright: #FFB266;
  --orange-soft:   #FBE2C7;
  --orange-tint:   #FFF1E0;

  --cream:    #FAF2E2;
  --paper:    #F3E6CC;
  --latte:    #E0C49A;
  --mocha:    #8A6845;
  --espresso: #3D2A1C;
  --ink:      #221610;

  --leaf:    #8FA46B;
  --berry:   #B94A4A;

  --f-display: "Zen Maru Gothic", "M PLUS Rounded 1c", system-ui, sans-serif;
  --f-body:    "Zen Maru Gothic", "M PLUS Rounded 1c", system-ui, sans-serif;
  --f-hand-ja: "Yomogi", "Zen Maru Gothic", cursive;
  --f-hand-en: "Caveat", cursive;
  --f-serif:   "DM Serif Display", "Zen Old Mincho", serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.accent { color: var(--orange-deep); }
.hand-ja { font-family: var(--f-hand-ja); font-weight: 400; }
.hand-en { font-family: var(--f-hand-en); font-weight: 700; }
.tag-green { color: #2a9a4a; font-weight: 700; }

/* ---------- paper textures ---------- */
.paper-bg {
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(102, 70, 36, 0.08) 1px, transparent 1.2px),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(239, 129, 40, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 100%, rgba(255, 178, 102, 0.10), transparent 70%);
  background-size: 5px 5px, 100% 100%, 100% 100%;
}
.paper-bg-soft {
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(102, 70, 36, 0.06) 1px, transparent 1.2px),
    linear-gradient(180deg, #FFF7E8 0%, var(--cream) 100%);
  background-size: 5px 5px, 100% 100%;
}
.paper-bg-warm {
  background-color: var(--orange-tint);
  background-image:
    radial-gradient(rgba(201, 83, 26, 0.07) 1px, transparent 1.2px),
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(255, 178, 102, 0.35), transparent 70%);
  background-size: 5px 5px, 100% 100%;
}

/* ---------- tape ---------- */
.tape {
  position: absolute;
  background: rgba(239, 129, 40, 0.45);
  border-left: 1px dashed rgba(255,255,255,0.4);
  border-right: 1px dashed rgba(255,255,255,0.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 rgba(0,0,0,0.05) inset,
    0 2px 6px rgba(108, 60, 20, 0.18);
  width: 130px;
  height: 28px;
  z-index: 1;
}
.tape--cream  { background: rgba(224, 196, 154, 0.6); }
.tape--orange { background: rgba(239, 129, 40, 0.5); }
.tape--paper  { background: rgba(250, 242, 226, 0.85); border: 1px dashed rgba(138, 104, 69, 0.35); }

/* ---------- stamp ---------- */
.stamp {
  display: inline-block;
  font-family: var(--f-hand-en);
  font-weight: 700;
  color: var(--orange-deep);
  border: 2px solid currentColor;
  padding: 4px 14px 6px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  font-size: 18px;
  transform: rotate(-4deg);
  background: rgba(255, 241, 224, 0.55);
}

/* ---------- button ---------- */
.mc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: var(--orange);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow:
    0 4px 0 var(--orange-deep),
    0 8px 20px rgba(201, 83, 26, 0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.mc-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange-deep), 0 12px 24px rgba(201, 83, 26, 0.32); }
.mc-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--orange-deep), 0 3px 6px rgba(201, 83, 26, 0.28); }
.mc-btn .arrow { transition: transform .2s ease; }
.mc-btn:hover .arrow { transform: translateX(4px); }

/* ---------- bean svg ---------- */
.bean { position: absolute; z-index: 1; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* rotate 系のカードは translateY だけリセット（rotate は維持） */
.stat-card.revealed,
.atm-card.revealed {
  opacity: 1;
  transform: translateY(0) rotate(var(--card-rotate, 0deg));
}

/* =========================================================
   HERO ENTRANCE ANIMATION
   ========================================================= */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.hero-anim--1 { transition-delay: 0.05s; }
.hero-anim--2 { transition-delay: 0.20s; }
.hero-anim--3 { transition-delay: 0.38s; }
.hero-anim--4 { transition-delay: 0.54s; }

.hero.hero-loaded .hero-anim {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HEADER SCROLL EFFECT
   ========================================================= */
.site-header {
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(250, 242, 226, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(108, 60, 20, 0.12);
}

/* ---------- hand-drawn dashed border ---------- */
.hand-border {
  border: 2.5px dashed var(--mocha);
  border-radius: 14px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 48px;
  z-index: 5;
}
.site-brand {
  display: flex; align-items: center; gap: 10px;
}
.brand-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange);
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 700; font-size: 16px;
  color: var(--espresso);
}
.header-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-family: var(--f-display);
  font-size: 15px; font-weight: 500;
  color: var(--espresso);
  cursor: pointer;
}
.site-nav a:hover { color: var(--orange-deep); }
.lang-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--mocha);
  background: transparent;
  font-family: var(--f-display);
  font-weight: 700; font-size: 13px;
  color: var(--espresso);
  cursor: pointer;
}
.lang-toggle:hover { background: rgba(255,255,255,0.4); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 820px;
  overflow: hidden;
}
.hero-stamp {
  position: absolute;
  top: 130px; left: 0; right: 0;
  text-align: center;
  z-index: 2;
}
/* transform はアニメーション用（translateY）のみ使うため、
   水平中央は left:0/right:0 + text-align:center で実現 */
.hero-logo {
  position: absolute;
  top: 50%; left: 0; right: 0;
  margin-top: -190px; /* ロゴ高さ(360px)の約52% */
  text-align: center;
  z-index: 2;
}
.hero-logo img {
  display: inline-block;
  width: 360px;
  height: auto;
  max-width: 72vw;
}
.hero-catch {
  position: absolute;
  bottom: 148px; left: 0; right: 0;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--espresso);
  letter-spacing: 0.04em;
  white-space: nowrap;
  z-index: 2;
}
.hero-bottom {
  position: absolute;
  bottom: 52px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  padding: 0 20px;
  z-index: 2;
}
.schedule-badge {
  border-color: var(--orange) !important;
  background: rgba(255,255,255,0.55);
  padding: 14px 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--espresso);
  transform: rotate(-2deg);
}
.schedule-icon { width: 36px; height: 36px; object-fit: contain; display: block; }
.schedule-text {
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.schedule-en {
  font-family: var(--f-hand-en);
  color: var(--orange-deep);
  font-size: 16px;
}
.schedule-time {
  font-family: var(--f-display);
  font-weight: 700; font-size: 22px;
}

/* =========================================================
   SECTION wrapper
   ========================================================= */
.section {
  padding: 96px 0;
  position: relative;
}
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-eyebrow {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--f-hand-en);
  font-size: 22px;
  color: var(--orange-deep);
  margin-bottom: 8px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px; background: var(--orange);
  display: inline-block; border-radius: 2px;
  align-self: center;
}
.section-eyebrow.center { justify-content: center; }
.section-title {
  font-size: 44px;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--mocha);
  max-width: 60ch;
}
.section-desc.center { margin-left: auto; margin-right: auto; }
.section-header-center { text-align: center; margin-bottom: 40px; }

/* =========================================================
   ABOUT
   ========================================================= */
#about { padding-top: 120px; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-lead {
  font-size: 19px;
  color: var(--espresso);
  margin-top: 16px;
  margin-bottom: 12px;
  font-weight: 500;
}
.about-body {
  font-size: 16px;
  color: var(--mocha);
  line-height: 1.85;
  max-width: 44ch;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-card {
  background: #fff;
  padding: 20px 16px;
  border-radius: 14px;
  text-align: center;
  border-color: var(--latte) !important;
}
.stat-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--orange-deep);
  line-height: 1;
}
.stat-num small {
  font-size: 16px; margin-left: 2px;
  color: var(--mocha);
}
.stat-desc {
  font-family: var(--f-hand-en);
  font-size: 18px;
  color: var(--mocha);
  margin-top: 6px;
}

.about-visual {
  position: relative;
  height: 640px;
}
.about-visual .photo-frame { position: absolute; }
.about-visual .photo-main { top: 0; left: 0; width: 460px; z-index: 1; }
.about-visual .photo-main img { height: auto; }
/* photo-sub は photo-main のキャプションの下に配置し、重なりを回避 */
.about-visual .photo-sub { top: 360px; right: 0; bottom: auto; width: 240px; z-index: 2; }
.about-visual .photo-sub img { height: 170px; }

.sticker {
  width: 110px; height: 110px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: var(--f-display);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow:
    0 4px 12px rgba(201, 83, 26, 0.3),
    0 0 0 4px #fff,
    0 0 0 5px var(--orange);
}
.since-sticker { position: absolute; top: -10px; right: 30px; z-index: 10; }
.sticker-since { font-size: 20px; }
.sticker-year { font-family: var(--f-display); font-size: 26px; font-weight: 900; }

/* ---------- photo frame (polaroid) ---------- */
.photo-frame {
  background: #fff;
  padding: 12px 12px 16px;
  box-shadow:
    0 8px 24px rgba(60, 40, 20, 0.18),
    0 0 0 1px rgba(138, 104, 69, 0.18);
  border-radius: 6px;
  display: inline-block;
}
.photo-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  background: var(--paper);
}
.photo-caption {
  color: var(--mocha);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  padding-bottom: 2px;
}

/* =========================================================
   ATMOSPHERE
   ========================================================= */
.scene-frame {
  display: block;
  margin: 0 auto 64px;
  max-width: 920px;
  width: 100%;
}
.scene-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.atm-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.atm-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow:
    0 12px 32px rgba(108, 60, 20, 0.10),
    0 0 0 1px var(--paper);
  position: relative;
}
.atm-card-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.atm-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.atm-icon-img {
  width: 32px; height: 32px; object-fit: contain; display: block;
}
.atm-compact-icon .atm-icon-img {
  width: 36px; height: 36px;
}
.atm-card h3 { font-size: 24px; }
.atm-card-body {
  color: var(--mocha);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.atm-card-photo {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.atm-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.atm-card:hover .atm-card-photo img { transform: scale(1.04); }
.atm-card-note {
  font-family: var(--f-hand-ja);
  font-size: 14px;
  color: var(--orange-deep);
  margin-top: 12px;
  line-height: 1.6;
}

.atm-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.atm-compact {
  background: rgba(255,255,255,0.6);
  border: 2px dashed var(--latte);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.atm-compact-icon { font-size: 28px; line-height: 1; display: flex; align-items: center; }
.atm-compact h3 { font-size: 19px; margin-bottom: 4px; }
.atm-compact p { color: var(--mocha); font-size: 15px; }

.atm-notice {
  text-align: center;
  margin-top: 40px;
  font-family: var(--f-hand-ja);
  font-size: 15px;
  color: var(--orange-deep);
}

/* =========================================================
   HOW TO
   ========================================================= */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 32px auto 0;
  padding: 0;
  max-width: 680px;
}
.step-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 32px 28px 136px;
  box-shadow:
    0 12px 28px rgba(108, 60, 20, 0.10),
    0 0 0 1px var(--paper);
  position: relative;
}
.step-num {
  position: absolute;
  top: 50%; left: 20px;
  transform: translateY(-50%);
  font-family: var(--f-hand-en);
  font-weight: 700;
  font-size: 72px;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 4px 0 rgba(255,255,255,0.8);
}
.step-card h3 { font-size: 20px; margin-top: 0; margin-bottom: 8px; }
.step-card p { color: var(--mocha); font-size: 15px; line-height: 1.7; }
.step-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--f-display);
  font-weight: 700; font-size: 14px;
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =========================================================
   HISTORY
   ========================================================= */
.timeline {
  position: relative;
  padding-left: 68px;
}
/* 線はJSで top/bottom を計算してセット */
.timeline-line {
  position: absolute;
  left: 28px;   /* ドット中央(14px + 14px半径) と一致 */
  border-left: 3px dashed var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.timeline-line.ready { opacity: 1; }
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }
/* ドットをカード縦中央に配置 */
.timeline-dot {
  position: absolute;
  left: -54px;   /* 68px padding - 14px(左余白) = 54px。中央: 68-54+14=28px */
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange-deep);
  /* 非アクティブ：薄いグロー */
  box-shadow:
    0 0 0 4px rgba(239, 129, 40, 0.15),
    0 0 10px rgba(239, 129, 40, 0.2);
}
/* アクティブ（現在）：ランプ点灯エフェクト */
.timeline-dot--active {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow:
    0 0 0 5px rgba(239, 129, 40, 0.25),
    0 0 14px rgba(239, 129, 40, 0.85),
    0 0 30px rgba(239, 129, 40, 0.45),
    0 0 50px rgba(239, 129, 40, 0.2);
  animation: lamp-pulse 2.4s ease-in-out infinite;
}
@keyframes lamp-pulse {
  0%, 100% { box-shadow:
    0 0 0 5px rgba(239, 129, 40, 0.25),
    0 0 14px rgba(239, 129, 40, 0.85),
    0 0 30px rgba(239, 129, 40, 0.45),
    0 0 50px rgba(239, 129, 40, 0.2); }
  50% { box-shadow:
    0 0 0 7px rgba(239, 129, 40, 0.35),
    0 0 22px rgba(239, 129, 40, 1),
    0 0 44px rgba(239, 129, 40, 0.6),
    0 0 70px rgba(239, 129, 40, 0.3); }
}
.timeline-card {
  background: #fff;
  padding: 24px 28px;
  border-radius: 18px;
  box-shadow:
    0 8px 24px rgba(108, 60, 20, 0.08),
    0 0 0 1px var(--paper);
}
.timeline-year {
  font-family: var(--f-hand-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--orange-deep);
}
.timeline-card h3 { font-size: 22px; margin-top: 4px; margin-bottom: 10px; }
.timeline-card p { color: var(--mocha); font-size: 15px; line-height: 1.8; }

/* =========================================================
   MORE
   ========================================================= */
.more-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.more-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow:
    0 8px 24px rgba(108, 60, 20, 0.08),
    0 0 0 1px var(--paper);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
  color: var(--espresso);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.more-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 32px rgba(108, 60, 20, 0.12),
    0 0 0 1px var(--paper);
}
.more-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--hue-tint, var(--orange-tint));
  color: var(--hue, var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
}
.more-icon-img {
  width: 32px; height: 32px; object-fit: contain; display: block;
}
.more-card h3 { font-size: 20px; }
.more-card p {
  color: var(--mocha);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}
.more-url {
  font-family: var(--f-hand-en);
  font-size: 18px;
  color: var(--hue, var(--orange));
  font-weight: 700;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 60px 0 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 18px;
}
.footer-logo-box {
  background: transparent;
}
.footer-logo-box img { width: 110px; height: auto; }
.footer-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange-bright);
}
.footer-host {
  font-size: 13px;
  color: rgba(250, 242, 226, 0.7);
  margin-top: 4px;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(250, 242, 226, 0.55);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .site-nav { display: none; }
  .section-title { font-size: 34px; }
  .hero-logo img { width: 320px; }
  .hero-catch { font-size: 24px; bottom: 200px; }
  .hero-stamp { top: 100px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-visual { height: 560px; }
  .about-visual .photo-main { width: 360px; }
  .about-visual .photo-main img { height: auto; }
  .about-visual .photo-sub { top: 310px; width: 200px; }
  .about-visual .photo-sub img { height: 150px; }

  .atm-cards-grid,
  .atm-compact-grid { grid-template-columns: 1fr; }
  .scene-frame img { height: 280px; }

  .steps-grid { max-width: 100%; }

  .more-grid .more-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 640px) {
  .site-header { padding: 16px 20px; }
  .section { padding: 64px 0; }
  .section-inner { padding: 0 20px; }
  .section-title { font-size: 28px; }
  .section-eyebrow { font-size: 18px; }

  .hero { height: 720px; }
  .hero-logo img { width: 260px; }
  .hero-catch { font-size: 20px; bottom: 220px; }
  .hero-bottom { gap: 16px; }
  .schedule-time { font-size: 18px; }
  .mc-btn { padding: 14px 22px; font-size: 15px; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { transform: none !important; }

  .about-visual { height: auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
  .about-visual .photo-frame { position: relative; transform: none !important; top: auto; left: auto; right: auto; bottom: auto; width: 100%; max-width: 360px; }
  .about-visual .photo-main img,
  .about-visual .photo-sub img { height: 220px; }
  .since-sticker { display: none; }

  .scene-frame img { height: 220px; }

  .more-grid .more-card { flex: 0 0 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
}
