:root {
    --burgundy: #6d4247;
    --dark: #002840;
    --gold: #eeba2b;
    --paper: #faf6ef;
    --blue-price: #6b98b2;
    --burgundy-light: #8a5560;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--paper);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 3rem;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(0, 40, 64, 0.92);
    backdrop-filter: blur(12px);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-decoration: none;
  }
  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 700 !important;
    transition: background 0.3s, transform 0.2s !important;
  }
  .nav-cta:hover { background: #f5cc55 !important; transform: translateY(-1px); }
  .nav-cta::after { display: none !important; }

  /* ── HERO ── */
  #hero {
    position: relative; height: 100vh; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(61, 13, 21, 0.92) 0%, rgba(109, 30, 39, 0.62) 48%, rgba(61, 13, 21, 0.28) 100%),
      url('../img/hero-italian-food.jpg') center center / cover no-repeat;
    background-size: cover;
  }
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 20%, rgba(109, 66, 71, 0.42) 0%, transparent 52%),
      linear-gradient(180deg, rgba(61, 13, 21, 0.62) 0%, rgba(61, 13, 21, 0.24) 52%, rgba(0, 0, 0, 0.20) 100%);
  }
  /* Film grain */
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
  }
  /* Candlelight accents are hidden when the photographic hero is active. */
  .candle { display: none; }


  @keyframes flicker {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
  }

  .hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    animation: heroFadeIn 1.2s ease forwards;
  }
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-logo-img {
    width: min(340px, 70vw);
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 24px rgba(238,186,43,0.18));
    animation: logoPulse 4s ease-in-out infinite alternate;
  }
  @keyframes logoPulse {
    from { filter: drop-shadow(0 4px 24px rgba(238,186,43,0.18)); }
    to { filter: drop-shadow(0 8px 40px rgba(238,186,43,0.38)); }
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  }
  .hero-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
  }
  .btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(238,186,43,0.3);
  }
  .btn-gold:hover {
    background: #f5cc55;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(238,186,43,0.45);
  }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(238,186,43,0.6), transparent);
  }
  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ── SECTION SHARED ── */
  section { padding: 6rem 3rem; }
  .section-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
  }
  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.15;
  }
  .section-heading em { font-style: italic; font-weight: 400; }

  /* ── CONCEPT SECTION ── */
  #concept {
    background: var(--paper);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 3rem;
  }
  .concept-visual {
    position: relative;
    height: 520px;
  }
  .concept-rect {
    position: absolute;
    border-radius: 3px;
    overflow: hidden;
  }
  .concept-rect-main {
    width: 78%; height: 85%;
    top: 0; right: 0;
    background: url('../img/concetto-menu-list.jpg') center center / cover no-repeat;
    box-shadow: 0 24px 70px rgba(0, 40, 64, 0.18);
  }
  .concept-rect-accent {
    width: 55%; height: 55%;
    bottom: 0; left: 0;
    background: url('../img/concetto-wine-list.jpg') center center / cover no-repeat;
    border: 2px solid rgba(238,186,43,0.35);
    box-shadow: 0 20px 56px rgba(0, 40, 64, 0.22);
  }
  .concept-rect-main::before,
  .concept-rect-accent::before {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(61,13,21,0.20) 100%);
  }
  .concept-rect-main::after,
  .concept-rect-accent::after {
    content: '';
  }
  .concept-badge {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110px; height: 110px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 40px rgba(238,186,43,0.4);
  }
  .concept-badge span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
  }
  .concept-badge span:last-child {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--dark);
    text-transform: uppercase;
  }
  .concept-text .section-heading { margin-bottom: 1.5rem; }
  .concept-body {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(0,40,64,0.75);
    margin-bottom: 1.5rem;
  }
  .concept-pillars {
    display: flex; gap: 2rem; margin-top: 2rem;
    flex-wrap: wrap;
  }
  .pillar {
    display: flex; flex-direction: column; gap: 0.25rem;
  }
  .pillar-icon {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
  }
  .pillar-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--burgundy);
    text-transform: uppercase;
  }

  /* ── MENU SECTION ── */
  #menu {
    background: var(--paper);
    padding: 7rem 3rem;
    position: relative;
  }
  #menu::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(0,40,64,0.025) 60px,
      rgba(0,40,64,0.025) 61px
    );
    pointer-events: none;
  }
  .menu-inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .menu-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .menu-divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 1.5rem auto;
    max-width: 200px;
    justify-content: center;
  }
  .menu-divider::before, .menu-divider::after {
    content: '';
    flex: 1; height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .menu-divider-dot {
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
  }
  .menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 5rem;
  }
  .menu-category { }
  .menu-cat-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    color: var(--burgundy);
    border-bottom: 1px solid rgba(109,66,71,0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  .menu-cat-label::after {
    content: '';
    position: absolute; bottom: -1px; left: 0;
    width: 40px; height: 2px;
    background: var(--gold);
  }
  .menu-item {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 1.2rem;
    gap: 0.5rem;
  }
  .menu-item-info { flex: 1; }
  .menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    display: block;
    margin-bottom: 0.15rem;
  }
  .menu-item-desc {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(0,40,64,0.55);
    line-height: 1.5;
  }
  .menu-item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blue-price);
    white-space: nowrap;
    padding-left: 1rem;
  }
  .menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(0,40,64,0.18);
    margin: 0 0.5rem 0.25rem;
    min-width: 1rem;
  }

  /* ── GALLERY SECTION ── */
  #gallery {
    background: var(--dark);
    padding: 7rem 0;
    overflow: hidden;
  }
  .gallery-header {
    text-align: center;
    padding: 0 3rem;
    margin-bottom: 4rem;
  }
  .gallery-header .section-heading { color: var(--paper); }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 3px;
    padding: 0 3px;
  }
  .gallery-cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .gallery-cell:first-child {
    grid-row: 1 / 3;
  }
  .gallery-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
    z-index: 0;
  }
  .gallery-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  .gallery-cell:hover .gallery-bg {
    transform: scale(1.05);
  }
  .gallery-bg::before {
    content: none !important;
    display: none !important;
  }
  .gallery-emoji {
    position: absolute;
    font-size: 5rem;
    opacity: 0.12;
    bottom: 1rem; right: 1rem;
  }
  .gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: auto;
    background: transparent;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
  }
  .gallery-cell:hover .gallery-overlay { opacity: 1; }
  .gallery-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
  }
  /* Particle dots scattered over gallery cells */
  .gallery-particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
  }

  /* ── WINE SECTION ── */
  #wine {
    background: var(--burgundy);
    padding: 7rem 3rem;
    position: relative;
    overflow: hidden;
  }
  #wine::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(238,186,43,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(0,40,64,0.3) 0%, transparent 50%);
  }
  .wine-inner {
    max-width: 1100px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .wine-header { text-align: center; margin-bottom: 4rem; }
  .wine-header .section-heading { color: var(--paper); }
  .wine-header .section-label { color: var(--gold); }
  .wine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .wine-card {
    background: rgba(0,0,0,0.15);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(238,186,43,0.12);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    cursor: default;
  }
  .wine-card:hover {
    background: rgba(0,0,0,0.3);
    border-color: rgba(238,186,43,0.35);
    transform: translateY(-4px);
  }
  .wine-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
  }
  .wine-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 0.75rem;
  }
  .wine-card-text {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250,246,239,0.65);
  }
  .wine-quote {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(238,186,43,0.2);
  }
  .wine-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(250,246,239,0.9);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.5;
  }
  .wine-quote cite {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* ── RESERVATION SECTION ── */
  #reservation {
    background: var(--paper);
    padding: 7rem 3rem;
  }
  .reservation-inner {
    max-width: 700px; margin: 0 auto; text-align: center;
  }
  .reservation-inner .section-heading { margin-bottom: 1rem; }
  .reservation-inner .concept-body { margin-bottom: 2.5rem; }
  .res-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
  }
  .res-form .full { grid-column: 1 / 3; }
  .form-group {
    display: flex; flex-direction: column; gap: 0.4rem;
  }
  .form-group label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,40,64,0.5);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: white;
    border: 1px solid rgba(0,40,64,0.12);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--dark);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(238,186,43,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .res-form-footer {
    grid-column: 1 / 3;
    display: flex; justify-content: center;
    margin-top: 0.5rem;
  }
  .btn-gold-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.25s;
  }
  .btn-gold-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
  }
  .res-info {
    display: flex; justify-content: center; gap: 3rem;
    margin-top: 3rem; flex-wrap: wrap;
  }
  .res-info-item {
    text-align: center;
  }
  .res-info-item-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
    display: block;
  }
  .res-info-item-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--dark);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(250,246,239,0.6);
    padding: 4rem 3rem 2rem;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 0.75rem; }
  .footer-brand p {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 220px;
  }
  .footer-col h4 {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 2;
  }
  .footer-col a {
    color: rgba(250,246,239,0.6);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-social {
    display: flex; gap: 0.75rem; margin-top: 1rem;
  }
  .social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(238,186,43,0.25);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s, border-color 0.3s;
  }
  .social-btn:hover {
    background: rgba(238,186,43,0.15);
    border-color: var(--gold);
  }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(250,246,239,0.3);
  }
  .footer-bottom a {
    color: rgba(238,186,43,0.5);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s;
  }
  .footer-bottom a:hover { color: var(--gold); }

  /* ── REVEAL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    #concept { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
    .concept-visual { height: 340px; }
    .menu-grid { grid-template-columns: 1fr; }
    .wine-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
    .gallery-cell:first-child { grid-row: auto; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .res-form { grid-template-columns: 1fr; }
    .res-form .full { grid-column: 1; }
    .res-form-footer { grid-column: 1; }
    section { padding: 4rem 1.5rem; }
  }

/* Bootstrap validation feedback adapted to the custom reservation form */
.res-form .alert { grid-column: 1 / -1; margin: 0; border-radius: 3px; }
.res-form .is-invalid { border-color: #dc3545 !important; box-shadow: 0 0 0 .2rem rgba(220,53,69,.1); }
.res-form .is-valid { border-color: #198754 !important; box-shadow: 0 0 0 .2rem rgba(25,135,84,.1); }
.res-form .invalid-feedback { display: none; color: #dc3545; font-size: .75rem; margin-top: .35rem; }
.res-form .is-invalid + .invalid-feedback { display: block; }
.d-none { display: none !important; }


/* Signature dish photos: keep the images unobstructed. */
#gallery .gallery-particle,
#gallery .gallery-emoji {
  display: none;
}


/* Signature dish photos: force real image elements to display above any old decorative layers. */
#gallery .gallery-cell {
  min-height: 280px;
  background: #111;
}
#gallery .gallery-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: none !important;
}
#gallery .gallery-bg img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}
#gallery .gallery-bg::before,
#gallery .gallery-bg::after,
#gallery .gallery-particle,
#gallery .gallery-emoji {
  content: none !important;
  display: none !important;
}
#gallery .gallery-overlay {
  background: transparent !important;
}


/* Mobile Signature Dishes: make every image the same size. */
@media (max-width: 900px) {
  #gallery .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 220px;
  }

  #gallery .gallery-cell,
  #gallery .gallery-cell:first-child {
    grid-row: auto;
    min-height: 0;
    height: 220px;
  }

  #gallery .gallery-bg,
  #gallery .gallery-bg img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 575.98px) {
  #gallery .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 240px;
  }

  #gallery .gallery-cell,
  #gallery .gallery-cell:first-child {
    min-height: 0;
    height: 240px;
  }
}
