/* =============================================
   Haikyuu! Japanese Cuisine — Stylesheet
   ============================================= */

:root {
  --amber: #D4720E;
  --amber-dark: #A85800;
  --amber-light: #FFF0D6;
  --red: #8B2E00;
  --cream: #FDF8F0;
  --white: #FFFFFF;
  --dark: #1A1510;
  --medium: #5C4A30;
  --light: #8C7A60;
  --border: #E8D5B5;
  --green: #4A7A3F;
  --shadow: rgba(0, 0, 0, 0.07);
  --shadow-md: rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Noto Serif JP', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--medium);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.btn-nav {
  background: var(--amber) !important;
  color: white !important;
  padding: 9px 22px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.btn-nav:hover {
  background: var(--amber-dark) !important;
  transform: translateY(-1px) !important;
  color: white !important;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  min-height: 88vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 28px;
  gap: 64px;
}
.hero-content { flex: 1.1; }
.tag {
  display: inline-block;
  background: var(--amber-light);
  color: var(--amber-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 8vw, 6.2rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--dark);
  margin-bottom: 8px;
}
.hero-sub {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--medium);
  max-width: 440px;
  margin-bottom: 38px;
  line-height: 1.65;
  font-style: italic;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: white;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(212, 114, 14, 0.35);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); }
.hero-visual {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 64px var(--shadow-md);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.hero-visual:hover img { transform: rotate(0deg); }
.hero-badge {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: var(--amber);
  color: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(212, 114, 14, 0.4);
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
}
.hero-badge span { display: block; font-size: 1.5rem; margin-bottom: 2px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 10px;
}
.section-header p {
  color: var(--light);
  font-size: 1.05rem;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0;
}

/* ===== ABOUT ===== */
.about {
  padding: 104px 0;
  background: var(--white);
}
.about-grid {
  display: flex;
  gap: 64px;
  align-items: center;
}
.about-text { flex: 1.2; }
.about-text .tag { margin-bottom: 14px; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-text p {
  color: var(--medium);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-sketches {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sketch-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
}
.sketch-card img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  object-position: center 20%;
}
.sketch-card figcaption {
  padding: 10px 16px;
  font-size: 0.82rem;
  color: var(--light);
  font-weight: 500;
  text-align: center;
  font-style: italic;
}

/* ===== MENU ===== */
.menu { padding: 104px 0; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 14px var(--shadow);
}
.menu-category h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--amber-light);
}
.menu-items { display: flex; flex-direction: column; gap: 16px; }
.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.item-info { flex: 1; }
.item-name {
  font-weight: 600;
  color: var(--dark);
  display: block;
  font-size: 0.95rem;
}
.item-note {
  display: block;
  font-size: 0.78rem;
  color: var(--light);
  font-style: italic;
  margin-top: 2px;
}
.item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  margin: 0 10px;
  min-width: 16px;
}
.item-price {
  font-weight: 700;
  color: var(--amber-dark);
  font-size: 0.95rem;
  white-space: nowrap;
}
.featured-item {
  background: var(--amber-light);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 -4px;
}
.award-badge {
  display: inline-block;
  font-size: 0.7rem;
  background: var(--amber);
  color: white;
  padding: 2px 9px;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ===== MENU GALLERY ===== */
.menu-gallery {
  padding: 104px 0;
  background: var(--white);
}
.menu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.menu-gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--dark);
}
.menu-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-md);
}
.menu-gallery-card img {
  width: 100%;
  display: block;
  transition: opacity 0.2s;
}
.menu-gallery-card figcaption {
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--dark);
}
@media (max-width: 700px) {
  .menu-gallery-grid { grid-template-columns: 1fr; }
}

/* ===== KIDS MENU ===== */
.kids-menu {
  padding: 104px 0;
  background: linear-gradient(160deg, #FFF8E7 0%, #FEF0D4 100%);
}
.kids-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kids-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 20px 28px;
  text-align: center;
  box-shadow: 0 3px 16px var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid rgba(232, 213, 181, 0.6);
}
.kids-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px var(--shadow-md);
}
.kids-emoji {
  display: block;
  font-size: 3rem;
  margin-bottom: 14px;
  line-height: 1;
}
.kids-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}
.kids-note {
  font-size: 0.8rem;
  color: var(--light);
  font-style: italic;
  margin-bottom: 12px;
}
.kids-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber);
  margin-top: 10px;
  letter-spacing: -0.02em;
}

/* ===== AWARD ===== */
.award {
  padding: 104px 0;
  background: var(--white);
}
.award-grid {
  display: flex;
  gap: 72px;
  align-items: center;
}
.award-text { flex: 1.1; }
.award-text .tag { margin-bottom: 14px; }
.award-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 6px;
}
.award-dish-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.award-dish-name::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--amber-light);
  border-radius: 2px;
}
.award-quote {
  font-style: italic;
  color: var(--medium);
  border-left: 4px solid var(--amber);
  padding-left: 22px;
  margin-bottom: 28px;
  line-height: 1.85;
  font-size: 1.02rem;
}
.award-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}
.award-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber-dark);
  letter-spacing: -0.03em;
}
.award-price-note {
  font-size: 0.85rem;
  color: var(--light);
}
.award-visual { flex: 0.9; }
.award-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 56px var(--shadow-md);
}

/* ===== CAUSE ===== */
.cause {
  padding: 104px 0;
  background: var(--dark);
  color: white;
}
.cause .section-header { margin-bottom: 44px; }
.cause .tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}
.cause .section-header h2 { color: white; }
.cause-body {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.cause-body p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
  line-height: 1.85;
}
.cause-body strong { color: white; font-weight: 700; }
.cause-goal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px 28px;
  margin: 24px 0 40px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.cause-goal strong {
  font-size: 1.4rem;
  color: #FFD08A;
  letter-spacing: -0.02em;
}
.cause-items {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: left;
}
.cause-items h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #FFD08A;
  margin-bottom: 22px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cause-items ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.cause-items li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ===== VISIT ===== */
.visit { padding: 104px 0; }
.visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.visit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 2px 14px var(--shadow);
  transition: transform 0.2s;
}
.visit-card:hover { transform: translateY(-3px); }
.visit-icon {
  display: block;
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1;
}
.visit-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light);
  margin-bottom: 12px;
}
.visit-card p {
  color: var(--medium);
  font-size: 1rem;
  line-height: 1.5;
}
.visit-card .highlight {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
  margin-top: 4px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 52px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-by {
  font-size: 0.9rem;
  text-align: right;
}
.footer-by strong { color: rgba(255, 255, 255, 0.75); }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 60px 28px;
    text-align: center;
    gap: 48px;
  }
  .hero-tagline { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual img { max-width: 360px; }
  .about-grid { flex-direction: column; gap: 40px; }
  .menu-grid { grid-template-columns: 1fr; }
  .award-grid { flex-direction: column; gap: 48px; }
  .award-dish-name::after { display: none; }
  .visit-cards { grid-template-columns: 1fr; max-width: 380px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-by { text-align: center; }
}

@media (max-width: 700px) {
  .kids-grid { grid-template-columns: repeat(2, 1fr); }
  .cause-items ul { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}
