/* ============================================================
   Template #2 — SAVEUR Restaurant Single-Page Website Stylesheet
   Premium Fine Dining | Midnight & Bronze Visual Redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

:root {
  --resto-charcoal:       #080808; 
  --resto-charcoal-light: #161616;
  --resto-charcoal-mid:   #111111;
  --resto-amber:          #D4AF37; 
  --resto-amber-hover:    #B5952F;
  --resto-gold:           #C77935;
  --resto-cream:          #FFFBF0;
  
  --resto-text-dark:      #111111;
  --resto-text-light:     #F5F5F5;
  --resto-text-muted:     #888888;
  
  --resto-border-dark:    rgba(212, 175, 55, 0.2);
  --resto-border-amber:   var(--resto-amber);
  
  --resto-radius-sm:      0px;
  --resto-radius:         4px;
  --resto-radius-lg:      8px;
  --resto-radius-pill:    999px;
  
  --navbar-height:        80px;
  --system-bar-height:    46px;
  --scroll-offset: calc(var(--system-bar-height) + var(--navbar-height) + 16px);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background-color: var(--resto-charcoal);
  color: var(--resto-text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: 0.3s ease; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

section[id] { scroll-margin-top: var(--scroll-offset); }

.resto-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.resto-text-amber { color: var(--resto-amber); }

.resto-eyebrow {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--resto-amber);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 1px;
}


.resto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.resto-btn--primary {
  background: transparent;
  color: var(--resto-amber);
  border: 1px solid var(--resto-amber);
}
.resto-btn--primary:hover {
  background: var(--resto-amber);
  color: var(--resto-charcoal);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.resto-btn--ghost {
  border: 2px solid var(--resto-text-light);
  color: var(--resto-text-light);
}
.resto-btn--ghost:hover {
  border-color: var(--resto-amber);
  color: var(--resto-amber);
}
.resto-btn--sm { padding: 8px 20px; font-size: 0.8rem; }
.resto-btn--wide { padding: 14px 40px; }


/* =========================================================
   SYSTEM PREVIEW BAR OFFSET
   ========================================================= */
body { padding-top: 0; }

/* =========================================================
   NAVBAR
   ========================================================= */
.resto-nav {
  position: fixed; top: var(--system-bar-height); left: 0; width: 100%; z-index: 1000;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}
.resto-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.resto-nav__logo { display: flex; align-items: center; gap: 10px; }
.resto-nav__logo-icon { display: flex; align-items: center; color: var(--resto-amber); }
.resto-nav__logo-text { display: flex; flex-direction: column; }
.resto-nav__logo-name { font-size: 1.5rem; font-weight: 700; font-family: var(--font-serif); letter-spacing: 3px; color: var(--resto-amber); }
.resto-nav__logo-tag { font-size: 0.55rem; letter-spacing: 3px; color: var(--resto-text-muted); margin-top: 2px; }

.resto-nav__links { display: flex; gap: 24px; }
.resto-nav__link { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--resto-text-muted); position: relative; padding: 4px 0; white-space: nowrap; }
.resto-nav__link:hover { color: var(--resto-text-light); }
.resto-nav__link.is-active { color: var(--resto-amber); }
.resto-nav__cta { background: transparent; border: 1px solid var(--resto-amber); color: var(--resto-amber); font-weight: 500; padding: 12px 28px; border-radius: 0; font-size: 0.8rem; letter-spacing: 3px; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; white-space: nowrap; text-decoration: none; text-transform: uppercase; }
.resto-nav__cta:hover { background: var(--resto-amber); color: var(--resto-charcoal); box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }

.resto-nav__hamburger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.resto-nav__hamburger-bar { width: 24px; height: 2px; background: #fff; transition: 0.3s; }
.resto-nav__drawer { 
  display: none; 
  position: absolute; 
  top: 100%; 
  left: 0; 
  right: 0; 
  height: calc(100vh - var(--navbar-height));
  height: calc(100dvh - var(--navbar-height));
  overflow-y: auto;
  background: #080808; 
  padding: 20px; 
  transform: translateY(-10px); 
  opacity: 0; 
  pointer-events: none; 
  transition: 0.3s; 
}
.resto-nav__drawer.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
.resto-nav__drawer-link { display: block; padding: 14px; font-weight: 700; color: #fff; border-bottom: 1px solid #222; text-transform: uppercase; }
.resto-nav__drawer-cta { width: 100%; margin-top: 24px; }

/* =========================================================
   DIVIDERS & TRANSITIONS
   ========================================================= */
.resto-divider-fade {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.25) 50%, transparent 100%);
  margin: 0;
  border: none;
}

.resto-parallax-divider {
  width: 100%;
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.resto-parallax-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.4);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.resto-hero { position: relative; min-height: 100vh; padding-top: var(--navbar-height); padding-bottom: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--resto-charcoal); }
.resto-hero__bg { position: absolute; inset: 0; opacity: 1; }
.resto-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.resto-hero__bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.75) 35%, rgba(8,8,8,0.15) 65%, transparent 100%), linear-gradient(to top, var(--resto-charcoal) 0%, transparent 15%); }

.resto-hero__inner { position: relative; z-index: 2; width: 100%; margin-bottom: 4vh; }
.resto-hero__content { width: 100%; max-width: 650px; margin-right: auto; }

.resto-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--resto-text-light);
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.resto-hero__title-accent {
  font-style: italic;
}
.resto-hero__desc {
  font-size: 1.05rem;
  color: #cccccc;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.resto-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.resto-hero__actions .resto-btn { padding: 14px 32px; font-size: 0.9rem; font-weight: 800; letter-spacing: 1px; }

.resto-hero__trust { display: flex; gap: 32px; border-top: none; padding-top: 0; }
.resto-hero__trust-item { display: flex; align-items: center; gap: 12px; position: relative; padding-right: 32px; }
.resto-hero__trust-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(255, 184, 0, 0.3); }
.resto-hero__trust-icon { color: var(--resto-amber); }
.resto-hero__trust-text { display: flex; flex-direction: column; }
.resto-hero__trust-label { font-size: 0.65rem; color: var(--resto-amber); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.resto-hero__trust-value { font-size: 0.9rem; font-weight: 600; margin-top: 2px; }

.resto-hero__badge {
  position: absolute;
  top: 15%;
  right: -80px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.resto-hero__badge-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  background: rgba(8,8,8,0.2);
  transform: rotate(-10deg);
}
.resto-hero__badge-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.resto-hero__badge-center {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px dashed var(--resto-amber);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  background: rgba(8,8,8,0.3);
  backdrop-filter: blur(2px);
}
.resto-hero__badge-fresh { font-size: 1.3rem; font-weight: 900; color: var(--resto-amber); }
.resto-hero__badge-ing { font-size: 0.65rem; color: #fff; font-weight: 700; letter-spacing: 1px; }
.resto-hero__badge-stars { font-size: 0.6rem; color: var(--resto-amber); }

/* =========================================================
   CATEGORY FILTER (EDITORIAL)
   ========================================================= */
.resto-categories {
  width: 100%;
}
.resto-categories__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.resto-categories__item {
  background: transparent;
  border: none;
  color: var(--resto-text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}
.resto-categories__item:hover {
  color: var(--resto-text-light);
}
.resto-categories__item.is-active {
  color: var(--resto-amber);
}
.resto-categories__sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
}

/* =========================================================
   BESTSELLERS
   ========================================================= */
.resto-menu { padding: 80px 0 100px 0; background: var(--resto-charcoal); }
.resto-menu__header { text-align: center; margin-bottom: 50px; display: flex; flex-direction: column; align-items: center; }
.resto-menu__header .resto-eyebrow { font-size: 0.85rem; font-weight: 700; color: var(--resto-amber); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.resto-section-title { font-family: var(--font-serif); font-size: 3rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0; color: var(--resto-text-light); }
.resto-section-subtitle { font-size: 1rem; color: var(--resto-text-muted); font-style: italic; margin-top: 12px; }

.resto-menu__grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 60px 40px; 
  margin-bottom: 50px; 
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Frameless Editorial Dish Card */
.resto-dish-card { 
  background: transparent; 
  border: none; 
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
}
.resto-dish-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid rgba(212, 175, 55, 0.3);
  pointer-events: none;
  z-index: 0;
  transition: all 0.4s ease;
}
.resto-dish-card:hover { 
  transform: translateY(-4px); 
}
.resto-dish-card:hover::before {
  border-color: rgba(212, 175, 55, 0.6);
  top: -16px;
  left: -16px;
}
.resto-dish-card[data-hidden="true"] { display: none; }

.resto-dish-card__img-wrap { 
  position: relative; 
  width: 100%; 
  aspect-ratio: 16/9; 
  overflow: hidden; 
  z-index: 2;
}
.resto-dish-card__img-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.7s ease; 
}
.resto-dish-card:hover .resto-dish-card__img-wrap img { 
  transform: scale(1.05); 
}

.resto-dish-card__body { 
  padding: 24px 0 0 0; 
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

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

.resto-dish-card__name { 
  font-family: var(--font-serif); 
  font-size: 1.6rem; 
  font-weight: 400; 
  color: var(--resto-text-light); 
  margin: 0; 
  line-height: 1.2; 
  letter-spacing: 2px;
  text-transform: uppercase;
}

.resto-dish-card__price { 
  font-size: 1.25rem; 
  font-weight: 300; 
  color: var(--resto-text-light); 
  white-space: nowrap;
}

.resto-dish-card__desc { 
  font-size: 0.95rem; 
  color: #888888; 
  line-height: 1.7; 
  margin: 0; 
  font-weight: 300;
  max-width: 90%;
}

.resto-menu__footer-cta { text-align: center; margin-top: 20px; }

/* =========================================================
   TASTING MENU PROMO
   ========================================================= */
  .resto-tasting-promo {
    position: relative;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    z-index: 5;
  }
  .resto-tasting-promo__bg { position: absolute; inset: 0; overflow: hidden; }
  .resto-tasting-promo__bg img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center center;
  }
  .resto-tasting-promo__overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to bottom, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.45) 50%, rgba(14,14,14,0.95) 100%); 
  }
  .resto-tasting-promo__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 100%; }
  
  .resto-tasting-promo .resto-eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--resto-amber);
    font-size: 1.125rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: none;
    font-weight: 400;
  }

  .resto-tasting-promo__title { 
    font-family: var(--font-serif); 
    font-size: clamp(2.5rem, 5vw, 4.25rem); 
    color: var(--resto-text-light); 
    margin-bottom: 24px; 
    font-weight: 500; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    line-height: 1.1;
  }
  .resto-tasting-promo__desc { 
    font-size: 1.125rem; 
    color: rgba(255, 255, 255, 0.9); 
    max-width: 540px; 
    margin: 0 auto 36px auto; 
    line-height: 1.6; 
  }
  .resto-tasting-promo .resto-btn {
    padding: 14px 40px;
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  @media (max-width: 768px) {
    .resto-tasting-promo {
      min-height: 500px;
      padding: 80px 20px;
      margin-top: -40px;
      margin-bottom: -50px;
    }
    .resto-tasting-promo__bg img {
      object-position: 70% center;
    }
    .resto-tasting-promo__desc {
      font-size: 1.05rem;
      margin-bottom: 30px;
    }
  }

  @media (max-width: 480px) {
    .resto-tasting-promo {
      min-height: 420px;
      padding: 60px 16px;
    }
    .resto-tasting-promo__bg img {
      object-position: 85% center;
    }
    .resto-tasting-promo .resto-btn {
      width: 100%;
      padding: 14px 20px;
    }
  }

/* =========================================================
   STORY
   ========================================================= */
  /* =========================================================
     STORY
     ========================================================= */
  .resto-story { 
  padding: 80px 0; 
  background: var(--resto-charcoal); 
  }
  .resto-story__inner { 
    display: grid; 
    grid-template-columns: 5fr 6fr;
    gap: 80px; 
    align-items: center; 
  }
  
  /* Image Composition */
  .resto-story__img-wrap { 
    position: relative; 
    padding: 0;
    margin-right: 20px; /* Space for the badge/frame */
  }
  /* Elegant Gold Frame Offset */
  .resto-story__img-wrap::before {
    content: '';
    position: absolute;
    top: 16px; 
    left: -16px; 
    right: 16px; 
    bottom: -16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1;
    pointer-events: none;
  }
  .resto-story__img-wrap img { 
    position: relative;
    width: 100%; 
    display: block; 
    aspect-ratio: 1/1.05; /* Reduced from 4/5 to prevent excessive height */
    object-fit: cover;
    object-position: top center;
    border-radius: 2px; 
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  }
  
  /* Experience Badge */
  .resto-story__img-badge {
    position: absolute; 
    bottom: -20px; 
    right: -20px;
    background: #0d0d0d; 
    border: 1px solid rgba(212, 175, 55, 0.5);
    width: 140px; 
    height: 140px; 
    border-radius: 50%;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
  }
  .resto-story__img-badge-num { 
    font-size: 2.1rem; 
    font-weight: 500; 
    font-family: var(--font-serif); 
    color: var(--resto-amber); 
    line-height: 1; 
    margin-bottom: 6px; 
  }
  .resto-story__img-badge-text { 
    font-size: 0.65rem; 
    color: rgba(255,255,255,0.9); 
    font-weight: 600; 
    letter-spacing: 1.5px; 
    line-height: 1.4;
  }

  /* Content Typography */
  .resto-story__content {
    padding-left: 20px;
  }
  .resto-story .resto-eyebrow {
    font-size: 1.15rem;
    color: var(--resto-amber);
    font-family: var(--font-serif);
    font-style: italic;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
    text-transform: none;
  }
  .resto-story__title { 
    font-family: var(--font-serif); 
    font-size: 3.2rem; 
    font-weight: 500; 
    line-height: 1.15; 
    margin-bottom: 16px; 
    text-transform: uppercase; 
    color: var(--resto-text-light); 
    letter-spacing: 2px;
  }
  
  /* Elegant Divider */
  .resto-story__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 120px;
  }
  .resto-story__divider::before,
  .resto-story__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(212, 175, 55, 0.4);
  }
  .resto-story__divider-dot {
    width: 5px;
    height: 5px;
    background: var(--resto-amber);
    transform: rotate(45deg);
  }
  
  .resto-story__desc { 
    color: rgba(255, 255, 255, 0.7); 
    font-size: 1.1rem; 
    margin-bottom: 36px; 
    line-height: 1.8; 
    max-width: 520px;
  }
  
  /* Brand Credentials (Statistics) */
  .resto-story__stats { 
    display: grid; 
    grid-template-columns: auto auto; 
    justify-content: start;
    column-gap: 50px;
    row-gap: 32px;
    border-left: 2px solid rgba(212, 175, 55, 0.4);
    padding-left: 28px;
  }
  .resto-story__stat { 
    display: flex; 
    align-items: flex-start;
  }
  .resto-story__stat-text { 
    display: flex; 
    flex-direction: column; 
  }
  .resto-story__stat-text strong { 
    font-size: 1.85rem; 
    font-family: var(--font-serif); 
    font-weight: 500; 
    color: var(--resto-amber); 
    margin-bottom: 6px;
    line-height: 1;
  }
  .resto-story__stat-text span { 
    font-size: 0.7rem; 
    color: rgba(255,255,255,0.9); 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-weight: 600; 
  } 

/* =========================================================
   SIGNATURE DISHES
   ========================================================= */
  .resto-signature { padding: 80px 0; background: var(--resto-charcoal); }
  .resto-signature__header { text-align: center; margin-bottom: 60px; }
  .resto-signature__sub { text-align: center; color: var(--resto-text-muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
  
  .resto-signature__grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    width: 100%; 
    gap: 50px; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; 
  }
  
  /* Premium Staggered Layout */
  .resto-signature__grid .resto-sig-card:nth-child(2) {
    margin-top: 60px;
  }

  .resto-sig-card { 
    display: flex; 
    flex-direction: column;
    gap: 20px;
  }
  
  .resto-sig-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
  }
  
  /* Subtle Inner Frame */
  .resto-sig-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 5;
    pointer-events: none;
    transition: inset 0.4s ease, border-color 0.4s ease;
  }
  .resto-sig-card:hover .resto-sig-card__img-wrap::after {
    inset: 16px;
    border-color: rgba(212, 175, 55, 0.5);
  }

  .resto-sig-card__img-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.8s ease; 
  }
  .resto-sig-card:hover .resto-sig-card__img-wrap img { 
    transform: scale(1.04); 
  }
  
  .resto-sig-card__content { 
    display: flex;
    flex-direction: column;
    padding-right: 20px;
  }
  
  .resto-sig-card__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
  }

  .resto-sig-card__name { 
    font-family: var(--font-serif); 
    font-size: 2.2rem; 
    font-weight: 500; 
    margin-bottom: 0; 
    color: var(--resto-amber); 
    line-height: 1.2;
  }
  
  .resto-sig-card__price { 
    font-size: 1.6rem; 
    font-family: var(--font-serif);
    font-weight: 500; 
    color: var(--resto-text-light); 
  }

  .resto-sig-card__desc { 
    color: rgba(255, 255, 255, 0.7); 
    margin-bottom: 24px; 
    font-size: 1.1rem; 
    line-height: 1.7; 
  }
  
  .resto-sig-card__link { 
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--resto-amber);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .resto-sig-card__link .resto-arrow {
    transition: transform 0.3s ease;
  }
  .resto-sig-card__link:hover {
    color: var(--resto-text-light);
  }
  .resto-sig-card__link:hover .resto-arrow {
    transform: translateX(5px);
  }

  /* =========================================================
     GALLERY
     ========================================================= */
  .resto-gallery { padding: 80px 0 100px; background: var(--resto-charcoal); }
  .resto-gallery .resto-menu__header { margin-bottom: 60px; text-align: center; }
  
  .resto-gallery__grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: auto auto;
    gap: 24px; 
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .resto-gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
  }
  
  /* Layout placements */
  .resto-gallery__item--wide {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .resto-gallery__item--square:nth-of-type(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .resto-gallery__item--square:nth-of-type(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .resto-gallery__item--tall {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    height: 100%;
  }
  
  /* Intrinsic aspect ratios to drive the grid row heights */
  .resto-gallery__item--wide .resto-gallery__img-wrap {
    aspect-ratio: 16/9;
    width: 100%;
  }
  .resto-gallery__item--square .resto-gallery__img-wrap {
    aspect-ratio: 4/3;
    width: 100%;
  }
  .resto-gallery__item--tall .resto-gallery__img-wrap {
    width: 100%;
    height: 100%;
  }
  
  .resto-gallery__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  
  .resto-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    pointer-events: none;
  }
  
  /* Subtle inner gold frame on hover */
  .resto-gallery__overlay::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  
  .resto-gallery__item:hover .resto-gallery__overlay {
    opacity: 1;
  }
  .resto-gallery__item:hover .resto-gallery__overlay::after {
    opacity: 1;
    transform: scale(1);
  }
  
  .resto-gallery__item:hover img {
    transform: scale(1.04);
  }
  
  .resto-gallery__label {
    color: var(--resto-amber);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    transform: translateY(12px);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 2;
  }
  
  .resto-gallery__item:hover .resto-gallery__label {
    transform: translateY(0);
  }

/* =========================================================
   REVIEWS (TESTIMONIALS)
   ========================================================= */
.resto-reviews {
  padding: 80px 0;
  background: var(--resto-charcoal);
}
.resto-reviews .resto-menu__header { margin-bottom: 80px; text-align: center; }

.resto-reviews__grid { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: auto auto; gap: 0 100px; max-width: 1100px; margin: 0 auto; align-items: stretch; }

.resto-review-card { background: transparent; padding: 0; border: none; box-shadow: none; display: flex; flex-direction: column; transition: none; text-align: left; }
.resto-review-card:hover { border-color: transparent; transform: none; }

.resto-review-card--featured { grid-column: 1 / 2; grid-row: 1 / 3; justify-content: center; position: relative; padding-right: 60px; }
.resto-review-card--featured::before { content: '“'; position: absolute; top: -15px; left: -25px; font-family: var(--font-serif); font-size: 7.5rem; line-height: 1; color: rgba(212, 175, 55, 0.08); z-index: 0; pointer-events: none; }
.resto-review-card--featured .resto-review-card__stars, .resto-review-card--featured .resto-review-card__text, .resto-review-card--featured .resto-review-card__author { position: relative; z-index: 1; }

.resto-review-card:nth-child(2), .resto-review-card:nth-child(3) { max-width: 400px; }
.resto-review-card:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; justify-content: flex-end; padding-bottom: 50px; border-bottom: 1px solid rgba(212, 175, 55, 0.15); }
.resto-review-card:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; justify-content: flex-start; padding-top: 50px; }

.resto-review-card__stars { color: var(--resto-amber); font-size: 0.95rem; margin-bottom: 24px; letter-spacing: 5px; }
.resto-review-card__text { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; color: #c0c0c0; }
.resto-review-card__author { font-family: var(--font-sans); font-weight: 600; font-size: 0.75rem; color: var(--resto-amber); text-transform: uppercase; letter-spacing: 2px; }
.resto-review-card--featured .resto-review-card__text { font-size: 2.4rem; line-height: 1.35; color: var(--resto-text-light); margin-bottom: 40px; font-weight: 400; }

/* =========================================================
   RESERVATIONS
   ========================================================= */
.resto-reservations { padding: 80px 0; background: var(--resto-charcoal); }
.resto-reservations__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.resto-reservations__title { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 500; line-height: 1.1; margin-bottom: 24px; color: var(--resto-text-light); }
.resto-reservations__desc { color: var(--resto-text-muted); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.6; }
.resto-reservations__perks { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.resto-reservations__perks li { display: flex; align-items: center; gap: 16px; font-weight: 400; font-size: 1.1rem; color: var(--resto-text-light); }
.resto-perk-num { font-family: inherit; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; color: var(--resto-amber); }

.resto-res-form-card { background: transparent; border: none; box-shadow: none; padding: 0; }
.resto-res-form__title { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 500; margin-bottom: 12px; color: var(--resto-text-light); }
.resto-res-form__subtitle { color: var(--resto-text-muted); margin-bottom: 40px; font-size: 1.05rem; padding-bottom: 40px; border-bottom: 1px solid rgba(212,175,55,0.15); }
.resto-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.resto-form-group { display: flex; flex-direction: column; gap: 10px; }
.resto-form-group label { font-size: 0.8rem; font-weight: 700; color: #bbbbbb; text-transform: uppercase; letter-spacing: 2px; }
.resto-form-group input, .resto-form-group select {
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.08); color: #ffffff; padding: 18px 20px; border-radius: 4px; font-family: inherit; font-size: 1.05rem; outline: none; transition: border-color 0.3s, background 0.3s;
}
.resto-form-group select option { background: var(--resto-charcoal); color: #ffffff; }
.resto-form-group input:focus, .resto-form-group select:focus { border-color: rgba(212,175,55,0.5); background: rgba(255,255,255,0.03); }
.resto-form-group input.is-error, .resto-form-group select.is-error { border-color: #8a3333; background: rgba(138, 51, 51, 0.05); }
.resto-res-form__submit { width: 100%; margin-top: 24px; }
.resto-res-form__note { text-align: center; font-size: 0.85rem; color: var(--resto-text-muted); margin-top: 24px; }

/* =========================================================
   HOURS & CONTACT (STANDALONE)
   ========================================================= */
.resto-contact-standalone { padding: 120px 0; background: #080808; border-top: 1px solid #222; }
.resto-contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.resto-contact__col-info { display: flex; flex-direction: column; }
.resto-contact__desc { color: #aaa; font-size: 1.15rem; margin-bottom: 40px; max-width: 450px; line-height: 1.6; }
.resto-contact__details { display: flex; flex-direction: column; gap: 30px; }
.resto-contact__item { display: flex; align-items: flex-start; gap: 16px; }
.resto-contact__icon { font-size: 1.5rem; }
.resto-contact__item strong { display: block; font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.resto-contact__item p { color: #888; font-size: 0.95rem; }

.resto-contact__col-hours { background: #111; padding: 50px; border-radius: var(--resto-radius-lg); border: 1px solid #222; }
.resto-hours-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 30px; color: var(--resto-amber); text-align: center; }
.resto-hours-list { display: flex; flex-direction: column; gap: 16px; }
.resto-hours-row { display: flex; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px dashed #333; font-size: 1rem; color: #ccc; }
.resto-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.resto-hours-row__day { font-weight: 700; }
.resto-hours-row--today { color: var(--resto-amber); font-weight: 800; }

/* =========================================================
   FOOTER
   ========================================================= */
.resto-footer { background: var(--resto-charcoal); padding: 100px 0 0 0; overflow: hidden; }

/* Top Split */
.resto-footer__top-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; align-items: stretch; }
.resto-footer__top-left { display: flex; flex-direction: column; justify-content: flex-start; }
.resto-footer__desc { color: #aaaaaa; font-size: 1.1rem; max-width: 420px; line-height: 1.8; margin: 0 0 40px 0; }
.resto-footer__social-links { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
.resto-footer__social-link { display: inline-flex; align-items: center; gap: 10px; color: var(--resto-text-light); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s ease; text-decoration: none; }
.resto-footer__social-link svg { width: 16px; height: 16px; }
.resto-footer__social-link:hover { color: var(--resto-amber); }
.resto-footer__divider { width: 100%; height: 1px; background: rgba(212, 175, 55, 0.15); margin-bottom: 60px; }

.resto-footer__top-right { position: relative; padding-bottom: 30px; }
.resto-footer__image-wrap { position: relative; width: 100%; aspect-ratio: 4/4.5; }
.resto-footer__image-wrap::after { content: ''; position: absolute; top: 16px; left: -16px; right: 16px; bottom: -16px; border: 1px solid rgba(212, 175, 55, 0.3); pointer-events: none; }
.resto-footer__feature-img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 2px; position: relative; z-index: 2; }
.resto-footer__image-caption { margin-top: 40px; text-align: right; font-size: 0.8rem; letter-spacing: 4px; color: #888; font-weight: 600; text-transform: uppercase; padding-right: 16px; }

/* Info Band */
.resto-footer__info-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.resto-footer__title { font-family: inherit; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 30px; color: var(--resto-text-muted); text-transform: uppercase; }
.resto-footer__link-list, .resto-footer__data-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.resto-footer__link-list a { color: #cccccc; font-size: 1rem; transition: 0.3s; text-decoration: none; }
.resto-footer__link-list a:hover { color: var(--resto-amber); }
.resto-footer__data-list li { color: #cccccc; font-size: 0.95rem; line-height: 1.8; }
.resto-contact-marker { font-family: var(--font-serif); font-size: 0.9rem; font-style: italic; font-weight: 600; color: var(--resto-amber); margin-right: 8px; }

.resto-footer__bottom { background: transparent; padding: 30px 0; border-top: 1px solid rgba(212, 175, 55, 0.15); margin-top: 80px; }
.resto-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; color: var(--resto-text-muted); font-size: 0.9rem; letter-spacing: 0.5px; }
.resto-footer__bottom-inner a { margin-left: 32px; transition: 0.3s; color: var(--resto-text-muted); text-decoration: none; }
.resto-footer__bottom-inner a:hover { color: var(--resto-text-light); }

/* =========================================================
   MOBILE STICKY BAR
   ========================================================= */
.resto-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #111; padding: 12px; z-index: 999; border-top: 1px solid #333; gap: 12px; }
.resto-sticky-bar__btn { flex: 1; text-align: center; padding: 14px; font-weight: 800; border-radius: var(--resto-radius-sm); font-size: 0.95rem; }
.resto-sticky-bar__btn--reserve { background: var(--resto-amber); color: #000; }
.resto-sticky-bar__btn--whatsapp { background: #25D366; color: #fff; border: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1280px) {
  .resto-menu__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .resto-footer__grid { gap: 60px; grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 1024px) {
  .resto-footer__top-split { grid-template-columns: 1fr; gap: 60px; }
  .resto-footer__top-right { justify-content: flex-start; }
  .resto-hero { min-height: 75vh; }
  .resto-hero__bg { width: 100%; opacity: 0.9; }
  .resto-hero__bg-overlay { background: radial-gradient(circle at center, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.85) 100%); }
  .resto-hero__inner { display: flex; flex-direction: column; text-align: center; justify-content: center; padding-top: 40px; padding-bottom: 40px; margin-bottom: 0; }
  .resto-hero__content { width: 100%; max-width: 100%; margin: 0 auto; padding-right: 0; }
  .resto-hero__badge { right: 50%; transform: translateX(50%); top: -40px; }
  .resto-hero__title { font-size: 3.5rem; }
  .resto-hero__desc { margin: 0 auto 30px auto; }
  .resto-hero__actions, .resto-hero__trust { justify-content: center; }
  
  .resto-menu__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  
  .resto-story__inner { 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
  }
  .resto-story__title { font-size: 3rem; }
  
  .resto-signature__grid { 
    grid-template-columns: 1fr; 
    gap: 60px; 
    padding: 0 20px;
  }
  .resto-signature__grid .resto-sig-card:nth-child(2) {
    margin-top: 0;
  }
  .resto-sig-card__name { font-size: 2rem; }
  .resto-sig-card__price { font-size: 1.4rem; }
  
  .resto-reservations__inner { grid-template-columns: 1fr; }
  .resto-reservations__perks { align-items: flex-start; margin-bottom: 40px; }
  .resto-contact__inner { grid-template-columns: 1fr; }

  .resto-reviews__grid { grid-template-columns: 1fr 1fr; gap: 0 60px; }
  .resto-review-card--featured .resto-review-card__text { font-size: 2rem; }
  .resto-review-card--featured::before { font-size: 6rem; top: -10px; left: -15px; }
  
  .resto-footer__details-grid { grid-template-columns: 1fr 1fr; }

}

@media (max-width: 900px) {
  .resto-nav__links, .resto-nav__cta { display: none; }
  .resto-nav__hamburger { display: flex; }
  .resto-nav__drawer { display: block; }
  
  .resto-tasting-promo {
    min-height: 420px;
    padding: 60px 16px;
  }
  .resto-tasting-promo__bg img {
    object-position: 85% center;
  }
}

@media (max-width: 768px) {
  .resto-hero { min-height: 75vh; padding-bottom: 0; }
  .resto-container { padding: 0 24px; }
  .resto-menu { padding: 60px 0; }
  .resto-hero__title { font-size: 3.2rem; line-height: 1.05; letter-spacing: -1px; }
  .resto-hero__badge {
    right: 50%; transform: translateX(50%); top: -45px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(8, 8, 8, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  }
  .resto-menu__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .resto-dish-card::before { top: -8px; left: -8px; right: 8px; bottom: 8px; }
  
  .resto-reviews { padding: 100px 0; }
  .resto-reviews .resto-menu__header { margin-bottom: 60px; }
  .resto-reviews__grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 40px; max-width: 600px; margin: 0 auto; }
  
  .resto-review-card--featured { grid-column: 1 / 2; grid-row: auto; padding-right: 0; padding-bottom: 40px; border-bottom: 1px solid rgba(212, 175, 55, 0.15); }
  .resto-review-card--featured::before { font-size: 4.5rem; top: -10px; left: -10px; }
  .resto-review-card--featured .resto-review-card__text { font-size: 1.8rem; margin-bottom: 30px; }
  
  .resto-review-card:nth-child(2), .resto-review-card:nth-child(3) { max-width: 100%; }
  .resto-review-card:nth-child(2) { grid-column: 1 / 2; grid-row: auto; padding-bottom: 40px; justify-content: flex-start; }
  .resto-review-card:nth-child(3) { grid-column: 1 / 2; grid-row: auto; padding-top: 0; }
  
  .resto-story { padding: 100px 0; }
  .resto-story__inner { 
    grid-template-columns: 1fr; 
    gap: 80px; 
    text-align: left;
  }
  .resto-story__img-wrap { max-width: 500px; margin: 0 auto; margin-right: auto; padding: 0 16px; }
  .resto-story__img-wrap::before {
     top: 16px; left: 0; right: 32px; bottom: -16px;
  }
  .resto-story__content { padding-left: 0; }
  .resto-story__desc { max-width: 100%; }
  .resto-story__stats { 
    justify-content: flex-start; 
    border-left: none; 
    padding-left: 0; 
    border-top: 1px solid rgba(212, 175, 55, 0.3); 
    padding-top: 32px; 
  }
  .resto-story__img-badge { right: 0; bottom: -20px; }
    .resto-gallery { padding: 80px 0; }
    .resto-gallery__grid { 
      grid-template-columns: 1fr; 
      grid-template-rows: auto;
      gap: 24px; 
      padding: 0 20px;
    }
    .resto-gallery__item--wide,
    .resto-gallery__item--tall,
    .resto-gallery__item--square:nth-of-type(3),
    .resto-gallery__item--square:nth-of-type(4) {
      grid-column: span 1;
      grid-row: span 1;
      height: auto;
    }
    .resto-gallery__img-wrap { aspect-ratio: 4/3; height: auto !important; }
    .resto-gallery__item--tall .resto-gallery__img-wrap { aspect-ratio: 3/4; height: auto !important; }
    .resto-gallery__overlay {
      opacity: 1; 
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 40%);
      padding: 24px;
    }
    .resto-gallery__overlay::after {
      opacity: 1;
    .resto-gallery__label { transform: translateY(0); }
  
  .resto-footer__top-split { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .resto-footer__top-right { justify-content: center; }
  .resto-footer__image-wrap { aspect-ratio: 4/5; max-width: 320px; margin: 0 auto; }
  .resto-footer__image-wrap::after { top: 12px; left: 12px; right: -12px; bottom: -12px; }
  .resto-footer__image-caption { text-align: center; margin-top: 28px; letter-spacing: 6px; font-size: 0.75rem; }
  .resto-footer__info-band { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .resto-footer__link-list, .resto-footer__data-list { align-items: center; }
  .resto-footer__bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
  .resto-reservations { padding: 50px 0; }
  .resto-footer { padding: 60px 0 80px 0; }
}

@media (max-width: 640px) {
  .resto-menu__grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .resto-container { padding: 0 16px; }
  .resto-form-row { grid-template-columns: 1fr; gap: 24px; }
  
  .resto-footer__info-band { padding-top: 40px; margin-bottom: 40px; }
  .resto-footer__bottom-inner a { margin-left: 0; display: block; margin-top: 8px; }
  .resto-hero__trust { flex-direction: column; gap: 24px; align-items: center; }
  .resto-hero__trust-item { padding-right: 0; }
  .resto-hero__trust-item::after { display: none; }
  .resto-categories__inner { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 10px; }
  
  .resto-story { padding: 80px 0; }
  .resto-story__inner { gap: 60px; }
  .resto-story__title { font-size: 2.5rem; }
  .resto-story__stats { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; }

  .resto-reviews { padding: 80px 0; }
  .resto-reviews .resto-menu__header { margin-bottom: 50px; }
  .resto-reservations { padding: 40px 0; }
  .resto-footer { padding: 40px 0 80px 0; }
  .resto-story__img-badge { 
    width: 110px; height: 110px; right: 10px; bottom: -10px;
  }
  .resto-story__img-badge-num { font-size: 1.75rem; }
  .resto-story__img-badge-text { font-size: 0.55rem; }

  .resto-review-card--featured .resto-review-card__text { font-size: 1.5rem; line-height: 1.4; margin-bottom: 24px; }
  .resto-review-card__text { font-size: 1.1rem; }
  .resto-review-card--featured::before { font-size: 3.5rem; top: -5px; left: -5px; }

  .resto-gallery__grid { grid-template-columns: 1fr; }
  .resto-sticky-bar { display: flex; }
}

@media (min-width: 1025px) {
  .resto-categories__inner {
    justify-content: center;
  }
}
