/* =============================================
   EAT INDEX PAGE
   ============================================= */

:root {
  --eat-accent: #a8542e;
  --eat-dark:   #33322c;
  --eat-bg:     #faf7f1;
  --eat-border: #ede8dc;
  --eat-label:  #b09a86;
}

.eat-main { background: var(--eat-bg); }

/* ------------------------------------------
   HERO
   ------------------------------------------ */
.eat-hero {
  position: relative;
  height: 62vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,15,5,.65) 0%, rgba(35,20,10,.40) 60%, rgba(25,12,5,.55) 100%);
}
.eat-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.eat-hero__label {
  font-size: 11px;
  letter-spacing: 7px;
  font-weight: 700;
  opacity: .72;
  margin: 0 0 14px;
}
.eat-hero__h1 {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 6px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.eat-hero__sub {
  margin: 16px 0 32px;
  font-size: clamp(13px, 1.5vw, 16px);
  opacity: .88;
  letter-spacing: 1px;
}
.eat-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--eat-accent);
  color: #fff;
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  transition: background .2s, transform .2s;
}
.eat-hero__btn:hover { background: #8d4425; transform: translateY(-2px); }

/* ------------------------------------------
   EAT LIST
   ------------------------------------------ */
.eat-list { padding: 80px 0 60px; }
.eat-list__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Card */
.eat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  margin-bottom: 48px;
  background: #fff;
  transition: box-shadow .25s;
}
.eat-card:hover { box-shadow: 0 14px 42px rgba(0,0,0,.15); }
.eat-card--rev { direction: rtl; }
.eat-card--rev > * { direction: ltr; }

/* Photo side */
.eat-card__photo-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.eat-card__photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.eat-card:hover .eat-card__photo { transform: scale(1.04); }
.eat-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,.05) 50%);
}
.eat-card__type {
  position: absolute;
  bottom: 20px;
  left: 22px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.eat-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 4px;
}

/* Body side */
.eat-card__body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.eat-card__type-label {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--eat-label);
  font-weight: 700;
  margin: 0 0 8px;
}
.eat-card__h2 {
  margin: 0 0 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--eat-dark);
  line-height: 1.3;
}
.eat-card__catch {
  margin: 0 0 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--eat-accent);
  line-height: 1.6;
}
.eat-card__desc {
  margin: 0 0 22px;
  font-size: 13.5px;
  color: #666;
  line-height: 1.85;
}
.eat-card__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.eat-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--eat-accent);
  background: #f7ede5;
  border: 1px solid #e3c9b6;
  padding: 4px 12px;
  border-radius: 20px;
}
.eat-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.eat-card__btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--eat-accent);
  color: #fff;
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 7px;
  transition: background .2s;
}
.eat-card__btn-detail:hover { background: #8d4425; }
.eat-card__btn-detail span { font-size: 16px; }

/* ------------------------------------------
   CTA
   ------------------------------------------ */
.eat-cta {
  background: #f2ece0;
  padding: 72px 40px;
}
.eat-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: #33322c;
}
.eat-cta__label {
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  color: #b09a86;
  margin: 0 0 12px;
}
.eat-cta__h2 {
  margin: 0 0 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 28px);
  color: #33322c;
}
.eat-cta__text {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}
.eat-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.eat-cta__btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--eat-accent);
  color: #fff;
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 9px;
  box-shadow: 0 6px 20px rgba(168,84,46,.28);
  transition: transform .2s, box-shadow .2s;
}
.eat-cta__btn-contact:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(168,84,46,.38); }
.eat-cta__btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--eat-accent);
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  background: #fff;
  border: 1.5px solid #dcc4b0;
  padding: 14px 28px;
  border-radius: 9px;
  transition: background .2s, border-color .2s;
}
.eat-cta__btn-tel:hover { background: #f7ede5; border-color: var(--eat-accent); }

/* ------------------------------------------
   Responsive
   ------------------------------------------ */
@media (max-width: 900px) {
  .eat-list__inner { padding: 0 24px; }
  .eat-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .eat-card--rev { direction: ltr; }
  .eat-card__photo-wrap { min-height: 280px; }
  .eat-card__body { padding: 32px 28px 36px; }
}
@media (max-width: 600px) {
  .eat-list { padding: 48px 0 32px; }
  .eat-card { margin-bottom: 28px; border-radius: 14px; }
  .eat-card__photo-wrap { min-height: 220px; }
  .eat-card__body { padding: 24px 20px 28px; }
  .eat-cta { padding: 52px 20px; }
  .eat-cta__btns { flex-direction: column; align-items: stretch; }
  .eat-cta__btn-contact,
  .eat-cta__btn-tel { justify-content: center; font-size: 18px; }
}
