/* Kuma Cantina — marketing site styles
   Built from the Kuma Cantina Design System tokens (colors, type, spacing). */

@font-face { font-family: 'Quagmire'; src: url('assets/fonts/quagmire-medium.otf') format('opentype'); font-weight: 400 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Quagmire'; src: url('assets/fonts/quagmire-bold.otf') format('opentype'); font-weight: 700 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('assets/fonts/gotham-light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('assets/fonts/gotham-book.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('assets/fonts/gotham-medium.otf') format('opentype'); font-weight: 500 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('assets/fonts/gotham-bold.otf') format('opentype'); font-weight: 700 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('assets/fonts/gotham-black.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Wordy Diva'; src: url('assets/fonts/wordy-diva.ttf') format('truetype'); font-weight: 400 700; font-style: normal; font-display: swap; }
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --kuma-black:#000000; --kuma-orange:#FF5500; --kuma-mint:#C5FFE9; --kuma-butter:#FFFDBD;
  --kuma-olive:#404C00; --kuma-pink:#E698A8; --kuma-cream:#F6F3E7;
  --font-display:'Quagmire',sans-serif; --font-body:'Gotham',system-ui,sans-serif;
  --font-script:'Wordy Diva',cursive; --font-jp:'Noto Sans JP',sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); background: var(--kuma-cream); }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-display); font-weight: 700; border-radius: 999px; cursor: pointer; text-decoration: none; white-space: nowrap; }
.btn-lg { height: 56px; padding: 0 32px; font-size: 17px; }
.btn-md { height: 44px; padding: 0 22px; font-size: 15px; }
.btn-sm { height: 36px; padding: 0 16px; font-size: 14px; }
.btn-primary { background: var(--kuma-orange); color: #fff; border: 2px solid var(--kuma-orange); }
.btn-secondary { background: var(--kuma-olive); color: var(--kuma-mint); border: 2px solid var(--kuma-olive); }
.btn-outline { background: transparent; border: 2px solid currentColor; }
.btn-sticker { border-color: var(--kuma-black); box-shadow: 4px 4px 0 var(--kuma-black); }

/* Badge / Tag */
.badge { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; border-radius: 999px; padding: 4px 11px; }
.badge-orange { background: var(--kuma-orange); color: #fff; }
.badge-olive-soft { background: #E4E9C8; color: #2E3700; }
.badge-pink-soft { background: #F7DDE3; color: #1A1A17; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(0,0,0,.85); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(246,243,231,.14); }
.header-inner { max-width: 1180px; margin: 0 auto; height: 74px; padding: 0 32px; display: flex; align-items: center; gap: 26px; }
.header-logo { height: 28px; width: auto; }
.nav-links { display: flex; gap: 24px; margin-left: 18px; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.nav-links a { color: var(--kuma-cream); }
.reserve-jp { font-family: var(--font-jp); color: var(--kuma-butter); font-size: 13px; font-weight: 700; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang-toggle { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 16px; border-radius: 999px; border: 2px solid var(--kuma-cream); background: transparent; color: var(--kuma-cream); font-family: var(--font-display); font-weight: 700; font-size: 13px; cursor: pointer; white-space: nowrap; flex-shrink: 0; }
.lang-toggle:hover { background: rgba(246,243,231,.12); }
.lang-toggle-mobile { width: 100%; height: 44px; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; padding: 0; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--kuma-cream); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; background: var(--kuma-black); color: var(--kuma-cream); overflow: hidden; }
.hero-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 70px 32px 80px; }
.hero-h1 { font-family: var(--font-display); font-weight: 700; font-size: 80px; line-height: .98; letter-spacing: -.02em; margin: 0; color: #fff; }
.hero-h1 span { color: var(--kuma-orange); }
.hero-p { font-size: 19px; line-height: 1.5; color: rgba(246,243,231,.78); max-width: 470px; margin-top: 22px; }
.hero-image-wrap { position: relative; }
.hero-image { width: 100%; aspect-ratio: 4/5; border-radius: 22px; border: 3px solid #fff; box-shadow: 8px 8px 0 var(--kuma-orange); background: #222; object-fit: cover; transform: rotate(2deg); }
.hero-salud { font-family: var(--font-script); position: absolute; bottom: -14px; left: -18px; font-size: 56px; color: var(--kuma-pink); transform: rotate(-7deg); }
.hero-sticker { position: absolute; top: 16px; right: -10px; width: 183px; background: var(--kuma-butter); color: #000; border: 2px solid #000; border-radius: 999px; padding: 6px 14px; font-family: var(--font-display); font-weight: 700; font-size: 13px; transform: rotate(6deg); }

/* Marquee */
.marquee { background: var(--kuma-orange); border-top: 3px solid #000; border-bottom: 3px solid #000; padding: 12px 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: kc-marquee 66s linear infinite; }
.marquee-item { display: inline-flex; flex-shrink: 0; white-space: nowrap; font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: .04em; color: #000; padding-right: 16px; }
@keyframes kc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Menu */
.menu-section { max-width: 1180px; margin: 0 auto; padding: 80px 32px; }
.menu-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--kuma-orange); }
.menu-h2 { font-family: var(--font-display); font-weight: 700; font-size: 52px; letter-spacing: -.02em; margin: 6px 0 0; color: #000; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 56px; }
.dish { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.12); }
.dish-img { width: 84px; height: 84px; flex-shrink: 0; border-radius: 14px; border: 2px solid #000; object-fit: cover; }
.dish-jp { font-family: var(--font-jp); font-size: 12px; font-weight: 700; color: var(--kuma-orange); }
.dish-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: #000; margin-top: 2px; }
.dish-desc { font-size: 13.5px; color: #6E6E63; margin-top: 3px; line-height: 1.4; }
.dish-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.dish-price { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: #000; margin-left: auto; padding-left: 12px; }

/* Story */
.story-section { background: var(--kuma-olive); color: var(--kuma-mint); }
.story-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 106px; align-items: center; padding: 0 32px; }
.story-images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.story-image { width: 100%; aspect-ratio: 3/4; border-radius: 16px; background: #333; object-fit: cover; }
.story-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--kuma-butter); margin-top: 68px; margin-bottom: 12px; }
.story-h2 { font-family: var(--font-display); font-weight: 700; font-size: 50px; letter-spacing: -.02em; color: #fff; margin: 0; }
.story-p { font-size: 18px; line-height: 1.7; color: rgba(197,255,233,.85); margin-top: 20px; }
.story-script { font-family: var(--font-script); font-size: 42px; color: var(--kuma-pink); margin-top: 20px; margin-bottom: 68px; }

/* Visit */
.visit-section { background: var(--kuma-cream); }
.visit-inner { max-width: 1180px; margin: 0 auto; padding: 50px 32px; }
.visit-h2 { font-family: var(--font-display); font-weight: 700; font-size: 44px; letter-spacing: -.02em; color: #000; margin: 8px 0 0; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px; }
.visit-card { background: #fff; border: 2px solid #000; border-radius: 22px; box-shadow: 4px 4px 0 #000; padding: 28px 26px; }
.visit-card-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #000; margin-top: 16px; }
.visit-card-body { font-size: 15px; line-height: 1.8; color: rgba(0,0,0,.68); margin-top: 8px; }

/* Contact */
.contact-section { background: var(--kuma-olive); color: var(--kuma-mint); padding: 110px 0; }
.contact-inner { max-width: 680px; margin: 0 auto; padding: 0 32px; text-align: center; }
.contact-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--kuma-butter); }
.contact-h2 { font-family: var(--font-display); font-weight: 700; font-size: 44px; letter-spacing: -.02em; color: #fff; margin: 10px 0 0; }
.contact-p { font-size: 17px; line-height: 1.6; color: rgba(197,255,233,.85); margin-top: 18px; }
.contact-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 22px; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--kuma-butter); }
.contact-tags .sep { opacity: .5; }
.pdf-pills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.pdf-pill { display: flex; align-items: center; gap: 10px; background: var(--kuma-butter, #FFFDBD); color: #000; border: 2px solid #000; border-radius: 999px; padding: 12px 22px; font-weight: 700; font-size: 14px; text-decoration: none; box-shadow: 4px 4px 0 #000; }
.contact-cta { display: flex; justify-content: center; margin-top: 32px; }
.contact-email { display: block; text-align: center; margin-top: 16px; color: rgba(197,255,233,.6); text-decoration: underline; font-size: 12px; }

/* Footer */
.site-footer { background: #000; color: var(--kuma-cream); padding: 48px 32px 28px; }
.footer-top { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-wordmark { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: .02em; color: var(--kuma-cream); }
.footer-jp { font-family: var(--font-jp); color: var(--kuma-butter); margin-top: 10px; font-size: 14px; }
.footer-cols { display: flex; gap: 72px; }
.footer-label { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 15px; font-size: 13px; }
.footer-links a { color: rgba(246,243,231,.8); }
.footer-follow-list { display: flex; flex-direction: column; gap: 15px; }
.footer-follow { display: flex; align-items: center; gap: 10px; color: rgba(246,243,231,.8); font-size: 13px; }
.footer-follow-icon { width: 30px; height: 30px; border-radius: 8px; border: 1.6px solid var(--kuma-cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-divider { max-width: 1180px; margin: 36px auto 0; border-top: 1px solid rgba(246,243,231,.16); }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding-top: 22px; font-size: 13.5px; color: rgba(246,243,231,.5); }

/* Responsive */
@media (max-width: 999px) {
  .hero-h1 { font-size: 60px; }
}
@media (max-width: 719px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; gap: 14px; }
  .nav-links, .reserve-jp { display: none; }
  .hamburger { display: flex; }
  .header-actions { gap: 8px; }
  .header-inner .lang-toggle { padding: 0 10px; font-size: 12px; height: 32px; }
  .mobile-nav { position: fixed; top: 74px; left: 0; right: 0; height: calc(100vh - 74px); overflow-y: auto; background: rgba(0,0,0,.97); flex-direction: column; align-items: flex-start; gap: 4px; padding: 24px 20px; font-family: var(--font-display); font-weight: 700; font-size: 22px; z-index: 49; }
  .mobile-nav a { color: var(--kuma-cream); padding: 14px 0; width: 100%; }
  .mobile-nav a:not(.btn):not(.lang-toggle) { border-bottom: 1px solid rgba(246,243,231,.12); }
  .mobile-nav.is-open { display: flex; }
  .hero-grid { grid-template-columns: 1fr; padding: 44px 20px 56px; gap: 40px; }
  .hero-h1 { font-size: 42px; }
  .hero-p { font-size: 16px; }
  .hero-image-wrap { order: -1; margin-bottom: 24px; }
  .hero-salud { font-size: 40px; }
  .marquee-item { font-size: 16px; padding-right: 12px; }
  .menu-section { padding: 56px 20px; }
  .menu-h2 { font-size: 32px; }
  .menu-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; padding: 48px 20px 0; }
  .story-images { order: -1; }
  .story-eyebrow { margin-top: 0; }
  .story-h2 { font-size: 32px; }
  .visit-inner { padding: 50px 20px; }
  .visit-h2 { font-size: 32px; }
  .visit-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-section { padding: 72px 0; }
  .contact-inner { padding: 0 20px; }
  .contact-h2 { font-size: 32px; }
  .site-footer { padding: 40px 20px 24px; }
  .footer-top { gap: 28px; }
  .footer-cols { gap: 28px; }
}

/* Japanese typography adjustments — CJK glyphs fill more of their em-box than
   the Latin display faces, so headings/body copy read visually larger than
   the English equivalents at the same font-size. Scale them down and drop
   the Latin-tuned negative letter-spacing, which isn't meaningful for kana/kanji. */
html[lang="ja"] .nav-links { font-size: 14px; }
html[lang="ja"] .hero-h1 { font-size: 56px; letter-spacing: 0; line-height: 1.2; }
html[lang="ja"] .hero-p { font-size: 16px; }
html[lang="ja"] .hero-sticker { font-size: 12px; }
html[lang="ja"] .menu-h2 { font-size: 40px; letter-spacing: 0; }
html[lang="ja"] .dish-desc { font-size: 12.5px; }
html[lang="ja"] .story-h2 { font-size: 38px; letter-spacing: 0; }
html[lang="ja"] .story-p { font-size: 16px; }
html[lang="ja"] .visit-h2 { font-size: 34px; letter-spacing: 0; }
html[lang="ja"] .visit-card-title { font-size: 17px; }
html[lang="ja"] .visit-card-body { font-size: 14px; }
html[lang="ja"] .contact-h2 { font-size: 34px; letter-spacing: 0; }
html[lang="ja"] .contact-p { font-size: 15px; }

@media (max-width: 999px) {
  html[lang="ja"] .hero-h1 { font-size: 40px; }
}
@media (max-width: 719px) {
  html[lang="ja"] .mobile-nav { font-size: 19px; }
  html[lang="ja"] .hero-h1 { font-size: 30px; }
  html[lang="ja"] .hero-p { font-size: 14.5px; }
  html[lang="ja"] .menu-h2 { font-size: 28px; }
  html[lang="ja"] .story-h2 { font-size: 26px; }
  html[lang="ja"] .visit-h2 { font-size: 28px; }
  html[lang="ja"] .contact-h2 { font-size: 28px; }
}
