/* ============================================
   Restro. — Global styles
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Kill blue tap flash on mobile Safari / older Vivo browser */
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background: #0b0b0b;                 /* prevent white flash while loading */
  color-scheme: light only;            /* lock scheme so form fields don't invert in dark-mode browsers */
  -webkit-text-size-adjust: 100%;      /* stop iOS/Vivo from resizing text on orientation change */
  text-size-adjust: 100%;
}

/* Desktop: gently snap into the menu-stack so About fully exits
   before Breakfast enters (avoids the half-visible cut) */
@media (min-width: 769px) {
  html {
    scroll-snap-type: y proximity;
  }
  .menu-stack {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #fff;
  background: #0b0b0b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;                  /* stop horizontal scroll from any overflow (Safari + Vivo) */
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  /* Kill iOS Safari's default rounded-blue button styling */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

/* Reset form inputs on Safari/iOS so our custom styles win */
input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   Hero section
   ============================================ */

.hero {
  position: fixed;               /* fixed so JS can parallax it independently of page scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0b0b0b;
  overflow: hidden;              /* clip the scaled bg */
  display: flex;
  flex-direction: column;
  z-index: 1;
  will-change: transform;
}

/* Spacer takes the hero's place in document flow so scrolling still works */
.hero-spacer {
  height: 100vh;
  width: 100%;
}

/* Zooming background layer — sits behind everything */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/main\ dish.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

/* Respect users who disable motion */
@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: none;
  }
}

/* subtle dark gradient so text stays readable */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   Header / Nav
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 65;                              /* above hero + menus, below hamburger toggle */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

.logo__dot {
  color: #fff;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__link {
  position: relative;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  padding: 6px 0;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__link:hover {
  opacity: 0.8;
}

.nav__link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.nav__caret {
  transition: transform 0.2s ease;
}

.nav__item--dropdown {
  position: relative;
}

.nav__item--dropdown:hover .nav__caret {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  color: #1a1a1a;
  min-width: 240px;
  padding: 24px 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.nav__dropdown-list li a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: #1a1a1a;
  transition: color 0.15s ease;
}

.nav__dropdown-list li a:hover {
  color: #8a7f3d;
}

/* ---- Hamburger ---- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero content
   ============================================ */

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  padding: 0 60px 80px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #fff;
  align-self: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__right {
  justify-self: end;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 18px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  min-width: 260px;
}

.btn--primary {
  background: #8a7f3d; /* olive/dark gold from screenshot */
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--primary:hover {
  background: #756b32;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.btn__arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ============================================
   Categories section
   ============================================ */

.categories {
  position: relative;
  z-index: 2;                       /* rides above the fixed hero to cover it */
  background: #1a3a2a;              /* deep forest green */
  color: #fff;
  padding: 40px 0 96px;
}

.categories__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Top meta row */
.categories__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 24px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-weight: 600;
}

.categories__meta-item--left   { justify-self: start; }
.categories__meta-item--center { justify-self: center; }
.categories__meta-item--right  { justify-self: end; }

/* 3-column grid */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cat {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cat + .cat {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.cat__title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.cat__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
}

.cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat:hover .cat__img img {
  transform: scale(1.05);
}

.cat__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

/* ============================================
   About section
   ============================================ */

.about {
  position: relative;
  z-index: 3;                       /* above hero (fixed) and categories */
  background: #f2e9d8;              /* warm cream */
  color: #1a1a1a;
  padding: 80px 0 100px;
  border-radius: 40px 40px 0 0;     /* rounded top like screenshot */
  margin-top: -40px;                /* pull up slightly so the curve overlaps the green section */
}

.about__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.about__intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.about__label {
  font-size: 15px;
  color: #6a6a6a;
  font-weight: 500;
  padding-top: 12px;
}

.about__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about__desc {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 560px;
}

.about__btn {
  min-width: auto;
  gap: 24px;
  padding: 16px 24px;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about__img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 2px;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__img:hover img {
  transform: scale(1.04);
}

/* ============================================
   Menu section (Breakfast)
   ============================================ */

.menu-section {
  position: relative;
  z-index: 3;
  background: #1a3a2a;
  color: #fff;
  padding: 100px 140px;             /* larger side padding to keep images off the edges */
}

.menu-stack {
  position: relative;
  background: #1a3a2a;
}

/* ---- Desktop: sticky viewport with cross-fading sections ----
   .menu-stack is 200vh tall so scrolling through it gives 100vh of
   pinned viewport, during which JS cross-fades breakfast → lunch. */
@media (min-width: 769px) {
  .menu-stack {
    height: 300vh;                    /* 3 sections × 100vh scroll room */
    z-index: 3;
  }

  .menu-stack__viewport {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;                    /* layer both sections in same cell */
    overflow: hidden;
  }

  .menu-stack__viewport > .menu-section {
    grid-column: 1;
    grid-row: 1;
    height: 100vh;
    padding: 0 140px;                 /* height is fixed, so kill vertical padding */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Initial state: only breakfast visible; lunch and dinner hidden */
  .menu-stack #lunch,
  .menu-stack #dinner {
    opacity: 0;
  }

  .menu-stack .menu-section__grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Compact sizes so the whole section is well under 100vh — leaves visual
     buffer so images don't get clipped during entrance/exit transitions. */
  .menu-stack .menu-section__title {
    font-size: clamp(48px, 7vw, 110px);
  }

  .menu-stack .menu-item {
    max-width: 250px;
  }

  .menu-stack .menu-item__price {
    font-size: clamp(18px, 1.3vw, 22px);
    padding: 5px 18px;
  }

  .menu-stack .menu-item__title {
    font-size: 15px;
  }

  .menu-stack .menu-section__grid {
    column-gap: 40px;
    row-gap: 4px;
  }

  .menu-stack .menu-section__btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .menu-stack .menu-section__center {
    gap: 18px;
  }

  /* ---- Reveal animation (Lunch + Dinner) ----
     Items start slightly down + invisible. When section becomes active,
     they slide up + fade in with a staggered delay. */
  .menu-stack #lunch .menu-item,
  .menu-stack #lunch .menu-section__center,
  .menu-stack #dinner .menu-item,
  .menu-stack #dinner .menu-section__center {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .menu-stack #lunch.is-active .menu-item,
  .menu-stack #lunch.is-active .menu-section__center,
  .menu-stack #dinner.is-active .menu-item,
  .menu-stack #dinner.is-active .menu-section__center {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger each corner + the center title */
  .menu-stack .is-active .menu-item--tl        { transition-delay: 0.05s; }
  .menu-stack .is-active .menu-item--tr        { transition-delay: 0.12s; }
  .menu-stack .is-active .menu-section__center { transition-delay: 0.20s; }
  .menu-stack .is-active .menu-item--bl        { transition-delay: 0.28s; }
  .menu-stack .is-active .menu-item--br        { transition-delay: 0.35s; }

  /* Image itself gently scales up when revealing */
  .menu-stack #lunch .menu-item__img img,
  .menu-stack #dinner .menu-item__img img {
    transform: scale(1.08);
    transition: transform 0.7s ease;
  }
  .menu-stack #lunch.is-active .menu-item__img img,
  .menu-stack #dinner.is-active .menu-item__img img {
    transform: scale(1);
  }
}

.menu-section__grid {
  max-width: 1200px;                /* narrower grid = more breathing room */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-areas:
    "tl  .       tr"
    "cen cen cen"
    "bl  .       br";
  column-gap: 60px;
  row-gap: 8px;                     /* tight vertical spacing between rows */
  align-items: start;
}

.menu-item--tl { grid-area: tl; }
.menu-item--tr { grid-area: tr; }
.menu-item--bl { grid-area: bl; }
.menu-item--br { grid-area: br; }

.menu-section__center {
  grid-area: cen;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0;                        /* no extra vertical padding */
}

.menu-section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(64px, 11vw, 170px);
  line-height: 0.9;
  letter-spacing: -2px;
  color: #fff;
  text-align: center;
  margin: 0;                         /* kill default heading margins */
}

.menu-section__btn {
  min-width: auto;
  padding: 14px 22px;
  gap: 20px;
  font-size: 15px;
}

/* Individual menu item */
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;                 /* keep images compact so captions match width */
  width: 100%;
}

/* Right column items hug the right edge of their column */
.menu-item--tr,
.menu-item--br {
  justify-self: end;
}

.menu-item__img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
}

.menu-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-item__img img {
  transform: scale(1.05);
}

/* White pill price tag centered on the image */
.menu-item__price {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #1a1a1a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 32px);
  padding: 8px 26px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.menu-item__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  text-align: center;               /* centered under the image */
}

/* ============================================
   Exclusive Items section
   ============================================ */

.exclusive {
  position: relative;
  z-index: 3;
  background: #f2e9d8;              /* same cream as About */
  color: #1a1a1a;
  padding: 100px 0;
}

.exclusive__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.exclusive__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.exclusive__label {
  font-size: 15px;
  color: #6a6a6a;
  font-weight: 500;
  margin-bottom: 18px;
}

.exclusive__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.exclusive__btn {
  min-width: auto;
  gap: 24px;
  padding: 16px 24px;
  flex-shrink: 0;
}

.exclusive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

/* Individual dish card */
.dish {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dish__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 6px;
  /* Reveal animation: start as a tiny dot in the center, expand to full */
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
  transition: -webkit-clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                      clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.dish.is-revealed .dish__img {
  -webkit-clip-path: circle(75% at 50% 50%);
          clip-path: circle(75% at 50% 50%);
}

/* Stagger reveal per column so left → middle → right sweeps */
.dish:nth-child(3n + 1) .dish__img { transition-delay: 0.00s; }
.dish:nth-child(3n + 2) .dish__img { transition-delay: 0.15s; }
.dish:nth-child(3n)     .dish__img { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  .dish__img {
    -webkit-clip-path: none;
            clip-path: none;
    transition: none;
  }
}

.dish__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish:hover .dish__img img {
  transform: scale(1.04);
}

.dish__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.dish__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.dish__price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.dish__desc {
  font-size: 15px;
  color: #6a6a6a;
  line-height: 1.5;
}

.dish__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 4px 0;
}

.dish__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.dish__stars {
  color: #e07f2e;                   /* orange stars */
  letter-spacing: 2px;
  font-size: 16px;
}

.dish__rating-text {
  color: #5a5a5a;
}

/* ============================================
   Menu List section
   ============================================ */

.menu-list {
  position: relative;
  z-index: 3;
  background: #1a3a2a;               /* same dark green as menu-stack / categories */
  color: #fff;
  padding: 120px 60px;
}

.menu-list__inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.menu-list__label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.menu-list__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 50px;
}

/* Filter buttons */
.menu-list__filters {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}

.filter-btn {
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.filter-btn.is-active {
  background: #8a7f3d;                /* olive gold, same as reservation button */
  border-color: #8a7f3d;
}

/* Item rows */
.menu-list__items {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Only the active group is visible */
.menu-list__group {
  display: none;
}

.menu-list__group.is-active {
  display: block;
}

.menu-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

/* Hover preview image — desktop only */
.menu-row__preview {
  display: none;                     /* enabled inside desktop media query */
}

@media (min-width: 769px) {
  .menu-row__preview {
    display: block;
    position: absolute;
    top: 50%;
    right: 24%;
    width: 150px;
    height: 100px;
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
    transform: translate(20px, -50%) rotate(-5deg) scale(0.85);
    transition: opacity 0.35s ease,
                transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 5;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  }

  .menu-row:hover .menu-row__preview {
    opacity: 1;
    transform: translate(0, -50%) rotate(-5deg) scale(1);
  }

  /* Alternate rotation per row for visual variety */
  .menu-row:nth-child(2) .menu-row__preview {
    transform: translate(-20px, -50%) rotate(6deg) scale(0.85);
  }
  .menu-row:nth-child(2):hover .menu-row__preview {
    transform: translate(0, -50%) rotate(6deg) scale(1);
  }

  .menu-row:nth-child(3) .menu-row__preview {
    transform: translate(20px, -50%) rotate(-8deg) scale(0.85);
  }
  .menu-row:nth-child(3):hover .menu-row__preview {
    transform: translate(0, -50%) rotate(-8deg) scale(1);
  }

  .menu-row:nth-child(4) .menu-row__preview {
    transform: translate(-20px, -50%) rotate(4deg) scale(0.85);
  }
  .menu-row:nth-child(4):hover .menu-row__preview {
    transform: translate(0, -50%) rotate(4deg) scale(1);
  }
}

.menu-row__num {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 16px;
}

.menu-row__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.menu-row__price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 700;
  color: #fff;
  text-align: right;
  padding-right: 16px;
  white-space: nowrap;
}

/* ============================================
   Chef section
   ============================================ */

.chef {
  position: relative;
  z-index: 3;
  min-height: 90vh;
  background: #f2e9d8;              /* cream — matches Exclusive Items behind the animating image */
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 60px;
}

/* Chef background — animatable via clip-path */
.chef__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.chef.is-revealed .chef__bg {
  -webkit-clip-path: circle(75% at 50% 50%);
          clip-path: circle(75% at 50% 50%);
}

@media (prefers-reduced-motion: reduce) {
  .chef__bg {
    -webkit-clip-path: none;
            clip-path: none;
    transition: none;
  }
}

.chef__inner {
  position: relative;                /* keep above the animating bg */
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.chef__card {
  background: #fff;
  color: #1a1a1a;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.chef__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 24px;
}

.chef__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef__quote {
  font-size: 15px;
  line-height: 1.65;
  color: #5a5a5a;
  margin-bottom: 22px;
  font-style: normal;
}

.chef__name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.chef__title {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 4px;
}

/* ============================================
   Testimonials section
   ============================================ */

.testimonial {
  position: relative;
  z-index: 3;
  background: #f2e9d8;
  color: #1a1a1a;
  padding: 100px 0 100px;
  overflow: hidden;
}

.testimonial__header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 60px;
}

.testimonial__label {
  font-size: 15px;
  color: #6a6a6a;
  font-weight: 500;
  margin-bottom: 18px;
}

.testimonial__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

/* Marquee wrapper — clips overflowing cards */
.testimonial__marquee {
  overflow: hidden;
  width: 100%;
}

/* Sliding track — must be width: max-content so children lay out unwrapped */
.testimonial__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 12px;
  animation: testi-scroll 70s linear infinite;
}

@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* half = length of the original 10 (duplicated) */
}

.testimonial-card {
  flex: 0 0 auto;
  width: 320px;
  min-height: 340px;
  background: #fff;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}

.testimonial-card__stars {
  color: #e07f2e;
  letter-spacing: 3px;
  font-size: 18px;
}

.testimonial-card figcaption {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial__track {
    animation: none;
  }
}

/* ============================================
   Blog section
   ============================================ */

.blog {
  position: relative;
  z-index: 3;
  background: #f2e9d8;
  color: #1a1a1a;
  padding: 100px 0 120px;
}

.blog__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.blog__label {
  font-size: 15px;
  color: #6a6a6a;
  font-weight: 500;
  margin-bottom: 14px;
}

.blog__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.blog__btn {
  min-width: auto;
  gap: 24px;
  padding: 16px 24px;
  flex-shrink: 0;
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Individual blog card */
.blog-card {
  background: #ebe1cf;                /* slightly warmer/darker than section */
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.03);
}

.blog-card__meta {
  font-size: 14px;
  color: #6a6a6a;
}

.blog-card__meta span {
  font-style: italic;
}

.blog-card__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

.blog-card__link {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s ease;
  margin-top: 4px;
}

.blog-card__link:hover {
  color: #8a7f3d;
}

/* ============================================
   Reservation form section
   ============================================ */

.reservation-section {
  position: relative;
  z-index: 3;
  background: #f2e9d8;
  color: #1a1a1a;
  padding: 100px 0 120px;
}

.reservation-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reservation-section__label {
  font-size: 15px;
  color: #6a6a6a;
  font-weight: 500;
  margin-bottom: 24px;
}

.reservation-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

/* Form box */
.reservation-form {
  background: #1a3a2a;               /* dark green */
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.reservation-form__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.form-field label .req {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-left: 4px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M2.5 4.5L6 8L9.5 4.5' stroke='%23ffffff' stroke-opacity='0.65' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 26px;
  cursor: pointer;
}

.form-field select option {
  background: #1a3a2a;
  color: #fff;
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: #fff;
}

.reservation-form__submit {
  align-self: flex-start;
  min-width: auto;
  gap: 22px;
  padding: 14px 22px;
  margin-top: 8px;
}

/* Date input tweaks so the placeholder-style text stays consistent */
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.55);
  cursor: pointer;
}

/* ============================================
   Site footer
   ============================================ */

.site-footer {
  position: relative;
  z-index: 3;
  background: #1a3a2a;
  color: #fff;
  padding: 90px 0 40px;
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Top: 4 columns */
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 80px;
}

.footer-col__title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col__list li,
.footer-col__list a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-col__list a {
  transition: opacity 0.15s ease;
}

.footer-col__list a:hover {
  opacity: 0.75;
}

/* Middle: subscribe + socials */
.site-footer__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-subscribe {
  display: flex;
  align-items: stretch;
  max-width: 500px;
  width: 100%;
}

.footer-subscribe input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #8a7f3d;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.footer-subscribe button:hover {
  background: #756b32;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-socials__label {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.footer-socials a {
  color: #fff;
  transition: opacity 0.15s ease;
}

.footer-socials a:hover {
  opacity: 0.75;
}

/* Bottom: copyright row */
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   Backdrop (shared)
   ============================================ */

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 40;
}

.backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   Reservation side panel (desktop hamburger)
   ============================================ */

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 520px;
  max-width: 90vw;
  background: #1a1a1a;
  color: #fff;
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.4);
}

.side-panel.is-open {
  transform: translateX(0);
}

.side-panel__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  padding: 8px;
  transition: opacity 0.2s ease;
}

.side-panel__close:hover {
  opacity: 0.7;
}

.side-panel__inner {
  padding: 80px 56px 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.side-panel__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.side-panel__block h3.side-panel__heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.side-panel__block p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

.side-panel .btn {
  margin-top: 4px;
}

/* ============================================
   Mobile menu (full screen, white)
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 80px;                 /* leave the header row visible */
  bottom: 180px;             /* leave description + reservation button visible */
  left: 0;
  right: 0;
  background: #fff;
  color: #1a1a1a;
  z-index: 60;
  transform: translateX(100%);    /* slides in from the right side */
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__body {
  padding: 32px 28px;
  flex: 1;
}

.mobile-menu__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.mobile-menu__list li a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: #1a1a1a;
  transition: color 0.15s ease;
}

.mobile-menu__list li a:hover {
  color: #8a7f3d;
}

/* Lock scroll when panel/menu open */
body.is-locked {
  overflow: hidden;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .site-header {
    padding: 24px 32px;
  }

  .nav__list {
    gap: 32px;
  }

  .hero__content {
    padding: 0 32px 60px;
  }

  .categories__inner {
    padding: 0 32px;
  }

  .cat {
    padding: 40px 24px;
  }

  .cat__title {
    font-size: 28px;
  }

  /* About: tighter padding on tablet */
  .about__inner {
    padding: 0 32px;
  }

  .about__intro {
    gap: 40px;
  }

  /* Menu section: shrink title, tighter padding */
  .menu-section {
    padding: 80px 60px;
  }

  .menu-section__grid {
    column-gap: 32px;
    row-gap: 32px;
  }

  /* Exclusive: tighter padding */
  .exclusive {
    padding: 80px 0;
  }

  .exclusive__inner {
    padding: 0 32px;
  }

  .exclusive__grid {
    gap: 32px 24px;
  }

  /* Chef: tighter padding */
  .chef {
    padding: 60px 32px;
  }

  /* Menu list: tighter padding */
  .menu-list {
    padding: 80px 32px;
  }

  .menu-list__filters {
    margin-bottom: 48px;
  }

  /* Testimonial: tighter padding */
  .testimonial {
    padding: 80px 0;
  }

  .testimonial__header {
    padding: 0 32px 40px;
  }

  /* Blog: tighter padding */
  .blog {
    padding: 80px 0;
  }

  .blog__inner {
    padding: 0 32px;
  }

  /* Reservation form: tighter padding */
  .reservation-section {
    padding: 80px 0;
  }

  .reservation-section__inner {
    padding: 0 32px;
    gap: 40px;
  }

  /* Footer: 2 columns on tablet */
  .site-footer {
    padding: 70px 0 30px;
  }

  .site-footer__inner {
    padding: 0 32px;
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
    padding-bottom: 56px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .site-header {
    padding: 20px 24px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding: 0 24px 40px;
    gap: 24px;
    align-items: end;
  }

  .hero__title {
    font-size: clamp(36px, 9vw, 56px);
  }

  .hero__right {
    justify-self: start;
    max-width: 100%;
    width: 100%;
  }

  /* Smaller reservation button on mobile */
  .hero__right .btn {
    min-width: auto;
    width: auto;
    align-self: flex-start;
    padding: 12px 20px;
    font-size: 14px;
    gap: 20px;
  }

  .hero__right .btn__arrow {
    width: 16px;
    height: 16px;
  }

  /* Make hamburger / close X more visible on mobile */
  .hamburger {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    padding: 0;
    align-items: center;
    position: relative;
  }

  .hamburger span {
    width: 20px;
  }

  .hamburger.is-open {
    background: #fff;
  }

  .hamburger.is-open span {
    background: #1a1a1a;
  }

  /* ---- Categories: stack vertically ---- */
  .categories {
    padding: 24px 0 60px;
  }

  .categories__inner {
    padding: 0 24px;
  }

  .categories__meta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px 0 24px;
  }

  .categories__meta-item--left,
  .categories__meta-item--center,
  .categories__meta-item--right {
    justify-self: start;
  }

  .categories__grid {
    grid-template-columns: 1fr;
  }

  .cat {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .cat + .cat {
    border-left: none;      /* remove vertical divider on mobile */
  }

  .cat:last-child {
    border-bottom: none;
  }

  .cat__title {
    font-size: 30px;
  }

  .cat__img {
    aspect-ratio: 4 / 5;    /* taller crop to match screenshot */
  }

  /* ---- About: stack everything vertically ---- */
  .about {
    padding: 48px 0 60px;
    border-radius: 28px 28px 0 0;
    margin-top: -28px;
  }

  .about__inner {
    padding: 0 24px;
  }

  .about__intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .about__label {
    padding-top: 0;
  }

  .about__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .about__images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about__img {
    aspect-ratio: 4 / 3;
  }

  /* ---- Menu section: 2 items / center / 2 items ---- */
  .menu-section {
    padding: 40px 20px 60px;
  }

  .menu-section__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "tl tr"
      "cen cen"
      "bl br";
    column-gap: 16px;
    row-gap: 24px;
  }

  .menu-section__center {
    gap: 24px;
    padding: 24px 0;
  }

  .menu-section__title {
    font-size: clamp(48px, 14vw, 84px);
  }

  .menu-item {
    gap: 12px;
  }

  .menu-item__title {
    font-size: 16px;
  }

  .menu-item__price {
    font-size: 22px;
    padding: 6px 20px;
  }

  /* ---- Exclusive: stack header + single-column grid ---- */
  .exclusive {
    padding: 48px 0 60px;
  }

  .exclusive__inner {
    padding: 0 24px;
  }

  .exclusive__header {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 32px;
  }

  .exclusive__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .exclusive__btn {
    align-self: flex-start;
    padding: 12px 20px;
    font-size: 14px;
    gap: 20px;
  }

  .exclusive__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ---- Chef: stack + center ---- */
  .chef {
    min-height: auto;
    padding: 60px 20px;
  }

  .chef__inner {
    justify-content: center;
  }

  .chef__card {
    max-width: 100%;
    padding: 24px;
  }

  .chef__photo {
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
  }

  .chef__quote {
    font-size: 14px;
  }

  /* ---- Menu list: stack the row (num on top, name center, price bottom-right) ---- */
  .menu-list {
    padding: 48px 20px 60px;
  }

  .menu-list__title {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 32px;
  }

  .menu-list__filters {
    gap: 8px;
    margin-bottom: 32px;
  }

  .filter-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .menu-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 28px 0;
  }

  .menu-row__num {
    padding: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
  }

  .menu-row__name {
    font-size: 26px;
    text-align: center;
    line-height: 1.2;
  }

  .menu-row__price {
    font-size: 18px;
    text-align: center;
    padding: 0;
  }

  /* ---- Testimonial: smaller cards on mobile ---- */
  .testimonial {
    padding: 48px 0 60px;
  }

  .testimonial__header {
    padding: 0 24px 32px;
  }

  .testimonial__title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .testimonial__track {
    gap: 16px;
    animation-duration: 50s;
  }

  .testimonial-card {
    width: 260px;
    min-height: 280px;
    padding: 28px 22px;
  }

  .testimonial-card blockquote {
    font-size: 15px;
  }

  /* ---- Blog: stack header + single column ---- */
  .blog {
    padding: 48px 0 60px;
  }

  .blog__inner {
    padding: 0 20px;
  }

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .blog__title {
    font-size: clamp(30px, 8vw, 44px);
  }

  .blog__btn {
    align-self: flex-start;
    padding: 12px 20px;
    font-size: 14px;
    gap: 20px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card {
    padding: 20px;
    gap: 18px;
  }

  .blog-card__img {
    aspect-ratio: 4 / 3;
  }

  .blog-card__title {
    font-size: 22px;
  }

  /* ---- Reservation form: stack columns and rows ---- */
  .reservation-section {
    padding: 48px 0 60px;
  }

  .reservation-section__inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
  }

  .reservation-section__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .reservation-form {
    padding: 24px;
    gap: 22px;
  }

  .reservation-form__title {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* ---- Footer: stack everything ---- */
  .site-footer {
    padding: 48px 0 30px;
  }

  .site-footer__inner {
    padding: 0 24px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-col__title {
    margin-bottom: 16px;
  }

  .footer-col__list {
    gap: 14px;
  }

  .site-footer__middle {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding-bottom: 40px;
  }

  .footer-subscribe {
    flex-direction: column;
    max-width: 100%;
  }

  .footer-subscribe button {
    justify-content: center;
    padding: 14px 22px;
  }

  .footer-socials {
    justify-content: flex-start;
    gap: 20px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
