/* ============================================================
   菓人 KICHISE — Main Stylesheet
   Design: #333132 Base / Silver / Dark Brown Accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@300;400;600&display=swap');

/* ---- Custom Properties ---- */
:root {
  --bg-primary:    #333132;
  --bg-secondary:  #2B2A2A;
  --bg-card:       #3D3B3B;
  --accent:        #BFC1C2;   /* silver */
  --accent-lt:     #CED0D1;   /* lighter silver */
  --accent-bright: #E2E3E4;   /* brightest silver */
  --brown:         #8B5A3A;   /* dark brown */
  --brown-lt:      #A46A46;   /* lighter brown */
  --text-image:    #F0EEEE;
  --text-main:     #F0EEEE;
  --text-sub:      #9C9A9A;
  --text-muted:    #5E5C5C;
  --border:        #4A4848;
  --border-lt:     #5E5B5B;

  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp:  'Noto Sans JP', sans-serif;
  --font-en:       'Cormorant Garamond', serif;

  --header-h:   72px;
  --container-w: 1100px;
  --section-py:  120px;
  --section-py-sp: 80px;
  --radius: 2px;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans-jp);
  background-color: var(--bg-primary);
  color: var(--text-image);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }

.pc-only { display: block; }
.sp-only { display: none; }

/* ---- Container ---- */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Section Head ---- */
.section-head {
  text-align: center;
  margin-bottom: 72px;
}

.section-en {
  font-family: var(--font-en);
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  color: var(--text-image);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--text-image);
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.silver-bar {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.concept-card:nth-child(2).reveal { transition-delay: 0.08s; }
.concept-card:nth-child(3).reveal { transition-delay: 0.16s; }
.concept-card:nth-child(4).reveal { transition-delay: 0.24s; }
.concept-card:nth-child(5).reveal { transition-delay: 0.32s; }


/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#header.scrolled {
  background: rgba(43, 42, 42, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
  flex-shrink: 0;
}
.logo-img {
  height: 66px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}
.logo-en {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-image);
  text-transform: uppercase;
}
.logo-jp {
  font-family: var(--font-serif-jp);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-image);
}

/* Global Nav */
.global-nav ul {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-sans-jp);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-image);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--text-image); }
.nav-link:hover::after { width: 100%; }

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.btn-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans-jp);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text-image);
  border: 1px solid var(--border-lt);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-tel:hover {
  background: var(--accent);
  color: var(--text-image);
  border-color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text-main);
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(43, 42, 42, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-overlay nav { text-align: center; }
.mobile-nav-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 52px;
}
.mobile-nav-link {
  font-family: var(--font-serif-jp);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--text-image);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--text-image); }

.mobile-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans-jp);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text-image);
  border: 1px solid var(--border-lt);
  padding: 14px 32px;
  border-radius: var(--radius);
}

body.nav-open { overflow: hidden; }


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

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  transition: opacity 0.7s ease;
}
.hero-bg.is-fading {
  opacity: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(43, 42, 42, 0.42) 0%,
    rgba(43, 42, 42, 0.60) 55%,
    rgba(43, 42, 42, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-en {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  color: var(--text-image);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: var(--text-image);
  margin-bottom: 18px;
}

.hero-sub {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  letter-spacing: 0.2em;
  color: var(--text-image);
  margin-bottom: 60px;
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-image);
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll:hover { opacity: 0.7; }

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


/* ============================================================
   CONCEPT
   ============================================================ */
.section-concept {
  position: relative;
  padding: var(--section-py) 0;
  background:
    linear-gradient(rgba(30, 28, 28, 0.86), rgba(30, 28, 28, 0.86)),
    url('img/optimized/concept-bg.webp') center / cover no-repeat;
  background-attachment: fixed;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  background: transparent;
}

.concept-card {
  background: transparent;
  padding: 18% 17%;
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.concept-card:hover { transform: translateY(-3px); }

.concept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/optimized/concept-frame.webp') center / contain no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.concept-card::after {
  content: "";
  position: absolute;
  inset: 17%;
  background: rgba(30, 28, 28, 0.28);
  clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
  pointer-events: none;
}

.concept-card > * {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 68%;
  transform: translateY(-24px);
}

.concept-num {
  font-family: var(--font-en);
  font-size: 2.35rem;
  font-weight: 300;
  color: var(--text-image);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.concept-card-title {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.07em;
  color: var(--text-image);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.concept-card-text {
  font-size: 0.8rem;
  color: var(--text-image);
  line-height: 1.85;
}


/* ============================================================
   STORY
   ============================================================ */
.section-story {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.story-img-wrap {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}
.story-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--border);
}

.story-owner-name {
  font-family: var(--font-serif-jp);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-image);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.story-text p {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--text-image);
  margin-bottom: 22px;
}

.story-qualifications {
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 24px 28px;
  background: var(--bg-card);
  border-left: 2px solid var(--brown);
}

.story-qual-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--text-image);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.story-qualifications ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.story-qualifications li {
  font-size: 0.88rem;
  color: var(--text-image);
  letter-spacing: 0.04em;
}
.story-qualifications li::before {
  content: '—';
  color: var(--text-image);
  margin-right: 10px;
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.timeline-year {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-image);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.timeline-event {
  font-size: 0.88rem;
  color: var(--text-image);
  letter-spacing: 0.04em;
  line-height: 1.7;
}


/* ============================================================
   GALLERY (auto-scroll slider)
   ============================================================ */
.section-gallery {
  padding: 80px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.gallery-slider { width: 100%; overflow: hidden; }

.gallery-track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 52s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }

.gallery-item {
  width: 340px;
  flex-shrink: 0;
  margin-right: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  filter: brightness(0.92) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-354px * 8)); }
}


/* ============================================================
   ACCESS
   ============================================================ */
.section-access {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}
.access-table th,
.access-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.85;
  vertical-align: top;
}
.access-table th {
  width: 130px;
  font-family: var(--font-serif-jp);
  font-weight: 400;
  color: var(--text-image);
  white-space: nowrap;
}
.access-table td { color: var(--text-image); }
.access-table tr:first-child th,
.access-table tr:first-child td { border-top: 1px solid var(--border); }

.access-note {
  font-size: 0.8rem;
  color: var(--text-image);
}

.access-tel {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-image);
  transition: opacity 0.3s;
}
.access-tel:hover { opacity: 0.75; }

.access-ig {
  color: var(--text-image);
  transition: opacity 0.3s;
}
.access-ig:hover { opacity: 0.75; }

.access-info-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-image);
  line-height: 1.7;
  padding-left: 14px;
  border-left: 1px solid var(--border-lt);
}

.access-map-wrap {
  height: 440px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.access-map-wrap iframe {
  filter: grayscale(55%) invert(88%) hue-rotate(180deg) brightness(0.88);
}


/* ============================================================
   BUSINESS CALENDAR
   ============================================================ */
.section-calendar {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.calendar-inner {
  max-width: 980px;
  margin: 0 auto;
}

.calendar-lead {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--text-image);
  text-align: center;
  margin-bottom: 34px;
}

.calendar-card {
  background: linear-gradient(180deg, rgba(61, 59, 59, 0.96), rgba(48, 46, 46, 0.98));
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
  padding: 22px;
}

.calendar-frame {
  width: 100%;
  height: 600px;
  border: 1px solid rgba(191, 193, 194, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-primary);
}

.calendar-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: invert(0.88) hue-rotate(180deg) saturate(0.8);
}

.calendar-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 22px;
  color: var(--text-image);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}

.calendar-legend li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.legend-closed { background: #9b6b5b; }
.legend-special { background: var(--brown-lt); }
.legend-short { background: var(--accent); }


/* ============================================================
   RECRUIT
   ============================================================ */
.section-recruit {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.recruit-inner {
  text-align: center;
}

.recruit-lead {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-image);
  line-height: 2.1;
  margin-bottom: 44px;
  letter-spacing: 0.05em;
}

.btn-recruit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans-jp);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text-image);
  border: 1px solid var(--border-lt);
  padding: 16px 44px;
  border-radius: var(--radius);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-recruit:hover {
  background: var(--accent);
  color: var(--text-image);
  border-color: var(--accent);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #222021;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  margin-bottom: 10px;
}
.footer-logo-en {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--text-image);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-logo-jp {
  font-family: var(--font-serif-jp);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--text-image);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
}
.footer-nav a {
  font-size: 0.83rem;
  color: var(--text-image);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--text-image); }

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--text-image);
  transition: opacity 0.3s;
}
.footer-tel:hover { opacity: 0.75; }

.footer-address,
.footer-hours {
  font-size: 0.8rem;
  color: var(--text-image);
  line-height: 1.8;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-image);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  width: 100%;
  text-align: center;
}


/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 96px; }

  .global-nav { display: none; }
  .hamburger  { display: flex; }
  .tel-num    { display: none; }
  .btn-tel    { padding: 8px 14px; }

  .concept-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .concept-card { min-height: 360px; padding: 17% 16%; }
  .concept-card > * { max-width: 74%; transform: translateY(-18px); }
  .concept-num { font-size: 2.1rem; margin-bottom: 12px; }
  .concept-card-title { font-size: 0.94rem; line-height: 1.55; margin-bottom: 12px; padding-bottom: 12px; }
  .concept-card-text { font-size: 0.76rem; line-height: 1.75; }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-img-wrap { position: static; }
  .story-img { aspect-ratio: 16 / 9; }

  .access-grid { grid-template-columns: 1fr; }
  .access-map-wrap { height: 320px; }

  .container { padding: 0 32px; }
}


/* ============================================================
   RESPONSIVE — Mobile (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --section-py: var(--section-py-sp);
    --header-h: 60px;
  }

  .pc-only { display: none; }
  .sp-only { display: block; }

  .header-inner { padding: 0 20px; }
  .logo-img { height: 40px; }
  .logo-jp { font-size: 1rem; }
  .logo-en { font-size: 0.6rem; }

  .hero-title { font-size: 1.7rem; }
  .hero-sub   { font-size: 0.85rem; letter-spacing: 0.12em; }
  .hero-en    { font-size: 0.72rem; letter-spacing: 0.28em; margin-bottom: 16px; }
  .hero-bg {
    object-fit: cover;
    object-position: 78% top;
  }

  .section-title  { font-size: 1.45rem; }
  .section-head   { margin-bottom: 48px; }

  .section-story,
  .section-gallery,
  .section-access,
  .section-calendar,
  .section-recruit {
    content-visibility: auto;
    contain-intrinsic-size: 820px;
  }

  .section-concept { background-attachment: scroll; }
  .concept-grid { grid-template-columns: 1fr; background: transparent; gap: 22px; }
  .concept-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 20% 17%;
  }
  .concept-card > * { max-width: 76%; transform: translateY(-14px); }
  .concept-num { font-size: 2rem; margin-bottom: 12px; }
  .concept-card-title { font-size: 0.95rem; line-height: 1.55; margin-bottom: 12px; padding-bottom: 12px; }
  .concept-card-text { font-size: 0.76rem; line-height: 1.75; }

  .gallery-item { width: 270px; }
  .gallery-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-slider::-webkit-scrollbar {
    display: none;
  }
  .gallery-track {
    animation: none;
  }

  .story-img { aspect-ratio: 4 / 3; }

  .access-table th { width: 100px; font-size: 0.82rem; }
  .access-table td { font-size: 0.82rem; }
  .access-table th,
  .access-table td { padding: 14px 10px; }
  .access-map-wrap { height: 260px; }
  .calendar-lead {
    text-align: left;
    font-size: 0.9rem;
  }
  .calendar-card {
    padding: 12px;
    border-radius: 10px;
  }
  .calendar-frame {
    height: 460px;
    border-radius: 8px;
  }
  .calendar-legend {
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 0.8rem;
    padding: 18px 4px 2px;
  }

  .container { padding: 0 20px; }

  .footer-nav ul { gap: 10px 24px; }
  .footer-hours  { display: none; }
}


/* ============================================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 1.45rem; }
  .btn-recruit { font-size: 0.82rem; padding: 14px 28px; }
  .calendar-frame { height: 400px; }
}

/* ============================================================
   FIXED INSTAGRAM BUTTON
   ============================================================ */
.fixed-instagram-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 132px;
  height: 99px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 100;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.fixed-instagram-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: max-content;
  max-width: 240px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(20, 18, 16, 0.9);
  color: var(--text-image);
  font-size: 0.82rem;
  line-height: 1.4;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.fixed-instagram-btn:hover::before,
.fixed-instagram-btn:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.fixed-instagram-btn:hover {
  transform: scale(1.1);
}

.instagram-icon {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .fixed-instagram-btn {
    width: 112px;
    height: 84px;
    bottom: 25px;
    right: 25px;
  }
}

@media (max-width: 480px) {
  .fixed-instagram-btn {
    width: 96px;
    height: 72px;
    bottom: 20px;
    right: 20px;
  }
}
