 /* ========== RESET & VARIABLES ========== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brand:      #5366ad;
    --brand-dark: #3d4f96;
    --dark-bg:    #1a1a2e;
    --footer-bg:  #111122;
    --text-light: #e8e8e8;
    --accent:     #c8002c;
    --grey-pill:  #c9c9c9;
    --blue-label: #3366ff;
    --white:      #ffffff;
    --font-head:  'Exo', sans-serif;
    --font-body:  'Playfair Display', serif;
    --max-w:      1200px;
    --header-h:   80px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-head); color: #222; background: #fff; overflow-x: hidden; }
  img  { display: block; max-width: 100%; }
  a    { text-decoration: none; color: inherit; }
  ul   { list-style: none; }

  /* ========== HEADER ========== */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(26,26,46,0.93);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(83,102,173,0.3);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
  }

  .logo img { height: 55px; width: auto; object-fit: contain; }

  nav ul { display: flex; gap: 4px; }

  nav ul li a {
    color: var(--text-light);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    transition: color 0.2s;
    position: relative;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.2s;
  }

  nav ul li a:hover { color: #fff; }
  nav ul li a:hover::after { transform: scaleX(1); }
  nav ul li.active a { color: var(--brand); }
  nav ul li.active a::after { transform: scaleX(1); }

  /* ========== HAMBURGER ========== */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-light); transition: 0.3s; }

  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(26,26,46,0.98);
    padding: 16px 0;
    z-index: 998;
    flex-direction: column;
    border-top: 1px solid rgba(83,102,173,0.3);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav li a {
    display: block;
    padding: 12px 30px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-nav li a:hover { color: var(--brand); padding-left: 40px; }
  .mobile-nav li.active a { color: var(--brand); }

  /* ========== HERO SLIDER con caption ========== */
  .hero {
    position: relative;
    width: 100%;
    margin-top: var(--header-h);
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    aspect-ratio: 21/10;
    position: relative;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: heroZoom 8s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(26,26,46,0.25) 0%,
      rgba(26,26,46,0.55) 60%,
      rgba(26,26,46,0.7) 100%);
  }

  .hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-caption h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(28px, 5vw, 62px);
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.6);
    padding: 16px 40px;
  }

  /* ========== MAIN CONTENT WRAPPER ========== */
  .page-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 50px 30px 0;
  }

  /* ========== PRICE PILL / BADGE ========== */
  .menu-pill {
    background: var(--grey-pill);
    border-radius: 15px;
    padding: 22px 30px;
    text-align: center;
    margin-bottom: 18px;
  }

  .menu-pill h1 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(20px, 3vw, 30px);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
  }

  .menu-pill .pill-border {
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.5);
    margin: 10px auto 0;
    border-radius: 2px;
  }

  /* ========== SUBTITLE TEXT ========== */
  .menu-subtitle {
    text-align: center;
    margin-bottom: 32px;
  }

  .menu-subtitle p {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.8vw, 18px);
    color: #555;
    line-height: 1.8;
    font-style: italic;
  }

  /* ========== MENU DETAIL CARD ========== */
  .menu-detail {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 36px 40px;
    margin-bottom: 50px;
  }

  .menu-detail .detail-label {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-label);
    text-align: center;
    margin: 24px 0 8px;
  }

  .menu-detail .detail-label:first-child { margin-top: 0; }

  .menu-detail p {
    font-size: 15px;
    color: #444;
    text-align: center;
    line-height: 1.9;
    font-family: var(--font-body);
  }

  .menu-detail p em { color: #666; font-size: 14px; }
  .menu-detail p strong { color: #222; }

  .menu-detail .price-final {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 22px;
    color: var(--brand);
    text-align: center;
    margin-top: 10px;
  }

  .menu-detail .note-final {
    font-size: 13px;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-top: 6px;
  }

  .menu-detail hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 18px auto;
    width: 60%;
  }

  /* ========== SPACER ========== */
  .spacer { height: 35px; }

  /* ========== IMAGE GRIDS ========== */

  /* 2-col grid */
  .img-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  /* 3-col grid */
  .img-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    margin-top: 5px;
  }

  /* shared cell styles */
  .img-cell {
    overflow: hidden;
    position: relative;
  }

  .img-cell img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .img-cell:hover img { transform: scale(1.05); }

  .img-gallery-wrap {
    margin-bottom: 60px;
  }

  /* ========== DIVIDER ========== */
  .divider { height: 1px; background: #e8e8e8; }

  /* ========== FOOTER INFO GRID ========== */
  .footer-info {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 0;
  }

  .footer-info .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }

  .footer-col h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 13px;
    color: #aaa;
    line-height: 2;
  }

  .footer-col a:hover { color: var(--brand); }
  .footer-col .closed { color: var(--accent); font-weight: 700; }
  .footer-col .note   { font-size: 11px; color: #777; font-style: italic; margin-top: 6px; }

  .badge-imgs { display: flex; flex-direction: column; gap: 10px; }
  .badge-imgs img { max-width: 150px; height: auto; object-fit: contain; border-radius: 4px; }
  .recommended-label {
    font-size: 12px; font-weight: 700; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
  }

  /* ========== SOCKET ========== */
  .socket {
    background: var(--footer-bg);
    padding: 18px 30px;
    text-align: center;
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
  }

  /* ========== SCROLL TOP ========== */
  #scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 42px; height: 42px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
    cursor: pointer;
  }
  #scroll-top.visible { opacity: 1; pointer-events: all; }
  #scroll-top:hover { transform: translateY(-3px); }

  /* ========== CALL NOW (mobile) ========== */
  #callnow { display: none; }
  @media (max-width: 650px) {
    #callnow {
      display: flex; align-items: center; justify-content: center;
      position: fixed; bottom: 15px; right: 20px;
      width: 65px; height: 65px; border-radius: 50%;
      background: #00bb00; box-shadow: 0 3px 6px rgba(0,0,0,0.3);
      z-index: 9999;
    }
    #callnow svg { width: 30px; height: 30px; fill: white; }
  }

  /* ========== COOKIE BAR ========== */
  #cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(26,26,46,0.97); color: #bbb;
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    z-index: 9998; font-size: 13px;
    transform: translateY(100%); transition: transform 0.4s ease;
  }
  #cookie-bar.show { transform: translateY(0); }
  #cookie-bar button {
    background: var(--brand); color: #fff; border: none;
    padding: 8px 22px; font-family: var(--font-head);
    font-weight: 700; font-size: 13px; letter-spacing: 1px;
    cursor: pointer; border-radius: 3px; white-space: nowrap;
    transition: background 0.2s;
  }
  #cookie-bar button:hover { background: var(--brand-dark); }

  /* ========== FADE-IN ========== */
  .fade-in {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }

    .hero-image { aspect-ratio: 4/3; }
    .hero-caption h2 { font-size: clamp(20px, 6vw, 36px); padding: 12px 22px; }

    .img-grid-2 { grid-template-columns: 1fr; }
    .img-grid-3 { grid-template-columns: 1fr 1fr; }

    .menu-detail { padding: 24px 20px; }
    .footer-info .container { grid-template-columns: 1fr 1fr; gap: 28px; }
    .page-content { padding: 30px 20px 0; }
  }

  @media (max-width: 550px) {
    .img-grid-3 { grid-template-columns: 1fr; }
    .footer-info .container { grid-template-columns: 1fr; }
    .hero-image { aspect-ratio: 3/2; }
  }