:root {
  --bg: #050505;
  --panel: rgba(16, 16, 16, 0.88);
  --panel-2: rgba(30, 22, 16, 0.82);
  --text: #f2ead9;
  --muted: #d6c8a8;
  --line: rgba(222, 205, 169, 0.4);
  --accent: #d2b47c;
  --accent-strong: #e4c98f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    linear-gradient(rgba(0,0,0,.34), rgba(0,0,0,.46)),
    url("assets/brown-barn-wood-rustic-background.jpg") center center / cover no-repeat fixed;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
  width: min(1400px, 100%);
  margin: 0 auto;
  border-left: 1px solid rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.03);
}

.top-info-bar {
	position: relative;
	padding: 24px 28px 18px;
	background: transparent;
	border-bottom: none;
}

.header-side {
	color: #fffaf0;
	font-size: 1.02rem;
	line-height: 1.65;
	text-shadow: 0 1px 2px rgba(0,0,0,.9);
	background: rgba(0, 0, 0, 0.56);
	padding: 12px 18px;
	border: 1px solid rgba(228,201,143,.22);
	border-radius: 8px;
}

.header-side h3 {
	margin: 0 0 8px;
	color: #f3d592;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-size: 1.15rem;
	text-shadow: 0 1px 2px rgba(0,0,0,.95);
}

.header-side p {
	margin: 0 0 4px;
}

.header-side a {
	color: #fffaf0;
	text-decoration: none;
}

.top-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	padding: 24px 0 18px;
}

.top-info-bar .top-logo {
	width: 360px;
	margin: 0 auto;
	padding: 0;
}

.home-top-info-bar .top-logo,
.top-info-bar .top-logo {
	padding: 0;
}
	
.top-logo img {
  width: 360px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.header-left {
	position: absolute;
	top: 24px;
	left: 28px;
	width: 320px;
}

.header-right {
	position: absolute;
	top: 24px;
	right: 28px;
	width: 320px;
	height: 344.7px;
	text-align: left;
	display: flex;
	flex-direction: column;
}

.header-directions-btn {
	position: absolute;
	top: 8px;
	right: 8px;
	padding: 7px 11px;
	border: 1px solid rgba(228, 201, 143, .45);
	background: rgba(210, 180, 124, .07);
	color: var(--text);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .05rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.header-directions-btn:hover {
	background: rgba(210, 180, 124, .16);
	color: var(--accent-strong);
}

.mini-map {
	margin-top: 8px;
	border: 1px solid rgba(228,201,143,.18);
	border-radius: 6px;
	overflow: hidden;
	background: transparent;
	width: 100%;
	flex: 1;
	min-height: 0;
}

.mini-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: linear-gradient(180deg, rgba(52,38,26,.78), rgba(34,24,18,.72));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.main-nav a {
  padding: 18px 26px;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  text-transform: uppercase;
  position: relative;
}
.main-nav a + a::before {
  content: "|";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.35);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-strong);
}

.page-wrap { padding-bottom: 34px; }

.hero-row,
.grid-row,
.page-panel,
.info-strip,
.feature-list,
.beer-grid,
.visit-grid {
  border-top: 1px solid var(--line);
}

.hero-row,
.page-panel {
  min-height: 210px;
  padding: 28px 34px;
  background:
    linear-gradient(rgba(12,12,12,.62), rgba(22,18,14,.72)),
    radial-gradient(circle at right, rgba(182,130,58,.14), transparent 28%),
    linear-gradient(90deg, rgba(30,30,30,.9), rgba(16,16,16,.9));
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}
.card {
  min-height: 420px;
  padding: 28px 28px 22px;
  background:
    linear-gradient(rgba(14,14,14,.78), rgba(22,17,13,.83)),
    radial-gradient(circle at center, rgba(160,105,50,.08), transparent 40%);
  border-right: 1px solid var(--line);
}
.grid-row .card:last-child { border-right: none; }

.card-link {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.card-link:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(228,201,143,.18), 0 10px 24px rgba(0,0,0,.18);
}
.home-image-area {
	width: 100%;
	height: 340px;
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.section-title {
  margin: 0 0 18px;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: .03em;
  color: var(--text);
}
.section-title.small {
  font-size: clamp(1.25rem, 1.7vw, 1.85rem);
  margin-bottom: 20px;
  white-space: nowrap;
}
.section-title::before,
.section-title::after {
  content: "—";
  color: var(--muted);
  margin: 0 .22em;
  font-weight: 400;
}

.visit-title {
	position: relative;
	left: -8px;
}

.lead {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  line-height: 1.5;
  text-align: center;
  color: #f6f0e4;
}

.button-row {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tap-banner-buttons {
	gap: 35px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid rgba(228,201,143,.45);
  color: var(--text);
  background: rgba(210,180,124,.07);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
}
.btn:hover {
  background: rgba(210,180,124,.16);
  color: var(--accent-strong);
}

.social-button-row {
	gap: 14px;
	flex-wrap: wrap;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border: 1px solid rgba(228,201,143,.45);
	color: var(--text);
	background: rgba(210,180,124,.07);
	text-transform: none;
	border-radius: 8px;
	transition: background .18s ease, transform .18s ease, color .18s ease;
}

.social-btn:hover {
	background: rgba(210,180,124,.16);
	color: var(--accent-strong);
	transform: translateY(-2px);
}

.social-logo {
	width: 22px;
	height: 22px;
	object-fit: contain;
	display: block;
}

.icon-link {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	text-decoration: none;
	transition: transform .18s ease, background .18s ease;
}

.icon-link:hover {
	transform: translateY(-2px);
	background: rgba(255,255,255,.14);
}

.icon-logo {
	width: 28px;
	height: 28px;
	object-fit: contain;
	display: block;
}

.beer-visuals {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
  min-height: 180px;
}
.beer-glass {
  width: 88px;
  height: 148px;
  border-radius: 18px 18px 24px 24px;
  border: 3px solid rgba(255,255,255,.3);
  position: relative;
  box-shadow: inset 0 12px 14px rgba(255,255,255,.08), 0 8px 22px rgba(0,0,0,.28);
}
.beer-glass::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 8px;
  right: 8px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5eed9, #dbcfa8);
}
.beer-gold { background: linear-gradient(180deg, #f6b03d, #d68414); }
.beer-dark { background: linear-gradient(180deg, #312317, #090909); }
.beer-red  { background: linear-gradient(180deg, #8f4720, #3a130c); }

.beer-names {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.3vw, 1.45rem);
  text-transform: uppercase;
  line-height: 1.45;
}
.beer-styles {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: #f1e7d2;
  font-size: 1rem;
}
.ribbon {
  margin: 24px auto 0;
  width: fit-content;
  padding: 10px 22px;
  border: 1px solid rgba(228,201,143,.32);
  background: linear-gradient(180deg, #e3c88f, #c9ab72);
  color: #21160d;
  font-weight: 700;
  font-size: 1.1rem;
}

.taproom-visual {
  margin: 14px auto 18px;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,.2);
  background:
    linear-gradient(rgba(20,13,8,.15), rgba(18,12,10,.25)),
    linear-gradient(135deg, #5b3d22, #1b1613 65%);
  position: relative;
  overflow: hidden;
}
.taproom-visual::before {
  content: "";
  position: absolute;
  inset: 14% 52% 14% 14%;
  border-radius: 8px;
  background: linear-gradient(180deg, #ececec, #9aa2ae);
  box-shadow: 140px 18px 0 -18px #ececec, 165px 48px 0 -24px #efefef;
}
.taproom-visual::after {
  content: "We Accept\ASquare";
  white-space: pre;
  position: absolute;
  left: 16px;
  bottom: 18px;
  padding: 10px 12px;
  color: #111;
  background: #f1ead9;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 4px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 20px;
}
.icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
}
.ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b 60%, #6228d7); }
.fb { background: #3067d6; }
.tw { background: #3aa7ff; }
.sq { background: #e5a92a; color: #241500; }

.social-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
/* Rotating photos in the About page social gallery */
.social-gallery-photos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	width: 100%;
	margin-top: 24px;
}
.social-gallery-photo {
	position: relative;
	width: 100%;
	height: 260px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: rgba(15, 12, 10, 0.9);
}
.social-gallery-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
}
.social-gallery-photo img.is-changing {
	opacity: 0;
}
.gallery-tile {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,255,255,.15);
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.18)),
    linear-gradient(135deg, #ad7e2e, #302821);
}
.gallery-tile.building { background: linear-gradient(rgba(0,0,0,.14), rgba(0,0,0,.2)), linear-gradient(135deg, #7ea2cc, #3c2d1e 65%); }
.gallery-tile.music { background: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.22)), linear-gradient(135deg, #6c5038, #171515); }

.page-panel h1 {
  margin: 0 0 18px;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  letter-spacing: .04em;
}
.page-panel p {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.12rem, 1.45vw, 1.4rem);
  line-height: 1.8;
}

.content-wrap {
  padding: 34px 0 0;
}
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.info-box {
  padding: 24px;
  background: rgba(15,15,15,.76);
  border-right: 1px solid var(--line);
}
.info-strip .info-box:last-child { border-right: none; }
.info-box h3,
.text-block h2 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent-strong);
}
.info-box p,
.text-block p,
.text-block li { font-size: 1.08rem; line-height: 1.8; }
.feature-list,
.visit-grid,
.beer-grid {
  display: grid;
  gap: 0;
}
.feature-list {
	grid-template-columns: 1.15fr .85fr;
}
.visit-grid {
	grid-template-columns: 1.1fr .9fr;
}

/* Visit page: Taproom Information mini-map */
.taproom-info-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, .85fr);
	gap: 24px;
	align-items: start;
}
.taproom-info-details p:first-child {
	margin-top: 0;
}
.taproom-info-map {
	width: 100%;
}
.taproom-info-map iframe {
	display: block;
	width: 100%;
	height: 220px;
	border: 1px solid var(--line);
	background: rgba(12, 10, 8, 0.88);
}
.taproom-directions-link {
	display: block;
	width: fit-content;
	margin: 10px auto 0;
	padding: 8px 14px;
	border: 1px solid rgba(228, 201, 14, .45);
	background: rgba(210, 180, 124, .07);
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: .82rem;
}
.taproom-directions-link:hover {
	background: rgba(210, 180, 124, .16);
	color: var(--accent-strong);
}
.taproom-info-description {
	margin-bottom: 0;
}
@media (max-width: 760px) {
	.taproom-info-layout {
		grid-template-columns: 1fr;
	}
	.taproom-info-map iframe {
		height: 240px;
	}
}

.beer-grid {
	grid-template-columns: repeat(3, 1fr);
}
.distributor-banner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 28px;
	padding: 24px 36px;
	margin-top: 34px;
	margin-bottom: 34px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background:
		linear-gradient(rgba(20, 17, 13, 0.9), rgba(20, 17, 13, 0.9)),
		radial-gradient(circle at right, rgba(182, 130, 58, 0.16), transparent 38%);
}
.distributor-banner h2 {
	margin: 0 0 8px;
}
.distributor-action {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.text-block,
.visual-block,
.beer-card {
  padding: 30px;
  background: rgba(17,17,17,.8);
  border-right: 1px solid var(--line);
}
.feature-list > *:last-child,
.visit-grid > *:last-child,
.beer-grid > *:last-child { border-right: none; }
.visual-block {
  background:
    linear-gradient(rgba(10,10,10,.25), rgba(10,10,10,.25)),
    linear-gradient(135deg, #4c351f, #121212 68%);
  min-height: 100%;
}
.visual-card {
  min-height: 320px;
  border: 1px solid rgba(255,255,255,.15);
  background:
    radial-gradient(circle at top left, rgba(246,176,61,.24), transparent 28%),
    linear-gradient(135deg, #2d2118, #0e0d0c 72%);
}
.beers-variety-photo {
	padding: 0;
	overflow: hidden;
}
.beers-variety-photo img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
}
.home-taproom-photo,
.home-events-photo {
	width: 100%;
	height: 300px;
	padding: 0;
	overflow: hidden;
}
.home-taproom-photo img,
.home-events-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.taproom-photo-card {
	padding: 0;
	overflow: hidden;
}
.taproom-photo-card img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
}
.beer-card h3 {
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 0;
  color: var(--text);
}
.beer-card .style-label {
  color: var(--accent-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .95rem;
}
/* Ominous Fog Future Release Card */
.future-release-card {
	display:flex;
	flex-direction: column;
}
.future-release-card h3 {
	color: var(--accent-strong);
}
.beer-card-copy {
	padding: 30px 38px 22px;
}
.future-release-photo {
	width: 100%;
	margin-top: auto;
	overflow: hidden;
	border-top: 1px solid var(--line);
}
.future-release-photo img {
	display: block;
	width: 100%;
	height: 330px;
	object-fit: cover;
}
.beer-thumb {
  width: 78px;
  height: 132px;
  margin-bottom: 16px;
}
.footer {
  padding: 22px 30px 40px;
  text-align: center;
  color: rgba(242,234,217,.8);
  border-top: 1px solid var(--line);
  font-size: .98rem;
}

@media (max-width: 980px) {
  .top-info-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-left,
  .header-right {
    justify-self: center;
    max-width: 500px;
  }

  .header-right {
    text-align: center;
  }

  .top-logo {
    order: -1;
  }

  .grid-row,
  .info-strip,
  .feature-list,
  .visit-grid,
  .beer-grid {
    grid-template-columns: 1fr;
  }
  
  .card,
  .info-box,
  .text-block,
  .visual-block,
  .beer-card { border-right: none; border-bottom: 1px solid var(--line); }
  .beer-card:last-child,
  .text-block:last-child,
  .visual-block:last-child,
  .info-box:last-child,
  .card:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .top-logo { padding-top: 18px; }
  .main-nav a { padding: 14px 16px; font-size: .95rem; }
  .hero-row, .page-panel, .content-wrap { padding: 24px 18px; }
  .card { padding: 22px 18px; min-height: auto; }
  .section-title::before, .section-title::after { margin: 0 .18em; }
  .social-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
	.top-info-bar {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.header-left,
	.header-right {
		justify-self: center;
		max-width: 500px;
	}
	
	.header-right {
		text-align: center;
	}
	
	.top-logo {
		order: -1;
	}
}

.calendar-shell {
  border-top: 1px solid var(--line);
  padding: 34px;
  background: rgba(13,13,13,.78);
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}
.calendar-kicker {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-strong);
  font-size: .88rem;
  margin-bottom: 8px;
}
.calendar-header h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.calendar-note {
  max-width: 420px;
  color: rgba(242,234,217,.85);
  line-height: 1.7;
}
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-weekdays div {
  padding: 12px 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .9rem;
  color: var(--accent-strong);
  border: 1px solid rgba(228,201,143,.18);
  background: rgba(28,22,17,.82);
}
.calendar-grid {
  border-left: 1px solid rgba(228,201,143,.18);
  border-bottom: 1px solid rgba(228,201,143,.18);
}
.day-card {
  min-height: 138px;
  padding: 12px;
  border-right: 1px solid rgba(228,201,143,.18);
  border-top: 1px solid rgba(228,201,143,.18);
  background: linear-gradient(rgba(18,18,18,.96), rgba(30,22,16,.88));
}
.day-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin-bottom: 10px;
}
.day-content {
  font-size: .98rem;
  line-height: 1.55;
  color: var(--text);
}
.highlight-day {
  background: linear-gradient(rgba(48,34,18,.95), rgba(34,22,14,.92));
  box-shadow: inset 0 0 0 1px rgba(228,201,143,.18);
}
.muted-day .day-number,
.muted-day .day-content {
  opacity: .48;
}
@media (max-width: 980px) {
  .calendar-shell { padding: 24px 18px; }
  .calendar-header { align-items: start; flex-direction: column; }
  .calendar-weekdays { display: none; }
  .calendar-grid { grid-template-columns: 1fr; border-left: none; }
  .day-card { min-height: auto; }
}


.current-calendar-panel {
  border-top: 1px solid var(--line);
  padding: 34px;
  background: rgba(13,13,13,.70);
}
.calendar-display-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}
.calendar-image-frame {
  border: 1px solid rgba(228,201,143,.24);
  background: rgba(9,9,9,.22);
  padding: 16px;
}
.calendar-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.month-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.month-link-grid .btn {
  text-align: center;
}
.calendar-note-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.calendar-note-inner {
  padding: 22px;
}
.calendar-note-inner h3 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent-strong);
}
.calendar-note-inner p {
  line-height: 1.8;
  font-size: 1.08rem;
}
@media (max-width: 980px) {
  .current-calendar-panel { padding: 24px 18px; }
  .calendar-display-header { flex-direction: column; align-items: start; }
  .month-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .month-link-grid { grid-template-columns: 1fr; }
}


/* Customer-facing Events page */
.customer-events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.events-preview-frame {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-preview-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.events-preview-fallback {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: var(--text);
}
.events-preview-fallback h3 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent-strong);
}
.events-preview-fallback p {
  line-height: 1.8;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .customer-events-layout {
    grid-template-columns: 1fr;
  }
}

.events-calendar-hero {
  margin-bottom: 28px;
}

.events-hero-frame {
  padding: 20px;
}

.events-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(228,201,143,.18);
  background: rgba(255,255,255,.02);
}

.events-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.events-preview-side {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.events-preview-copy {
  width: 100%;
  border-right: none;
  background: rgba(17,17,17,.55);
}

@media (max-width: 980px) {
  .events-bottom-grid {
    grid-template-columns: 1fr;
  }
  .events-preview-copy {
    border-top: 1px solid var(--line);
  }
}

.header-side a:hover {
  color: var(--accent-strong);
}


.footer-contact {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  line-height: 1.7;
}

.footer a {
  color: var(--text);
  text-decoration: none;
}
.footer a:hover {
  color: var(--accent-strong);
}
/* Home page staff slideshow */
.staff-slideshow {
	position: relative;
	width: calc(100% - 72px);
	height: 300px;
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid var(--line);
	background: rgba(12,10,8,0.88);
}
.staff-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
.staff-slide.active {
	opacity: 1;
}
/* Google Calendar section on Events page */
.events-calendar-section {
	padding: 30px 36px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid car(--line);
	background: rgba(16, 14, 12, 0.88);
}
.events-calendar-heading {
	margin-bottom: 24px;
}
.events-calendar-heading h2 {
	margin-top: 0;
}
.events-calendar-frame {
	width: 100%;
	min-height: 650px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #ffffff;
}
.events-calendar-frame iframe {
	display: block;
	width: 100%;
	height: 650px;
	border: 0;
}
.events-calendar-buttons {
	justify-content: flex-start;
	margin-top: 24px;
}
.events-calendar-buttons a.btn,
.events-calendar-buttons a.btn:visited {
	background: var(--accent-strong);
	color: #17120d;
	border: 2px solid var(--accent-strong);
	front-weight: 700;
	padding: 14px 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.events-calendar-buttons a.btn:hover,
.events-calendar-buttons a.btn:focus {
	background: #17120d;
	color: var(--accent-strong);
	border-color: var(--accent-strong);
}
/* Mobile Layout for the Distributor Banner */
@media (max-width: 800px) {
	.staff-slideshow {
		width: calc(100% - 36px);
		height: 280px;
		margin-top: 24px;
	}
	.social-gallery-photos {
		grid-template-columns: 1fr;
	}
	.social-gallery-photo {
		height: 280px;
	}
	.events-calendar-section {
		padding: 24px 18px;
	}
	.events-calendar-frame {
		min-height: 540px;
	}
	.events-calendar-frame iframe {
		height:540px;
	}
	.distributor-banner {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 22px 24px;
	}
	.distributor-action {
		justify-content: flex-start;
	}
}
/* Distributor product sell-sheet page */
.sell-sheet-list {
  display: grid;
  gap: 22px;
}

.sell-sheet-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(
      rgba(18, 15, 12, 0.9),
      rgba(18, 15, 12, 0.9)
    ),
    radial-gradient(
      circle at right,
      rgba(182, 130, 58, 0.14),
      transparent 38%
    );
}

.sell-sheet-copy h2 {
  margin: 0 0 8px;
  color: var(--accent-strong);
}

.beer-specs {
  margin: 0 0 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sell-sheet-copy p:last-child {
  margin-bottom: 0;
  max-width: 950px;
}

.sell-sheet-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sell-sheet-action .btn {
  min-width: 270px;
  text-align: center;
}
/* Mobile layout for distributor sell sheets */
@media (max-width: 800px) {
  .sell-sheet-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .sell-sheet-action {
    justify-content: flex-start;
  }

  .sell-sheet-action .btn {
    min-width: 0;
    width: 100%;
  }
}