/* =============================================
   RESTAURANT PAGE (ぱるむ)
   ============================================= */

:root {
  --palm-green:  #3a6b35;
  --palm-amber:  #c87941;
  --palm-dark:   #2a2a24;
  --palm-bg:     #faf7f0;
  --palm-border: #e8e2d6;
  --palm-label:  #8aaf84;
}

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

.palm-sec__label {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--palm-label);
  font-weight: 700;
  margin-bottom: 8px;
}
.palm-sec__h2 {
  margin: 0 0 32px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--palm-dark);
  line-height: 1.4;
}

/* ------------------------------------------
   HERO
   ------------------------------------------ */
.palm-hero {
  position: relative;
  height: 66vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.palm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,.44) 100%);
}
.palm-hero__body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.palm-hero__label {
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  opacity: .8;
  margin: 0 0 10px;
}
.palm-hero__h1 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 56px);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: .04em;
}
.palm-hero__sub {
  font-size: clamp(13px, 2vw, 16px);
  opacity: .9;
  margin: 0;
  letter-spacing: .04em;
}

/* ------------------------------------------
   INFO BAR
   ------------------------------------------ */
.palm-infobar {
  background: var(--palm-green);
  color: #fff;
  padding: 0 40px;
}
.palm-infobar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 68px;
}
.palm-infobar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  flex: 1;
}
.palm-infobar__sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,.3);
  flex-shrink: 0;
}
.palm-infobar__label {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: .75;
  white-space: nowrap;
}
.palm-infobar__val {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.palm-infobar__tel {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
.palm-infobar__item--note .palm-infobar__val {
  font-size: 13px;
  font-weight: 500;
}

/* ------------------------------------------
   CONCEPT
   ------------------------------------------ */
.palm-concept {
  padding: 80px 40px;
  background: #fff;
}
.palm-concept__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.palm-concept__body {
  font-size: 15px;
  line-height: 1.9;
  color: #4a4a42;
  margin: 0 0 16px;
}
.palm-concept__body:last-child { margin-bottom: 0; }
.palm-concept__photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

/* ------------------------------------------
   MENU
   ------------------------------------------ */
.palm-menu {
  padding: 80px 40px;
  background: var(--palm-bg);
}
.palm-menu__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.palm-menu__note {
  font-size: 12px;
  color: #9a9a90;
  margin: -20px 0 32px;
  background: #fff;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  border-left: 3px solid var(--palm-amber);
}
.palm-menu__sheet {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.palm-menu__sheet img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ------------------------------------------
   GALLERY
   ------------------------------------------ */
.palm-gallery {
  padding: 80px 40px;
  background: #fff;
}
.palm-gallery__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.palm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.palm-gallery__grid:has(.palm-gallery__item:only-child) {
  grid-template-columns: 1fr;
  max-width: 640px;
}
.palm-gallery__item {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.palm-gallery__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.palm-gallery__grid:has(.palm-gallery__item:only-child) .palm-gallery__item img {
  height: 380px;
}
.palm-gallery__item:hover img { transform: scale(1.05); }
.palm-gallery__item figcaption {
  text-align: center;
  font-size: 12px;
  color: #6a6a60;
  padding: 8px 4px;
  background: #fff;
}

/* ------------------------------------------
   BENTO BANNER
   ------------------------------------------ */
.palm-bento {
  padding: 0 40px 64px;
  background: #fff;
}
.palm-bento__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.palm-bento__card {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f0e8;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s;
}
.palm-bento__card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.palm-bento__photo {
  flex: 0 0 380px;
  max-width: 380px;
  overflow: hidden;
}
.palm-bento__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.palm-bento__card:hover .palm-bento__photo img { transform: scale(1.04); }
.palm-bento__body {
  flex: 1;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.palm-bento__eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  color: #2f5d34;
  margin: 0 0 12px;
}
.palm-bento__h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #2f5d34;
  margin: 0 0 6px;
  line-height: 1.3;
}
.palm-bento__sub {
  font-size: 14px;
  font-weight: 600;
  color: #5a7a50;
  margin: 0 0 16px;
}
.palm-bento__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 28px;
}
.palm-bento__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #2f5d34;
  padding: 10px 24px;
  border-radius: 8px;
  align-self: flex-start;
  transition: background .18s;
}
.palm-bento__card:hover .palm-bento__cta { background: #3a7040; }

@media (max-width: 700px) {
  .palm-bento { padding: 0 16px 48px; }
  .palm-bento__card { flex-direction: column; }
  .palm-bento__photo { flex: none; max-width: 100%; height: 220px; }
  .palm-bento__body { padding: 28px 24px; }
  .palm-bento__h2 { font-size: 22px; }
}

/* ------------------------------------------
   CTA
   ------------------------------------------ */
.palm-cta {
  padding: 72px 40px;
  background: var(--palm-bg);
}
.palm-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.palm-cta__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.palm-cta__dl { margin: 0; }
.palm-cta__row {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--palm-border);
  font-size: 14px;
}
.palm-cta__row:last-child { border-bottom: none; }
.palm-cta__row dt {
  color: #8a8a80;
  font-weight: 500;
  white-space: nowrap;
  width: 80px;
  flex-shrink: 0;
}
.palm-cta__row dd {
  color: var(--palm-dark);
  margin: 0;
}
.palm-cta__tel-link {
  color: var(--palm-green);
  text-decoration: none;
  font-weight: 700;
}

.palm-cta__telbox {
  background: var(--palm-green);
  color: #fff;
  border-radius: 10px;
  padding: 28px 36px;
  text-align: center;
}
.palm-cta__telbox-label {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: .8;
  margin: 0 0 8px;
}
.palm-cta__telbox-num {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 6px;
}
.palm-cta__telbox-hours {
  font-size: 12px;
  opacity: .7;
  margin: 0;
}

/* ------------------------------------------
   RESPONSIVE
   ------------------------------------------ */
@media (max-width: 900px) {
  .palm-concept__inner { grid-template-columns: 1fr; }
  .palm-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .palm-cta__body { grid-template-columns: 1fr; }
  .palm-infobar__inner { flex-wrap: wrap; gap: 0; padding: 16px 0; }
  .palm-infobar__item { padding: 6px 16px; flex: none; }
  .palm-infobar__sep { display: none; }
  .palm-concept,
  .palm-menu,
  .palm-gallery,
  .palm-cta { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 600px) {
  .palm-hero { height: 55vh; }
  .palm-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
