/* =============================================
   GARDEN WHITE | California Italian
   ============================================= */

html, body {
	height: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family:'A1ゴシック R' , sans-serif;
	font-weight: 300;
	color: #2A2A2A;
	line-height: 1.75;
	letter-spacing: 0.05em;
	font-size: 15px;
	background: #FAFAF5;
	margin: 0;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

p {
	margin: 0;
}

section {
	padding: 0;
}

/* =============================================
   HEADER / NAV
   ============================================= */

.site-header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
}

#globalNav {
	width: 100%;
}

#globalNav ul {
	display: flex;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
}

#globalNav ul li {
	display: block;
}

#globalNav ul li a {
	display: block;
	height: 52px;
	line-height: 52px;
	padding: 0 20px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 2px;
	color: #fff;
	text-decoration: none;
	background: rgba(94, 128, 57, 0.9);
	transition: background 0.25s ease;
	white-space: nowrap;
}

#globalNav ul li a:hover {
	background: rgba(60, 90, 60, 0.95);
}

#globalNav .navi-instagram a {
	width: 52px;
	background-image: url(../images/icon-instagram.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px 22px;
	background-color: rgba(94, 128, 57, 0.9);
	text-indent: -9999px;
	overflow: hidden;
}

#globalNav .navi-instagram a:hover {
	background-color: rgba(60, 90, 60, 0.95);
}

.nav-toggle {
	display: none;
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 300;
	width: 44px;
	height: 44px;
	background: rgba(26, 35, 24, 0.9);
	border: none;
	cursor: pointer;
	padding: 12px 10px;
	box-sizing: border-box;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	margin-bottom: 6px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span:last-child {
	margin-bottom: 0;
}

.nav-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   SITE WRAPPER
   ============================================= */

.site {
	margin: 0;
}

/* =============================================
   CONTENT CONTAINERS
   ============================================= */

.content-inner {
	width: 100%;
	max-width: 1280px;
	box-sizing: border-box;
	padding: 0 40px;
	margin: 0 auto;
}

.content-inner.narrow {
	max-width: 720px;
	padding: 0 24px;
}

/* =============================================
   GRID
   ============================================= */

.grid24 {
	font-size: 0;
	letter-spacing: 0;
}

.grid24 .grid12 {
	width: 50%;
	display: inline-block;
	vertical-align: top;
	font-size: 15px;
	letter-spacing: 0.05em;
	box-sizing: border-box;
}

.grid12 img {
	width: 100%;
	height: auto;
	display: block;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h2 {
	font-family: 'Outfit', sans-serif;
	font-size: 60px;
	font-weight: 400;
	color: #2A3A2A;
	text-align: center;
	letter-spacing: 5px;
	margin: 0 0 32px;
	padding: 0;
}

h2.h2-light {
	color: #fff;
}



.concept-tagline {
	font-family: 'A1ゴシック R','Noto Sans JP', sans-serif;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 3px;
	text-align: center;
	color: #2A3A2A;
	margin: 0 0 28px;
}

.text-light {
	color: #fff;
	font-size: 20px;
	font-weight:700;
	line-height: 1.75;
}

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

.text-left {
	text-align: left;
}

.section-label {
	font-family: 'Cormorant Garamond', serif;
	font-size: 34px;
	font-weight: 400;
	letter-spacing: 4px;
	color: #2A3A2A;
	margin: 0 0 28px;
}

.plan-lead {
	font-size: 13px;
	letter-spacing: 2px;
	color: #666;
}

/* =============================================
   BUTTONS
   ============================================= */

.contained_button {
	display: inline-block;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	text-decoration: none;
	color: #fff;
	background: #2A3A2A;
	padding: 14px 36px;
	border: 1px solid #2A3A2A;
	border-radius: 999px;
	transition: background 0.25s ease, color 0.25s ease;
	white-space: nowrap;
}

.contained_button:hover {
	background: transparent;
	color: #2A3A2A;
}

.btn-outline {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.btn-outline:hover {
	background: #fff;
	color: #5E8039;
}

.btn-light-outline {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.btn-light-outline:hover {
	background: #fff;
	color: #5E8039;
}

.btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.btn-wrap .contained_button {
	display: block;
	width: calc(50% - 6px);
	text-align: center;
	box-sizing: border-box;
	white-space: normal;
}

/* =============================================
   HERO
   ============================================= */

#hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	padding-top: 52px;
	box-sizing: border-box;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero-overlay {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 52px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px;
	box-sizing: border-box;
}

.hero-logo {
	margin-bottom: 56px;
}

.hero-logo-img {
	width: 320px;
	max-width: 80vw;
	height: auto;
	display: block;
}

.hero-title {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 80px;
	font-weight: 700;
	line-height: 1.0;
	letter-spacing: 6px;
	color: #FFFFFF;
	margin: 0 0 20px;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
	font-family: 'Dancing Script', cursive;
	font-size: 28px;
	font-weight: 600;
	color: #FFFFFF;
	margin: 0;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-concept-text {
	max-width: 840px;
}

.concept-tagline {
	font-family: 'A1ゴシック R','Noto Sans JP', sans-serif;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 3px;
	color: #FFFFFF;
	margin: 0 0 24px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.concept-body {
	font-family: 'A1ゴシック R','Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.75;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* =============================================
   CONCEPT
   ============================================= */

#concept {
	background: #FFFFFF;
	padding: 0;
}

#concept .grid24 {
	gap: 0;
}

#concept img {
	display: block;
	width: 100%;
	height: auto;
}

/* =============================================
   DINING
   ============================================= */

#dining {
	background: #5E8039;
	padding: 64px 0;
}

.dining-photos {
	display: flex;
	width: 100%;
}

.dining-photo {
	flex: 1;
}

.dining-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Marquee Slider */
.marquee-slider {
	overflow: hidden;
	width: 100%;
}

.marquee-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: marquee-left 30s linear infinite;
}

.marquee-track img {
	width: 380px;
	max-width: 380px;
	height: 280px;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
}

@keyframes marquee-left {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* =============================================
   FOOD
   ============================================= */

#food {
	background: #5E8039;
	padding: 64px 0;
}

#food .section-label {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 64px;
	font-weight: 600;
	letter-spacing: 10px;
	color: #fff;
	margin-bottom: 32px;
}

#food .zigzag-text p {
	font-size:16px;
	color:#fff;
}

.zigzag-wrap {
	display: flex;
	align-items: center;
	gap: 0;
}

.zigzag-reverse {
	flex-direction: row-reverse;
}

.zigzag-text {
	flex: 0 0 45%;
	padding: 0 48px;
	box-sizing: border-box;
}

.zigzag-image {
	flex: 0 0 55%;
}

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

.photo-grid-1x2 {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 3px;
}

.photo-grid-1x2 img {
	width: 100%;
	height: auto;
	display: block;
}

/* =============================================
   DRINK
   ============================================= */

#drink {
	background: #5E8039;
	padding: 64px 0;
}

#drink .section-label {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 64px;
	font-weight: 600;
	letter-spacing: 10px;
	color: #fff;
	text-align: right;
	margin-bottom: 32px;
}

#drink .zigzag-text p {
	color:#fff;
}


/* =============================================
   DINING RESERVE BANNER
   ============================================= */

.dining-reserve-banner {
	background: #5E8039;
	padding: 64px 24px 128px 24px;
	text-align: center;
	box-sizing: border-box;
}

.dining-reserve-box {
	display: inline-block;
	border: 4px solid #fff;
	padding: 24px 80px;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.25s ease;
}

.dining-reserve-box:hover {
background:#fff;
color:#5E8039;
border: 4px solid #5E8039;
}

.reserve-heading {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 45px;
	font-weight: 600;
	letter-spacing: 8px;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1;
}

.reserve-sub {
	font-size: 36px;
	letter-spacing: 3px;
	color: #fff;
	margin: 0;
	line-height: 1;
}

.dining-reserve-box:hover .reserve-heading,.dining-reserve-box:hover .reserve-sub{
	color:#5E8039;
}


/* =============================================
   BEER GARDEN HERO IMAGE
   ============================================= */

.beergarden-hero {
	position: relative;
	width: 100%;
	background:#5E8039;
}

.beergarden-hero img {
	width: 100%;
	max-width:1060px;
	height: auto;
	display:block;
	margin:0 auto;
}

.beergarden-hero-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	padding: 0 24px;
	box-sizing: border-box;
}

.bgh-brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 8px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 12px;
}

.bgh-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 72px;
	font-weight: 400;
	letter-spacing: 8px;
	color: #fff;
	line-height: 1;
	margin: 0 0 16px;
}

.bgh-date {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 4px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.bgh-date em {
	font-style: normal;
	font-size: 14px;
	letter-spacing: 2px;
	vertical-align: middle;
	margin: 0 6px;
	color: rgba(255,255,255,0.7);
}

/* =============================================
   BEER GARDEN CONTENT
   ============================================= */

#beergarden {
	background: #5E8039;
	padding: 64px 0;
}

#beergarden h2 {
	font-family: 'Oswald', sans-serif;
	color: #fff;
}

#beergarden p {
	font-size: 20px;
	line-height: 1.75;
	color: #fff;
}

#beergarden p.period-dates {
	font-family: 'Oswald', sans-serif;
	font-size: 64px;
	font-weight: 400;
	letter-spacing: 4px;
	color: #fff;
	margin: 0;
	line-height: 1.75;
}

.period-hours {
	display: flex;
	justify-content: center;
	gap: 64px;
}

.period-item {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.day-label {
	font-family: 'A1ゴシック R','Noto Sans JP', sans-serif;
	font-size: 36px;
	font-weight: 400;
	letter-spacing: 2px;
	color: #fff;
}

.time-label {
	font-family: 'Oswald', sans-serif;
	font-size: 48px;
	font-weight: 400;
	letter-spacing: 2px;
	color: #fff;
	line-height: 1;
}

.status-box {
	width: 100%;
	max-width: 640px;
	margin: 40px auto 0;
	padding: 32px 24px;
	background: #fff;
	text-align: center;
	box-sizing:border-box;
}

#beergarden p.status-heading {
	font-family: 'A1ゴシック R','Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #5E8039;
	margin: 0 0 16px;
}

.status-divider {
	border: none;
	border-top: 1px solid #5E8039;
	margin: 0 0 16px;
}

#beergarden .status-content p{
	font-family: 'A1ゴシック R','Noto Sans JP', sans-serif;
	font-size: 18px;
	line-height: 1.75;
	font-weight:bold;
	color: #5E8039;
}

.status-content p {
	font-size: 18px;
	color: #5E8039;
	margin: 0;
}

/* =============================================
   SEASON SECTIONS
   ============================================= */

.season-outer {
	background: #5E8039;
	padding: 56px 24px 0;
}

.season-outer:last-of-type {
	padding-bottom: 56px;
}

.season-section {
	width: 1056px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	padding:16px 0;
	overflow: hidden;
}

.season-grid {
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
	height: 100%;
}

.season-grid-reverse {
	flex-direction: row-reverse;
}

.season-images {
	flex: 0 0 58%;
	height: 100%;
	overflow: hidden;
}

.season-images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.season-body {
	flex: 1;
	padding: 40px 5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.season-period-label {
	display: block;
	font-size: 24px;
	font-weight:700;
	letter-spacing: 2px;
	margin: 0 0 12px;
}

.season-title-script {
	font-family: 'Whisper', cursive;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.75;
	margin: 0 0 24px;
}

.season-body p {
	font-size: 20px;
	font-weight:700;
	line-height: 1.5;
}

/* Fresh Coast */
.fresh-coast {
	background: #F0CC00;
}

.fresh-coast .season-period-label {
	color: #4d931cff;
}

.fresh-coast .season-title-script {
	color: #4d931cff;
}

.fresh-coast .season-body p {
	color: #4d931cff;
}

/* Sunset Grill */
.sunset-grill {
	background: #123a1eff;
}

.sunset-grill .season-period-label {
	color: #bb862fff;
}

.sunset-grill .season-title-script {
	color: #bb862fff;
}

.sunset-grill .season-body {
	text-align: right;
}

.sunset-grill .season-body p {
	color: #bb862fff;
}

/* Harvest Table */
.harvest-table {
	background: #6E3233;
}

.harvest-table .season-period-label {
	color:#ebbe6dff;
}

.harvest-table .season-title-script {
	color:#ebbe6dff;
}

.harvest-table .season-body p {
	color:#ebbe6dff;
}

/* =============================================
   TERRACE DRINKS
   ============================================= */

.terrace-drinks {
	background: #5E8039;
	padding: 64px 0;
}

.terrace-drink-heading {
	font-family: 'A1ゴシック R','Noto Sans JP', sans-serif;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #fff;
	text-align: center;
	margin: 0 0 40px;
}

.terrace-drink-text {
	font-size: 20px;
	line-height: 1.75;
	color:#fff;
	text-align: left;
}

.drink-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
}

.drink-photo-grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

/* =============================================
   TERRACE RESERVE
   ============================================= */

#terrace-reserve {
	padding: 24px 0;
	background:#5E8039;
}

.terrace-reserve-box {
	width: 100%;
	border: 4px solid #fff;
	padding: 40px;
	text-align: center;
	box-sizing: border-box;
	margin-bottom: 40px;
}

#terrace-reserve .reserve-heading {
	font-size: 40px;
	color: #fff;
	margin:0;
}

.terrace-reserve-sub {
	font-family: 'A1ゴシック R','Noto Sans JP', sans-serif;
	font-size: 36px;
	font-weight: 400;
	letter-spacing: 4px;
	color: #fff;
	margin:0;
}

#terrace-reserve .plan-lead {
	font-size: 20px;
	letter-spacing: 2px;
	color: #fff;
	margin: 0;
}

.plan-list {
	display: flex;
	gap: 14px;
}

.plan-pill {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 16px;
	border: 2px solid #fff;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.25s ease;
	gap: 6px;
}

.plan-name {
	font-family: 'Outfit', sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height:1;
	letter-spacing: 2px;
	color: #fff;
}

.plan-price {
	font-family: 'Outfit', sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height:1;
	color: #fff;
	letter-spacing: 1px;
}

.plan-pill:hover {
	background:#fff;
}

.plan-pill:hover .plan-name,.plan-pill:hover .plan-price {
	color:#5E8039;
}

/* =============================================
   INFORMATION
   ============================================= */

#information {
	background: #f4d4a1ff;
	padding: 64px 0;
	text-align: center;
}

#information h2 {
	color: #5E8039;
}

#information h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 3px;
	color: #5E8039;
	margin: 48px 0 16px;
}

#information h3:first-of-type {
	margin-top: 0;
}

#information ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

#information ul li {
	font-family: 'A1ゴシック R','Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #5E8039;
	line-height: 1.75;
	padding: 2px 0;
}

#information ul li a {
	color: #5E8039;
	text-decoration: underline;
}

/* =============================================
   ACCESS
   ============================================= */

#access {
	background: #5E8039;
	padding: 64px 0;
}

#access h2 {
	color: #fff;
}

.iframe {
	position: relative;
	padding-bottom: 45%;
	height: 0;
	overflow: hidden;
}

.iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
	background: #5E8039;
	padding: 48px 0 40px;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	margin-bottom:64px;
}

.footer-logo-col {
	flex: 0 0 auto;
	min-width: 200px;
}

.footer-logo-img {
	width: 200px;
	max-width: 100%;
	height: auto;
	display: block;
}

.footer-brand {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 56px;
	font-weight: 700;
	letter-spacing: 4px;
	color: #fff;
	line-height: 1.75;
	margin: 0 0 12px;
}

.footer-subtitle {
	font-family: 'Dancing Script', cursive;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.footer-info-col {
	flex: 0.5;
	padding-top: 8px;
	width:auto;
}

.footer-info-label {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #fff;
	margin: 0 0 16px;
}

.access-info {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 12px;
	font-weight: 300;
	color:#fff;
	margin: 0 0 14px;
	line-height: 1.75;
}

p.copyright {
	text-align: center;
	font-size: 10px;
	letter-spacing: 2px;
	color: #fff;
	margin: 0;
	padding-top: 24px;
}

/* =============================================
   UTILITIES
   ============================================= */

.mb-0  { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-56 { margin-bottom: 56px !important; }
.pb-56 { padding-bottom: 56px !important; }
.p-0   { padding: 0 !important; }

.pconly { display: inline; }
.sponly { display: none; }

/* =============================================
   RESPONSIVE: TABLET / DESKTOP
   ============================================= */

@media (min-width: 1200px) {
	.hero-title {
		font-size: 88px;
	}
}

/* =============================================
   RESPONSIVE: MOBILE (max 767px)
   ============================================= */

@media (max-width: 767px) {

	/* Nav */
	.nav-toggle {
		display: block;
	}

	#globalNav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 250;
		background: rgba(26, 35, 24, 0.98);
		padding-top: 80px;
	}

	#globalNav.is-open {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#globalNav ul {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	#globalNav ul li a {
		font-size: 14px;
		letter-spacing: 4px;
		padding: 16px 40px;
		background: transparent;
		height: auto;
		line-height: 1;
	}

	/* Hero */
	#hero {
		min-height: 100svh;
	}

	.hero-overlay {
		min-height: calc(100svh - 52px);
		padding: 48px 20px;
	}

	.hero-title {
		font-size: 52px;
		letter-spacing: 4px;
	}

	.hero-subtitle {
		font-size: 20px;
	}

	.hero-logo {
		margin-bottom: 36px;
	}

	.hero-logo-img {
		width: 200px;
	}

	.concept-tagline {
		font-size: 16px;
		letter-spacing: 2px;
	}

	.concept-body {
		font-size: 14px;
	}

	.pconly {
		display: none;
	}

	.text-light {
		font-size: 14px;
	}

	/* Content inner */
	.content-inner {
		padding: 0 20px;
	}

	.content-inner.narrow {
		padding: 0 20px;
	}

	/* Grid */
	.grid24 .grid12 {
		width: 100%;
		display: block;
	}

	/* Dining */
	#dining {
		padding: 64px 0;
	}

	.dining-photos {
		flex-direction: column;
	}

	/* Food / Drink */
	#food, #drink {
		padding: 64px 0;
	}

	.zigzag-wrap,
	.zigzag-reverse {
		flex-direction: column;
		gap: 0;
	}

	.zigzag-text {
		flex: none;
		width: 100%;
		padding: 32px 20px;
		box-sizing: border-box;
		order: 2;
	}

	.zigzag-image {
		flex: none;
		width: 100%;
		order: 1;
	}

	#drink .btn-wrap {
		align-items: flex-end;
	}

	.dining-reserve-box {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 40px 24px;
	}

	/* Dining Reserve */
	.dining-reserve-inner {
		flex-direction: column;
		text-align: center;
		gap: 24px;
	}

	.reserve-heading {
		font-size: 32px;
	}

	.reserve-sub {
		font-size: 14px;
	}

	/* Beer Garden Hero */
	.bgh-title {
		font-size: 40px;
	}

	/* Beer Garden */
	#beergarden {
		padding: 64px 0;
	}

	#beergarden p {
		font-size: 14px;
	}

	#beergarden p.period-dates {
		font-size: 32px;
	}


	.day-label {
		font-size: 24px;
	}


	.time-label {
		font-size: 24px;
	}

	.status-box {
		margin-top: 24px;
		padding: 24px 16px;
	}

	/* Seasons */
	.season-outer {
		padding: 24px 16px 0;
	}

	.season-outer:last-of-type {
		padding-bottom: 24px;
	}

	.season-section {
		height: auto;
		max-width: 100%;
	}

	.season-grid,
	.season-grid-reverse {
		flex-direction: column;
		height: auto;
	}

	.season-images {
		flex: none;
		width: 100%;
		height: 60vw;
		order: 1;
	}

	.season-images img {
		height: 100%;
	}

	.season-body {
		flex: none;
		width: 100%;
		order: 2;
		padding: 40px 20px;
		text-align: left !important;
	}

	.season-title-script {
		font-size: 44px;
	}

	.season-period-label {
		font-size: 14px;
	}

	.season-body p {
		font-size: 14px;
	}

	/* Terrace Drinks */
	.terrace-drinks {
		padding: 64px 0;
	}

	.drink-photo-grid {
		grid-template-columns: 1fr 1fr;
	}

	.terrace-drink-text {
		font-size: 14px;
	}

	.terrace-drink-heading {
		font-size: 18px;
	}

	/* Terrace Reserve */
	#terrace-reserve {
		padding: 48px 0;
	}

	#terrace-reserve .reserve-heading {
		font-size: 32px;
	}

	.terrace-reserve-box {
		padding: 32px 20px;
	}

	.terrace-reserve-sub {
		font-size: 20px;
	}

	#terrace-reserve .plan-lead{
		font-size:16px;
	}

	.plan-list {
		flex-direction: column;
		gap: 10px;
	}

	.plan-pill {
		padding: 18px 16px;
		flex-direction: row;
		justify-content: space-between;
		border-radius: 999px;
	}

	.plan-price {
		font-size: 16px;
	}

	/* Information */
	#information {
		padding: 64px 0;
	}

	/* Access */
	#access {
		padding: 64px 0;
	}

	.iframe {
		padding-bottom: 80%;
	}

	/* Footer */
	.site-footer {
		padding: 40px 0 24px;
	}

	.footer-inner {
		flex-direction: column;
		gap: 32px;
	}

	.footer-brand {
		font-size: 40px;
	}

	/* Buttons */
	.btn-wrap {
		flex-direction: column;
		align-items: center;
	}

	.btn-wrap .contained_button {
		width: 100%;
	}

	h2 {
		font-size: 32px;
	}
}
