/* ==========================================================================
   American Coffee Shop - Oakland Park, FL
   Aesthetic: Warm Vintage Americana Diner Meets Modern Coastal Florida
   ========================================================================== */

:root {
	--font-serif: "DM Serif Display", "Playfair Display", Georgia, serif;
	--font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	
	/* Palette */
	--bg-primary: #FAF7F2;
	--bg-card: #FFFFFF;
	--bg-subtle: #F3ECE1;
	--bg-accent-soft: #FFF5EA;
	
	--brand-coffee: #2B1810;
	--brand-espresso: #1A0D07;
	--brand-crema: #8C5938;
	--brand-amber: #D97706;
	--brand-amber-light: #F59E0B;
	--brand-red: #B91C1C;
	--brand-red-soft: #FEF2F2;
	--brand-gold: #C2822A;
	--brand-green: #15803D;
	--brand-green-bg: #DCFCE7;
	
	--text-main: #241A15;
	--text-muted: #6B5E54;
	--text-subtle: #9C8E84;
	
	--border-light: #E8DFD5;
	--border-focus: #D97706;
	
	--shadow-sm: 0 2px 6px rgba(43, 24, 16, 0.05);
	--shadow-md: 0 6px 18px rgba(43, 24, 16, 0.08);
	--shadow-lg: 0 14px 34px rgba(43, 24, 16, 0.12);
	--shadow-xl: 0 20px 48px rgba(43, 24, 16, 0.18);
	
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-xl: 24px;
	--radius-full: 9999px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-primary);
	color: var(--text-main);
	font-family: var(--font-sans);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Background Diner Pattern Texture */
.vintage-texture-bg {
	background-color: var(--bg-primary);
	background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
	background-size: 24px 24px;
}

/* Typography Utility */
h1, h2, h3, h4, .font-serif {
	font-family: var(--font-serif);
	font-weight: 400;
	color: var(--brand-coffee);
	line-height: 1.2;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	border: none;
	background: none;
	cursor: pointer;
}

/* Container */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.container-sm {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* Header & Top Bar */
.top-announcement {
	background-color: var(--brand-espresso);
	color: #F8EFE6;
	font-size: 0.825rem;
	padding: 0.45rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement a {
	color: #FBBF24;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.top-announcement a:hover {
	text-decoration: underline;
}

.main-navbar {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(250, 247, 242, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-light);
	transition: all 0.2s ease;
}

.nav-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
}

.brand-logo-lockup {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
}

.logo-badge {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--brand-coffee), var(--brand-crema));
	border: 2px solid #F59E0B;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 1.3rem;
	box-shadow: 0 3px 8px rgba(43, 24, 16, 0.2);
}

.brand-titles h1 {
	font-size: 1.45rem;
	letter-spacing: -0.01em;
	margin-bottom: -2px;
}

.brand-titles .tagline {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
}

.nav-link {
	font-size: 0.925rem;
	font-weight: 600;
	color: var(--text-main);
	transition: color 0.15s ease;
	position: relative;
	padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
	color: var(--brand-amber);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Buttons */
.btn-primary {
	background: linear-gradient(135deg, var(--brand-amber), #C26302);
	color: #FFFFFF;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.65rem 1.35rem;
	border-radius: var(--radius-full);
	box-shadow: 0 3px 10px rgba(217, 119, 6, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	white-space: nowrap;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 5px 14px rgba(217, 119, 6, 0.4);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-dark {
	background: var(--brand-coffee);
	color: #FAF7F2;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.65rem 1.35rem;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: background 0.15s ease, transform 0.15s ease;
	white-space: nowrap;
}

.btn-dark:hover {
	background: var(--brand-espresso);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--brand-coffee);
	border: 1.5px solid var(--border-light);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.6rem 1.15rem;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	transition: all 0.15s ease;
}

.btn-outline:hover {
	border-color: var(--brand-coffee);
	background: var(--bg-subtle);
}

.btn-cart-badge {
	position: relative;
	background: var(--bg-card);
	border: 1.5px solid var(--border-light);
	padding: 0.55rem 0.9rem;
	border-radius: var(--radius-full);
	font-size: 0.9rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: all 0.15s ease;
}

.btn-cart-badge:hover {
	border-color: var(--brand-amber);
	background: #FFF;
}

.cart-count-pill {
	background: var(--brand-red);
	color: white;
	font-size: 0.725rem;
	font-weight: 800;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Live Open Badge */
.live-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.live-status-pill.open {
	background: var(--brand-green-bg);
	color: var(--brand-green);
	border: 1px solid rgba(21, 128, 61, 0.2);
}

.live-status-pill.closed {
	background: #FEE2E2;
	color: #991B1B;
	border: 1px solid rgba(153, 27, 27, 0.2);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: currentColor;
	position: relative;
}

.pulse-dot::after {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	border: 2px solid currentColor;
	animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
	0% { transform: scale(0.6); opacity: 1; }
	100% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
	padding: 3.5rem 0 4rem;
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3rem;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.rating-header-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #FFF;
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-sm);
	margin-bottom: 1.25rem;
	font-size: 0.85rem;
	font-weight: 600;
}

.stars-row {
	color: #F59E0B;
	letter-spacing: 2px;
	font-size: 0.95rem;
}

.hero-title {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 400;
	color: var(--brand-coffee);
	line-height: 1.08;
	margin-bottom: 1.25rem;
}

.hero-title em {
	font-style: italic;
	color: var(--brand-amber);
	font-family: var(--font-serif);
}

.hero-lead {
	font-size: 1.15rem;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 1.75rem;
	max-width: 540px;
}

.hero-special-banner {
	background: var(--bg-accent-soft);
	border: 1px dashed #F59E0B;
	border-radius: var(--radius-md);
	padding: 0.85rem 1.15rem;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: var(--brand-coffee);
}

.special-tag {
	background: var(--brand-amber);
	color: #FFF;
	font-size: 0.725rem;
	font-weight: 800;
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 2.5rem;
}

.hero-feature-tags {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-light);
}

.feature-tag-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--brand-coffee);
}

.feature-tag-icon {
	width: 32px;
	height: 32px;
	border-radius: var(--radius-sm);
	background: #FFF;
	border: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	box-shadow: var(--shadow-sm);
}

/* Hero Visual Composition */
.hero-visual-card {
	position: relative;
}

.diner-photo-frame {
	background: #FFFFFF;
	padding: 14px 14px 22px 14px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-xl);
	position: relative;
}

.diner-hero-art {
	width: 100%;
	height: 340px;
	border-radius: var(--radius-md);
	background: linear-gradient(145deg, #3D2314 0%, #1A0D07 50%, #4A2B1B 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5rem;
	color: #FFF;
}

.hero-art-decor-grid {
	position: absolute;
	inset: 0;
	opacity: 0.12;
	background-image: linear-gradient(#FFF 1px, transparent 1px), linear-gradient(90deg, #FFF 1px, transparent 1px);
	background-size: 20px 20px;
}

.hero-art-steam {
	font-size: 3.5rem;
	filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4));
	margin-bottom: 0.5rem;
}

.hero-art-quote {
	position: relative;
	z-index: 2;
}

.hero-art-quote p {
	font-family: var(--font-serif);
	font-size: 1.6rem;
	font-style: italic;
	line-height: 1.25;
	color: #FDE68A;
	margin-bottom: 0.35rem;
}

.hero-art-quote span {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.85;
}

.floating-info-card {
	position: absolute;
	bottom: -22px;
	right: -15px;
	background: #FFFFFF;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 0.85rem 1.25rem;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 0.85rem;
	animation: floatBob 4s ease-in-out infinite;
}

@keyframes floatBob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.floating-icon-box {
	width: 40px;
	height: 40px;
	background: var(--brand-amber-light);
	color: #FFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

/* ==========================================================================
   QUICK INFO STRIP (HOURS & LOCATION TEASER)
   ========================================================================== */
.quick-info-strip {
	background: var(--brand-coffee);
	color: #FAF7F2;
	padding: 1.25rem 0;
	border-top: 3px solid #F59E0B;
}

.info-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.info-strip-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.info-strip-icon {
	font-size: 1.4rem;
	color: #F59E0B;
	margin-top: 2px;
}

.info-strip-text .label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #D1C7BD;
	font-weight: 700;
}

.info-strip-text .val {
	font-size: 0.95rem;
	font-weight: 600;
	color: #FFFFFF;
}

.info-strip-text .sub {
	font-size: 0.775rem;
	color: #A89B8F;
}

/* ==========================================================================
   SECTION COMMON STYLING
   ========================================================================== */
.section {
	padding: 5rem 0;
	position: relative;
}

.section-alt {
	background-color: #F5EFE6;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 3rem;
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--brand-amber);
	font-size: 0.825rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.section-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--brand-coffee);
	margin-bottom: 0.85rem;
}

.section-subtitle {
	font-size: 1.05rem;
	color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE MENU SECTION
   ========================================================================== */
.menu-controls {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.category-nav-bar {
	display: flex;
	gap: 0.6rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scrollbar-width: thin;
}

.category-nav-btn {
	padding: 0.65rem 1.2rem;
	border-radius: var(--radius-full);
	background: #FFF;
	border: 1.5px solid var(--border-light);
	font-size: 0.925rem;
	font-weight: 700;
	color: var(--text-main);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.15s ease;
	cursor: pointer;
}

.category-nav-btn:hover {
	border-color: var(--brand-amber);
	background: var(--bg-accent-soft);
}

.category-nav-btn.active {
	background: var(--brand-coffee);
	color: #FFF;
	border-color: var(--brand-coffee);
	box-shadow: 0 4px 12px rgba(43, 24, 16, 0.2);
}

.menu-filter-search-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.dietary-tags-filter {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.diet-pill-btn {
	padding: 0.35rem 0.85rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	background: #FFF;
	border: 1px solid var(--border-light);
	color: var(--text-muted);
	cursor: pointer;
	transition: all 0.15s ease;
}

.diet-pill-btn.active {
	background: #FEF3C7;
	border-color: #F59E0B;
	color: #92400E;
}

.menu-search-box {
	position: relative;
	min-width: 260px;
}

.menu-search-input {
	width: 100%;
	padding: 0.55rem 0.9rem 0.55rem 2.25rem;
	border: 1.5px solid var(--border-light);
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	background: #FFF;
	outline: none;
	transition: border-color 0.15s ease;
}

.menu-search-input:focus {
	border-color: var(--brand-amber);
}

.search-icon-pos {
	position: absolute;
	left: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.9rem;
	color: var(--text-subtle);
}

/* Menu Grid */
.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 1.5rem;
}

.menu-item-card {
	background: #FFFFFF;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	padding: 1.4rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	position: relative;
}

.menu-item-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: #F3C68F;
}

.item-badge-pill {
	position: absolute;
	top: 1.1rem;
	right: 1.1rem;
	font-size: 0.7rem;
	font-weight: 800;
	padding: 0.2rem 0.55rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.item-badge-pill.favorite {
	background: #FEF3C7;
	color: #B45309;
	border: 1px solid #FDE68A;
}

.item-badge-pill.special {
	background: #FEE2E2;
	color: #B91C1C;
	border: 1px solid #FECACA;
}

.item-header {
	margin-bottom: 0.6rem;
	padding-right: 4.5rem;
}

.item-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--brand-coffee);
	margin-bottom: 0.25rem;
}

.item-desc {
	font-size: 0.885rem;
	color: var(--text-muted);
	line-height: 1.55;
	margin-bottom: 1.25rem;
}

.item-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.85rem;
	border-top: 1px dashed var(--border-light);
}

.item-price {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--brand-coffee);
	font-family: var(--font-serif);
}

.add-btn {
	background: var(--bg-accent-soft);
	color: var(--brand-amber);
	border: 1.5px solid #FDE68A;
	padding: 0.45rem 0.95rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: all 0.15s ease;
}

.add-btn:hover {
	background: var(--brand-amber);
	color: #FFF;
	border-color: var(--brand-amber);
}

/* ==========================================================================
   CART & ORDERING DRAWER / MODAL
   ========================================================================== */
.drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(26, 13, 7, 0.6);
	backdrop-filter: blur(4px);
	z-index: 100;
	display: flex;
	justify-content: flex-end;
}

.cart-drawer {
	width: 100%;
	max-width: 480px;
	background: #FFF;
	height: 100%;
	box-shadow: var(--shadow-xl);
	display: flex;
	flex-direction: column;
	animation: slideInRight 0.25s ease-out;
}

@keyframes slideInRight {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

.cart-header {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--border-light);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--bg-primary);
}

.cart-header h3 {
	font-size: 1.35rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.close-btn {
	font-size: 1.5rem;
	color: var(--text-muted);
	padding: 0.35rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.close-btn:hover {
	background: var(--border-light);
	color: var(--text-main);
}

.cart-body {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
}

.cart-empty-state {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--text-muted);
}

.cart-item-row {
	display: flex;
	justify-content: space-between;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-light);
}

.cart-item-name {
	font-weight: 700;
	color: var(--brand-coffee);
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
}

.cart-item-meta {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.cart-qty-ctrl {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-subtle);
	border-radius: var(--radius-full);
	padding: 0.2rem 0.5rem;
}

.cart-qty-btn {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--brand-coffee);
	box-shadow: var(--shadow-sm);
}

.cart-footer {
	padding: 1.5rem;
	border-top: 1px solid var(--border-light);
	background: var(--bg-primary);
}

.summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 0.45rem;
}

.summary-row.total {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--brand-coffee);
	padding-top: 0.6rem;
	border-top: 1px solid var(--border-light);
	margin-top: 0.6rem;
	margin-bottom: 1.25rem;
}

/* Modal Backdrop & Card */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(26, 13, 7, 0.65);
	backdrop-filter: blur(4px);
	z-index: 110;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.modal-dialog {
	background: #FFF;
	width: 100%;
	max-width: 540px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	overflow: hidden;
	animation: modalPop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	max-height: 90vh;
	display: flex;
	flex-direction: column;
}

@keyframes modalPop {
	from { transform: scale(0.95); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.modal-header {
	padding: 1.25rem 1.5rem;
	background: var(--bg-primary);
	border-bottom: 1px solid var(--border-light);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-content-scroll {
	padding: 1.5rem;
	overflow-y: auto;
}

/* Forms */
.form-group {
	margin-bottom: 1.15rem;
}

.form-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--brand-coffee);
	margin-bottom: 0.35rem;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	padding: 0.7rem 0.95rem;
	border: 1.5px solid var(--border-light);
	border-radius: var(--radius-md);
	font-size: 0.925rem;
	font-family: inherit;
	color: var(--text-main);
	background: #FFF;
	outline: none;
	transition: border-color 0.15s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	border-color: var(--brand-amber);
	box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SHOWCASE
   ========================================================================== */
.rating-summary-banner {
	background: #FFF;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2.5rem;
	box-shadow: var(--shadow-md);
	flex-wrap: wrap;
	gap: 1.5rem;
}

.rating-big-score {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.score-num {
	font-size: 3.8rem;
	font-weight: 800;
	font-family: var(--font-serif);
	color: var(--brand-coffee);
	line-height: 1;
}

.score-meta .stars {
	color: #F59E0B;
	font-size: 1.35rem;
	letter-spacing: 2px;
	margin-bottom: 0.25rem;
}

.score-meta .count {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-muted);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}

.review-card {
	background: #FFF;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.review-text {
	font-size: 0.95rem;
	color: var(--text-main);
	line-height: 1.6;
	margin-bottom: 1.25rem;
	font-style: italic;
}

.review-author-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bg-subtle);
	color: var(--brand-coffee);
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
}

.author-name {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--brand-coffee);
}

.author-badge {
	font-size: 0.75rem;
	color: var(--brand-green);
	font-weight: 600;
}

/* ==========================================================================
   ABOUT & THE DINER HERITAGE
   ========================================================================== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

.about-features-list {
	list-style: none;
	display: grid;
	gap: 1.25rem;
	margin-top: 2rem;
}

.about-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.feature-check-icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--brand-green-bg);
	color: var(--brand-green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 800;
	flex-shrink: 0;
	margin-top: 2px;
}

.about-feature-title {
	font-weight: 700;
	color: var(--brand-coffee);
	font-size: 1.05rem;
	margin-bottom: 0.15rem;
}

.about-feature-desc {
	font-size: 0.9rem;
	color: var(--text-muted);
}

.about-visual-box {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 2rem;
	box-shadow: var(--shadow-lg);
	position: relative;
}

.about-stat-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-light);
}

.about-stat-number {
	font-size: 2.4rem;
	font-family: var(--font-serif);
	color: var(--brand-amber);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.about-stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 600;
}

/* ==========================================================================
   HOURS, LOCATION & DIRECTIONS
   ========================================================================== */
.location-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 2.5rem;
}

.location-card {
	background: #FFF;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 2.25rem;
	box-shadow: var(--shadow-md);
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.hours-table tr {
	border-bottom: 1px solid var(--border-light);
}

.hours-table tr:last-child {
	border-bottom: none;
}

.hours-table td {
	padding: 0.65rem 0;
	font-size: 0.925rem;
}

.hours-day {
	font-weight: 600;
	color: var(--brand-coffee);
}

.hours-time {
	text-align: right;
	color: var(--text-muted);
	font-weight: 500;
}

.hours-table tr.today-row {
	background: var(--bg-accent-soft);
	font-weight: 700;
}

.hours-table tr.today-row td {
	color: var(--brand-amber);
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.map-embed-wrapper {
	background: #FFF;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 380px;
}

.map-header-bar {
	padding: 1.15rem 1.5rem;
	background: var(--bg-primary);
	border-bottom: 1px solid var(--border-light);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.map-visual-placeholder {
	flex: 1;
	background: linear-gradient(135deg, #EAE5DE 0%, #DFD8CF 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.map-pin-overlay {
	background: #FFF;
	padding: 1.25rem 1.75rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	text-align: center;
	max-width: 320px;
	border: 2px solid var(--brand-amber);
}

/* ==========================================================================
   COFFEE CLUB VIP BANNER
   ========================================================================== */
.vip-club-section {
	background: linear-gradient(135deg, var(--brand-espresso), var(--brand-coffee));
	color: #FFF;
	padding: 4rem 0;
	border-radius: var(--radius-xl);
	margin: 2rem 0;
	box-shadow: var(--shadow-xl);
	position: relative;
	overflow: hidden;
}

.vip-club-inner {
	max-width: 650px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.vip-club-inner h2 {
	color: #FFF;
	font-size: 2.3rem;
	margin-bottom: 0.85rem;
}

.vip-club-inner p {
	color: #E6DBD0;
	font-size: 1.05rem;
	margin-bottom: 1.75rem;
}

.vip-form {
	display: flex;
	gap: 0.5rem;
	max-width: 480px;
	margin: 0 auto;
}

.vip-input {
	flex: 1;
	padding: 0.85rem 1.25rem;
	border-radius: var(--radius-full);
	border: none;
	font-size: 0.95rem;
	outline: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
	background: var(--brand-espresso);
	color: #A89B8F;
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.footer-brand h4 {
	color: #FFF;
	font-size: 1.4rem;
	margin-bottom: 0.75rem;
}

.footer-col h5 {
	color: #FFF;
	font-size: 1rem;
	margin-bottom: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.footer-links {
	list-style: none;
	display: grid;
	gap: 0.6rem;
	font-size: 0.9rem;
}

.footer-links a:hover {
	color: #FFF;
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Mobile Sticky Action Bar */
.mobile-action-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #FFFFFF;
	border-top: 1px solid var(--border-light);
	padding: 0.65rem 1rem;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
	z-index: 80;
	justify-content: space-around;
	align-items: center;
}

.mobile-action-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--brand-coffee);
	gap: 0.2rem;
}

/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */
@media (max-width: 960px) {
	.hero-grid, .about-grid, .location-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.info-strip-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.nav-links {
		display: none;
	}
}

@media (max-width: 640px) {
	.info-strip-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.hero-feature-tags {
		grid-template-columns: 1fr;
	}
	.mobile-action-bar {
		display: flex;
	}
	body {
		padding-bottom: 4.5rem;
	}
	.rating-summary-banner {
		flex-direction: column;
		text-align: center;
		justify-content: center;
	}
	.vip-form {
		flex-direction: column;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
}
