:root {
  --restaurant-border: rgba(17, 17, 17, 0.07);
  --restaurant-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  --restaurant-shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.06);
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: var(--color-light);
}

.restaurant-hero,
.restaurant-section {
  overflow: hidden;
}

/* =========================
   HERO
========================= */
.restaurant-hero {
  margin-bottom: 56px;
}

.restaurant-hero__content {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.restaurant-hero__content .hero-title {
  margin: 0;
  max-width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
}

.restaurant-hero .hero-bg {
  background-position: center center;
}

/* =========================
   LAYOUT
========================= */
.restaurant-section {
  padding: 88px var(--side-padding);
}

.restaurant-section--light {
  background: linear-gradient(
    180deg,
    rgba(150, 157, 168, 0.08) 0%,
    rgba(243, 239, 231, 1) 100%
  );
}

.restaurant-section--menu {
  background-color: #f9f6f0;
}

.restaurant-section--signature {
  background: linear-gradient(
    180deg,
    rgba(88, 73, 16, 0.04) 0%,
    rgba(243, 239, 231, 1) 100%
  );
}

/* =========================
   INTRO — centree
========================= */
.restaurant-intro-section {
  padding-top: 52px;
  padding-bottom: 52px;
  background-color: var(--color-light);
}

.restaurant-intro-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.restaurant-intro-copy .section-kicker {
  text-align: center;
}

.restaurant-intro-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 54ch;
}

.restaurant-intro-body {
  margin: 0 auto 18px;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(17, 17, 17, 0.82);
  text-align: center;
}

.restaurant-section--cta {
  padding-top: 72px;
  padding-bottom: 92px;
}

.restaurant-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.restaurant-split-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 38px;
  align-items: center;
}

.restaurant-split-grid--reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.restaurant-copy {
  max-width: 640px;
}

.restaurant-editorial-title {
  max-width: 12ch;
  font-style: italic;
}

.restaurant-editorial-title--center {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.restaurant-body {
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(17, 17, 17, 0.82);
}

.restaurant-visual {
  width: 100%;
  border: 1px solid var(--restaurant-border);
  box-shadow: var(--restaurant-shadow);
  overflow: hidden;
}

.restaurant-visual--tall {
  min-height: 640px;
}

.restaurant-visual--wide {
  min-height: 540px;
}

.restaurant-heading {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

/* =========================
   CAROUSEL
========================= */
.restaurant-carousel__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.restaurant-carousel__intro {
  max-width: 760px;
}

.restaurant-carousel__text {
  margin: 0;
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(17, 17, 17, 0.78);
}

.restaurant-carousel__controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.restaurant-carousel__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(88, 73, 16, 0.18);
  background-color: rgba(255, 255, 255, 0.74);
  color: rgba(68, 56, 12, 0.96);
  font-size: 1.05rem;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.restaurant-carousel__arrow:hover {
  transform: translateY(-1px);
  background-color: var(--color-white);
  border-color: rgba(88, 73, 16, 0.32);
}

.restaurant-carousel__viewport {
  overflow: hidden;
}

.restaurant-carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.restaurant-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--restaurant-border);
  box-shadow: var(--restaurant-shadow-soft);
  overflow: hidden;
}

.restaurant-slide__image {
  min-height: 100%;
}

.restaurant-slide__content {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.restaurant-slide__kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(88, 73, 16, 0.78);
}

.restaurant-slide__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.02;
  font-weight: 500;
  color: var(--color-black);
}

.restaurant-slide__text {
  margin: 0;
  max-width: 30ch;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(17, 17, 17, 0.8);
}

.restaurant-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.restaurant-carousel__dot {
  width: 10px;
  height: 10px;
  border: none;
  background-color: rgba(88, 73, 16, 0.2);
  border-radius: 50%;
  cursor: pointer;
}

.restaurant-carousel__dot.is-active {
  background-color: rgba(68, 56, 12, 0.96);
  transform: scale(1.08);
}

/* =========================
   MENUS
========================= */
.restaurant-menu {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(243, 239, 231, 0.96) 100%
  );
  border: 1px solid rgba(88, 73, 16, 0.08);
  box-shadow: var(--restaurant-shadow-soft);
  padding: 30px;
}

.restaurant-menu__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.restaurant-menu__tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(88, 73, 16, 0.18);
  background-color: rgba(255, 255, 255, 0.82);
  color: rgba(68, 56, 12, 0.96);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.restaurant-menu__tab:hover {
  transform: translateY(-1px);
  border-color: rgba(88, 73, 16, 0.3);
}

.restaurant-menu__tab.is-active {
  background-color: rgba(88, 73, 16, 0.96);
  border-color: rgba(88, 73, 16, 0.96);
  color: var(--color-white);
}

.restaurant-menu__panel {
  display: none;
}

.restaurant-menu__panel.is-active {
  display: block;
}

.restaurant-menu__header {
  text-align: center;
  margin-bottom: 26px;
}

.restaurant-menu__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.02;
  font-weight: 500;
  color: var(--color-black);
}

.restaurant-menu__subtitle {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(17, 17, 17, 0.78);
}

.dish-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dish-group {
  padding: 22px 20px;
  background-color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(88, 73, 16, 0.08);
}

.dish-group__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.dish-group__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 500;
  color: var(--color-black);
}

.dish-group__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  background-color: rgba(150, 157, 168, 0.18);
  color: rgba(68, 56, 12, 0.96);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dish-card {
  padding: 14px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.dish-card:first-of-type {
  border-top: none;
  padding-top: 0;
}

.dish-card__title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.88);
}

.dish-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.66;
  color: rgba(17, 17, 17, 0.74);
}

/* =========================
   CTA
========================= */
.restaurant-cta {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 26px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(243, 239, 231, 0.96) 100%
  );
  border: 1px solid rgba(88, 73, 16, 0.08);
}

.restaurant-cta__text {
  max-width: 56ch;
  margin: 0 auto 26px;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(17, 17, 17, 0.8);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .restaurant-split-grid,
  .restaurant-split-grid--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .restaurant-visual--tall {
    min-height: 560px;
  }

  .restaurant-visual--wide {
    min-height: 480px;
  }
}

@media (max-width: 900px) {
  .restaurant-hero {
    min-height: auto;
    height: clamp(320px, 58vw, 520px);
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 28px;
    align-items: flex-end;
  }

  .restaurant-hero__content .hero-title {
    white-space: normal;
    max-width: 10ch;
  }

  .restaurant-section {
    padding: 72px var(--side-padding);
  }

  .restaurant-section--cta {
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .restaurant-split-grid,
  .restaurant-split-grid--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .restaurant-copy {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .restaurant-copy .section-description,
  .restaurant-copy .restaurant-body {
    margin-left: auto;
    margin-right: auto;
  }

  .restaurant-editorial-title {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .restaurant-visual--tall,
  .restaurant-visual--wide {
    min-height: 420px;
  }

  .restaurant-heading {
    margin-bottom: 28px;
  }

  .restaurant-carousel__top {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 18px;
  }

  .restaurant-carousel__controls {
    align-self: flex-start;
  }

  .restaurant-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .restaurant-slide__image {
    min-height: 340px;
  }

  .restaurant-slide__content {
    padding: 26px 22px;
  }

  .restaurant-slide__text {
    max-width: 100%;
  }

  .restaurant-menu {
    padding: 22px 18px;
  }

  .restaurant-menu__tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  .restaurant-menu__tab {
    min-width: 0;
    width: 100%;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .dish-groups {
    grid-template-columns: 1fr;
  }

  .dish-group {
    padding: 20px 18px;
  }

  .restaurant-cta {
    padding: 40px 22px;
  }
}

@media (max-width: 640px) {
  .restaurant-hero {
    min-height: auto;
    height: clamp(260px, 62vw, 380px);
    padding-top: calc(var(--header-height) + 8px);
    padding-bottom: 20px;
    margin-bottom: 0;
  }

  .restaurant-hero__content .hero-title {
    font-size: clamp(2rem, 10vw, 3.3rem);
    max-width: 11ch;
    line-height: 1.08;
  }

  .restaurant-section {
    padding: 56px var(--side-padding);
  }

  .restaurant-section--cta {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .restaurant-visual--tall,
  .restaurant-visual--wide {
    min-height: 300px;
  }

  .restaurant-carousel__text,
  .restaurant-body,
  .dish-card__text,
  .restaurant-cta__text,
  .restaurant-menu__subtitle {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .restaurant-slide__image {
    min-height: 240px;
  }

  .restaurant-slide__title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .restaurant-slide__content {
    padding: 20px 18px;
  }

  .restaurant-menu {
    padding: 18px 14px;
  }

  .restaurant-menu__tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 20px;
  }

  .restaurant-menu__tab {
    min-height: 42px;
    padding: 0 6px;
    font-size: 0.8rem;
    letter-spacing: 0;
  }

  .restaurant-menu__title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .dish-group {
    padding: 18px 16px;
  }

  .dish-group__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dish-group__title {
    font-size: 1.28rem;
  }

  .dish-group__chip {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .dish-card__title {
    font-size: 0.96rem;
  }

  .restaurant-cta {
    padding: 34px 18px;
  }
}

@media (max-width: 380px) {
  .restaurant-menu__tab {
    font-size: 0.74rem;
    padding: 0 4px;
  }

  .restaurant-slide__image {
    min-height: 220px;
  }

  .restaurant-visual--tall,
  .restaurant-visual--wide {
    min-height: 260px;
  }
}