/* ============================================
   Samiyo — Styles
   Mobile-first responsive design
   ============================================ */

/* --- CSS Custom Properties (from config) --- */
:root {
  --color-primary: #A62633;
  --color-secondary: #2A2A26;
  --color-accent: #D4A74A;
  --color-bg: #F5F4F1;
  --color-text: #2A2A26;
  --color-white: #ffffff;
  --color-gray-100: #EDECE9;
  --color-gray-200: #D8D6D2;
  --color-gray-300: #BDBBB7;
  --color-gray-500: #6E6E6A;
  --color-gray-700: #454542;
  --font-brand: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(42,42,38,0.08);
  --shadow-md: 0 4px 16px rgba(42,42,38,0.1);
  --shadow-lg: 0 8px 32px rgba(42,42,38,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

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

/* --- Scroll reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   Cookie Consent Banner (Loi 25 Québec)
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-consent-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookie-consent-inner p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border-color: var(--color-white);
}

@media (min-width: 768px) {
  .cookie-consent-inner {
    flex-direction: row;
    text-align: left;
  }
}

/* ============================================
   Navigation
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 244, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo:hover {
  opacity: 0.9;
}

.nav-logo-img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  display: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  position: relative;
  transition: background var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg) translate(5px, -5px); }

.nav-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-gray-200);
  list-style: none;
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.nav-menu.open {
  display: block;
}

.nav-link {
  display: block;
  padding: 14px 24px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--color-primary);
  background: var(--color-gray-100);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  background-image: url('../assets/images/C7.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 42, 38, 0.88) 0%,
    rgba(42, 42, 38, 0.6) 50%,
    rgba(166, 38, 51, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px 40px;
  max-width: 700px;
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(3rem, 12vw, 5.5rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--color-accent);
  font-style: italic;
  margin-bottom: 32px;
  font-weight: 400;
}

/* --- Location Selector --- */
.location-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.location-pill {
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-pill:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.location-pill.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.location-pill.closed-pill {
  opacity: 0.5;
  text-decoration: line-through;
}

/* --- Hero CTA --- */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1.2;
}

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

.btn-primary:hover {
  background: #8B1F2B;
  border-color: #8B1F2B;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 38, 51, 0.3);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background: #3D3D38;
  border-color: #3D3D38;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--color-gray-100);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-text {
  background: none;
  border: none;
  color: var(--color-primary);
  font-weight: 600;
  padding: 8px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-text:hover {
  color: var(--color-secondary);
}

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

.btn-full {
  width: 100%;
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--color-gray-100);
}

.section-cta {
  background: var(--color-secondary);
  text-align: center;
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-title-light {
  color: var(--color-white);
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray-500);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle-light {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   Menu Section
   ============================================ */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.menu-card {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-text);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}

.menu-card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #1a1a18;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.06);
}

.menu-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-body h3 {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.menu-card-body p {
  color: var(--color-gray-700);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================
   Hours & Location
   ============================================ */
.closed-banner {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 0.95rem;
}

.hours-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.hours-card,
.location-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.hours-card h3,
.location-card h3 {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}

.hours-note {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  margin-bottom: 16px;
  font-style: italic;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 0.95rem;
}

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

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

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

.hours-table td.closed {
  color: var(--color-primary);
  font-weight: 500;
}

.hours-table td.today-row {
  color: var(--color-primary);
}

.hours-fallback {
  padding: 20px 0;
  text-align: center;
  color: var(--color-gray-700);
  font-size: 1rem;
}

.hours-fallback a {
  font-weight: 600;
  color: var(--color-primary);
}

.location-address {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.location-landmark {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  margin-bottom: 12px;
  font-style: italic;
}

.location-phone {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.location-phone a {
  color: var(--color-primary);
  text-decoration: none;
}

.location-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.location-buttons .btn {
  flex: 1;
  min-width: 140px;
  font-size: 0.9rem;
  padding: 12px 16px;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: var(--radius-sm);
}

.map-placeholder {
  background: var(--color-gray-200);
  border-radius: var(--radius-sm);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-500);
  font-size: 0.9rem;
}

.all-locations-toggle {
  text-align: center;
  margin-top: 32px;
}

.all-locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.all-location-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.all-location-card:hover {
  box-shadow: var(--shadow-md);
}

.all-location-card .location-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.all-location-card h4 {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.all-location-card .closed-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
}

.all-location-card .loc-detail {
  font-size: 0.9rem;
  color: var(--color-gray-700);
  margin-bottom: 4px;
}

.all-location-card .loc-detail a {
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================
   Order CTA Section
   ============================================ */
#order-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

#order-cta-content .order-phone-display {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================
   Careers Section
   ============================================ */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.career-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.career-card h3 {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.career-card-featured {
  border: 2px solid var(--color-accent);
  position: relative;
}

.career-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.career-roles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.career-role h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.career-role p {
  font-size: 0.9rem;
  color: var(--color-gray-700);
}

.career-card-featured p {
  color: var(--color-gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.careers-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.careers-form-wrapper h3 {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group input[type="file"] {
  padding: 10px;
  font-size: 0.9rem;
}

.form-group textarea {
  resize: vertical;
}

.form-consent {
  margin-top: 4px;
}

.form-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-gray-500);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

/* ============================================
   Franchise Section
   ============================================ */
.franchise-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.franchise-text {
  font-size: 1.05rem;
  color: var(--color-gray-700);
  line-height: 1.7;
  margin-bottom: 36px;
}

.franchise-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.stat-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-brand);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-gray-700);
  font-weight: 500;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.contact-item a {
  color: var(--color-text);
  font-weight: 500;
}

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

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   Privacy Policy Page
   ============================================ */
.policy-container {
  max-width: 800px;
}

.policy-date {
  color: var(--color-gray-500);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.policy-container h2 {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.policy-container p {
  color: var(--color-gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy-container ul {
  margin-bottom: 12px;
  padding-left: 24px;
}

.policy-container li {
  color: var(--color-gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 6px;
}

.policy-container a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-secondary);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-logo {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  display: none;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-style: italic;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   Responsive — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 4px;
  }

  .nav-link {
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover {
    background: var(--color-gray-100);
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

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

  .hours-location-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .franchise-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }
}

/* ============================================
   Responsive — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .careers-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .all-locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
