/* ============================================
   BAYCOOK - Common Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #333333;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

/* Typography */
.font-en {
  font-family: 'Cormorant Garamond', serif;
}

.font-en-sans {
  font-family: 'Montserrat', sans-serif;
}

.font-jp-serif {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
}

/* Section Heading Pattern */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-heading .heading-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.section-heading .heading-ja {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.section-heading .heading-line {
  width: 40px;
  height: 1px;
  display: block;
}

.section-heading .heading-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* Scroll Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- Footer ---- */
.footer-b {
  background: #1a1a1a;
  padding: 48px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-b .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #FFFFFF;
}

.footer-b .footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.38);
}

.footer-b .footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-b .footer-nav a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.56);
  transition: color 0.3s ease;
}

.footer-b .footer-nav a:nth-child(4) {
  font-family: 'Montserrat', sans-serif;
}

.footer-b .footer-nav a:hover {
  color: #FFFFFF;
  opacity: 1;
}

.footer-b .footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-b .footer-info .addr {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.31);
}

.footer-b .footer-info .tel {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.31);
}

.footer-b .footer-info .reservation-note {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.40);
  margin-top: 2px;
}

.footer-b .footer-divider {
  width: 100%;
  max-width: 1000px;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.footer-b .footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .footer-b {
    padding: 36px 24px;
  }

  .footer-b .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* Utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
