/* Break n Bite — Production CSS */
/* Fonts: Outfit · Playfair Display · Dancing Script */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #B8860B;
  --accent-dark: #8B6914;
  --accent-glow: rgba(184, 134, 11, 0.25);
  --coffee: #2D1B13;
  --coffee-mid: #3D2B1F;
  --coffee-deep: #1A110B;
  --bone: #EBE5DB;
  --bone-light: #F5F1EB;
  --text: #1A1410;
  --text-muted: rgba(26, 20, 16, 0.55);
  --light: #FAF7F2;
  --light-muted: rgba(250, 247, 242, 0.65);
  --white: #fff;
  --green: #166534;
  --red: #c9252d;
  --border: rgba(26, 20, 16, 0.08);
  --border-dark: rgba(250, 247, 242, 0.1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Inter', 'Segoe UI', sans-serif;
  --font-accent: 'Dancing Script', cursive;
  --font-brand: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .14);
  --ease: 0.35s ease;
  --ease-slow: 0.6s cubic-bezier(.16, 1, .3, 1);
  --max-w: 1200px;
  --nav-h: 56px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .2s ease;
}

ul,
ol {
  list-style: none;
}

.btn svg,
.page-hero-cta svg,
.hero-cta svg {
  vertical-align: -2px;
  margin-right: 2px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Status Strip — Glass Effect */
.status-strip {
  color: #fff;
  text-align: center;
  padding: .4rem 1rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .3px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(22, 101, 52, .65);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid rgba(34, 197, 94, .15);
}

.status-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.status-strip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

.status-strip.open {
  background: rgba(22, 101, 52, .65);
}

.status-strip.closed {
  background: rgba(185, 28, 28, .65);
  border-bottom-color: rgba(239, 68, 68, .15);
}

.status-strip.closed .status-strip-dot {
  background: #fff;
}

.status-strip.error {
  background: rgba(124, 58, 237, .65);
}

.countdown-timer {
  font-weight: 700;
}

/* Navbar — Floating Pill */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: .5rem 1rem;
  transition: padding .4s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

body.has-status-strip .navbar {
  top: 30px;
}

.navbar.scrolled {
  padding: .35rem 1rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: .45rem 1.8rem;
  background: rgba(26, 17, 11, .4);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(250, 247, 242, .06);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .12);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  pointer-events: auto;
}

.navbar.scrolled .nav-inner {
  background: rgba(26, 17, 11, .88);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-color: rgba(250, 247, 242, .04);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  padding: .4rem 1.8rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light);
  letter-spacing: .5px;
  z-index: 1001;
}

.nav-logo img {
  height: 36px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--light-muted);
  position: relative;
  padding: .2rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-order-btn {
  background: var(--accent);
  color: var(--text) !important;
  padding: .55rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--ease);
}

.nav-order-btn:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: all var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184, 134, 11, .04);
  transform: translateY(-2px);
}

/* On dark sections */
.hero .btn-outline,
.page-hero .btn-outline,
.cta-section .btn-outline {
  color: var(--light);
  border-color: var(--light-muted);
}

.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.cta-section .btn-outline:hover {
  background: rgba(250, 247, 242, .08);
  border-color: var(--light);
}

/* Section Layout */
.section-label {
  font-family: var(--font-accent);
  color: var(--accent);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: .4rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .8rem;
}

.section-title .text-accent {
  color: var(--accent);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  max-width: 600px;
  line-height: 1.7;
}

.section-pad {
  padding: 5rem 0;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: .8rem auto;
  border-radius: 2px;
}

/* Hero (Home) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 40px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .45) 50%, rgba(10, 6, 3, .82) 100%);
}

/* Particle canvas overlay */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.hero-logo {
  height: 110px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-md);
}

.hero-accent {
  font-family: var(--font-accent);
  color: var(--accent);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: .8rem;
  display: block;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--light);
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--light-muted);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.hero-rating {
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Social Buttons (Hero) */
.hero-social {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin-top: 1.8rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  background: rgba(250, 247, 242, .08);
  border: 1px solid rgba(250, 247, 242, .15);
  color: var(--light);
  transition: all var(--ease);
}

.social-btn:hover {
  background: rgba(250, 247, 242, .15);
  border-color: var(--accent);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

/* Google Rating Badge */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(250, 247, 242, .08);
  border: 1px solid rgba(250, 247, 242, .12);
  border-radius: var(--radius-full);
  font-size: .82rem;
  color: var(--light);
  transition: all var(--ease);
}

.google-rating-badge:hover {
  background: rgba(250, 247, 242, .12);
  border-color: var(--accent);
}

.rating-stars {
  color: var(--accent);
  font-size: .88rem;
  letter-spacing: 1px;
}

.rating-num {
  font-weight: 700;
  font-size: .95rem;
}

.rating-label {
  color: var(--light-muted);
  font-size: .78rem;
}

/* Page Heroes (Menu, About, Contact) */
.page-hero {
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--coffee);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45, 27, 19, .7) 0%, rgba(45, 27, 19, .88) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .section-label {
  color: var(--accent);
}

.page-hero .section-title {
  color: var(--light);
}

.page-hero .section-subtitle {
  color: var(--light-muted);
}

.page-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.page-hero-cta .btn {
  min-width: 140px;
  text-align: center;
}

/* Features Grid */
.features {
  padding: 5rem 0;
  background: var(--bone-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--ease);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, .08);
  border-radius: var(--radius-md);
  color: var(--accent);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.6;
}

/* About Preview */
.about-preview {
  padding: 5rem 0;
  background: var(--bone);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-text .section-label,
.about-text .section-title {
  text-align: left;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Popular Items */
.popular-items {
  padding: 5rem 0;
  text-align: center;
  background: var(--bone-light);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}

.item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.item-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bone);
}

.item-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.item-card:hover .item-card-img img {
  transform: scale(1.06);
}

.item-card-img .badge {
  position: absolute;
  top: .8rem;
  right: .8rem;
  background: var(--accent);
  color: var(--text);
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  z-index: 2;
}

.item-card-body {
  padding: 1.2rem;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.item-card-body p {
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.5;
  flex: 1;
}

.item-card-body .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.order-link {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.order-link:hover {
  color: var(--accent-dark) !important;
}

/* Reviews */
.reviews {
  padding: 5rem 0;
  text-align: center;
  background: var(--bone);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: left;
  position: relative;
  transition: all var(--ease);
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: .25;
  position: absolute;
  top: .3rem;
  left: 1.2rem;
  line-height: 1;
}

.review-card p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
  font-style: italic;
  padding-top: 1.2rem;
}

.review-card .reviewer {
  margin-top: .8rem;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
  font-size: .82rem;
}

.review-card .rating-stars {
  color: var(--accent);
  font-size: .82rem;
  margin-top: .4rem;
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--coffee);
  position: relative;
}

.cta-section .section-label {
  color: var(--accent);
}

.cta-section .section-title {
  color: var(--light);
}

.cta-section .section-subtitle {
  color: var(--light-muted);
}

/* Menu Page */
.api-menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: .5rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
}

.menu-tab:hover {
  border-color: var(--accent);
  color: var(--text);
}

.menu-tab.active {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
  font-weight: 700;
}

#api-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.menu-card-img {
  height: 190px;
  overflow: hidden;
  background: var(--bone);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 1.1rem;
}

.menu-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: .3rem;
}

.menu-card-body p {
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.5;
  margin-bottom: .6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .6rem;
  border-top: 1px solid var(--border);
}

.menu-card-footer .price {
  font-weight: 700;
  color: var(--accent);
  font-size: .95rem;
}

/* Menu Loading */
.menu-loading {
  text-align: center;
  padding: 2.5rem;
  color: var(--text-muted);
}

.menu-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto .8rem;
  animation: spin .8s linear infinite;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.skeleton-card {
  height: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.skeleton-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, .03), transparent);
  animation: shimmer 1.5s infinite;
}

/* About Page */
.about-story {
  padding: 5rem 0;
  background: var(--bone);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-story-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.about-story-text .text-accent {
  color: var(--accent);
}

.about-story-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: .8rem;
}

.about-values {
  padding: 5rem 0;
  background: var(--bone-light);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, .08);
  border-radius: var(--radius-sm);
  color: var(--accent);
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-text h4 {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .15rem;
}

.contact-detail-text p,
.contact-detail-text a {
  color: var(--text-muted);
  font-size: .85rem;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.2) sepia(.15) brightness(.95);
}

/* Hours List */
.hours-list {
  margin-top: 1rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li.today {
  color: var(--accent);
  font-weight: 600;
}

.hours-list .day {
  color: var(--text);
}

.hours-list .time {
  color: var(--text-muted);
}

.hours-list .closed-day {
  color: var(--red);
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--coffee-deep);
  padding: 4rem 0 1.5rem;
  color: var(--light-muted);
  border-top: 1px solid rgba(184, 134, 11, .1);
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 242, .1);
  color: var(--light-muted);
  transition: all .3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--coffee-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, .2);
}

#footer-rating {
  margin-top: .8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-brand p {
  margin-top: .8rem;
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(250, 247, 242, .5);
}

.footer .nav-logo {
  color: var(--light);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  color: var(--light);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: .6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col a {
  display: block;
  color: rgba(250, 247, 242, .55);
  font-size: .85rem;
  padding: .25rem 0;
  transition: color .2s ease, padding-left .2s ease;
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-col p {
  color: rgba(250, 247, 242, .5);
  font-size: .85rem;
  line-height: 1.6;
}

.footer .hours-list li {
  border-color: rgba(250, 247, 242, .04);
  font-size: .83rem;
}

.footer .hours-list .day {
  color: rgba(250, 247, 242, .7);
}

.footer .hours-list .time {
  color: rgba(250, 247, 242, .45);
}

.footer .hours-list li.today {
  background: rgba(184, 134, 11, .08);
  border-radius: var(--radius-sm);
  padding: .3rem .6rem;
  margin: -.1rem -.6rem;
}

.footer .hours-list li.today .day {
  color: var(--accent);
  font-weight: 700;
}

.footer .hours-list li.today .time {
  color: var(--accent);
  font-weight: 700;
}

/* Contact hours today highlight */
#contact-hours li.today {
  background: rgba(184, 134, 11, .06);
  border-radius: var(--radius-sm);
  padding: .3rem .6rem;
  margin: -.1rem -.6rem;
}

#contact-hours li.today .day {
  color: var(--accent);
  font-weight: 700;
}

#contact-hours li.today .time {
  color: var(--accent);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(250, 247, 242, .05);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .8rem 1.5rem;
  text-align: center;
  font-size: .75rem;
  color: rgba(250, 247, 242, .3);
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  color: rgba(250, 247, 242, .25);
  padding: .3rem .7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(250, 247, 242, .06);
  transition: all .25s ease;
}

.footer-powered:hover {
  border-color: rgba(250, 247, 242, .12);
  color: rgba(250, 247, 242, .5);
}

.footer-powered img {
  height: 14px;
  width: auto;
  opacity: .4;
  transition: opacity .25s ease;
}

.footer-powered:hover img {
  opacity: .7;
}

/* Modals */
.sipo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.sipo-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sipo-modal {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(.92) translateY(16px);
  transition: transform var(--ease-slow);
}

.sipo-modal-overlay.active .sipo-modal {
  transform: scale(1) translateY(0);
}

.sipo-modal-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .2s;
}

.sipo-modal-close:hover {
  background: rgba(0, 0, 0, .04);
  color: var(--text);
}

.sipo-modal-icon {
  margin-bottom: 1.2rem;
}

.sipo-modal-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: .6rem;
}

.sipo-modal-text {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.sipo-modal-btn {
  width: 100%;
}

/* Floating Elements */
.floating-order {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent);
  color: var(--text);
  padding: .7rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: all var(--ease);
}

.floating-order:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.floating-order svg {
  width: 16px;
  height: 16px;
}

.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 998;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--coffee-deep);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--ease);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.3);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {

  .about-split,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1rem;
    gap: .4rem;
  }

  .nav-logo img {
    height: 30px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(45, 27, 19, .97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform var(--ease-slow);
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 2.5px;
  }

  .hamburger {
    display: flex;
  }

  .nav-order-btn {
    padding: .45rem 1rem;
    font-size: .72rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-logo {
    height: 80px;
  }

  .hero-subtitle {
    font-size: .9rem;
  }

  .hero-social {
    gap: .5rem;
  }

  .social-btn {
    padding: .4rem .8rem;
    font-size: .72rem;
  }

  .items-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand .nav-logo {
    justify-content: center;
  }

  .footer-brand p {
    text-align: center;
  }

  #footer-rating {
    display: flex;
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col a {
    display: block;
    text-align: center;
  }

  .hours-list li {
    justify-content: center;
    gap: 1rem;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
  }

  .floating-order {
    bottom: 1rem;
    right: 1rem;
    padding: .6rem .9rem;
    font-size: .72rem;
  }

  .scroll-top {
    bottom: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  /* Floating navbar responsive */
  .nav-inner {
    padding: .45rem 1rem;
  }

  body.has-status-strip .navbar {
    top: 28px;
  }

  .status-strip {
    font-size: .72rem;
    padding: .35rem .8rem;
  }

  .nav-order-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 17, 11, .98);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform var(--ease-slow);
    z-index: 1200;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
    z-index: 1300;
  }
}

@media (max-width: 480px) {

  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  #api-menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-social {
    flex-wrap: wrap;
  }

  .page-hero-cta {
    flex-direction: column;
    align-items: center;
  }
}