/* ════════ SIGNATURE DINING (expanding slider) ════════ */
.dine {
  background: #214944;
  padding: 6px 0 70px;
  position: relative;
  top: -5px;
}

.dine-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 56px;
  color: var(--cream);
  margin-bottom: 18px;
}

.dine-desc {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #d6ddd5;
  padding: 0 24px;
}

.dine-track {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 16px;
  height: 340px;
}

.dine-card {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .3);
  transition: flex .55s cubic-bezier(.4, .2, .2, 1);
}

.dine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.dine-card.active img,
.dine-card:hover img {
  transform: scale(1.05);
}

.dine-card.active {
  flex: 2.6 1 0;
}

.dine-card:hover {
  flex: 2.6 1 0;
}

.dine-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.dine-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(243, 236, 224, .4);
  cursor: pointer;
  transition: .3s;
}

.dine-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 6px;
}

/* ════════ CULINARY EXPERIENCES ════════ */
.cx {
  background: #f6f2e9;
  color: var(--green);
  padding: 46px 0 30px;
}

.cx-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 26px;
  padding: 0 24px;
}

.cx-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--green);
  margin-bottom: 12px;
}

.cx-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #5d6b5f;
}

.cx-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.cx-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}

.cx-slide.active {
  opacity: 1;
}

.cx-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cx-torn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}

.cx-torn svg {
  width: 100%;
  height: 90px;
  display: block;
}

.cx-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.cx-dot {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  border: none;
  padding: 0;
  background: #c4ccc1;
  cursor: pointer;
  transition: .3s;
}

.cx-dot.active {
  background: var(--green);
}

/* ════════ RESERVE YOUR TABLE ════════ */
.rt {
  background: #f6f2e9;
  color: var(--green);
  padding: 34px 0 80px;
}

.rt-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 44px;
  padding: 0 24px;
}

.rt-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 60px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px;
}

.rt-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #5d6b5f;
}

.rt-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: stretch;
}

.rt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rt-row {
  display: flex;
  gap: 16px;
}

.rt-row .rt-input {
  flex: 1;
  min-width: 0;
}

.rt-input {
  width: 100%;
  border: 1px solid #9fb1a3;
  border-radius: 10px;
  background: transparent;
  padding: 24px 20px;
  font-size: 15px;
  color: #33473b;
  font-family: inherit;
  outline: none;
  transition: border-color .25s;
}

.rt-input:focus {
  border-color: var(--green);
}

.rt-input::placeholder {
  color: #6f7d70;
}

.rt-form .btn-gold {
  align-self: flex-start;
  font-size: 20px;
  padding: 14px 32px;
  margin-top: 6px;
}

.rt-media {
  display: flex;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}

.rt-media img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.rt-media:hover img {
  transform: scale(1.05);
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  .dine-title {
    font-size: 40px;
  }
  .dine-track {
    padding: 0 18px;
    gap: 14px;
    height: 300px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .dine-track::-webkit-scrollbar {
    display: none;
  }
  .dine-card {
    flex: 0 0 82% !important;
    scroll-snap-align: center;
  }
  .dine-card:hover,
  .dine-card.active {
    flex: 0 0 82% !important;
  }
  .cx-title {
    font-size: 36px;
  }
  .cx-slider {
    height: 340px;
  }
  .cx-torn svg {
    height: 50px;
  }
  .rt-title {
    font-size: 42px;
  }
  .rt-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .rt-media {
    order: 2;
  }
  .rt-media img {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .rt-row {
    flex-direction: column;
  }
}
