    :root {
      --menu-green: #0D3729;
	  --gold: #e8c762;
      --frame-inset: 2%;
      --frame-width: 0.28vw;
    }

    * { box-sizing: border-box; }

    html,
    body {
      min-height: 100%;
      margin: 0;
    }

    body {
      background: var(--menu-green);
      color: #fff;
    }

    .menu-background {
      position: relative;
      isolation: isolate;
      min-height: 100vh;
      overflow: hidden;
      background: var(--menu-green);
    }

    .menu-background::before {
      content: "";
      position: absolute;
      z-index: 1;
      inset: 10px;
      border: 4px solid var(--gold);
      pointer-events: none;
    }

    .site-title {
      position: absolute;
      z-index: 3;
      top: 100px;
      left: 50%;
      width: calc(100% - 48px);
      margin: 0;
      color: var(--gold);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 48pt;
      font-weight: normal;
      line-height: 1.05;
      text-align: center;
      transform: translateX(-50%);
    }

    .site-title span {
      display: block;
    }

    
    .menu-art {
      position: absolute;
      z-index: 2;
      left: 0;
      width: 100%;
      height: auto;
      display: block;
      pointer-events: none;
      user-select: none;
    }

    .menu-art--header {
      top: 0;
    }

    .menu-art--footer {
      left: 0;
      bottom: 0;
      transform: rotate(180deg);
    }

    .menu-content {
      position: relative;
      z-index: 3;
      width: min(92%, 1500px);
      min-height: 100vh;
      margin: 0 auto;

      /* Keep page content clear of the title and corner foliage. */
      padding: clamp(270px, 22vw, 410px) clamp(24px, 4vw, 80px)
               clamp(180px, 20vw, 360px);
    }

    .under-construction {
      display: block;
      width: 100%;
      height: 40vh;
      margin-inline: auto;
      object-fit: contain;
    }

    .under-construction-row {
      display: flex;
      align-items: center;
      gap: clamp(14px, 2.5vw, 36px);
      width: 90%;
      margin-inline: auto;
    }
	
	 .menus-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      min-width: clamp(110px, 12vw, 180px);
      padding: 0.75em 1.5em;
      border: 2px solid #fff0b0;
      border-radius: 999px;
      background: var(--gold);
      color: var(--menu-green);
      font-size: clamp(1.15rem, 2vw, 1.8rem);
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
      transition: transform 160ms ease, filter 160ms ease;
    }

    .menus-button:hover,
    .menus-button:focus-visible {
      filter: brightness(1.1);
      transform: translateY(-2px);
    }

    .under-construction-row .under-construction {
      min-width: 0;
      flex: 1 1 auto;
    }

    .under-construction-message {
      text-align: center;
      font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    }

    .photo-gallery {
      width: 90%;
      margin: clamp(2rem, 5vw, 4rem) auto 0;
      text-align: center;
    }
	
	.links {
      width: 90%;
      margin: clamp(2rem, 5vw, 4rem) auto 0;
      text-align: center;
    }

	.links h2 {
      margin: 0 0 1.25rem;
      color: var(--gold);
      font-size: clamp(1.8rem, 3vw, 3rem);
      font-weight: normal;
    }

/* index page photo gallery */
    .photo-gallery h2 {
      margin: 0 0 1.25rem;
      color: var(--gold);
      font-size: clamp(1.8rem, 3vw, 3rem);
      font-weight: normal;
    }

    .gallery-window {
      overflow-x: auto;
      scrollbar-width: none;
      scroll-snap-type: x mandatory;
      border-radius: 12px;
    }

    .gallery-window::-webkit-scrollbar { display: none; }

    .gallery-track {
      display: flex;
      gap: clamp(12px, 2vw, 24px);
      width: max-content;
    }

    .gallery-track img {
      width: clamp(240px, 34vw, 480px);
      height: clamp(180px, 25vw, 340px);
      flex: 0 0 auto;
      object-fit: cover;
      border: 3px solid var(--gold);
      border-radius: 10px;
      scroll-snap-align: center;
    }

    .gallery-status {
      margin: 1rem 0 0;
      font-size: 1rem;
    }
	
	.site-navigation {
      margin: 0 0 clamp(24px, 4vw, 48px);
      text-align: center;
    }


/* Navigation stuff */
    .site-navigation__list {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(22px, 6vw, 72px);
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-navigation__link {
      color: var(--gold);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(20px, 2.4vw, 38px);
      font-weight: 600;
      letter-spacing: 0.04em;
      line-height: 1.2;
      text-decoration: none;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
    }

    .site-navigation__link:hover,
    .site-navigation__link:focus-visible,
    .site-navigation__link[aria-current="page"] {
      color: #fff1a8;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 7px;
    }
	
/* Links to external ( facebook etc ) */
	.email-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		font-size: 28px;
		text-decoration: none;
		border-radius: 50%;
		background: #d4af37;
		color: #000;
		transition: transform 0.2s, opacity 0.2s;
	}
	
	.div-row {
		display: flex;
		align-items: center;
		justify-content: space-around;
		gap: 20px;
		width: 100%;
	}

	.div-row > div {
		flex: 1;
		text-align: center;
	}

	.email-link:hover {
		transform: scale(1.1);
		opacity: 0.85;
	}


/* CSS for MENUS page */
.menu-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(16px, 2vw, 28px);
      width: 100%;
    }

    .menu-gallery__button {
      width: 100%;
      margin: 0;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

.menu-gallery__button:focus-visible,
    .image-viewer__close:focus-visible {
      outline: 4px solid #fff;
      outline-offset: 4px;
    }

    .menu-gallery__image {
      display: block;
      width: 100%;
      height: auto;
    }

    .menu-gallery__message {
      grid-column: 1 / -1;
      margin: 0;
      padding: 24px;
      text-align: center;
      font: 600 clamp(16px, 2vw, 22px) Arial, sans-serif;
    }

.image-viewer {
      position: fixed;
      z-index: 1000;
      inset: 0;
      display: grid;
      place-items: center;
      padding: clamp(60px, 8vw, 96px) 18px 18px;
      background: rgba(0, 0, 0, 0.96);
    }

    .image-viewer[hidden] { display: none; }

    .image-viewer__image {
      display: block;
      max-width: 100%;
      max-height: calc(100vh - 100px);
      object-fit: contain;
    }

    .image-viewer__close {
      position: absolute;
      top: 16px;
      right: 16px;
      min-width: 100px;
      padding: 10px 18px;
      border: 2px solid var(--gold);
      border-radius: 999px;
      background: var(--menu-green);
      color: #fff;
      font: 700 16px Arial, sans-serif;
      cursor: pointer;
    }

    body.viewer-open { overflow: hidden; }

    @media (max-width: 600px) {
      .menu-gallery {
        grid-template-columns: 1fr;
      }

      .site-title {
        width: calc(100% - 32px);
        font-size: clamp(30pt, 12vw, 48pt);
      }

      .menu-content {
        width: 94%;
        padding-inline: 18px;
      }
    }
	
	.site-footer {
		color: var(--gold);
		width: 100%;
		z-index: 1;
		padding: 20px;
		text-align: center;
		box-sizing: border-box;
	}

	.site-footer p {
		margin: 0;
	}

    @media print {
		.menu-background {
			min-height: 100vh;
			print-color-adjust: exact;
			-webkit-print-color-adjust: exact;
		}

		.div-row {
			flex-direction: column;
		}
    }
