/* =============================================
   BBQ PAGE
   ============================================= */

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

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

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

/* ------------------------------------------
   HERO
   ------------------------------------------ */
.bbq-hero {
  position: relative;
  height: 66vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bbq-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,.44) 100%);
}
.bbq-hero__body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.bbq-hero__label {
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  opacity: .8;
  margin: 0 0 10px;
}
.bbq-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;
}
.bbq-hero__sub {
  font-size: clamp(13px, 2vw, 16px);
  opacity: .9;
  margin: 0;
  letter-spacing: .04em;
}

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

/* ------------------------------------------
   CONCEPT
   ------------------------------------------ */
.bbq-concept {
  padding: 80px 40px;
  background: #fff;
}
.bbq-concept__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bbq-concept__body {
  font-size: 15px;
  line-height: 1.9;
  color: #4a4a42;
  margin: 0 0 16px;
}
.bbq-concept__body:last-child { margin-bottom: 0; }
.bbq-concept__photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}
.bbq-concept-slider {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
}
.bbq-concept-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.bbq-concept-slide.is-active { opacity: 1; }
.bbq-concept-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.bbq-concept-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.bbq-concept-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #c8d8c0;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.bbq-concept-dot.is-active {
  background: #2f5d34;
  transform: scale(1.25);
}

/* ------------------------------------------
   PLANS
   ------------------------------------------ */
.bbq-plans {
  padding: 80px 40px;
  background: #e6f0e4;
}
.bbq-plans__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bbq-plan {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  margin-bottom: 28px;
}
.bbq-plan:last-child { margin-bottom: 0; }
.bbq-plan__head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--bbq-border);
  background: #fdfcf8;
}
.bbq-plan__num {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--bbq-border);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.bbq-plan__title { flex: 1; }
.bbq-plan__h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--bbq-dark);
  margin: 0 0 4px;
}
.bbq-plan__meta {
  font-size: 13px;
  color: #8a8a80;
  margin: 0;
}
.bbq-plan__price {
  text-align: right;
  flex-shrink: 0;
}
.bbq-plan__price-num {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--bbq-orange);
  line-height: 1.1;
}
.bbq-plan__price-num small { font-size: 14px; }
.bbq-plan__price-unit {
  font-size: 12px;
  color: #9a9a90;
}
.bbq-plan__body {
  padding: 24px 32px 28px;
}
.bbq-plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.bbq-plan__list li {
  font-size: 14px;
  color: #4a4a42;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.bbq-plan__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bbq-label);
}
.bbq-highlight {
  margin: 20px 0 0;
  border: 2px solid #2f5d34;
  border-radius: 10px;
  overflow: hidden;
}
.bbq-highlight__facilities {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #eef5ea;
}
.bbq-highlight__icon {
  color: #2f5d34;
  flex-shrink: 0;
  display: flex;
}
.bbq-highlight__label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  color: #2f5d34;
  margin: 0 0 4px;
}
.bbq-highlight__items {
  font-size: 14px;
  font-weight: 700;
  color: #1a3a1e;
  margin: 0;
  letter-spacing: .5px;
}
.bbq-highlight__bonus {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 12px 20px;
  background: #2f5d34;
}
.bbq-highlight__bonus-tag {
  background: #f0b429;
  color: #1a2e00;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.bbq-highlight__bonus-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.bbq-highlight__bonus-text strong { color: #f0d080; }
.bbq-highlight__bonus-note {
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

.bbq-plan__note {
  font-size: 12px;
  color: #8a8a80;
  margin: 16px 0 0;
  padding: 12px 16px;
  background: var(--bbq-bg);
  border-radius: 6px;
  line-height: 1.7;
}

/* Courses (Plan 02) */
.bbq-courses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bbq-course {
  background: var(--bbq-bg);
  border-radius: 8px;
  padding: 18px 20px;
  border-left: 3px solid var(--bbq-green);
}
.bbq-course__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.bbq-course__h4 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--bbq-dark);
  margin: 0;
}
.bbq-course__price {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--bbq-orange);
  white-space: nowrap;
}
.bbq-course__price small { font-size: 12px; }
.bbq-course__detail {
  font-size: 13px;
  color: #6a6a60;
  margin: 0;
  line-height: 1.6;
}

/* Table (Plan 03) */
.bbq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.bbq-table th {
  background: var(--bbq-green);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  text-align: left;
  font-size: 13px;
}
.bbq-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--bbq-border);
  color: #4a4a42;
  background: #fff;
}
.bbq-table td:last-child {
  font-weight: 700;
  color: var(--bbq-orange);
  text-align: right;
  white-space: nowrap;
}
.bbq-table tr:last-child td { border-bottom: none; }

/* ------------------------------------------
   ADD-ONS
   ------------------------------------------ */
.bbq-addons {
  padding: 72px 40px;
  background: #fff;
}
.bbq-addons__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bbq-addons__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.bbq-addons__photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.bbq-addons__photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.bbq-addons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.bbq-addon {
  background: var(--bbq-bg);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 2px solid var(--bbq-border);
}
.bbq-addon__name {
  font-size: 14px;
  color: var(--bbq-dark);
  line-height: 1.4;
}
.bbq-addon__name small {
  font-size: 11px;
  color: #9a9a90;
}
.bbq-addon__price {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--bbq-amber);
}
.bbq-addons__note {
  font-size: 12px;
  color: #9a9a90;
}

.bbq-drinks__h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--bbq-dark);
  margin: 36px 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--bbq-green);
}
.bbq-drinks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bbq-drinks__group-label {
  font-size: 12px;
  color: #8a8a80;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: .5px;
}
.bbq-drinks__group-label small {
  font-size: 11px;
  font-weight: 400;
  color: #9a9a90;
}
.bbq-drinks__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* ------------------------------------------
   NOTES
   ------------------------------------------ */
.bbq-notes {
  padding: 72px 40px;
  background: var(--bbq-bg);
}
.bbq-notes__inner {
  max-width: 760px;
  margin: 0 auto;
}
.bbq-notes__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bbq-notes__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #4a4a42;
  padding: 14px 0;
  border-bottom: 1px solid var(--bbq-border);
  line-height: 1.6;
}
.bbq-notes__list li:last-child { border-bottom: none; }
.bbq-notes__icon { flex-shrink: 0; margin-top: 2px; }

/* ------------------------------------------
   RESERVE CTA
   ------------------------------------------ */
.bbq-reserve {
  position: relative;
  padding: 100px 40px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.bbq-reserve__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 50, 28, .56);
}
.bbq-reserve__body {
  position: relative;
  z-index: 1;
  color: #fff;
}
.bbq-reserve__label {
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  opacity: .75;
  margin: 0 0 10px;
}
.bbq-reserve__h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 14px;
}
.bbq-reserve__text {
  font-size: 15px;
  line-height: 1.8;
  opacity: .88;
  margin: 0 0 36px;
}
.bbq-reserve__btns {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.bbq-btn-web {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bbq-green);
  color: #fff;
  text-decoration: none;
  padding: 20px 44px;
  border-radius: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(0,0,0,.30);
  transition: background .2s;
}
.bbq-btn-web:hover { background: #245228; }
.bbq-btn-web__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
}
.bbq-btn-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  gap: 2px;
  transition: background .2s;
}
.bbq-btn-tel:hover { background: rgba(255,255,255,.18); }
.bbq-btn-tel__small { font-size: 11px; letter-spacing: 1px; opacity: .8; }
.bbq-btn-tel__num { font-weight: 900; font-size: 24px; letter-spacing: 2px; }
.bbq-btn-tel__hours { font-size: 11px; opacity: .65; }

/* ------------------------------------------
   RESPONSIVE
   ------------------------------------------ */

@media (max-width: 900px) {
  .bbq-concept__inner { grid-template-columns: 1fr; }
  .bbq-concept__photo img { height: 240px; }
  .bbq-concept-slider { height: 240px; }
  .bbq-plan__head { flex-wrap: wrap; gap: 12px; }
  .bbq-plan__price { text-align: left; }
  .bbq-plan__list { grid-template-columns: 1fr; }
  .bbq-courses { grid-template-columns: 1fr; }
  .bbq-addons__photos { grid-template-columns: 1fr; }
  .bbq-addons__photo img { height: 200px; }
  .bbq-addons__grid { grid-template-columns: repeat(2, 1fr); }
  .bbq-drinks__grid { grid-template-columns: 1fr; }
  .bbq-drinks__items { grid-template-columns: repeat(2, 1fr); }
  .bbq-concept,
  .bbq-plans,
  .bbq-addons,
  .bbq-notes { padding-left: 20px; padding-right: 20px; }
  .bbq-plan__head,
  .bbq-plan__body { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 768px) {
  .bbq-infobar { padding: 0 20px; }
  .bbq-infobar__inner { flex-wrap: wrap; min-height: auto; padding: 14px 0; }
  .bbq-infobar__item { flex: none; padding: 8px 16px; }
  .bbq-infobar__sep { display: none; }
}
@media (max-width: 600px) {
  .bbq-hero { height: 55vh; }
  .bbq-plan__price {
    flex: 0 0 100%;
    padding-top: 4px;
    border-top: 1px solid var(--bbq-border);
    text-align: center;
  }
  .bbq-reserve__btns { flex-direction: column; align-items: stretch; }
  .bbq-btn-web,
  .bbq-btn-tel { justify-content: center; }
}
