/* =============================================
   ILLAKA — Neo-Brutalist Playful Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Caveat:wght@400;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --primary: #FF6B35;
  --primary-light: #FF8F66;
  --primary-dark: #E05520;
  --primary-bg: #FFF3ED;
  --accent: #1A9B8C;
  --accent-light: #2BB8A8;

  /* Neutrals */
  --bg: #FAFAF8;
  --bg-card: #FFFFFF;
  --bg-muted: #F3F3F0;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #999999;
  --border: #1A1A1A;
  --border-light: #E0E0DC;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-brutal: 4px 4px 0px #1A1A1A;
  --shadow-brutal-sm: 2px 2px 0px #1A1A1A;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Border */
  --border-thick: 2.5px solid var(--border);
  --border-thin: 1.5px solid var(--border-light);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Caveat', cursive;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Container */
  --container-max: 1100px;
  --container-padding: 20px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ── Typography ── */
.text-display {
  font-family: var(--font-display);
  font-weight: 700;
}

h1, .h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }
h3, .h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 700; line-height: 1.3; }
h4, .h4 { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ── Doodle Text (hand-drawn feel) ── */
.doodle-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  white-space: nowrap;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: none !important;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-brutal);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 6px 6px 0px #1A1A1A;
  transform: translate(-2px, -2px);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  box-shadow: var(--shadow-brutal-sm);
}

.btn-secondary:hover {
  background: var(--bg-muted);
  box-shadow: var(--shadow-brutal);
  transform: translate(-1px, -1px);
}

.btn-accent {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-brutal);
}

.btn-accent:hover {
  background: var(--accent-light);
  box-shadow: 6px 6px 0px #1A1A1A;
  transform: translate(-2px, -2px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: var(--border-thick);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--primary-bg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-brutal {
  border: var(--border-thick);
  box-shadow: var(--shadow-brutal);
}

.card-brutal:hover {
  box-shadow: 6px 6px 0px #1A1A1A;
  transform: translate(-2px, -4px);
}

/* ── Bento Grid ── */
.bento-grid {
  display: grid;
  gap: var(--space-md);
}

.bento-grid--2 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.bento-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--bg-card);
}

.badge--primary {
  background: var(--primary-bg);
  border-color: var(--primary);
  color: var(--primary);
}

.badge--accent {
  background: #E6F7F5;
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Stars Rating ── */
.stars {
  display: inline-flex;
  gap: 2px;
  color: #F5A623;
  font-size: 1rem;
}

.stars .empty { color: var(--border-light); }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-thick);
  padding: var(--space-md) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar__logo .doodle {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s;
  position: relative;
}

.navbar__links a:hover {
  color: var(--primary);
}

.navbar__links a.btn {
  color: inherit;
}

.navbar__links a.btn-primary {
  color: #FFFFFF;
}

.navbar__links a.btn-primary:hover {
  color: #FFFFFF;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__links a.btn::after {
  display: none;
}

/* ── Hamburger (mobile) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Hero Section ── */
.hero {
  padding: var(--space-3xl) 0 var(--space-4xl);
  text-align: center;
  position: relative;
}

.hero__doodle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: inline-block;
  transform: rotate(-2deg);
}

.hero h1 {
  margin-bottom: var(--space-lg);
}

.hero h1 span {
  color: var(--primary);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--primary-bg);
  z-index: -1;
  border-radius: 4px;
}

.hero .subtitle {
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.hero__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating doodle decorations */
.hero::before {
  content: '✦';
  position: absolute;
  top: 20%;
  left: 8%;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

.hero::after {
  content: '〰️';
  position: absolute;
  top: 30%;
  right: 6%;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* ── Section ── */
.section {
  padding: var(--space-3xl) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__header .doodle-text {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: var(--space-sm);
  display: block;
}

.section__header .subtitle {
  max-width: 500px;
  margin: var(--space-md) auto 0;
}

/* ── Feature Cards ── */
.feature-card {
  text-align: center;
  padding: var(--space-xl);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  border: var(--border-thick);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.5rem;
  background: var(--primary-bg);
  box-shadow: var(--shadow-brutal-sm);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
}

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

/* ── Pricing Cards ── */
.pricing-card {
  padding: var(--space-xl);
  text-align: center;
  position: relative;
}

.pricing-card--popular {
  border: var(--border-thick);
  box-shadow: var(--shadow-brutal);
  background: var(--bg-card);
  overflow: visible;
}

.pricing-card--popular::before {
  content: '⭐ Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  border: 2px solid var(--border);
  white-space: nowrap;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 900;
  margin: var(--space-md) 0;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card .features-list {
  text-align: left;
  margin: var(--space-lg) 0;
}

.pricing-card .features-list li {
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pricing-card .features-list li::before {
  content: '✓';
  font-weight: 900;
  color: var(--primary);
  font-size: 1rem;
}

/* ── Business Card (Listing) ── */
.biz-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.biz-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom: var(--border-thick);
}

.biz-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.biz-card__category {
  margin-bottom: var(--space-sm);
}

.biz-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.biz-card__address {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.biz-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: var(--border-thin);
}

.biz-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Business Detail Page ── */
.biz-detail__hero {
  position: relative;
  height: 260px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  border-bottom: var(--border-thick);
}

.biz-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-detail__hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
}

.biz-detail__info {
  padding: var(--space-lg);
}

.biz-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.biz-detail__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.biz-detail__section {
  padding: var(--space-lg) 0;
  border-top: var(--border-thin);
}

.biz-detail__section h3 {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* ── Offers List ── */
.offer-card {
  border: 2px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background: #E6F7F5;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.offer-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.offer-card__text h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.offer-card__text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: var(--border-thin);
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ── Reviews ── */
.review-card {
  padding: var(--space-md);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-bg);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.review-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Business Page (@ pages) ── */
.bizpage-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  background-size: cover;
  background-position: center;
}

.bizpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.85), rgba(224,85,32,0.75));
}

.bizpage-hero__content {
  position: relative;
  z-index: 1;
  color: white;
}

.bizpage-hero__name {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  margin-bottom: var(--space-sm);
}

.bizpage-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.bizpage-section {
  padding: var(--space-2xl) 0;
}

.bizpage-section:nth-child(even) {
  background: var(--bg-muted);
}

.bizpage-section__title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.bizpage-section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: var(--space-sm) auto 0;
}

/* ── Services Grid ── */
.service-item {
  padding: var(--space-lg);
  text-align: center;
}

.service-item__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.service-item h4 {
  margin-bottom: var(--space-xs);
}

.service-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: all 0.15s;
}

.contact-item:hover {
  border-color: var(--primary);
  background: var(--primary-bg);
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-bg);
  border: 2px solid var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-item__value {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border: var(--border-thick);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-brutal);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 50;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translate(-2px, -2px);
  box-shadow: 6px 6px 0px #1A1A1A;
}

/* ── Footer ── */
.footer {
  background: var(--text);
  color: #CCCCCC;
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 4px solid var(--primary);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer h4 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer a {
  color: #AAAAAA;
  font-size: 0.85rem;
  display: block;
  padding: 4px 0;
  transition: color 0.15s;
}

.footer a:hover { color: var(--primary-light); }

.footer__bottom {
  border-top: 1px solid #333;
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
}

.footer__powered {
  text-align: center;
  padding: var(--space-lg) 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: var(--border-thin);
}

.footer__powered a {
  color: var(--primary);
  font-weight: 700;
}

/* ── Search Bar ── */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-brutal-sm);
  max-width: 500px;
  margin: 0 auto;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  background: transparent;
  color: var(--text);
  padding: 10px 0;
}

.search-bar input::placeholder {
  color: var(--text-light);
}

.search-bar button {
  background: var(--primary);
  color: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s;
}

.search-bar button:hover {
  background: var(--primary-light);
}

/* ── Filter Pills ── */
.filter-pills {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-lg);
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 100px;
  border: 2px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--bg-card);
  font-family: var(--font-body);
  color: var(--text-muted);
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--primary);
  background: var(--primary-bg);
  color: var(--primary);
}

/* ── Back Button ── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.back-btn:hover { color: var(--primary); }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Skeleton Loader ── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-muted) 25%, #e8e8e4 50%, var(--bg-muted) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--primary);
  color: white;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  border: var(--border-thick);
  box-shadow: var(--shadow-brutal);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '✦ ✦ ✦';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1rem;
  opacity: 0.3;
  letter-spacing: 8px;
}

.cta-banner h2 { margin-bottom: var(--space-md); color: white; }
.cta-banner p { margin-bottom: var(--space-lg); opacity: 0.9; }

.cta-banner .btn {
  background: white;
  color: var(--primary);
  border-color: white;
}

.cta-banner .btn:hover {
  background: var(--primary-bg);
}

/* ── Hours Table ── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: var(--border-thin);
}

.hours-table td {
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
}

.hours-table td:first-child {
  font-weight: 600;
  width: 40%;
}

.hours-table td:last-child {
  color: var(--text-muted);
  text-align: right;
}

.hours-table .today {
  color: var(--primary);
  font-weight: 700;
}

/* ── Empty State ── */
.empty-state {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--text-muted);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

/* ── Mobile Responsive ── */

/* Mobile Nav */
@media (max-width: 700px) {
  .hamburger { display: flex; }

  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: var(--border-thick);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
  }

  .navbar__links.open { display: flex; }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bento-grid--2,
  .bento-grid--3 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero { padding: var(--space-2xl) 0 var(--space-3xl); }
  .hero::before, .hero::after { display: none; }
}

@media (min-width: 701px) and (max-width: 1024px) {
  .bento-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Utility Classes ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.w-full { width: 100%; }
.hidden { display: none; }
