* {
  box-sizing: border-box;
}

:root {
  --cream: #f6ead2;
  --parchment: linear-gradient(
  	180deg,
  	#e4c27b 0%,
  	#efd39a 15%,
  	#f6e3ba 50%,
  	#efd39a 85%,
  	#d7a850 100%
	);
  --gold: #b88a35;
  --deep-gold: #6f4b16;
  --ink: #1f1b16;
  --shadow: rgba(0, 0, 0, 0.35);
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: #130f0b;
}

.site-shell {
  min-height: 100vh;
}

.top-banner {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 28px;
  /* background: linear-gradient(180deg,rgb(255,140,115),rgb(247,89,51)); 
  background: linear-gradient(180deg,rgb(248,238,215),rgb(214,178,104)); */
background:
    url('../images/ui/header-background-image.png') center center / 74% auto no-repeat,
    linear-gradient(
        180deg,
        rgb(248,238,215),
        rgb(214,178,104)
    );
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 14px var(--shadow);
}

.menu-button {
  width: 46px;
  height: 46px;
  border: 2px solid var(--deep-gold);
  border-radius: 8px;
  background: #fff8e8;
  color: var(--deep-gold);
  font-size: 26px;
  cursor: pointer;
}


.submenu-content {
  display: none;
  padding-left: 18px;
}

.submenu-content.open {
  display: block;
}

.submenu-content button {
  font-size: 0.9rem;
  opacity: 0.9;
}



.brand {
  text-align: center;
  flex: 1;
  padding-right: 66px;
}

.brand-title {
  font-size: clamp(26px, 4vw, 46px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: bold;
}

.brand-tagline {
  margin-top: 2px;
  font-size: clamp(14px, 1.8vw, 21px);
  font-style: italic;
  color: #5e3f14;
}

.drop-nav {
  position: fixed;
  z-index: 30;
  top: 92px;
  left: 22px;
  width: min(240px, calc(100vw - 44px));
  display: none;
  flex-direction: column;
  padding: 12px;
  /* background: rgba(255,235,225,0.97); */
  background: linear-gradient(
    180deg,
    #d6a24c 0%,
    #e4c27b 20%,
    #f2d9a0 50%,
    #e4c27b 80%,
    #c58a2d 100%
  );
  border: 2px solid var(--gold);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 22px var(--shadow);
}
.event-divider {
    border: 0;
    height: 1px;
    background: #8a5b1f;
    margin: 16px 0;
}

.drop-nav.open {
  display: flex;
}

.drop-nav button {
  text-align: left;
  padding: 7px 12px;
  margin: 3px 0;
  border: 1px solid rgba(111,75,22,0.35);
  background: rgba(255,255,255,0.45);
  color: var(--ink);
  font-size: 17px;
  font-family: Georgia, "Times New Roman", serif;
  cursor: pointer;
}

.drop-nav button:hover {
  background: rgba(184,138,53,0.22);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 92px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 92px 0 0 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-image.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 92px 0 0 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.05), rgba(0,0,0,0.48));
  pointer-events: none;
}

.gold-panel {
  position: relative;
  z-index: 5;
  width: min(760px, calc(100vw - 40px));
  margin: 42px auto;
  padding: clamp(24px, 4vw, 46px);
  background: var(--parchment);
  border: 4px solid var(--gold);
  border-radius: 18px;
/* 
  box-shadow:
    0 0 0 2px rgba(111,75,22,0.65) inset,
    0 18px 36px var(--shadow); */
box-shadow:
    0 0 0 2px #f6dfab inset,
    0 0 0 5px #8a5b1f inset,
    0 18px 36px rgba(0,0,0,0.35);
}

.gold-panel h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 45px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gold-panel h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.lead {
  /* font-size: clamp(18px, 2vw, 24px); */
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.42;
}

.news-box {
  margin-top: 26px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.45);
  border-left: 5px solid var(--deep-gold);
  border-right: 5px solid var(--deep-gold);
}

.news-box p {
  margin: 8px 0;
  font-size: 17px;
  line-height: 1.45;
}



/* WHY / Stories Behind the Food viewer */
.why-viewer {
  position: relative;
  width: min(92vw, 1100px);
  margin: 0 auto;
  border: 4px solid var(--gold);
  border-radius: 18px;
  box-shadow:
    0 0 0 2px #f6dfab inset,
    0 0 0 5px #8a5b1f inset,
    0 18px 36px rgba(0,0,0,0.35);
  overflow: hidden;
  background: #120c07;
}

.why-image {
  display: block;
  width: 100%;
  height: auto;
}

.why-button {
  position: absolute;
  z-index: 3;
  padding: 10px 20px;
  border: 1px solid #e1c16e;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #6f4e1f 0%,
    #d6b45c 45%,
    #f4dfa1 55%,
    #8a6428 100%
  );
  color: #1d1208;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.why-button:hover {
  transform: translateY(-1px);
}

.why-button-hidden {
  opacity: 0;
  pointer-events: none;
}

.why-title-btn {
  top: 24px;
  left: 24px;
}

.why-desc-btn {
  bottom: 24px;
  left: 24px;
}

.why-story-btn {
  bottom: 24px;
  right: 24px;
}

.why-popout {
  display: none;
  position: absolute;
  z-index: 4;
  left: 8%;
  right: 8%;
  top: 18%;
  max-height: 62%;
  overflow-y: auto;
  padding: 22px 28px;
  background: rgba(20, 13, 8, 0.9);
  border: 2px solid #d6b45c;
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.55;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

.why-popout.open {
  display: block;
}

.why-popout h2 {
  margin: 0;
  color: #f3d27a;
  font-size: clamp(26px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-popout p {
  margin: 0 0 1em;
}

.why-popout p:last-child {
  margin-bottom: 0;
}

.why-arrow {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  border: 1px solid #d6b45c;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #d6b45c;
  font-size: 2rem;
  cursor: pointer;
  padding: 2px 14px 4px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.why-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}

.why-arrow-left {
  left: calc(50% - 58px);
}

.why-arrow-right {
  right: calc(50% - 58px);
}

@media (max-width: 700px) {
  .top-banner {
    height: 82px;
    padding: 10px 14px;
  }

  .brand {
    padding-right: 0;
    text-align: left;
  }

  .brand-title {
    font-size: 23px;
    line-height: 1.05;
  }

  .brand-tagline {
    font-size: 14px;
  }

  .hero {
    padding-top: 82px;
    align-items: flex-start;
  }

  .hero-image,
  .hero::after {
    inset: 82px 0 0 0;
  }

  .drop-nav {
    top: 82px;
    left: 10px;
    width: calc(100vw - 20px);
  }

  .gold-panel {
    margin: 22px 14px;
    padding: 22px;
    width: calc(100vw - 28px);
  }

  .gold-panel h1 {
    font-size: 32px;
  }
}


@media (max-width: 700px) {
  .why-viewer {
    width: calc(100vw - 28px);
    border-width: 3px;
    border-radius: 14px;
  }

  .why-button {
    padding: 8px 13px;
    font-size: 14px;
  }

  .why-title-btn {
    top: 14px;
    left: 14px;
  }

  .why-desc-btn {
    bottom: 14px;
    left: 14px;
  }

  .why-story-btn {
    bottom: 14px;
    right: 14px;
    max-width: 46%;
    text-align: center;
  }

  .why-popout {
    left: 6%;
    right: 6%;
    top: 14%;
    max-height: 68%;
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .why-arrow {
    bottom: 12px;
    font-size: 1.7rem;
    padding: 1px 12px 3px;
  }

  .why-arrow-left {
    left: calc(50% - 52px);
  }

  .why-arrow-right {
    right: calc(50% - 52px);
  }
}

.gold-panel.why-panel-mode {
  width: min(92vw, 1100px);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.gold-panel.why-panel-mode {
  width: min(94vw, 1200px);
  max-height: calc(100vh - 130px);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.why-viewer {
  position: relative;
  width: fit-content;
  max-width: 94vw;
  max-height: calc(100vh - 130px);
  margin: 0 auto;
  border: 3px solid #b8924a;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.why-image {
  display: block;
  width: auto;
  max-width: 94vw;
  height: auto;
  max-height: calc(100vh - 145px);
  object-fit: contain;
}
.why-title-btn.title-expanded {
  max-width: calc(100% - 50px);
  white-space: normal;
  text-align: center;
  line-height: 1.15;
  box-sizing: border-box;
}
.why-desc-expanded {
  position: absolute;
  left: 24px;
  bottom: 76px;
  z-index: 5;

  width: min(800px, calc(100% - 48px));
  max-height: calc(100% - 100px);
  overflow-y: auto;

  padding: 16px 20px;
  border: 2px solid #d6b45c;
  border-radius: 18px;
  /* background: rgba(246, 234, 210, 0.92); */
  background: linear-gradient(
  135deg,
  #6f4e1f 0%,
  #d6b45c 45%,
  #f3d27a 60%,
  #8a6428 100%
  );
  color: #1f1b16;

  font-size: 1rem;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
a:link {
    color: #D4AF37;
}

a:visited {
    color: #D4AF37;
}

a:hover {
    color: #beac60;
}

a:active {
    color: #FFD700;
}