/* ========================================
   KONOSAKU - Complete Style Sheet
   ======================================== */

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --gold: #A08C5B;
  --gold-light: #B8A676;
  --gold-dark: #8A7648;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --brown-dark: #2C2417;
  --brown-text: #4A3F2F;
  --brown-light: #6B5D4D;
  --white: #FFFFFF;
  --font-serif: 'Noto Serif JP', 'Cormorant Garamond', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --header-height: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--brown-text);
  background-color: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.cover-img { width: 100%; height: 100%; object-fit: cover; }

/* --- Loading --- */
.loading {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo { margin-bottom: 20px; }
.loading-logo-img {
  width: 72px; height: 72px; object-fit: contain;
  animation: loadBounce 1.4s ease-in-out infinite;
}
@keyframes loadBounce {
  0%   { transform: scale(1) translateY(0); }
  25%  { transform: scale(1.15, 0.88) translateY(0); }
  40%  { transform: scale(0.92, 1.1) translateY(-18px); }
  60%  { transform: scale(1.05, 0.95) translateY(0); }
  75%  { transform: scale(0.97, 1.04) translateY(-6px); }
  100% { transform: scale(1) translateY(0); }
}
.loading-text {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--brown-light);
  margin-bottom: 32px;
}
.loading-bar-wrap {
  width: 180px; height: 2px;
  background: rgba(160,140,91,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.loading-bar {
  width: 0%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.loading-percent {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(160,140,91,0.15);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo-icon { height: 40px; width: auto; }
.header-logo-name {
  font-family: var(--font-display); font-size: 1.2rem;
  letter-spacing: 0.12em; font-weight: 500; color: var(--brown-text);
}
.header-logo-sub {
  font-family: var(--font-display); font-size: 0.6rem;
  letter-spacing: 0.15em; color: var(--gold); display: block;
}
.header-logo-text { line-height: 1.3; }

.nav-list { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.05em;
  color: var(--brown-text); position: relative; transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-link:hover { opacity: 1; color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-btn {
  display: inline-block; padding: 10px 26px;
  background: var(--gold); color: var(--white) !important;
  border-radius: 30px; font-size: 0.82rem; letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.3s;
}
.nav-btn::after { display: none; }
.nav-btn:hover { opacity: 1; background: var(--gold-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; z-index: 1001;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown-text); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* --- Hero --- */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(20,16,10,0.55); z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--cream); }
.hero-title {
  font-family: var(--font-serif); font-size: 3.2rem; font-weight: 400;
  line-height: 1.5; letter-spacing: 0.12em; margin-bottom: 20px;
}
.hero-sub {
  font-size: 0.95rem; font-weight: 300; letter-spacing: 0.15em;
  color: var(--gold-light); margin-bottom: 20px;
}
.hero-detail {
  font-size: 0.85rem; font-weight: 300; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 2;
}
.hero-cta {
  display: inline-block; padding: 14px 48px; border: 1px solid rgba(255,255,255,0.5);
  color: var(--white); font-size: 0.85rem; letter-spacing: 0.1em; border-radius: 2px;
  transition: all 0.4s;
}
.hero-cta:hover { opacity: 1; background: rgba(255,255,255,0.1); border-color: var(--white); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 0; right: 0;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold-light); }
.scroll-line { width: 1px; height: 40px; background: var(--gold-light); animation: scrollLine 2s ease-in-out infinite; }

.hero-sns {
  position: absolute; right: 32px; bottom: 32px; z-index: 3;
  display: flex; gap: 12px;
}
.hero-sns-link {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.hero-sns-link:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.35); opacity: 0.92; }
.hero-sns-x { background: #000000; }
.hero-sns-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.hero-sns-line { background: #06C755; }

@media (max-width: 768px) {
  .hero-sns { right: 16px; bottom: 80px; gap: 10px; }
  .hero-sns-link { width: 40px; height: 40px; font-size: 1.05rem; border-radius: 10px; }
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Sections Common --- */
.section { padding: 120px 0; }
.section-label {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.3em; text-indent: 0.3em;
  color: var(--gold); text-align: center; margin-bottom: 12px;
}
.section-label-line {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 8px;
}

/* --- About --- */
.section-about { background: var(--cream-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: 4px; overflow: hidden; }
.about-image::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(214, 168, 70, 0.18);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.about-img { width: 100%; border-radius: 4px; display: block; }
.about-title {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 400;
  line-height: 1.7; letter-spacing: 0.06em; margin-bottom: 20px;
}
.about-desc { font-size: 0.9rem; line-height: 2; margin-bottom: 20px; color: var(--brown-light); }
.about-body { font-size: 0.85rem; line-height: 2; color: var(--brown-light); margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 24px; }
.about-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--white); border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.feature-icon { font-size: 1.4rem; margin-top: 2px; color: var(--gold); }
.about-feature h3 { font-size: 0.9rem; font-weight: 500; color: var(--brown-text); margin-bottom: 4px; letter-spacing: 0.03em; }
.about-feature p { font-size: 0.8rem; line-height: 1.7; color: var(--brown-light); }

/* --- Supervision --- */
.section-supervision { background: var(--cream); padding: 100px 0; }
.supervision-label {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 40px;
}
.supervision-grid { display: grid; grid-template-columns: 280px 1fr auto; gap: 60px; align-items: center; }
.supervision-books { display: flex; gap: 20px; align-items: center; }
.supervision-book { width: 160px; }
.supervision-book-img { width: 100%; height: auto; display: block; border-radius: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.supervision-photo-card {
  background: linear-gradient(135deg, #fce4ec33, #f3e5f533, #fff3e033);
  border-radius: 16px; padding: 40px 30px; text-align: center;
}
.supervision-circle {
  width: 230px; height: 230px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  overflow: hidden;
}
.supervision-circle-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.supervision-name { font-size: 1rem; font-weight: 500; margin-bottom: 8px; letter-spacing: 0.08em; }
.supervision-tag {
  display: inline-block; padding: 4px 16px; border: 1px solid var(--gold);
  border-radius: 20px; font-size: 0.7rem; letter-spacing: 0.05em; color: var(--gold);
}
.supervision-tv {
  margin-top: 16px; text-align: left; color: #000;
}
.supervision-tv-title {
  font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: #000;
}
.supervision-tv-item {
  font-size: 0.78rem; line-height: 1.7; color: #000; margin: 0;
}
.supervision-title {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400;
  line-height: 1.8; letter-spacing: 0.06em; margin-bottom: 32px;
}
.supervision-profile-name { font-weight: 500; font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 0.05em; }
.supervision-profile p { font-size: 0.85rem; line-height: 1.9; color: var(--brown-light); }

/* --- Menu --- */
.section-menu { background: var(--cream-light); }
.menu-header { text-align: center; margin-bottom: 60px; }
.menu-title {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 400;
  letter-spacing: 0.08em; margin-bottom: 24px; line-height: 1.6;
}
.menu-desc {
  font-size: 0.9rem; line-height: 2.2; color: var(--brown-light); letter-spacing: 0.03em;
}
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }
.menu-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.menu-card-image { width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative; }
.menu-card-image .cover-img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.6s; }
.menu-card:hover .cover-img { transform: scale(1.05); }
.menu-card-body { padding: 24px; flex: 1; }
.menu-card-title {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.05em; margin-bottom: 10px;
}
.menu-card-desc { font-size: 0.8rem; line-height: 1.8; color: var(--brown-light); margin-bottom: 12px; }
.menu-card-price { font-size: 0.85rem; font-weight: 500; color: var(--gold-dark); margin-bottom: 8px; }
.menu-card-link {
  font-size: 0.78rem; color: var(--gold); letter-spacing: 0.03em;
  display: inline-block; transition: color 0.3s;
}
.menu-card-link:hover { opacity: 1; color: var(--gold-dark); }

/* --- Atmosphere --- */
.section-atmosphere {
  position: relative; padding: 120px 0;
  min-height: 600px; display: flex; align-items: center; justify-content: center;
  color: var(--white); text-align: center;
}
.atmosphere-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.atmosphere-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(20,16,10,0.7); z-index: 1;
}
.atmosphere-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.atmosphere-label {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.2em;
  color: var(--gold-light); margin-bottom: 16px;
}
.atmosphere-title {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 500;
  letter-spacing: 0.1em; margin-bottom: 12px; color: var(--white);
}
.atmosphere-sub {
  font-family: var(--font-serif); font-size: 0.9rem; font-weight: 300;
  letter-spacing: 0.15em; margin-bottom: 24px; color: var(--gold-light);
}
.atmosphere-desc {
  font-size: 0.88rem; line-height: 2.2; color: rgba(255,255,255,0.75);
  margin-bottom: 48px; letter-spacing: 0.03em;
}
.atmosphere-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.atmosphere-feature {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  padding: 28px 20px; text-align: center;
}
.atm-icon { font-size: 1.6rem; margin-bottom: 12px; color: var(--gold-light); }
.atmosphere-feature h3 {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
  margin-bottom: 10px; color: var(--gold-light);
}
.atmosphere-feature p { font-size: 0.78rem; line-height: 1.8; color: rgba(255,255,255,0.6); }

/* --- Shop --- */
.section-shop { background: var(--cream-light); }
.shop-header { margin-bottom: 40px; }
.shop-title {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 400;
  letter-spacing: 0.1em;
}
.shop-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.shop-map { border-radius: 4px; overflow: hidden; background: var(--cream); }
.shop-map iframe { display: block; }
.shop-table { width: 100%; border-collapse: collapse; }
.shop-table tr { border-bottom: 1px solid rgba(160,140,91,0.2); }
.shop-table th, .shop-table td { padding: 14px 0; font-size: 0.85rem; vertical-align: top; text-align: left; }
.shop-table th { width: 90px; font-weight: 500; color: var(--gold-dark); letter-spacing: 0.05em; }
.shop-table td { color: var(--brown-text); line-height: 1.8; }

/* --- Reserve --- */
.section-reserve { background: var(--cream); text-align: center; padding: 140px 0; }
.reserve-title {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 400;
  line-height: 1.7; letter-spacing: 0.08em; text-indent: 0.08em; margin-bottom: 32px;
}
.reserve-desc { font-size: 0.95rem; line-height: 2; margin-bottom: 48px; letter-spacing: 0.03em; text-indent: 0.03em; }
.reserve-btn-wrap { margin-bottom: 20px; display: flex; justify-content: center; padding-right: 16px; }
.reserve-note { font-size: 0.8rem; color: var(--brown-light); letter-spacing: 0.03em; text-indent: 0.03em; padding-right: 16px; }

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 18px 60px; font-size: 0.95rem;
  letter-spacing: 0.1em; text-indent: 0.1em; border-radius: 50px; transition: all 0.4s; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-gold:hover {
  opacity: 1; background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160,140,91,0.3);
}

/* --- Footer --- */
.footer { background: var(--brown-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px 40px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo-text {
  display: block; font-family: var(--font-display); font-size: 1.5rem;
  letter-spacing: 0.15em; color: var(--white); font-weight: 500;
}
.footer-logo-sub {
  display: block; font-family: var(--font-display); font-size: 0.7rem;
  letter-spacing: 0.2em; color: var(--gold-light); margin-top: 2px;
}
.footer-address { font-style: normal; font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer-nav ul { display: flex; gap: 36px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-nav a:hover { opacity: 1; color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 32px; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.03em; }

/* --- Animations --- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1), transform 1.35s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.3s; }
.fade-up.delay-2 { transition-delay: 0.6s; }
.fade-up.delay-3 { transition-delay: 0.9s; }

/* Fade-in Left / Right */
.fade-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1), transform 1.35s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(50px); transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1), transform 1.35s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Scale-in */
.scale-in { opacity: 0; transform: scale(0.92); transition: opacity 1.2s ease, transform 1.2s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
.scale-in.delay-1 { transition-delay: 0.3s; }
.scale-in.delay-2 { transition-delay: 0.6s; }
.fade-in-left.delay-1, .fade-in-right.delay-1 { transition-delay: 0.3s; }
.fade-in-left.delay-2, .fade-in-right.delay-2 { transition-delay: 0.6s; }

/* Hero entrance */
.hero-content .hero-title,
.hero-content .hero-sub,
.hero-content .hero-detail,
.hero-content .hero-cta {
  opacity: 0; transform: translateY(30px);
}
.hero-loaded .hero-title { animation: heroFadeIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards; }
.hero-loaded .hero-sub { animation: heroFadeIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards; }
.hero-loaded .hero-detail { animation: heroFadeIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards; }
.hero-loaded .hero-cta { animation: heroFadeIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards; }
.hero-loaded .hero-scroll { animation: heroFadeIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards; }
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-scroll { opacity: 0; }

/* Menu overlay */
.menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); z-index: 999;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

/* --- Responsive --- */
@media (max-width: 968px) {
  .header-nav {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
    height: 100vh; background: var(--white); padding: 100px 40px 40px;
    transition: right 0.4s; box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }
  .header-nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 24px; align-items: flex-start; }
  .nav-link { font-size: 1rem; }
  .nav-btn { margin-top: 16px; text-align: center; width: 100%; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .supervision-grid { grid-template-columns: 1fr; gap: 40px; }
  .supervision-books { justify-content: center; flex-wrap: wrap; }
  .supervision-book { width: 140px; }
  .menu-grid { grid-template-columns: 1fr; gap: 24px; }
  .shop-content { grid-template-columns: 1fr; gap: 36px; }
  .atmosphere-features { grid-template-columns: 1fr; gap: 16px; }

  .hero-title { font-size: 2.4rem; }
  .reserve-title { font-size: 1.8rem; }
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-nav ul { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  :root { --header-height: 64px; }
  .section { padding: 80px 0; }
  .hero-title { font-size: 1.8rem; }
  .about-title { font-size: 1.5rem; }
  .supervision-title { font-size: 1.3rem; }
  .menu-title { font-size: 1.6rem; }
  .reserve-title { font-size: 1.5rem; }
  .btn { padding: 16px 48px; font-size: 0.9rem; }
}
