/* ==========================================================================
   Sundy's American Diner — main stylesheet
   ========================================================================== */

:root {
	--navy: #17233f;
	--navy-light: #24365f;
	--deep: #7bd9c4;
	--deep-light: #6fd0bd;
	--red: #c3272b;
	--mustard: #eba626;
	--mint: #6fd0bd;
	--mint-dark: #4fb39f;
	--cream: #fdfbf7;
	--cream-dark: #f3ece1;
	--walnut: #5a3826;
	--ink: #201d1a;
	--white: #ffffff;

	--font-display: 'Anton', 'Noto Sans JP', sans-serif;
	--font-script: 'Pacifico', cursive;
	--font-body: 'Noto Sans JP', 'Poppins', sans-serif;

	--container: 1160px;
	--radius: 14px;
	--shadow: 0 18px 40px -20px rgba(23, 35, 63, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); letter-spacing: 0.02em; }
p { margin: 0 0 1em; line-height: 1.85; }

.section-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.section-inner--narrow { max-width: 720px; }

.section-head { text-align: center; margin-bottom: 44px; }
.section-eyebrow {
	font-family: var(--font-script);
	color: var(--red);
	font-size: 1.3rem;
	display: block;
	margin-bottom: 6px;
}
.section-eyebrow--light { color: var(--mustard); }
.section-title {
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	color: var(--navy);
	line-height: 1.25;
}
.section-title--light { color: var(--white); }
.section-cta { text-align: center; margin-top: 40px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 34px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	border: 2px solid transparent;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}
.btn--primary { background: var(--red); color: var(--white); box-shadow: var(--shadow); }
.btn--primary:hover { transform: translateY(-2px); background: #a91f22; }
.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-light { border-color: var(--white); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--navy); }
.btn--reserve { background: var(--mustard); color: var(--navy); font-size: 0.85rem; padding: 11px 22px; }
.btn--reserve:hover { transform: translateY(-2px); background: #d99414; }
.btn--block { width: 100%; }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--navy);
	border-bottom: 2px solid var(--mustard);
	padding-bottom: 3px;
}
.link-arrow::after { content: '\2192'; transition: transform 0.2s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 243, 228, 0.94);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(23, 35, 63, 0.08);
}
.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.site-logo {
	display: flex;
	align-items: center;
}
.site-header .custom-logo { max-height: 56px; width: auto; }
.site-logo__mark { height: 44px; width: auto; display: block; }

.nav-menu {
	display: flex;
	gap: 22px;
}
.nav-menu a {
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	color: var(--navy);
	position: relative;
}
.nav-menu a::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -6px;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transition: transform 0.2s ease;
}
.nav-menu a:hover::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 16px; }

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 32px;
	height: 24px;
	background: none;
	border: none;
	padding: 0;
}
.menu-toggle span {
	display: block;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
	display: none;
	flex-direction: column;
	gap: 18px;
	padding: 20px 24px 28px;
	background: var(--cream);
	border-top: 1px solid rgba(23,35,63,0.08);
}
.mobile-nav .nav-menu { flex-direction: column; gap: 16px; }
.site-header.is-open .mobile-nav { display: flex; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	color: var(--white);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(0deg, rgba(15,20,35,0.88) 0%, rgba(15,20,35,0.35) 55%, rgba(15,20,35,0.45) 100%);
}
.hero__content {
	position: relative;
	z-index: 2;
	padding: 0 24px 90px;
	max-width: var(--container);
	margin: 0 auto;
	width: 100%;
}
.hero__logo {
	width: min(360px, 70vw);
	height: auto;
	filter: brightness(0) invert(1);
	margin-bottom: 22px;
	filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35)) brightness(0) invert(1);
}
.hero__title-sr {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
}
.hero__eyebrow {
	font-weight: 700;
	letter-spacing: 0.35em;
	font-size: 0.8rem;
	color: var(--mustard);
	margin-bottom: 10px;
}
.hero__title {
	font-size: clamp(3rem, 9vw, 6.5rem);
	line-height: 0.95;
	color: var(--white);
	text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.hero__title span {
	display: block;
	font-family: var(--font-script);
	font-size: clamp(1.3rem, 2.6vw, 1.9rem);
	color: var(--mint);
	margin-top: 10px;
	letter-spacing: 0.02em;
}
.hero__tagline { font-size: 1.15rem; margin: 22px 0 30px; color: var(--cream); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 6px; }

.hero__scroll {
	position: absolute;
	bottom: 28px; left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 26px; height: 42px;
	border: 2px solid rgba(255,255,255,0.7);
	border-radius: 20px;
}
.hero__scroll span {
	position: absolute;
	top: 8px; left: 50%;
	width: 4px; height: 8px;
	background: var(--white);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
	0% { opacity: 1; top: 8px; }
	70% { opacity: 0; top: 22px; }
	100% { opacity: 0; top: 8px; }
}

/* ---------- Concept ---------- */
.concept { padding: 110px 0; }
.concept__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
}
.concept__media { position: relative; }
.concept__media img:first-child {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.concept__media-sub {
	position: absolute;
	width: 55%;
	bottom: -40px;
	right: -30px;
	border: 6px solid var(--cream);
	border-radius: var(--radius);
	box-shadow: 0 20px 40px -15px rgba(0,0,0,0.35);
}
.concept__lead { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-top: 18px; }
.concept__body { color: #4a4640; }

/* ---------- Featured menu ---------- */
.featured-menu { padding: 40px 0 110px; }
.menu-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.menu-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card__img { aspect-ratio: 4/3; overflow: hidden; }
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover .menu-card__img img { transform: scale(1.06); }
.menu-card__name { font-size: 1.05rem; color: var(--navy); padding: 18px 20px 6px; font-family: var(--font-body); font-weight: 900; }
.menu-card__desc { padding: 0 20px; font-size: 0.88rem; color: #5c584f; }
.menu-card__price { padding: 0 20px 20px; font-family: var(--font-display); color: var(--red); font-size: 1.2rem; }

/* ---------- News ---------- */
.news { padding: 40px 0 110px; background: var(--cream-dark); }
.news-list { max-width: 800px; margin: 0 auto; border-top: 1px solid rgba(23,35,63,0.12); }
.news-item { border-bottom: 1px solid rgba(23,35,63,0.12); }
.news-item a {
	display: flex;
	gap: 24px;
	padding: 20px 6px;
	align-items: baseline;
}
.news-item time { font-weight: 700; color: var(--red); min-width: 96px; }
.news-item__title { color: var(--ink); }
.news-item a:hover .news-item__title { text-decoration: underline; }
.news-item--placeholder { color: #857f70; }

/* ---------- Movie ---------- */
.movie { padding: 40px 0 110px; }
.movie__grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 60px;
	align-items: center;
}
.movie__player {
	position: relative;
	max-width: 320px;
	margin: 0 auto;
}
.movie__player::before {
	content: '';
	position: absolute;
	inset: -40px;
	background:
		radial-gradient(circle at 20% 15%, rgba(111,208,189,0.35), transparent 55%),
		radial-gradient(circle at 85% 85%, rgba(195,39,43,0.25), transparent 55%);
	filter: blur(30px);
	z-index: 0;
}
.movie__player::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 30px;
	padding: 1px;
	background: linear-gradient(160deg, rgba(255,255,255,0.5), rgba(111,208,189,0.4) 40%, rgba(23,35,63,0.1) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}
.movie__video {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 9/16;
	border-radius: 30px;
	display: block;
	background: #0c0f16;
	object-fit: cover;
	box-shadow: 0 40px 70px -25px rgba(10,14,25,0.55), 0 2px 0 rgba(255,255,255,0.06) inset;
}

/* ---------- Gallery teaser ---------- */
.gallery-teaser { padding: 40px 0 110px; }
.gallery-teaser__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 16px;
}
.gallery-teaser__item { border-radius: var(--radius); overflow: hidden; display: block; }
.gallery-teaser__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery-teaser__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-teaser__item:hover img { transform: scale(1.08); }

/* ---------- Kitchen car ---------- */
.kitchen-car { padding: 0 0 110px; }
.kitchen-car__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.kitchen-car__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.kitchen-car__text .section-title { margin: 6px 0 18px; }

/* ---------- Access CTA (home) ---------- */
.access-cta {
	padding: 110px 0;
	background: var(--deep);
	background-image: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.35), transparent 55%);
	color: var(--navy);
	text-align: center;
}
.access-cta__grid { display: flex; justify-content: center; }
.access-cta__address { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.access-cta__hours { color: rgba(23,35,63,0.75); margin-bottom: 14px; }
.access-cta__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }
.access-cta__takeout {
	display: inline-block;
	background: rgba(255,255,255,0.35);
	border: 1px solid var(--mustard);
	color: #8a5c0f;
	padding: 8px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9rem;
	margin: 0;
}
.access-cta__takeout a { color: #8a5c0f; text-decoration: underline; }
.access-cta__takeout--uber {
	background: rgba(255,255,255,0.35);
	border-color: var(--navy);
	color: var(--navy);
}
.access-cta__takeout--uber:hover { background: var(--navy); color: var(--deep); }
.access-cta .hero__actions { justify-content: center; }
.access-cta .btn--outline-light { border-color: var(--navy); color: var(--navy); }
.access-cta .btn--outline-light:hover { background: var(--navy); color: var(--deep); }
.access-cta .section-title--light { color: var(--navy); }
.access-cta .section-eyebrow--light { color: #8a5c0f; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; height: 46vh; min-height: 320px; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.page-hero--short { height: 32vh; min-height: 240px; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(23,35,63,0.82), rgba(23,35,63,0.55)); }
.page-hero__overlay--solid { position: relative; background: var(--navy); }
.page-hero__content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }
.page-hero__title { font-size: clamp(2.4rem, 6vw, 4rem); color: var(--white); }
.page-hero__lead { margin-top: 12px; font-size: 1.05rem; }

/* ---------- Menu page ---------- */
.menu-page { padding: 70px 0 110px; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 50px; }
.menu-tab {
	background: var(--white);
	border: 2px solid var(--cream-dark);
	color: var(--navy);
	padding: 11px 22px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.88rem;
	transition: all 0.2s ease;
}
.menu-tab.is-active, .menu-tab:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.menu-item-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.menu-item {
	display: flex;
	gap: 18px;
	background: var(--white);
	border-radius: var(--radius);
	padding: 14px;
	box-shadow: var(--shadow);
}
.menu-item__img { width: 120px; height: 120px; flex: none; border-radius: 10px; overflow: hidden; }
.menu-item__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.menu-item__head h3 { font-family: var(--font-body); font-weight: 900; font-size: 1rem; color: var(--navy); }
.menu-item__price { font-family: var(--font-display); color: var(--red); font-size: 1.05rem; white-space: nowrap; }
.menu-item p { font-size: 0.85rem; color: #5c584f; margin-top: 6px; margin-bottom: 0; }
.menu-note { text-align: center; margin-top: 50px; color: #857f70; font-size: 0.85rem; }
.menu-note--left { text-align: left; margin-top: 0; }

.menu-poster { max-width: 900px; margin: 0 auto; }
.menu-poster__lead { text-align: center; color: #4a4640; margin-bottom: 26px; }
.menu-poster img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.menu-poster--multi { display: flex; flex-direction: column; gap: 30px; }

.menu-poster--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	max-width: 1000px;
}
.menu-poster__side h3 { font-family: var(--font-body); font-weight: 900; color: var(--navy); font-size: 1.3rem; margin-bottom: 10px; }
.menu-poster__side .menu-item__price { font-family: var(--font-display); color: var(--red); font-size: 1.8rem; margin-bottom: 18px; }
.menu-poster__side .menu-item__price span { font-family: var(--font-body); font-size: 0.9rem; color: var(--ink); font-weight: 400; }
.menu-checklist { margin-bottom: 20px; }
.menu-checklist li {
	padding: 10px 0 10px 30px;
	border-bottom: 1px solid rgba(23,35,63,0.1);
	position: relative;
	font-weight: 700;
	color: var(--navy);
}
.menu-checklist li::before {
	content: '';
	position: absolute;
	left: 4px; top: 16px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--mint-dark);
}

.menu-chip-section { max-width: 800px; margin: 0 auto 40px; }
.menu-chip-section h3 { font-family: var(--font-body); font-weight: 900; color: var(--navy); margin-bottom: 16px; text-align: center; }
.menu-chip-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.menu-chip-list li {
	background: var(--white);
	border: 2px solid var(--cream-dark);
	border-radius: 999px;
	padding: 9px 18px;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--navy);
}

/* ---------- Gallery page ---------- */
.gallery-page { padding: 70px 0 110px; }
.gallery-filters { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-filter {
	background: transparent;
	border: 2px solid var(--navy);
	color: var(--navy);
	padding: 9px 20px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.85rem;
}
.gallery-filter.is-active, .gallery-filter:hover { background: var(--navy); color: var(--white); }
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.gallery-item {
	background: none; border: none; padding: 0;
	aspect-ratio: 1/1;
	border-radius: 10px;
	overflow: hidden;
	display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.is-hidden { display: none; }

.lightbox {
	position: fixed; inset: 0;
	background: rgba(15,15,20,0.92);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 40px;
}
.lightbox.is-active { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 6px; }
.lightbox__close {
	position: absolute; top: 24px; right: 30px;
	background: none; border: none;
	color: var(--white); font-size: 2.4rem; line-height: 1;
}

/* ---------- Access page ---------- */
.access-page { padding: 70px 0 110px; }
.access-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.access-table__row {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(23,35,63,0.12);
}
.access-table__row dt { font-weight: 700; color: var(--red); }
.access-table__row dd { margin: 0; }
.access-table .hero__actions { margin-top: 30px; }
.access-table__note { display: block; margin-top: 6px; font-size: 0.8rem; color: #857f70; font-weight: 400; }
.access-map iframe { border-radius: var(--radius); box-shadow: var(--shadow); }
.access-map__link { display: inline-block; margin-top: 14px; }

/* ---------- Contact page ---------- */
.contact-page { padding: 70px 0 130px; }
.form-row { margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.required { color: var(--red); font-size: 0.75rem; border: 1px solid var(--red); border-radius: 4px; padding: 1px 6px; margin-left: 4px; }
.form-row input, .form-row textarea {
	border: 2px solid var(--cream-dark);
	border-radius: 10px;
	padding: 13px 16px;
	font-size: 1rem;
	font-family: inherit;
	background: var(--white);
	transition: border-color 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--mint-dark); }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-notice { padding: 16px 20px; border-radius: 10px; margin-bottom: 30px; font-weight: 700; }
.form-notice--success { background: rgba(111,208,189,0.25); color: #1c6b58; }
.form-notice--error { background: rgba(195,39,43,0.12); color: var(--red); }

/* ---------- Generic content ---------- */
.generic-content { padding: 70px 0 110px; }
.post-date { color: var(--red); font-weight: 700; margin-bottom: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: var(--navy); }
.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 70px 24px 40px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 40px;
}
.site-footer__logo { height: 52px; width: auto; margin-bottom: 14px; }
.site-footer__tagline { color: rgba(23,35,63,0.7); font-family: var(--font-script); font-size: 1.1rem; }
.social-icons { display: flex; gap: 14px; margin-top: 16px; }
.social-icons a {
	width: 40px; height: 40px;
	border: 1px solid rgba(23,35,63,0.35);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--navy);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.social-icons a:hover { background: var(--navy); border-color: var(--navy); color: var(--deep); }
.site-footer__nav { display: flex; flex-direction: column; gap: 12px; font-weight: 700; letter-spacing: 0.04em; }
.site-footer__info p { margin: 0 0 10px; color: rgba(23,35,63,0.85); }
.site-footer__info a:hover { text-decoration: underline; }
.site-footer__bottom {
	text-align: center;
	padding: 20px 24px;
	border-top: 1px solid rgba(23,35,63,0.15);
	font-size: 0.8rem;
	color: rgba(23,35,63,0.55);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
	.concept__grid { grid-template-columns: 1fr; }
	.concept__media-sub { position: static; width: 60%; margin-top: -60px; margin-left: auto; }
	.menu-card-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-teaser__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
	.gallery-teaser__item--wide { grid-column: span 2; grid-row: span 1; }
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.access-page__grid { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.site-nav { display: none; }
	.menu-toggle { display: flex; }
	.hero { min-height: 100vh; }
	.hero__content { padding-bottom: 60px; text-align: center; position: static; }
	.hero__logo {
		position: absolute;
		top: 110px;
		left: 50%;
		transform: translateX(-50%);
		margin: 0;
		z-index: 2;
	}
	.hero__actions { justify-content: center; }
	.menu-card-grid { grid-template-columns: 1fr; }
	.menu-item-grid { grid-template-columns: 1fr; }
	.menu-item { flex-direction: column; }
	.menu-item__img { width: 100%; height: 180px; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-teaser__grid { grid-template-columns: 1fr 1fr; }
	.menu-poster--split { grid-template-columns: 1fr; }
	.concept__media-sub { width: 100%; margin: 16px 0 0; bottom: auto; right: auto; }
	.kitchen-car__grid { grid-template-columns: 1fr; }
	.movie__grid { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; text-align: center; }
	.site-footer__logo { margin-left: auto; margin-right: auto; }
	.site-footer__brand { display: flex; flex-direction: column; align-items: center; }
	.social-icons { justify-content: center; }
	.access-table__row { grid-template-columns: 90px 1fr; font-size: 0.92rem; }
	.section-inner { padding: 0 18px; }
}
