/* ====================================
   SUSHI CLEMENCEAU - STYLE CSS
   Design: Blanc/Noir/Rouge - Minimaliste Premium
   ==================================== */

/* --- CSS RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Couleurs */
  --white: #FFFFFF;
  --black: #111111;
  --red: #C1121F;
  --red-dark: #9A0E19;
  --red-light: #E8434E;
  --gold: #D4A853;
  --gold-light: #F0D48A;
  --gray-light: #F5F5F5;
  --gray-medium: #E0E0E0;
  --gray-text: #666666;

  /* Dégradés */
  --gradient-red: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --gradient-warm: linear-gradient(135deg, #fff5f5 0%, #fff 50%, #fffbf0 100%);

  /* Typographie */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Noto Serif JP', serif;

  /* Espacements */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-medium);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  animation: fadeInDown 0.5s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  gap: var(--spacing-md);
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
  animation: fadeInDown 0.6s ease;
}

@media (min-width: 768px) {
  .logo img {
    height: 60px;
  }
}

@media (min-width: 1024px) {
  .logo img {
    height: 70px;
  }
}

.logo:hover img {
  opacity: 0.8;
}

.logo:focus {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

/* Navigation Desktop */
.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--spacing-md);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  padding: var(--spacing-xs) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-red);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.nav-link:focus {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
  overflow: hidden;
}

.lang-btn {
  padding: 0.4rem 0.6rem;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.5;
  filter: grayscale(100%);
}

.lang-btn.active {
  opacity: 1;
  filter: grayscale(0%);
}

.lang-btn:hover:not(.active) {
  opacity: 0.75;
}

.lang-btn:focus {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

/* Header CTA */
.header-cta {
  display: none;
  gap: var(--spacing-xs);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn:focus {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--white);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 18, 31, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--black);
  transition: var(--transition);
}

.menu-toggle:focus {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--gray-medium);
  padding: var(--spacing-md) 0;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.nav-mobile .nav-link {
  font-size: 1.05rem;
  padding: var(--spacing-xs) 0;
}

.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(15,15,40,0.6) 0%, rgba(193,18,31,0.25) 50%, rgba(0,0,0,0.65) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: var(--spacing-md);
}

.hero-title {
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-cta {
  animation: zoomIn 0.8s ease 0.6s both;
}

.hero-info {
  animation: fadeInUp 0.8s ease 0.9s both;
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

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

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 25px rgba(193, 18, 31, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(193, 18, 31, 0.7); }
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), var(--gold-light), rgba(255,255,255,0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

.hero-cta .btn {
  min-width: 180px;
}

@media (max-width: 767px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 350px;
  }
}

/* Hero buttons - white variant for visibility on dark background */
.hero .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-secondary:hover {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.35);
}

.hero .btn-primary {
  animation: pulseGlow 2.5s ease-in-out infinite 1.5s;
}

.hero .btn-primary:hover {
  box-shadow: 0 6px 35px rgba(193, 18, 31, 0.65);
  animation: none;
}

.hero-info {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.9;
}

.hero-services {
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
  display: inline-block;
  border-right: 2px solid rgba(255,255,255,0.7);
  animation: fadeInUp 0.8s ease 0.9s both, blink-caret 0.8s step-end 4;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: rgba(255,255,255,0.7); }
}

.hero-address,
.hero-phone {
  margin-bottom: 0.25rem;
}

.hero-phone a:hover {
  color: var(--red);
}

/* --- SECTIONS --- */
.section {
  padding: var(--spacing-xl) 0;
}

.section:nth-child(even) {
  background: var(--gradient-warm);
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header.center {
  text-align: center;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--black);
  background: linear-gradient(135deg, var(--black) 0%, #333 50%, var(--red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-red);
  margin-bottom: var(--spacing-sm);
  border-radius: 2px;
}

.section-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-text);
  font-weight: 400;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-content.center {
  text-align: center;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--black);
}

/* --- HISTORY SECTION --- */
.section-grid {
  display: grid;
  gap: var(--spacing-lg);
  align-items: center;
}

/* Mobile: text first, image after */
.section-content {
  order: 1;
}

.section-image {
  order: 2;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* --- PHILOSOPHY & COMMITMENT --- */
.text-intro {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.icon-list {
  margin: var(--spacing-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  font-size: 1.05rem;
}

.icon {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 0.25rem;
}

.text-regular {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.text-emphasis {
  font-size: 1.15rem;
  font-weight: 600;
  margin: var(--spacing-md) 0 var(--spacing-sm);
  color: var(--black);
}

/* Commitment Gallery */
.commitment-gallery {
  display: grid;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.gallery-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* --- MENU GALLERY SECTION (HORIZONTAL CAROUSEL) --- */
.section-menu {
  background-color: var(--gray-light);
}

.menu-gallery {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--gray-medium);
}

.menu-gallery::-webkit-scrollbar {
  height: 8px;
}

.menu-gallery::-webkit-scrollbar-track {
  background: var(--gray-medium);
  border-radius: 10px;
}

.menu-gallery::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

.menu-gallery::-webkit-scrollbar-thumb:hover {
  background: #9A0E19;
}

.menu-page {
  flex: 0 0 auto;
  width: min(800px, 90vw);
  scroll-snap-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  background-color: var(--white);
  cursor: zoom-in;
  transition: var(--transition);
}

.menu-page:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: scale(1.02);
}

.menu-page img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  transition: var(--transition);
}

.menu-page img:hover {
  opacity: 0.95;
}

/* Menu Navigation Buttons */
.menu-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.menu-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: transparent;
  border: 1px solid var(--gray-medium);
  border-radius: 50%;
  color: var(--gray-text);
  cursor: pointer;
  transition: var(--transition);
}

.menu-nav-btn:hover {
  background-color: var(--gray-light);
  border-color: var(--black);
  color: var(--black);
  transform: scale(1.1);
}

.menu-nav-btn:focus {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.menu-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  border-color: var(--gray-medium);
}

.menu-nav-btn:disabled:hover {
  background-color: transparent;
  border-color: var(--gray-medium);
  color: var(--gray-text);
  transform: none;
}

.menu-nav-btn svg {
  flex-shrink: 0;
}

/* Menu CTA */
.menu-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .menu-gallery {
    padding: var(--spacing-sm) var(--spacing-sm);
  }

  .menu-page {
    width: min(700px, 85vw);
  }

  .menu-page img {
    max-height: 60vh;
  }

  .menu-nav-btn {
    width: 40px;
    height: 40px;
  }

  .menu-nav-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .menu-gallery {
    padding: var(--spacing-xs) var(--spacing-xs);
  }

  .menu-page {
    width: 90vw;
  }

  .menu-page img {
    max-height: 55vh;
  }

  .menu-nav-btn {
    width: 36px;
    height: 36px;
  }

  .menu-nav-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* --- MENU LIGHTBOX / ZOOM --- */
.menu-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  background-color: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.lightbox-controls {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-xs);
  background-color: rgba(0, 0, 0, 0.7);
  padding: var(--spacing-xs);
  border-radius: 30px;
  z-index: 10;
}

.lightbox-controls button {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
}

.lightbox-controls button:hover {
  background-color: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}

.lightbox-controls button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox-controls button:disabled:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1);
}

.lightbox-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 100px 80px;
  cursor: grab;
}

.lightbox-image-wrapper.dragging {
  cursor: grabbing;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.lightbox-navigation button {
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
  pointer-events: auto;
}

.lightbox-navigation button:hover {
  background-color: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.lightbox-navigation button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox-navigation button:disabled:hover {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1);
}

/* Mobile Lightbox Responsive */
@media (max-width: 767px) {
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .lightbox-controls {
    top: auto;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem;
  }

  .lightbox-controls button {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .lightbox-image-wrapper {
    padding: 80px 20px 120px;
  }

  .lightbox-navigation {
    padding: 0 10px;
  }

  .lightbox-navigation button {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .lightbox-close {
    width: 40px;
    height: 40px;
  }

  .lightbox-close svg {
    width: 24px;
    height: 24px;
  }

  .lightbox-controls {
    bottom: 80px;
  }

  .lightbox-controls button {
    width: 36px;
    height: 36px;
  }

  .lightbox-controls button svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-navigation button {
    width: 44px;
    height: 44px;
  }

  .lightbox-navigation button svg {
    width: 24px;
    height: 24px;
  }
}

/* --- DISHES SECTION --- */
.dishes-gallery {
  display: grid;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.dish-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.dish-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.dishes-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* --- HOURS SECTION --- */
.hours-table {
  max-width: 700px;
  margin: 0 auto var(--spacing-md);
}

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

.hours-table tr {
  transition: background-color 0.3s ease;
}

.hours-table tr:hover {
  background-color: rgba(193, 18, 31, 0.04);
}

.hours-table td {
  padding: var(--spacing-sm);
  border-bottom: 1px solid var(--gray-medium);
  font-size: 1rem;
}

.hours-table .day {
  font-weight: 600;
  color: var(--black);
}

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

.hours-note {
  display: block;
  font-size: 0.85rem;
  color: var(--red);
  font-style: italic;
  margin-top: 0.25rem;
}

.hours-note-general {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-text);
  font-style: italic;
}

/* --- FEATURES SECTION --- */
.section-features {
  padding: var(--spacing-lg) 0;
  background-color: var(--white);
}

.section-features .feature-card {
  border-left: 3px solid var(--red);
}

.section-features .feature-card:hover {
  border-left-color: var(--gold);
}

.section-features .feature-card:hover .feature-icon {
  animation: float 1.5s ease-in-out infinite;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white, #fff);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  flex-shrink: 0;
  color: var(--gray-text, #6b7280);
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-size: 0.95rem;
  color: var(--black, #1a1a1a);
}

.feature-text span {
  font-size: 0.82rem;
  color: var(--gray-text, #6b7280);
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* --- OFFERS SECTION --- */
.section-offers {
  padding: var(--spacing-lg) 0;
  background: var(--gradient-red) !important;
  opacity: 1 !important;
  transform: none !important;
}

.section-offers .section-title {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--white);
  background-clip: unset;
  color: var(--white);
}

.section-offers .section-divider {
  background: var(--white);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.offer-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: var(--spacing-md) var(--spacing-sm);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.offer-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: var(--white);
}

.offer-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.offer-detail {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

/* --- ACCESS SECTION --- */
.access-content {
  display: grid;
  gap: var(--spacing-lg);
  align-items: start;
}

.access-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.access-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--black);
}

.access-address {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: var(--gray-text);
}

.access-map {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--gray-medium);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.access-map:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(193, 18, 31, 0.12);
}

.access-map iframe {
  width: 100%;
  height: 400px;
}

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.contact-item {
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: 12px;
  background-color: var(--white, #fff);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 3px solid transparent;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-bottom-color: var(--red);
}

.contact-icon {
  color: var(--red);
  margin-bottom: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  animation: float 1.5s ease-in-out infinite;
}

.contact-label {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-link {
  color: var(--gray-text);
  font-size: 1.05rem;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.contact-cta .btn {
  min-width: 180px;
}

@media (max-width: 767px) {
  .contact-cta {
    flex-direction: column;
    align-items: center;
  }

  .contact-cta .btn {
    width: 100%;
    max-width: 350px;
  }
}

.contact-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* --- FOOTER --- */
.footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  margin-bottom: var(--spacing-sm);
  max-width: 100px;
  height: auto;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(90deg, transparent, rgba(193,18,31,0.08), transparent);
  margin: 0 calc(-1 * var(--spacing-md));
  padding: var(--spacing-md);
}

.footer-legal-links {
  margin-top: var(--spacing-sm);
  font-size: 0.85rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-legal-links .separator {
  margin: 0 var(--spacing-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-powered {
  margin-top: var(--spacing-sm);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

/* --- LEGAL PAGES --- */
.legal-page {
  background-color: var(--white);
  min-height: 60vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: var(--black);
  text-align: center;
}

.legal-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  color: var(--gray-text);
  text-align: center;
}

.legal-section {
  margin-bottom: var(--spacing-lg);
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--black);
  border-bottom: 2px solid var(--red);
  padding-bottom: var(--spacing-xs);
}

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: var(--spacing-md) 0 var(--spacing-sm);
  color: var(--black);
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  color: var(--black);
}

.legal-section ul {
  margin: var(--spacing-sm) 0 var(--spacing-md) var(--spacing-md);
  list-style: disc;
}

.legal-section li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-xs);
  color: var(--black);
}

.legal-section a {
  color: var(--red);
  text-decoration: underline;
}

.legal-section a:hover {
  color: #9A0E19;
}

.legal-back {
  text-align: center;
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--gray-medium);
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .header-cta {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .section-grid {
    grid-template-columns: 1fr 1fr;
  }

  .commitment-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .dishes-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

  .access-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
  }

  .section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
  }

  .icon-list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile Small (320px) */
@media (max-width: 375px) {
  :root {
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  .header,
  .nav-mobile,
  .hero-cta,
  .contact-cta,
  .btn {
    display: none;
  }
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for cards */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- PARALLAX HERO --- */
.hero-image img {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* --- ANIMATED COUNTERS --- */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.counter-item {
  padding: var(--spacing-md);
}

.counter-value {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.counter-value::after {
  content: '+';
}

.counter-label {
  font-size: 0.95rem;
  color: var(--gray-text);
  margin-top: 0.5rem;
  display: block;
}

@media (max-width: 576px) {
  .counters-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease, visibility 0.4s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(193, 18, 31, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #9A0E19;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(193, 18, 31, 0.5);
}

/* --- ACTIVE NAV HIGHLIGHT --- */
.nav-link.active {
  color: var(--red);
}

.nav-link.active::after {
  width: 100%;
}

/* --- HERO TITLE GLOW PULSE --- */
@keyframes subtlePulse {
  0%, 100% { text-shadow: 0 0 20px rgba(255,255,255,0.1); }
  50% { text-shadow: 0 0 40px rgba(255,255,255,0.25); }
}

.hero-title {
  animation: fadeInUp 1s ease, subtlePulse 4s ease-in-out infinite 1.5s;
}

/* --- SECTION DIVIDER ANIMATION --- */
.section-divider {
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal .section-divider,
.reveal-left .section-divider {
  width: 0;
}

.reveal.visible .section-divider,
.reveal-left.visible .section-divider {
  width: 60px;
}

/* --- ENHANCED CARD HOVER --- */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* --- HERO SCROLL INDICATOR --- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
  opacity: 0.8;
  cursor: pointer;
}

.scroll-indicator svg {
  color: var(--white);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* --- JAPANESE EFFECTS --- */

/* Seigaiha wave pattern separator between sections */
.wave-separator {
  width: 100%;
  height: 30px;
  background:
    radial-gradient(circle at 50% 100%, transparent 68%, rgba(193,18,31,0.08) 69%, rgba(193,18,31,0.08) 70%, transparent 71%) 0 0 / 40px 40px;
  margin: 0;
}

/* Cherry blossom floating particles */
.sakura-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 998;
  overflow: hidden;
}

.sakura {
  position: absolute;
  top: -20px;
  width: 12px;
  height: 12px;
  background: radial-gradient(ellipse at center, #ffb7c5 0%, #ff8fa3 40%, transparent 70%);
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  animation: sakuraFall linear infinite;
}

.sakura:nth-child(odd) {
  width: 8px;
  height: 8px;
  background: radial-gradient(ellipse at center, #ffd6e0 0%, #ffb7c5 40%, transparent 70%);
  border-radius: 50% 50% 0 50%;
}

@keyframes sakuraFall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg) translateX(0);
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(360deg) translateX(80px);
  }
}

/* Japanese brush stroke divider */
.section-divider {
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -4px;
  right: -4px;
  bottom: -1px;
  background: inherit;
  border-radius: 2px 8px 2px 8px;
  filter: blur(0.5px);
}

/* Enso circle decoration */
.enso {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid var(--red);
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-30deg);
  opacity: 0.15;
  margin: var(--spacing-sm) auto;
}

/* Japanese-style quote marks for about section */
.section-about .text-regular:first-child::before {
  content: '\300C';
  font-size: 2rem;
  color: var(--red);
  opacity: 0.3;
  margin-right: 4px;
  font-family: var(--font-secondary);
  vertical-align: -0.2em;
}

.section-about .text-regular:last-child::after {
  content: '\300D';
  font-size: 2rem;
  color: var(--red);
  opacity: 0.3;
  margin-left: 4px;
  font-family: var(--font-secondary);
  vertical-align: -0.2em;
}

/* Kanji watermark on hero */
.hero::after {
  content: '寿司';
  position: absolute;
  bottom: 15%;
  right: 5%;
  font-size: clamp(6rem, 15vw, 12rem);
  font-family: var(--font-secondary);
  color: rgba(255, 255, 255, 0.04);
  z-index: 2;
  pointer-events: none;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}

/* Japanese noren-style top border on sections */
.section-hours::before,
.section-access::before,
.section-contact::before,
.section-about::before {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 0 auto var(--spacing-md);
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px,
    var(--red) 8px,
    transparent 8px,
    transparent 12px
  );
  opacity: 0.3;
}

/* Red circle (hinomaru) accent */
.footer-logo {
  position: relative;
}

.footer-logo::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.6;
}

/* Chopstick-style vertical lines on feature cards */
.feature-card::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 12px;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--red), transparent);
  opacity: 0.15;
  transition: height 0.5s ease;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card:hover::after {
  height: 70%;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --black: #000000;
    --red: #FF0000;
  }

  .btn-primary,
  .btn-secondary {
    border-width: 3px;
  }
}
