/* ============================================================
   85°C Bakery Cafe — Global Stylesheet
   Designed & Developed by Novelio Technologies · 2026
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --red: #C8102E;
  --red-dark: #a50d25;
  --black: #1A1A1A;
  --gold: #F5A623;
  --white: #FFFFFF;
  --cream: #F9F7F4;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-light: #767676;
  --border: #E5E5E5;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 8px;
  --radius-sm: 4px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Montserrat', 'Inter', sans-serif;
  --nav-height: 72px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--nav-height) + 20px); }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.mobile-menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; transition: color var(--transition); touch-action: manipulation; }

ul, ol { list-style: none; }

button { font-family: var(--font-body); cursor: pointer; border: none; background: none; touch-action: manipulation; }

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--red);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ── Skip to Main Content ── */
.skip-link {
  position: absolute;
  top: -40px; left: 8px;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10001;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

/* ── Section Spacing ── */
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--black); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }

.section__header { text-align: center; margin-bottom: 48px; }
.section__header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 12px; }
.section__header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section--dark .section__header p,
.section--red .section__header p { color: rgba(255,255,255,0.8); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,16,46,0.3); }
.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover { background: var(--red); color: var(--white); transform: translateY(-1px); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--red); }
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover { background: #d4901f; border-color: #d4901f; transform: translateY(-1px); }
.btn--sm { padding: 8px 18px; font-size: 0.8rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 20px;
}
.badge--red { background: var(--red); color: var(--white); }
.badge--gold { background: var(--gold); color: var(--black); }
.badge--blue { background: #0066CC; color: var(--white); }
.badge--green { background: #2E7D32; color: var(--white); }

/* ── Product Badge Ribbon ── */
.card-ribbon {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 20px;
  z-index: 2;
}
.card-ribbon--new { background: var(--red); color: var(--white); }
.card-ribbon--seasonal { background: var(--gold); color: var(--black); }
.card-ribbon--app { background: #0066CC; color: var(--white); }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.navbar__logo img { height: 48px; width: auto; filter: invert(1); }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 6px 10px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--red); }
.nav-link.active { color: var(--red); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}
.dropdown a:hover { color: var(--red); background: var(--cream); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__social { display: flex; gap: 8px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-primary);
  transition: all var(--transition);
  flex-shrink: 0;
}
.social-icon:hover { background: var(--red); color: var(--white); }
.social-icon svg { width: 18px; height: 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px; height: 100vh;
  background: var(--white);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__nav a {
  display: block;
  padding: 12px 8px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}
.mobile-menu__nav a:hover { color: var(--red); }
.mobile-menu__cta { margin-top: 24px; }
.mobile-menu__social { display: flex; gap: 12px; margin-top: 24px; }

/* Page offset for fixed nav */
main { padding-top: var(--nav-height); }

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  min-height: 500px;
  max-height: 720px;
  overflow: hidden;
  background: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.slide.active { opacity: 1; z-index: 2; }

.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 7s ease;
}
.slide.active .slide__bg { transform: scale(1.04); }

.slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
}

.slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.slide__inner { max-width: 560px; color: var(--white); }
.slide__badge { margin-bottom: 16px; }
.slide__inner h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.slide__inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.9);
}
.slide__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slider__nav:hover { background: var(--red); border-color: var(--red); }
.slider__nav--prev { left: 20px; }
.slider__nav--next { right: 20px; }
.slider__nav svg { width: 20px; height: 20px; }

.slider__dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0;
  align-items: center;
}
.slider__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: 17px solid transparent;
  background-clip: content-box;
  box-sizing: content-box;
}
.slider__dot.active { background: var(--white); background-clip: content-box; transform: scale(1.15); }

/* ── Menu Cards Section ── */
.menu-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.menu-section .container { position: relative; z-index: 1; }
.menu-section .section__header h2 { color: var(--white); }
.menu-section .section__header p { color: rgba(255,255,255,0.85); }

.menu-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.menu-card__img { aspect-ratio: 1; 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__label {
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ── Promo Cards ── */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.promo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.promo-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.promo-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.promo-card:hover .promo-card__img img { transform: scale(1.04); }
.promo-card__body { padding: 20px; }
.promo-card__title { font-family: var(--font-heading); font-size: 1.15rem; margin: 8px 0; }
.promo-card__text { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }

/* ── App Banner ── */
.app-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.app-banner__img img { border-radius: var(--radius); width: 100%; }
.app-banner__content h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.app-banner__content p { color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.app-banner__btns { display: flex; gap: 12px; flex-wrap: wrap; }

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  min-width: 150px;
}
.app-store-btn:hover { background: #333; transform: translateY(-1px); }
.app-store-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.app-store-btn__text { display: flex; flex-direction: column; }
.app-store-btn__sub { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.4px; opacity: 0.85; }
.app-store-btn__name { font-weight: 700; font-size: 0.95rem; }

/* ── Reviews ── */
.reviews-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.reviews-tab-btn {
  padding: 9px 22px;
  border-radius: 24px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.reviews-tab-btn:hover, .reviews-tab-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.reviews-panel { display: none; }
.reviews-panel.active { display: grid; }
.reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.star {
  width: 16px; height: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 14px;
  font-style: italic;
}
.review-footer { display: flex; justify-content: space-between; align-items: center; }
.review-author { font-weight: 600; font-size: 0.85rem; }
.review-date { font-size: 0.78rem; color: var(--text-light); }
.review-google {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 18px; height: 18px;
  opacity: 0.5;
}

.reviews-rating-badge {
  text-align: center;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rating-score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ── Instagram Feed ── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.instagram-item:hover img { transform: scale(1.08); }
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,16,46,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay svg { width: 32px; height: 32px; color: var(--white); }

/* ── Location Search Section ── */
.location-hero {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.location-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.location-hero .container { position: relative; z-index: 1; color: var(--white); text-align: center; }
.location-hero h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 12px; }
.location-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 32px; font-size: 1.05rem; }

.search-bar {
  display: flex;
  max-width: 520px;
  margin: 0 auto 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.search-bar input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 0.95rem;
  background: var(--white);
}
.search-bar button {
  padding: 14px 24px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.search-bar button:hover { background: var(--red-dark); }

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 32px;
  transition: color var(--transition);
}
.location-link:hover { color: var(--white); }
.location-link svg { width: 16px; height: 16px; }

.state-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.state-chip {
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.state-chip:hover { background: var(--red); border-color: var(--red); }

/* ── Inquiry Form ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-label span { color: var(--red); }

.form-control {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
  outline: none;
}
.form-control.error { border-color: #d32f2f; }
.form-control.success { border-color: #2e7d32; }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-error {
  font-size: 0.78rem;
  color: #d32f2f;
  display: none;
}
.form-error.visible { display: block; }

.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-group label { font-size: 0.875rem; cursor: pointer; line-height: 1.5; }
.checkbox-group a { color: var(--red); text-decoration: underline; }

.form-success {
  display: none;
  padding: 16px 20px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-sm);
  color: #2e7d32;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 16px;
}
.form-success.visible { display: block; }

/* ── Newsletter Section ── */
.newsletter-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.75);
}
.newsletter-section .container { position: relative; z-index: 1; }
.newsletter-section h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.newsletter-section p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 0.95rem;
}
.newsletter-form button {
  padding: 14px 24px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--red-dark); }

/* ── Page Hero Banner ── */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__content { position: relative; z-index: 1; color: var(--white); }
.page-hero__title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 8px; }
.page-hero__content h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 8px; }
.page-hero .breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb li[aria-current] { color: rgba(255,255,255,0.5); }
.page-hero__content .breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.page-hero__content .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero__content .breadcrumb a:hover { color: var(--white); }
.page-hero__content .breadcrumb span { color: rgba(255,255,255,0.5); }

/* ── Cards Generic ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card__img { aspect-ratio: 16/9; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 24px; }
.card__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card__body p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }

/* ── Grid Utilities ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Accordion ── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:first-child { border-top: 1px solid var(--border); }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  transition: color var(--transition);
}
.accordion-header:hover { color: var(--red); }
.accordion-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
  border: 2px solid currentColor;
  border-radius: 50%;
  transition: transform var(--transition);
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-icon::before { width: 8px; height: 2px; }
.accordion-icon::after { width: 2px; height: 8px; transition: transform var(--transition); }
.accordion-item.open .accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-item.open .accordion-body { max-height: 500px; }
.accordion-content { padding: 0 0 18px; color: var(--text-secondary); line-height: 1.7; font-size: 0.92rem; }

/* ── Timeline ── */
.timeline { position: relative; padding: 0 0 0 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-year {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 6px;
}
.timeline-title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; }
.timeline-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ── Stats / Highlights ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { padding: 32px 20px; }
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.section--red .stat-number { color: var(--white); }
.section--red .stat-label { color: rgba(255,255,255,0.82); }
.section--dark .stat-number { color: var(--gold); }
.section--dark .stat-label { color: rgba(255,255,255,0.75); }

/* ── Location Cards ── */
.location-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-hover); }
.location-card__name { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.location-card__address, .location-card__hours, .location-card__phone { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 6px; display: flex; gap: 8px; align-items: flex-start; }
.location-card__address svg, .location-card__hours svg, .location-card__phone svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--red); }
.location-card__actions { margin-top: 16px; display: flex; gap: 8px; }
.location-badge { display: inline-block; padding: 2px 8px; background: var(--cream); color: var(--text-secondary); font-size: 0.7rem; font-weight: 600; border-radius: 10px; margin-bottom: 8px; }
.location-badge--drive { background: #e3f2fd; color: #1565c0; }

/* ── Product Cards (Menu) ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card__img { aspect-ratio: 4/3; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__body { padding: 16px; }
.product-card__name { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.product-card__desc { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.5; margin-bottom: 10px; }
.product-card__price { font-weight: 700; color: var(--red); font-size: 0.95rem; }

/* ── Menu Tabs ── */
.menu-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}
.menu-tab {
  padding: 12px 28px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.menu-tab:hover { color: var(--red); }
.menu-tab.active { color: var(--red); border-bottom-color: var(--red); }

.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-pill {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: var(--cream);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-pill:hover, .filter-pill.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(200,16,46,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ── Sticky Mobile Buttons ── */
.sticky-mobile-btns {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  height: 56px;
}
.sticky-mobile-btns a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.sticky-mobile-btns a.call { background: var(--red); }
.sticky-mobile-btns a.whatsapp { background: #25D366; }
.sticky-mobile-btns svg { width: 20px; height: 20px; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  color: var(--white);
  padding: 16px 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.85); }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Seasonal Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 5;
  transition: background var(--transition);
}
.modal__close:hover { background: var(--red); color: var(--white); }
.modal__close svg { width: 16px; height: 16px; }
.modal__img img { width: 100%; display: block; }
.modal__body { padding: 24px; text-align: center; }
.modal__body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.modal__body p { color: var(--text-secondary); margin-bottom: 20px; }
.modal__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── VIP Tiers ── */
.tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tier-card {
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier-card--bronze { border-color: #cd7f32; }
.tier-card--silver { border-color: #c0c0c0; }
.tier-card--gold { border-color: var(--gold); background: #fffbf0; }
.tier-card--platinum { border-color: #6ab2c8; background: #f0f9fc; }
.tier-icon { font-size: 2.5rem; margin-bottom: 12px; }
.tier-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.tier-pts { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 12px; }
.tier-perks { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Two-Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col--reverse .two-col__media { order: 2; }
.two-col--reverse .two-col__content { order: 1; }
.two-col__media img { border-radius: var(--radius); width: 100%; }
.two-col__content h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin-bottom: 16px; }
.two-col__content p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }

/* ── Why Cards ── */
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-4px); }
.why-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-card__icon svg { width: 28px; height: 28px; color: var(--red); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ── Benefits List ── */
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.benefits-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.steps-grid--3 { grid-template-columns: repeat(3, 1fr); }
.step { position: relative; padding: 0 10px; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -10%;
  width: 20%;
  height: 2px;
  background: var(--border);
}
.step__num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 0.95rem; margin-bottom: 8px; }
.step p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* ── Legal / Docs ── */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--nav-height) + 24px); }
.legal-nav a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.legal-nav a:hover, .legal-nav a.active { color: var(--red); border-left-color: var(--red); background: var(--cream); }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.legal-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; list-style: disc; }

/* ── Maps Embed ── */
.map-embed { width: 100%; height: 400px; border: 0; border-radius: var(--radius); display: block; }

/* ── Focus Styles (Accessibility) ── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Form controls use border + shadow instead of outline */
.form-control:focus-visible { outline: none; }

/* ── Footer ── */
.footer {
  background: var(--black);
  color: #CCCCCC;
  padding: 60px 0 0;
}
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 48px; }
.footer__logo { margin-bottom: 20px; }
.footer__logo img { height: 44px; width: auto; }
.footer__col h4 {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: 0.875rem;
  color: #CCCCCC;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--red); }

.footer__social { display: flex; gap: 10px; margin-top: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CCCCCC;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--red); color: var(--white); }
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.8rem; color: #888; }
.footer__bottom a { color: #888; transition: color var(--transition); }
.footer__bottom a:hover { color: var(--red); }

/* ── Utility Classes ── */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-muted { color: var(--text-secondary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── Fade-up Animation (JS controlled) ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── Additional Cursor / UX Polish ── */
.menu-card,
.instagram-item,
.promo-card,
.review-card,
.location-card,
.product-card,
.tier-card { cursor: pointer; }

/* Selection color */
::selection { background: rgba(200,16,46,0.15); color: var(--text-primary); }

/* Smooth image transitions for all lazy-loaded images */
img { transition: opacity 0.3s ease; }

/* ── Improved Modal Backdrop ── */
.modal-overlay { backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }

/* ── Accordion header font-weight on open ── */
.accordion-item.open .accordion-header { color: var(--red); }

/* ── Active nav link underline indicator ── */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

/* ── Filter pill & tab active focus rings ── */
.filter-pill:focus-visible,
.reviews-tab-btn:focus-visible,
.menu-tab:focus-visible { outline-offset: 2px; }

/* ── Section header paragraph line-length ── */
.section__header p { line-height: 1.65; }

/* ── Better link underline on hover in article/body copy ── */
.legal-content a:hover,
.accordion-content a:hover { text-decoration: underline; text-underline-offset: 3px; }
