*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    
    :root {
      --c-text:     #161616;
      --c-muted:    #5f6460;
      --c-card:     #f6f6f6;
      --c-footer:   #1d1d1d;
      --c-open:     #1e7e34;
      --c-closed:   #c62828;
      --c-gold:     #d4a826;
      --c-bg:       #ffffff;
      --c-primary-btn: #161616;
      --c-secondary-btn: #161616;
      --radius:     10px;
      --radius-btn: 9999px;
      --gap:        20px;
      --sec-v:      40px;
      /* Shared collapse/dropdown animation timing — single source so the CSS
         rules and the JS (which reads transitionDuration) can't drift apart.
         Quick but smooth: a standard ease-out curve over 0.3s. */
      --ease:         cubic-bezier(0.4, 0, 0.2, 1);
      --collapse-dur: 0.3s;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      color: var(--c-text);
      background: var(--c-bg);
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    /* ─── CONTAINER ─────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1040px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ─── NAV ───────────────────────────────────────── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--c-bg); box-shadow: 0 1px 0 0 #eaeaea;
      height: 65px; display: flex; align-items: center;
    }
    .nav-inner {
      width: 100%; max-width: 1040px; margin: 0 auto;
      padding: 0 24px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
      align-items: center;
    }
    .nav-left {
      display: flex; align-items: center; gap: 12px; min-width: 0;
    }
    .nav-right {
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
    }
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
      height: 34px; width: 34px;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--c-text); border-radius: 2px; transition: opacity 0.15s;
    }
    .nav-logo {
      font-size: 16px; font-weight: 400; color: var(--c-text); text-decoration: none;
    }
    .nav-links { display: flex; gap: 26px; order: 1; }
    .nav-links a {
      font-size: 16px; font-weight: 400; color: var(--c-text);
      text-decoration: none; white-space: nowrap;
    }
    .nav-links a:hover { opacity: 0.5; }
    .nav-cta {
      display: inline-flex; align-items: center; justify-content: center; line-height: normal;
      background: var(--c-primary-btn); color: #fff; font-size: 16px; font-weight: 400;
      height: 34px; padding: 0 16px; border-radius: var(--radius-btn);
      border: 1px solid transparent; text-decoration: none; white-space: nowrap;
      order: 2;
    }
    /* ─── LANGUAGE SWITCHER ─────────────────────────── */
    .lang-switcher { position: relative; display: inline-flex; align-items: center; order: 3; margin-inline-start: 8px; }
    .lang-current {
      display: inline-flex; align-items: center; justify-content: center; gap: 5px; direction: ltr;
      height: 34px; padding: 0 12px; border-radius: 6px; cursor: pointer;
      background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.1);
      font-size: 12px; font-weight: 500; line-height: 1; color: var(--c-text);
      font-family: inherit; letter-spacing: 0.04em; transition: background 0.15s;
    }
    .lang-current:hover { background: rgba(0,0,0,0.1); }
    .lang-current svg { transition: transform 0.18s var(--ease); }
    .lang-current.open svg { transform: rotate(180deg); }
    .lang-menu {
      position: absolute; top: calc(100% + 6px);
      right: 0; background: #fff; border: 1px solid rgba(0,0,0,0.1);
      border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      overflow: hidden; z-index: 200; min-width: 80px;
      /* Quick fade+slide instead of an instant display pop. visibility is delayed
         to the end of the fade so the closed menu stays non-interactive. The menu
         is position:absolute, so toggling it never shifts surrounding layout. */
      opacity: 0; visibility: hidden; transform: translateY(-6px);
      transition: opacity 0.18s var(--ease), transform 0.18s var(--ease),
                  visibility 0s linear 0.18s;
    }
    [dir="rtl"] .lang-menu { right: auto; left: 0; }
    .lang-menu.open {
      opacity: 1; visibility: visible; transform: translateY(0);
      transition: opacity 0.18s var(--ease), transform 0.18s var(--ease),
                  visibility 0s;
    }
    .lang-menu a {
      display: block; padding: 9px 16px; font-size: 13px; font-weight: 500;
      color: var(--c-text); text-decoration: none; letter-spacing: 0.04em;
      transition: background 0.12s;
    }
    .lang-menu a:hover { background: rgba(0,0,0,0.05); }
    /* ─── NAV DRAWER ────────────────────────────────── */
    .nav-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.25); z-index: 200;
    }
    .nav-overlay.is-open { display: block; }
    .nav-drawer {
      position: fixed; top: 0; left: 0; height: 100%; width: 260px;
      background: var(--c-bg); z-index: 201;
      transform: translateX(-100%); transition: transform 0.24s ease;
      display: flex; flex-direction: column; padding: 0;
      box-shadow: 4px 0 24px rgba(0,0,0,0.1);
    }
    .nav-drawer.is-open { transform: translateX(0); }
    .nav-drawer-header {
      height: 65px; display: flex; align-items: center; justify-content: space-between;
      padding: 0 20px; border-bottom: 1px solid #eaeaea; flex-shrink: 0;
    }
    .nav-drawer-title { font-size: 16px; font-weight: 400; color: var(--c-text); }
    .nav-drawer-close {
      background: none; border: none; cursor: pointer; padding: 4px;
      color: var(--c-muted); font-size: 20px; line-height: 1;
    }
    .nav-drawer-links { display: flex; flex-direction: column; padding: 8px 0; }
    .nav-drawer-links a {
      font-size: 16px; font-weight: 400; color: var(--c-text); text-decoration: none;
      padding: 14px 20px; border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .nav-drawer-links a:last-child { border-bottom: none; }

    /* ─── HERO ──────────────────────────────────────── */
    .hero-section { padding: 24px 0 var(--sec-v); }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 40px; align-items: center;
    }
    .hero-content { display: flex; flex-direction: column; justify-content: center; padding: 24px 10px 24px 0; }
    .hero-meta {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 400; color: var(--c-text); margin-bottom: 16px;
    }
    .hero-stars { display: flex; gap: 2px; }
    .hero-stars svg { width: 14px; height: 14px; fill: var(--c-gold); }
    .hero-heading {
      font-size: 40px; font-weight: 500; color: var(--c-text);
      line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
    }
    .hero-desc {
      font-size: 20px; font-weight: 400; color: var(--c-text);
      line-height: 30px; margin-bottom: 32px;
    }
    .hero-cta { display: flex; gap: 12px; align-items: center; }
    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center; line-height: normal;
      background: var(--c-primary-btn); color: #fff; font-size: 16px; font-weight: 400;
      font-family: var(--font); height: 44px; padding: 0 24px; border-radius: var(--radius-btn);
      border: 1px solid transparent; text-decoration: none; white-space: nowrap;
    }
    .btn-secondary {
      display: inline-flex; align-items: center; justify-content: center; line-height: normal;
      background: transparent; color: var(--c-secondary-btn); font-size: 16px; font-weight: 400;
      font-family: var(--font); height: 44px; padding: 0 24px; border-radius: var(--radius-btn);
      border: 0.5px solid var(--c-secondary-btn); text-decoration: none; white-space: nowrap;
    }
    .hero-image {
      height: 500px; border-radius: var(--radius);
      overflow: hidden; background: var(--c-card);
    }
    .hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-image-fallback {
      width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
      padding: 24px; text-align: center;
    }
    .hero-image-fallback-name {
      font-family: var(--font); font-size: 28px; font-weight: 600; color: #fff;
      opacity: 0.9; letter-spacing: -0.01em;
    }

    /* ─── SECTION COMMON ────────────────────────────── */
    .section { padding: var(--sec-v) 0; scroll-margin-top: 75px; }
    .section-heading {
      font-size: 40px; font-weight: 500; color: var(--c-text);
      line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px;
    }
    .section-sub {
      font-size: 26px; font-weight: 400; color: var(--c-text); opacity: 0.85;
      line-height: 1.7; margin-bottom: 32px;
    }

    /* ─── GALLERY ───────────────────────────────────── */
    /* Layout: 4 cols × 3 rows = 9 images
       Row 1: cornerstone (span 2) + 2 singles
       Row 2: 4 singles
       Row 3: 2 wides (each span 2) */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 290px;
      gap: var(--gap);
    }
    .gallery-cell { overflow: hidden; border-radius: var(--radius); background: var(--c-card); }
    .gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .gallery-cornerstone { grid-column: span 2; }
    .gallery-wide        { grid-column: span 2; }

    /* ─── REVIEWS ───────────────────────────────────── */
    .reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
    .review-card {
      background: var(--c-card); border-radius: var(--radius);
      padding: 24px;
      display: flex; flex-direction: column; gap: 8px;
    }
    .rc-heading { font-size: 20px; font-weight: 500; color: var(--c-text); line-height: 1.3; }
    .rc-sub     { font-size: 15px; font-weight: 400; color: #151313; line-height: 1.5; max-width: 34ch; }
    .rc-quote-row { display: flex; align-items: flex-start; margin-top: 2px; }
    .rc-quote      { font-size: 14px; font-weight: 400; color: var(--c-muted); line-height: 1.65; }
    .rc-author-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
    .rc-avatar     { width: 28px; height: 28px; border-radius: 0; object-fit: contain; flex-shrink: 0; background: transparent; }
    .rc-avatar-init {
      width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
      background: #555; color: #fff; font-size: 11px; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      text-transform: uppercase;
    }
    .rc-author     { font-size: 12px; font-weight: 400; color: var(--c-muted); }

    /* ─── MENU PLACEHOLDER ─────────────────────────── */
    .menu-placeholder {
      border: 1.5px dashed rgba(0,0,0,0.15); border-radius: var(--radius);
      padding: 48px 24px; text-align: center;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .menu-placeholder-label { font-size: 15px; color: var(--c-muted); }
    .menu-placeholder-btn {
      display: none;
      margin-top: 6px; background: var(--c-primary-btn); color: #fff;
      border: 1px solid transparent; border-radius: var(--radius-btn);
      font-size: 14px; font-weight: 400; font-family: var(--font);
      align-items: center; justify-content: center; line-height: normal; height: 39px; padding: 0 22px; white-space: nowrap; cursor: pointer;
    }
    html.is-preview .menu-placeholder-btn,
    body.is-preview .menu-placeholder-btn {
      display: inline-flex;
    }

    /* ─── MENU GRID ──────────────────────────────────── */
    .menu-photo-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      grid-auto-rows: 290px; gap: var(--gap);
    }
    .menu-photo-cell { overflow: hidden; border-radius: var(--radius); cursor: pointer; }
    .menu-photo-cell img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.45s ease;
    }
    @media (hover: hover) { .menu-photo-cell:hover img { transform: scale(1.06); } }
    @media (max-width: 600px) {
      .menu-photo-grid {
        display: flex; flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 4px 12px;
        scrollbar-width: none;
      }
      .menu-photo-grid::-webkit-scrollbar { display: none; }
      .menu-photo-cell {
        flex-shrink: 0;
        width: 76vw; height: 76vw;
        scroll-snap-align: center;
      }
    }
    /* Standalone menu lightbox */
    #menu-lb { display: none; position: fixed; inset: 0; z-index: 600; align-items: center; justify-content: center; }
    #menu-lb.mlb-open { display: flex; }
    #menu-lb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
    #menu-lb-img-wrap { position: relative; z-index: 1; max-width: 92vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
    #menu-lb-img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 8px; display: block; user-select: none; transition: opacity 0.18s ease; }
    #menu-lb-close { position: fixed; top: 18px; right: 22px; z-index: 2; background: rgba(255,255,255,0.15); border: none; color: #fff; width: 42px; height: 42px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
    #menu-lb-close:hover { background: rgba(255,255,255,0.28); }
    #menu-lb-prev, #menu-lb-next { position: fixed; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(255,255,255,0.12); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 26px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
    #menu-lb-prev:hover, #menu-lb-next:hover { background: rgba(255,255,255,0.26); }
    #menu-lb-prev { left: 16px; } #menu-lb-next { right: 16px; }
    #menu-lb-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 13px; z-index: 2; }

    /* ─── FEATURES ──────────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--gap);
      align-items: stretch;
    }
    .feature-card {
      background: var(--c-card); border-radius: var(--radius);
      padding: 20px;
      display: flex;
      flex-direction: column;
    }
    .feature-icon-wrap {
      width: 38px; height: 38px; border-radius: 50%;
      background: #fff;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-bottom: 14px;
    }
    .feature-icon-wrap svg { width: 18px; height: 18px; stroke: var(--c-text); stroke-width: 1.75; }
    .feature-name {
      font-size: 17px; font-weight: 500; color: var(--c-text);
      line-height: 1.2; margin-bottom: 6px;
    }
    .feature-caption { font-size: 15px; font-weight: 400; color: var(--c-muted); line-height: 1.4; }
    .features-extra {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--gap);
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      margin-top: 0;
      transition: max-height var(--collapse-dur) var(--ease),
                  opacity calc(var(--collapse-dur) - 0.06s) var(--ease),
                  margin-top var(--collapse-dur) var(--ease);
    }
    /* The max-height here is a FALLBACK ceiling for sites whose inlined JS predates
       the measured-height upgrade (site JS is frozen at generation; only this CSS
       is shared/live). Newer JS sets max-height inline to the MEASURED content
       height, which overrides this ceiling so the panel never animates across
       hundreds of px of empty space — the cause of the old "delay then snap" on
       collapse. Same fallback+measured pattern as .hours-list below. */
    .features-extra.is-open {
      max-height: 600px;
      opacity: 1;
      margin-top: var(--gap);
    }
    .features-toggle {
      display: block; margin: 16px auto 0;
      background: none; border: 1px solid rgba(0,0,0,0.15); border-radius: var(--radius-btn);
      font-size: 14px; font-weight: 400; color: var(--c-muted);
      font-family: var(--font); padding: 7px 20px; cursor: pointer;
      transition: border-color 0.15s, color 0.15s;
    }
    .features-toggle:hover { border-color: var(--c-text); color: var(--c-text); }
    /* The features-section "See more" toggle adopts the shared pill box model
       (line-height:normal, fixed height, ZERO vertical padding, flex-centered) so
       the single iOS Arabic nudge below centers its label like every other button.
       Scoped with :not(.menu-toggle-btn): the menu-card toggle keeps its own
       display:block/none collapse layout and is intentionally left as-is. */
    .features-toggle:not(.menu-toggle-btn) {
      display: flex; width: fit-content; align-items: center; justify-content: center;
      line-height: normal; height: 34px; padding: 0 20px; white-space: nowrap;
    }

    /* ─── VISIT US ──────────────────────────────────── */
    /* Map RIGHT (second child in LTR), data LEFT (first child).
       Both columns are the same fixed height — pre-sized to the
       fully-expanded hours state so clicking the chevron never
       shifts layout or changes any heights. */
    .visit-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: start;
    }
    .visit-map {
      position: relative; border-radius: var(--radius); overflow: hidden;
      background: var(--c-card); height: 460px;
    }
    .visit-map iframe { width: 100%; height: 100%; border: none; display: block; }
    .visit-map-loading { display: none; }
    .visit-map[data-map-loading="true"] .visit-map-loading {
      display: block; position: absolute; inset: 50% auto auto 50%; width: 28px; height: 28px;
      border: 3px solid color-mix(in srgb, var(--c-text) 18%, transparent); border-top-color: var(--c-text);
      border-radius: 50%; transform: translate(-50%, -50%); animation: colen-map-spin 0.8s linear infinite;
    }
    .visit-map[data-map-loading="true"] iframe[data-deferred-map-src] { visibility: hidden; }
    @keyframes colen-map-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

    /* Info panel — same fixed height as map, clips overflow cleanly */
    .visit-info { display: flex; flex-direction: column; height: 460px; overflow: hidden; }
    .visit-row {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 13px 0;
    }
    .visit-row-icon {
      flex-shrink: 0; width: 20px; height: 20px;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .visit-row-icon svg { width: 18px; height: 18px; stroke: var(--c-muted); stroke-width: 1.75; }
    .visit-row-body { flex: 1; min-width: 0; }
    .visit-row-value { font-size: 15px; font-weight: 400; color: var(--c-text); line-height: 1.4; }
    .visit-row-sub   { font-size: 13px; color: var(--c-muted); margin-top: 2px; }

    /* Hours row — expands inline, map unaffected */
    .hours-row-wrap {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 0;
    }
    .hours-row-icon {
      flex-shrink: 0; width: 20px;
      display: flex; align-items: center; justify-content: center;
      padding-top: 13px;
    }
    .hours-row-icon svg { width: 18px; height: 18px; stroke-width: 1.75; }
    .hours-row-icon.is-open  svg { stroke: var(--c-open); }
    .hours-row-icon.is-closed svg { stroke: var(--c-closed); }
    .hours-dropdown { flex: 1; min-width: 0; border: none; }
    .hours-summary {
      display: flex; align-items: center; gap: 8px;
      padding: 13px 0;
      cursor: pointer; list-style: none; user-select: none;
    }
    .hours-summary::-webkit-details-marker { display: none; }
    .open-badge { font-size: 14px; font-weight: 600; white-space: nowrap; line-height: 1; }
    .open-badge.is-open   { color: var(--c-open); }
    .open-badge.is-closed { color: var(--c-closed); }
    .hours-today-text { font-size: 14px; color: var(--c-muted); line-height: 1; }
    .hours-chevron {
      width: 16px; height: 16px; stroke: var(--c-muted); stroke-width: 2;
      flex-shrink: 0; transition: transform var(--collapse-dur) var(--ease);
    }
    details[open] .hours-chevron { transform: rotate(180deg); }
    .hours-list {
      padding: 0 0 6px; width: fit-content;
      overflow: hidden;
      transition: max-height var(--collapse-dur) var(--ease),
                  opacity calc(var(--collapse-dur) - 0.06s) var(--ease);
    }
    details:not([open]) .hours-list { max-height: 0; opacity: 0; padding: 0; }
    details[open] .hours-list { max-height: 400px; opacity: 1; }
    .hours-row {
      display: flex; align-items: center; gap: 20px;
      font-size: 13px; padding: 5px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-day  { color: var(--c-muted); width: 96px; flex-shrink: 0; font-weight: 400; }
    .hours-time { font-weight: 400; color: var(--c-muted); }
    .hours-today .hours-day,
    .hours-today .hours-time { font-weight: 600; color: var(--c-text); }

    /* ─── FOOTER ────────────────────────────────────── */
    .footer { background: var(--c-footer); padding: 28px 0; margin-top: var(--sec-v); }
    .footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
    .footer-name  { font-size: 16px; font-weight: 400; color: #fff; margin-bottom: 16px; }
    .footer-cta   { display: flex; gap: 12px; }
    .btn-footer-primary {
      display: inline-flex; align-items: center; justify-content: center; line-height: normal; height: 36px; padding: 0 22px;
      background: #fff; color: var(--c-text); font-size: 16px; font-weight: 400;
      font-family: var(--font); border-radius: var(--radius-btn); 
      border: 1px solid transparent; text-decoration: none; white-space: nowrap;
    }
    .btn-footer-secondary {
      display: inline-flex; align-items: center; justify-content: center; line-height: normal; height: 36px; padding: 0 22px;
      background: transparent; color: #fff; font-size: 16px; font-weight: 400;
      font-family: var(--font); border-radius: var(--radius-btn); border: 0.5px solid #fff;
      text-decoration: none; white-space: nowrap;
    }
    .footer-right  { text-align: right; }
    .footer-also   { font-size: 16px; font-weight: 400; color: #fff; margin-bottom: 12px; }
    .footer-social-icons { display: flex; gap: 8px; justify-content: flex-end; }
    .social-icon {
      width: 32px; height: 32px; border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center; text-decoration: none;
      color: #fff;
    }
    .social-icon svg { width: 16px; height: 16px; display: block; }
    .social-glovo     { background: #ffc244; }
    .social-doordash  { background: #ff3008; }
    .social-instagram { background: #e1306c; }
    .social-facebook  { background: #1389f1; }
    .footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 12px; }
    .footer-copy { font-size: 14px; font-weight: 500; color: #d9d9d9; }

    /* ─── HOVER ZOOM ───────────────────────────────── */
    .gallery-cell img {
      transition: transform 0.45s ease;
    }
    .hero-image { cursor: pointer; }
    .hero-image img { transition: transform 0.45s ease; }

    @media (hover: hover) {
      .gallery-cell:hover img { transform: scale(1.06); }
      .hero-image:hover img { transform: scale(1.04); }
    }

    /* ─── BUTTON ANIMATIONS ─────────────────────────── */
    .btn-primary, .btn-secondary, .nav-cta, .btn-footer-primary, .btn-footer-secondary, .menu-placeholder-btn, .lang-current {
      text-align: center;
    }

    /* Vertically centre the LABEL, not the font's line box. line-height:normal
       reserves ascent+descent space; a no-descender label ("Reserve a Table")
       then floats ~1px high of true centre — the "slightly crooked" look. It
       drifts most when switching fonts, because each font centres its own line
       box differently. Trim the text box to cap-height/baseline so flex-centring
       centres the real glyphs. Font/size/language-agnostic, so it can't drift
       back if the font or sizes change. Degrades to plain flex-centring where
       unsupported. */
    .btn-primary, .btn-secondary, .nav-cta, .btn-footer-primary, .btn-footer-secondary,
    .menu-placeholder-btn, .features-toggle:not(.menu-toggle-btn), .lang-current {
      text-box-trim: trim-both;
      text-box-edge: cap alphabetic;
    }

    .btn-primary, .nav-cta, .btn-footer-primary, .menu-placeholder-btn {
      transition: transform 0.2s ease, background-color 0.22s ease, box-shadow 0.2s ease;
    }
    .btn-primary:hover, .nav-cta:hover, .menu-placeholder-btn:hover {
      transform: translateY(-2px);
      background-color: var(--c-primary-btn-hover);
      box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    }
    .btn-footer-primary:hover {
      transform: translateY(-2px);
      background-color: var(--c-primary-btn-hover);
      color: #fff;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    .btn-secondary, .btn-footer-secondary {
      transition: transform 0.2s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.2s ease;
    }
    .btn-secondary:hover, .btn-footer-secondary:hover {
      transform: translateY(-2px);
      background-color: var(--c-secondary-btn-hover);
      color: #fff;
      border-color: var(--c-secondary-btn-hover);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    /* ─── LIGHTBOX ──────────────────────────────────── */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 500;
      align-items: center; justify-content: center;
    }
    .lightbox.is-open { display: flex; }
    .lightbox-overlay {
      position: absolute; inset: 0; background: rgba(0,0,0,0.9);
    }
    .lightbox-img-wrap {
      position: relative; z-index: 1;
      max-width: 92vw; max-height: 90vh;
      display: flex; align-items: center; justify-content: center;
    }
    .lightbox-img {
      max-width: 92vw; max-height: 90vh;
      object-fit: contain; border-radius: 8px; display: block;
      user-select: none; transition: opacity 0.18s ease;
    }
    .lightbox-img.is-loading { opacity: 0; }
    .lightbox-close {
      position: fixed; top: 18px; right: 22px; z-index: 2;
      background: rgba(255,255,255,0.15); border: none; color: #fff;
      width: 42px; height: 42px; border-radius: 50%; font-size: 18px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.15s;
    }
    .lightbox-close:hover { background: rgba(255,255,255,0.28); }
    .lightbox-prev, .lightbox-next {
      position: fixed; top: 50%; transform: translateY(-50%); z-index: 2;
      background: rgba(255,255,255,0.12); border: none; color: #fff;
      width: 48px; height: 48px; border-radius: 50%; font-size: 26px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.15s;
    }
    .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.26); }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
    .lightbox-counter {
      position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.6); font-size: 13px; z-index: 2;
      font-family: var(--font);
    }
    @media (max-width: 480px) {
      .lightbox-prev { left: 6px; }
      .lightbox-next { right: 6px; }
    }

    /* ─── SCROLL FADE-IN ────────────────────────────── */
    .fade-section {
      opacity: 0; transform: translateY(22px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-section.is-visible { opacity: 1; transform: none; }

    /* ─── RTL ───────────────────────────────────────── */
    

    /* ─── RESPONSIVE — tablet (≤960px) ────────────────── */
    @media (max-width: 960px) {
      .nav-hamburger { display: flex; }
      .nav-inner     { display: flex; gap: 0; }
      .nav-left      { flex: 1; }
      .nav-right     { gap: 0; }
      .nav-links     { display: none; }
      .hero-grid           { grid-template-columns: 1fr; }
      .hero-image          { height: 300px; order: -1; }
      .hero-heading        { font-size: 32px; }
      .hero-desc           { font-size: 17px; }
      .section-heading     { font-size: 28px; }
      .section-sub         { font-size: 18px; }
      .gallery-grid        { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
      .gallery-cornerstone { grid-column: span 2; }
      .reviews-grid        { grid-template-columns: 1fr; }
      .features-grid       { grid-template-columns: 1fr 1fr; }
      .menu-carousel       { grid-template-columns: repeat(2, 1fr); }
      .visit-grid          { grid-template-columns: 1fr; }
      .visit-map           { height: 260px; }
      .visit-info          { height: auto; overflow: visible; }
      .footer-inner        { flex-direction: column; gap: 24px; }
      .footer-right        { text-align: left; }
      .footer-social-icons { justify-content: flex-start; }
    }

    /* ─── RESPONSIVE — phone (≤480px) ──────────────────── */
    @media (max-width: 480px) {
      /* Tighten vertical section spacing on phones to conserve scroll while
         keeping sections distinct. Cascades to .section padding, the hero's
         bottom padding, and the footer's top margin via the single --sec-v var. */
      :root { --sec-v: 26px; }

      .menu-carousel {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        scrollbar-width: none; gap: 12px; padding-bottom: 8px;
      }
      .menu-carousel::-webkit-scrollbar { display: none; }
      .menu-column-card { flex: 0 0 82vw; scroll-snap-align: start; }

      .container           { padding: 0 16px; }
      .nav-inner           { padding: 0 16px; }
      .hero-section        { padding: 16px 0 var(--sec-v); }
      .hero-image          { height: 240px; }
      .hero-heading        { font-size: 28px; }
      .hero-desc           { font-size: 17px; line-height: 1.5; margin-bottom: 24px; }
      .btn-primary,
      .btn-secondary       { font-size: 14px; height: 38px; padding: 0 18px; }
      .section-heading     { font-size: 24px; }
      .section-sub         { font-size: 17px; margin-bottom: 20px; }
      /* Gallery: horizontal scroll with 1:1 cells */
      .gallery-grid {
        display: flex; flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 4px 12px;
        scrollbar-width: none;
      }
      .gallery-grid::-webkit-scrollbar { display: none; }
      .gallery-cell,
      .gallery-cornerstone,
      .gallery-wide {
        flex-shrink: 0;
        width: 76vw; height: 76vw;
        grid-column: unset;
        scroll-snap-align: center;
      }
      .features-grid,
      .features-extra      { grid-template-columns: 1fr 1fr; }
      .rc-heading          { font-size: 17px; }
      .rc-sub              { font-size: 14px; }
      .visit-map           { height: 220px; }
      .hours-summary       { padding: 10px 0; }
      /* Keep the door icon's top padding equal to the summary's, or the icon
         and the open/closed status drift out of vertical alignment on mobile. */
      .hours-row-icon      { padding-top: 10px; }
      .footer              { padding: 20px 0; }
      .btn-footer-primary,
      .btn-footer-secondary { font-size: 14px; height: 32px; padding: 0 16px; }

      /* Arabic mobile readability bumps (+2px) for body/heading copy only.
         Buttons are deliberately NOT bumped — they use the identical en/fr sizes
         so Arabic buttons match en/fr exactly (size + centering). */
      [dir="rtl"] .hero-heading    { font-size: 30px; }
      [dir="rtl"] .hero-desc       { font-size: 19px; }
      [dir="rtl"] .section-heading { font-size: 26px; }
      [dir="rtl"] .footer-right        { text-align: right; }
      [dir="rtl"] .footer-social-icons { justify-content: flex-start; }
    }
    /* ─── RTL FIXES ───────────────────────────────────────── */
    [dir="rtl"] .nav-links { gap: 16px; }
    [dir="rtl"] .hero-content { padding: 24px 0 24px 10px; }
    [dir="rtl"] .hero-cta { justify-content: flex-start; }
    [dir="rtl"] .footer-cta { justify-content: flex-start; }
    [dir="rtl"] .footer-social-icons { justify-content: flex-start; }
    [dir="rtl"] .nav-drawer { left: auto; right: 0; transform: translateX(100%); box-shadow: -4px 0 24px rgba(0,0,0,0.1); }
    [dir="rtl"] .nav-drawer.is-open { transform: translateX(0); }
    [dir="rtl"] .lightbox-prev, [dir="rtl"] .lightbox-next { unicode-bidi: bidi-override; direction: ltr; }

    /* DESKTOP (Chromium + desktop Safari) centers Tajawal correctly with the plain
       en/fr button rules, so it gets NO override — a nudge there pushes the label OFF
       center (the old crooked-label bug). The Arabic correction is therefore scoped to
       MOBILE only, in the @media (hover:none)+(pointer:coarse) block below. */

    [dir="rtl"] .nav-logo {
      transform: translateY(2px);
    }

    /* MOBILE (iOS Safari AND Android Chrome / Samsung Internet) lays out Tajawal's
       line box higher than desktop, so the Arabic label sits ~2-3px high in the pill
       (en/fr is unaffected). Target every touch device via (hover:none)+(pointer:coarse)
       — NOT an iOS-only feature query, which is what previously left Android uncorrected
       — and nudge the label down, WITHOUT touching desktop. For a flex-centered,
       fixed-height, border-box button, padding-top:Npx moves the label down N/2 px; this
       is the single knob to tune. */
    @media (hover: none) and (pointer: coarse) {
      [dir="rtl"] .nav-cta,
      [dir="rtl"] .btn-primary,
      [dir="rtl"] .btn-secondary,
      [dir="rtl"] .btn-footer-primary,
      [dir="rtl"] .btn-footer-secondary,
      [dir="rtl"] .menu-placeholder-btn,
      [dir="rtl"] .features-toggle:not(.menu-toggle-btn),
      [dir="rtl"] .lang-current {
        padding-top: 5px;
      }
      /* "AR" floats high, and padding-top pushes the whole container content down by 2.5px.
         We raise the chevron by 3px to perfectly align with the text.
         position/top (not transform) so it never clobbers the open-state rotate. */
      [dir="rtl"] .lang-current svg {
        position: relative;
        top: -3px;
      }
    }
