/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* KATACHI Studio Color System */
  --color-neutral-50: #fafafa;
  --color-neutral-900: #0b0b0b;
  --color-neutral-800: #1a1a1a;
  --color-neutral-400: #c9b8a7;
  --color-white: #ffffff;

  /* Spacing Scale */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-15: 120px;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;
  --text-9xl: 8rem;

  /* Animation */
  --ease-out-cubic: cubic-bezier(0.21, 0.47, 0.32, 0.98);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--color-neutral-50);
  color: var(--color-neutral-900);
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enhanced loading states and transitions */
body:not(.loaded) {
  overflow: hidden;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-neutral-50);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-neutral-400);
  border-top: 3px solid var(--color-neutral-900);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Custom scrollbar - Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-neutral-400);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-neutral-800);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
  background: var(--color-neutral-900);
  background-clip: padding-box;
}

/* Custom scrollbar - Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-neutral-400) rgba(0, 0, 0, 0.05);
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--color-neutral-400) rgba(0, 0, 0, 0.05);
}

/* Utility Classes */
.container-custom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.blur-panel {
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.italic {
  font-style: italic;
  font-weight: 300;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-neutral-900);
  outline-offset: 2px;
  border-radius: 4px;
}

.product-card:focus-visible,
.collection-item:focus-visible,
.quick-look-btn:focus-visible,
.newsletter-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  background: rgba(255, 255, 255, 0.02);
  /* Extend the blurred header into the iOS safe-area (notch/status bar) */
  padding-top: constant(safe-area-inset-top); /* iOS 11 */
  padding-top: env(safe-area-inset-top); /* modern */
  transition: all 0.3s var(--ease-out-cubic);
  transform: translateY(-100px);
  animation: slideDown 0.6s var(--ease-out-cubic) forwards;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.05);
}

.header.over-footer {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.over-footer .logo a {
  color: var(--color-neutral-900);
}

.header.over-footer .logo a:hover {
  color: rgba(11, 11, 11, 0.7);
}

.header.over-footer .nav-link {
  color: var(--color-neutral-900);
}

.header.over-footer .nav-link:hover,
.header.over-footer .nav-link.active {
  background: rgba(11, 11, 11, 0.1);
  color: var(--color-neutral-900);
}

.header.over-footer .mobile-menu-toggle {
  color: var(--color-neutral-900);
}

.header.over-footer .mobile-menu-toggle:hover {
  background: rgba(11, 11, 11, 0.1);
}

/* Dropdown styling when header is over footer */
.header.over-footer .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
}

.header.over-footer .dropdown-link {
  color: var(--color-neutral-900);
}

.header.over-footer .dropdown-link:hover {
  background: rgba(11, 11, 11, 0.1);
  color: var(--color-neutral-900);
}

.header-content {
  display: flex;
  align-items: center;
  height: 48px;
  position: relative;
}

.logo a {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.2s ease;
}

.logo a:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: scale(1.02);
}

.header.scrolled .logo a {
  color: var(--color-neutral-900);
}

.header.scrolled .logo a:hover {
  color: rgba(11, 11, 11, 0.7);
}

/* Logo positioning */
.logo {
  margin-right: auto;
  margin-left: var(--space-2);
}

/* Navigation Styles for Multi-Page Support */
.nav {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-6);
  margin: 0;
  padding: 0;
  align-items: center;
}

.mobile-menu-only {
  display: none;
}

.nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all 0.2s ease;
  padding: var(--space-2) var(--space-3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  height: 36px;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.header.scrolled .nav-link {
  color: var(--color-neutral-900);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  background: rgba(11, 11, 11, 0.1);
  color: var(--color-neutral-900);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: var(--space-2);
  border-radius: 6px;
  transition: all 0.2s ease;
  margin-left: auto;
  margin-right: var(--space-2);
}


.header.scrolled .mobile-menu-toggle {
  color: var(--color-neutral-900);
}


/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  animation: heroZoom 1.2s var(--ease-out-cubic) forwards;
  will-change: transform;
  backface-visibility: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-cubic) 0.5s forwards;
}

.hero-title-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s var(--ease-out-cubic) forwards;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.5s;
}

.hero-title-line:nth-child(3) {
  animation-delay: 1.1s;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out-cubic) 0.7s forwards;
}

.hero-cta {
  margin-bottom: var(--space-12);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out-cubic) 0.9s forwards;
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-3) var(--space-5);
  border: 2px solid var(--color-white);
  border-radius: 8px;
  background: transparent;
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
  transition: all 0.3s var(--ease-out-cubic);
  position: relative;
  overflow: hidden;
  min-width: 140px;
}

.cta-button .button-text {
  transition: transform 0.3s var(--ease-out-cubic);
}

.cta-button::after {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--ease-out-cubic);
  position: absolute;
  right: var(--space-3);
}

.cta-button:hover {
  background: var(--color-white);
  color: var(--color-neutral-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-button:hover .button-text {
  transform: translateX(-8px);
}

.cta-button:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.hero-info-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out-cubic) 1.2s forwards;
}

.hero-info-strip .blur-panel {
  margin: var(--space-6);
  padding: var(--space-4) var(--space-6);
}

.info-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  color: rgba(255, 255, 255, 0.9);
}

.info-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
}

.info-icon {
  width: 16px;
  height: 16px;
}

.info-icon.green {
  color: #4ade80;
}

.info-icon.amber {
  color: #fbbf24;
}

.info-icon.blue {
  color: #60a5fa;
}

/* Featured Products Section */
.featured-products {
  padding: var(--space-15) 0;
  background: var(--color-white);
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8%;
  z-index: 10;
  pointer-events: none;
}

.carousel-gradient-left {
  left: 0;
  background: linear-gradient(to right, var(--color-white), transparent);
}

.carousel-gradient-right {
  right: 0;
  background: linear-gradient(to left, var(--color-white), transparent);
}

.carousel-content {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-10) var(--space-4);
}

.carousel-content::-webkit-scrollbar {
  display: none;
}

.carousel-controls {
  display: none;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-neutral-50);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-neutral-400);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--color-neutral-900);
  color: var(--color-white);
  transform: translateY(-1px);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-btn i {
  width: 24px;
  height: 24px;
}

/* Food Card Styles */
.food-card {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  height: 400px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  background: var(--color-neutral-50);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-cubic);
  transform: translateY(0);
  opacity: 0;
  animation: fadeInUp 0.5s var(--ease-out-cubic) forwards;
  text-decoration: none;
  display: block;
}

.food-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.food-card:nth-child(1) { animation-delay: 0.1s; }
.food-card:nth-child(2) { animation-delay: 0.2s; }
.food-card:nth-child(3) { animation-delay: 0.3s; }
.food-card:nth-child(4) { animation-delay: 0.4s; }

.food-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.food-card:last-child {
  margin-right: 5%;
}

.card-gradient {
  display: none;
}

.card-content {
  position: relative;
  z-index: 40;
  padding: var(--space-8);
}

.card-category {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.card-title {
  display: none;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
  transition: transform 0.3s ease;
}

.food-card:hover .card-image {
  transform: scale(1.05);
}

/* Responsive for Carousel */
@media (max-width: 768px) {
  .food-card {
    width: 280px;
    height: 360px;
  }
  
  .carousel-content {
    padding: var(--space-8) var(--space-4);
  }
  
  .carousel-controls {
    margin-right: var(--space-4);
  }
  
  .card-title {
    font-size: var(--text-xl);
    max-width: 200px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-neutral-900);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-neutral-400);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.product-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-cubic);
  cursor: pointer;
  will-change: transform;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s var(--ease-out-cubic);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-6);
}

.product-name {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-neutral-900);
}

.product-price {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-neutral-400);
  margin-bottom: var(--space-4);
}

.product-description {
  font-size: var(--text-sm);
  color: var(--color-neutral-400);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.quick-look-btn {
  background: var(--color-neutral-900);
  color: var(--color-white);
  border: none;
  padding: var(--space-2) var(--space-4);
  border-radius: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  will-change: transform;
}

.quick-look-btn:hover,
.quick-look-btn:focus-visible {
  background: var(--color-neutral-800);
  transform: translateY(-1px);
}

/* Collection Strip */
.collection-strip {
  background: var(--color-neutral-900);
  color: var(--color-white);
  padding: var(--space-15) 0;
}

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

.collection-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-8);
}

.collection-items {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.collection-item {
  padding: var(--space-4) var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s var(--ease-out-cubic);
  cursor: pointer;
  will-change: transform;
}

.collection-item:hover,
.collection-item:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Materials Section */
.materials-section {
  padding: var(--space-15) 0;
  background: var(--color-neutral-50);
}

.materials-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.materials-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--color-neutral-900);
}

.materials-description {
  font-size: var(--text-lg);
  color: var(--color-neutral-400);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.materials-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.feature h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-neutral-900);
}

.feature p {
  font-size: var(--text-sm);
  color: var(--color-neutral-400);
  line-height: 1.6;
}

.materials-image {
  position: relative;
}

.materials-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--color-neutral-900);
  color: var(--color-white);
  padding: var(--space-15) 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.newsletter-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: var(--text-base);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-button {
  background: var(--color-white);
  color: var(--color-neutral-900);
  border: none;
  padding: var(--space-3) var(--space-6);
  border-radius: 8px;
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  will-change: transform;
}

.newsletter-button:hover,
.newsletter-button:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Header styles for internal pages */
body:not(.home-page) .header {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  animation: none;
  position: relative; /* Changed from static to relative to maintain positioning context for dropdowns */
}

body:not(.home-page) .header .logo a {
  color: var(--color-neutral-900);
}

body:not(.home-page) .header .nav-link {
  color: var(--color-neutral-900);
}

body:not(.home-page) .header .nav-link:hover,
body:not(.home-page) .header .nav-link.active {
  background: rgba(11, 11, 11, 0.1);
  color: var(--color-neutral-900);
}

body:not(.home-page):not(.about-page):not(.contact-page) .header .mobile-menu-toggle {
  color: var(--color-neutral-900);
}

body:not(.home-page):not(.about-page):not(.contact-page) .header .mobile-menu-toggle:hover {
  background: rgba(11, 11, 11, 0.1);
}

/* White icon for about/contact pages with dark headers */
body.about-page .header .mobile-menu-toggle,
body.contact-page .header .mobile-menu-toggle {
  color: var(--color-white);
}

body.about-page .header .mobile-menu-toggle:hover,
body.contact-page .header .mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown styling for internal pages */
body:not(.home-page) .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body:not(.home-page) .dropdown-link {
  color: var(--color-neutral-900);
}

body:not(.home-page) .dropdown-link:hover {
  background: rgba(11, 11, 11, 0.1);
  color: var(--color-neutral-900);
}

/* Page Header Styles for Internal Pages */
.page-header {
  padding: var(--space-15) 0 var(--space-10);
  background: var(--color-neutral-900);
  color: var(--color-white);
  margin-top: 48px;
}

.page-header-content {
  text-align: center;
}

.page-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filter Section Styles */
.filter-section {
  padding: var(--space-8) 0;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-controls {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.filter-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-neutral-900);
}

.filter-select {
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-neutral-400);
  border-radius: 6px;
  background: var(--color-white);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--color-neutral-900);
}

/* Products Catalog Styles */
.products-catalog {
  padding: var(--space-12) 0;
  background: var(--color-neutral-50);
}

.load-more-section {
  text-align: center;
  margin-top: var(--space-12);
}

.load-more-btn {
  background: var(--color-neutral-900);
  color: var(--color-white);
  border: none;
  padding: var(--space-4) var(--space-8);
  border-radius: 8px;
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.load-more-btn:hover {
  background: var(--color-neutral-800);
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: var(--color-neutral-900);
  color: var(--color-white);
  padding: var(--space-15) 0 var(--space-8);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-15);
  margin-bottom: var(--space-12);
}

.footer-brand-section {
  max-width: 400px;
}

.footer-logo {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.footer-tagline {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.footer-contact-simple {
  margin-top: var(--space-4);
}

.footer-phone {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.footer-address {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.footer-hours {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.footer-nav-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer-column h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--space-3);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: var(--text-base);
}

.footer-column a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-white);
  color: var(--color-neutral-900);
  transform: translateY(-2px);
}

.social-link i {
  width: 20px;
  height: 20px;
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* Mobile Call Button */
.mobile-call-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-neutral-900);
  color: #ffffff;
  padding: var(--space-3) var(--space-6);
  border-radius: 50px;
  text-decoration: none;
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: var(--text-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Light background variant - primary button with white text */
.mobile-call-button.on-light {
  background: var(--color-neutral-900) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-call-button.on-light span {
  color: #ffffff !important;
}

/* Dark background variant - white button with dark text */
.mobile-call-button.on-dark {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.mobile-call-button.on-dark span {
  color: #000000 !important;
}

.mobile-call-button:hover {
  transform: translateX(-50%) translateY(-2px);
}

.mobile-call-button.on-light:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.mobile-call-button.on-dark:hover {
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.mobile-call-button.visible {
  display: flex;
}

.call-icon {
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNDU5cHgiIGhlaWdodD0iNDU5cHgiIHZpZXdCb3g9IjAgMCA0NTkgNDU5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NTkgNDU5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGc+PGcgaWQ9ImNhbGwiPjxwYXRoIHN0eWxlPSJmaWxsOiB3aGl0ZTsiIGQ9Ik05MS44LDE5OC45YzM1LjcsNzEuNCw5Ni45LDEzMC4wNSwxNjguMywxNjguM0wzMTYuMiwzMTEuMWM3LjY0OS03LjY0OSwxNy44NS0xMC4xOTksMjUuNS01LjFjMjguMDUsMTAuMiw1OC42NDksMTUuMyw5MS44LDE1LjNjMTUuMywwLDI1LjUsMTAuMiwyNS41LDI1LjV2ODYuN2MwLDE1LjMtMTAuMiwyNS41LTI1LjUsMjUuNUMxOTMuOCw0NTksMCwyNjUuMiwwLDI1LjVDMCwxMC4yLDEwLjIsMCwyNS41LDBoODkuMjVjMTUuMywwLDI1LjUsMTAuMiwyNS41LDI1LjVjMCwzMC42LDUuMSw2MS4yLDE1LjMsOTEuOGMyLjU1LDcuNjUsMCwxNy44NS01LjEsMjUuNUw5MS44LDE5OC45eiIvPjwvZz48L2c+PC9zdmc+') no-repeat center;
  background-size: contain;
  transition: background 0.3s ease;
}

.mobile-call-button.on-dark .call-icon {
  background: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNDU5cHgiIGhlaWdodD0iNDU5cHgiIHZpZXdCb3g9IjAgMCA0NTkgNDU5IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NTkgNDU5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGc+PGcgaWQ9ImNhbGwiPjxwYXRoIHN0eWxlPSJmaWxsOiAjMDAwMDAwOyIgZD0iTTkxLjgsMTk4LjljMzUuNyw3MS40LDk2LjksMTMwLjA1LDE2OC4zLDE2OC4zTDMxNi4yLDMxMS4xYzcuNjQ5LTcuNjQ5LDE3Ljg1LTEwLjE5OSwyNS41LTUuMWMyOC4wNSwxMC4yLDU4LjY0OSwxNS4zLDkxLjgsMTUuM2MxNS4zLDAsMjUuNSwxMC4yLDI1LjUsMjUuNXY4Ni43YzAsMTUuMy0xMC4yLDI1LjUtMjUuNSwyNS41QzE5My44LDQ1OSwwLDI2NS4yLDAsMjUuNUMwLDEwLjIsMTAuMiwwLDI1LjUsMGg4OS4yNWMxNS4zLDAsMjUuNSwxMC4yLDI1LjUsMjUuNWMwLDMwLjYsNS4xLDYxLjIsMTUuMyw5MS44YzIuNTUsNy42NSwwLDE3Ljg1LTUuMSwyNS41TDkxLjgsMTk4Ljl6Ii8+PC9nPjwvZz48L3N2Zz4=') no-repeat center;
  background-size: contain;
}

/* Ensure mobile-only nav items never show on desktop widths */
@media (min-width: 769px) {
  .mobile-menu-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-call-button {
    display: flex;
  }
}

/* Menu Page Styles */
.menu-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-hero-background {
  position: absolute;
  inset: 0;
}

.menu-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.menu-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-white);
}

.menu-hero-title {
  font-size: var(--text-5xl);
  font-weight: 900;
  margin-bottom: var(--space-2);
}

.menu-hero-subtitle {
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Menu Sections */
.menu-section {
  padding: var(--space-20) 0;
}

.menu-section + .menu-section {
  margin-top: var(--space-10);
}

.daily-specials {
  background: var(--color-white);
  margin-top: var(--space-10);
}

.hot-foods {
  background: var(--color-neutral-50);
}

.menu-section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.menu-section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  padding: var(--space-4);
  color: var(--color-neutral-900);
  margin-bottom: var(--space-3);
}

.menu-section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-neutral-800);
  max-width: 600px;
  margin: 0 auto;
}

/* Menu Category Styles */
.menu-category {
  max-width: 800px;
  margin: 0 auto var(--space-15) auto;
}

.menu-category + .menu-category {
  margin-top: var(--space-8);
}

.menu-category-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-neutral-900);
  text-align: center;
  margin-bottom: var(--space-3);
  letter-spacing: 0.05em;
}

.menu-category-description {
  font-size: var(--text-base);
  color: var(--color-neutral-800);
  text-align: center;
  margin-bottom: var(--space-8);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Menu Items */
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-6);
}

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

.menu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: var(--space-4);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-image {
  width: 100%;
  margin-bottom: var(--space-3);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

.no-items {
  text-align: center;
  color: var(--color-neutral-800);
  font-style: italic;
  padding: var(--space-8);
  background: var(--color-neutral-50);
  border-radius: 8px;
  margin: var(--space-4) 0;
}

.menu-list-vertical .no-items {
  list-style: none;
  padding: var(--space-8);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-2);
}

.menu-item-name {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-neutral-900);
  letter-spacing: 0.02em;
  flex: 1;
}

.menu-item-price {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-neutral-900);
}

.menu-item-description {
  font-size: var(--text-base);
  color: var(--color-neutral-800);
  line-height: 1.5;
  font-style: italic;
}

.menu-item-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.menu-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--space-4);
}

.option-text {
  font-size: var(--text-base);
  color: var(--color-neutral-800);
}

.option-price {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-neutral-900);
}

/* Menu Columns Layout (from display-menu.html) */
.menu-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Hot foods left larger */
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  position: relative;
}

/* Vertical divider between columns */
.menu-columns::before {
  content: "";
  position: absolute;
  /* place the divider exactly after the left column (1.2fr of 2.2fr), accounting for the gap */
  left: calc((100% - 32px) * (1.2 / 2.2));
  top: 0;
  bottom: -48px; /* extend past columns to meet bottom divider */
  width: 1px;
  background: rgba(0, 0, 0, 0.06); /* darker divider */
  transform: translateX(0);
  pointer-events: none;
}

.menu-column .section-title {
  margin-bottom: var(--space-2);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-neutral-900);
}

/* Give Hot Foods some breathing room from the center divider */
#hot-foods-section {
  padding-right: var(--space-3);
}

/* Vertical list layout */
.menu-list-vertical {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.menu-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-row:last-child {
  border-bottom: none;
}

.item-thumb {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  background: #000000; /* black square when image absent */
  flex-shrink: 0;
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.row-content {
  flex: 1;
}

.row-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}

.row-name {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-neutral-900);
  letter-spacing: 0.01em;
}

.row-price {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-neutral-900);
  white-space: nowrap;
}

.row-desc {
  font-size: 13px;
  color: var(--color-neutral-800);
  margin-top: 6px;
  line-height: 1.5;
}

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

  .menu-columns::before {
    display: none;
  }

  #hot-foods-section {
    padding-right: 0;
  }
}

/* Hot Foods Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

.menu-category-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--space-6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-category-card .card-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-neutral-900);
  margin-bottom: var(--space-4);
  text-align: center;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: var(--text-base);
  color: var(--color-neutral-800);
}

.menu-list li:last-child {
  border-bottom: none;
}

/* Menu Links Section */
.menu-links-section {
  padding: var(--space-15) 0;
  background: var(--color-neutral-900);
  color: var(--color-white);
}

.menu-links-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.menu-links-title {
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-white);
}

.menu-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.menu-link-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--space-6);
  text-decoration: none;
  color: var(--color-white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-link-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.menu-link-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.menu-link-card p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.link-arrow {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.menu-link-card:hover .link-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Navigation Dropdown */
.nav-item-dropdown {
  position: relative;
  z-index: 100; /* Ensure dropdown parent has proper stacking context */
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  height: 100%;
}

.dropdown-toggle i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: var(--space-1);
  transition: transform 0.2s ease;
  will-change: transform;
}

.nav-item-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown styling for home page */
body.home-page .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

body.home-page .dropdown-link {
  color: var(--color-neutral-900);
}

body.home-page .dropdown-link:hover {
  background: rgba(11, 11, 11, 0.1);
  color: var(--color-neutral-900);
}

/* Dropdown styling for menu page */
body.menu-page .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

body.menu-page .dropdown-link {
  color: var(--color-neutral-900);
}

body.menu-page .dropdown-link:hover {
  background: rgba(11, 11, 11, 0.1);
  color: var(--color-neutral-900);
}

/* Menu page dropdown should work with general rules */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: var(--space-2);
  min-width: 180px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  pointer-events: none;
  will-change: opacity, transform;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Ensure dropdown closes immediately when not hovering */
.nav-item-dropdown:not(:hover) .dropdown-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  pointer-events: none !important;
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out, transform 0.15s ease-out !important;
}

.dropdown-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  color: var(--color-neutral-900);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(11, 11, 11, 0.1);
  color: var(--color-neutral-900);
}

/* Dropdown text color - always dark for visibility */
.dropdown-menu {
  color: var(--color-neutral-900);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-hero-title {
    font-size: var(--text-4xl);
  }
  
  .menu-hero-subtitle {
    font-size: var(--text-xl);
  }
  
  .menu-links-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
}

.customer-testimonial {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: var(--space-4);
  margin-top: var(--space-4);
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--color-neutral-800);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-2);
}

.testimonial-author {
  font-size: var(--text-xs);
  color: var(--color-neutral-600);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-tagline {
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-15) 0;
  background: var(--color-neutral-50);
  color: var(--color-neutral-900);
  contain: layout style paint; /* CSS containment for better performance */
}

.testimonials-section .section-title {
  color: var(--color-neutral-900);
}

.testimonials-section .section-subtitle {
  color: var(--color-neutral-800);
}

/* Simple Contact Styles for About Page */
.simple-contact-info {
  text-align: center;
  margin-top: var(--space-6);
}

.simple-phone {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.simple-address {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.simple-hours {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}


.testimonial-carousel {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  transform: translateZ(0); /* Force hardware acceleration */
  backface-visibility: hidden; /* Prevent flickering */
}

.testimonial-image-container {
  position: relative;
  height: 128px;
  margin-bottom: var(--space-8);
}

.testimonial-gradient-bg {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 0;
  width: 480px;
  height: 480px;
  transform: translateX(-50%);
}

.testimonial-gradient-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -10;
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(108, 117, 125, 0.3), rgba(108, 117, 125, 0.15) 25%, rgba(108, 117, 125, 0.05) 50%, rgba(108, 117, 125, 0) 75%);
}

.testimonial-image-mask {
  height: 128px;
  mask-image: linear-gradient(0deg, transparent, white 20%, white);
  -webkit-mask-image: linear-gradient(0deg, transparent, white 20%, white);
}

.testimonial-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: -10;
  display: flex;
  height: 100%;
  flex-direction: column;
  opacity: 0;
  transition: opacity 200ms ease-out, transform 200ms ease-out;
  transform: rotate(30deg); /* Changed from -30deg to 30deg to start from right */
  will-change: opacity, transform;
}

.testimonial-image-wrapper.active {
  opacity: 1;
  transform: rotate(0deg);
  transition: opacity 200ms ease-in, transform 200ms ease-in;
}

.testimonial-image {
  position: relative;
  left: 50%;
  top: 44px;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.testimonial-text-container {
  margin-bottom: var(--space-8);
  transition: all 150ms ease-in-out;
  transition-delay: 300ms;
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-text-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.testimonial-quote {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 200ms ease-out, transform 200ms ease-out;
  transform: translateX(8px); /* Changed from -8px to 8px to come from right */
  will-change: opacity, transform;
}

.testimonial-quote.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 200ms ease-in, transform 200ms ease-in;
}

.quote-text {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-neutral-900);
  line-height: 1.4;
}

.quote-text::before {
  content: '"';
}

.quote-text::after {
  content: '"';
}

.testimonial-controls {
  margin-top: var(--space-4);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  height: 60px; /* Fixed height to prevent jumping */
}

.testimonial-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--color-neutral-800);
  cursor: pointer;
  transition: all 200ms ease;
  backdrop-filter: blur(4px);
  will-change: transform, background-color;
}

.testimonial-nav-btn:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-neutral-900);
  transform: scale(1.05);
}

.testimonial-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.testimonial-nav-btn.prev:hover i {
  transform: rotate(12deg);
}

.testimonial-nav-btn.next:hover i {
  transform: rotate(-12deg);
}

.testimonial-nav-btn i {
  width: 20px;
  height: 20px;
  transition: transform 300ms ease;
}

.arrow-icon {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  transition: transform 300ms ease;
}

.testimonial-nav-btn.prev:hover .arrow-icon {
  transform: rotate(12deg);
}

.testimonial-nav-btn.next:hover .arrow-icon {
  transform: rotate(-12deg);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.testimonial-name {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-neutral-800);
  font-weight: 500;
}

.testimonial-role {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-neutral-600);
}

@media (max-width: 768px) {
  .testimonial-controls {
    padding-top: var(--space-3);
  }
  
  .quote-text {
    font-size: var(--text-lg);
  }
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  margin: var(--space-4);
  animation: modalSlideIn 0.4s cubic-bezier(0.21, 0.47, 0.32, 0.98);
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.modal-body {
  padding: var(--space-8);
}

/* Animations */
@keyframes slideDown {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

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

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: var(--text-7xl);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: var(--text-6xl);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .materials-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

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

@media (max-width: 768px) {
  .container-custom {
    padding: 0 var(--space-4);
  }

  .header-content {
    height: 48px;
  }

  .logo a {
    font-size: var(--text-lg);
  }

  .hero-title {
    font-size: var(--text-5xl);
  }

  .hero-subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-8);
  }

  .info-items {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .materials-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: var(--space-3);
  }

  .footer-nav-section {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 16px;
    width: 48px;
    height: 48px;
    z-index: 10000;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
  }
  
  /* Mobile menu inherits color from logo - white by default */
  .header .mobile-menu-toggle {
    color: var(--color-white);
  }
  
  /* Dark text when header is scrolled */
  .header.scrolled .mobile-menu-toggle {
    color: var(--color-neutral-900);
  }
  
  /* Dark text when over footer */
  .header.over-footer .mobile-menu-toggle {
    color: var(--color-neutral-900);
  }
  
  /* Dark text on non-home pages */
  body:not(.home-page):not(.about-page):not(.contact-page):not(.catering-page) .header .mobile-menu-toggle {
    color: var(--color-neutral-900);
  }
  
  /* White text on dark header pages (about, contact) */
  body.about-page .header .mobile-menu-toggle,
  body.contact-page .header .mobile-menu-toggle {
    color: var(--color-white);
  }
  
  /* Catering page - follows scrolled state */
  body.catering-page .header .mobile-menu-toggle {
    color: var(--color-white);
  }
  
  body.catering-page .header.scrolled .mobile-menu-toggle {
    color: var(--color-neutral-900);
  }
  
  /* Match header height for proper centering */
  .header-content {
    height: 48px;
  }
  
  /* Hide dropdown menu on mobile - direct links work better */
  .nav-item-dropdown {
    display: none !important;
  }

  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background: #000000 !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    max-width: 400px;
  }

  .nav-list > li {
    display: block;
  }

  .mobile-menu-only {
    display: block;
  }

  .nav-link {
    display: block;
    padding: var(--space-4) var(--space-4);
    border-radius: 0;
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    transition: opacity 0.2s ease;
    color: var(--color-white) !important;
    background: transparent !important;
  }

  .nav-link.mobile-submenu-link {
    font-size: var(--text-lg);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7) !important;
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
    opacity: 0.9;
  }

  .nav-link:hover {
    opacity: 0.7;
    background: transparent !important;
  }

  /* Dropdown container in mobile */
  .nav.active .nav-item-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Reduce bottom padding when dropdown is open */
  .nav.active .dropdown-toggle.dropdown-open {
    padding-bottom: var(--space-1);
  }

  /* Rotate arrow when dropdown is open */
  .nav.active .dropdown-toggle.dropdown-open .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Reset desktop hover behavior on mobile */
  .nav-item-dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav.active .nav-item-dropdown .dropdown-menu {
    position: static !important;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0;
    margin: 0;
    border-radius: 0;
    width: 100%;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  
  .nav.active .nav-item-dropdown .dropdown-menu.active {
    max-height: 400px;
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
    pointer-events: auto !important;
  }
  
  .nav.active .dropdown-link {
    display: block;
    padding: var(--space-2) 0;
    font-size: var(--text-lg);
    text-align: center;
    border-radius: 0;
    border-bottom: none;
    transition: opacity 0.2s ease, color 0.2s ease;
    color: rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
  }
  
  .nav.active .dropdown-link:hover,
  .nav.active .dropdown-link:active {
    opacity: 0.8;
    color: var(--color-white) !important;
  }
  
  /* Disable desktop hover arrow rotation on mobile */
  .nav-item-dropdown:hover .dropdown-arrow {
    transform: none;
  }

  /* Hide mobile call button when menu is open */
  body.mobile-menu-open .mobile-call-button {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .page-title {
    font-size: var(--text-4xl);
  }

  .filter-controls {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
  }

  .filter-group {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
  }

  .filter-select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container-custom {
    padding: 0 var(--space-3);
  }

  .hero-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
  }

  .section-title {
    font-size: var(--text-xl);
  }

  .materials-title,
  .collection-title,
  .newsletter-title {
    font-size: var(--text-2xl);
  }

  .footer-nav-section {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .modal-content {
    margin: var(--space-2);
    max-height: 95vh;
  }

  .modal-body {
    padding: var(--space-4);
  }
}

/* Print styles */
@media print {
  .header,
  .hero-info-strip,
  .newsletter-section,
  .modal {
    display: none !important;
  }

  .hero-section {
    height: auto;
    page-break-after: always;
  }

  .product-card {
    break-inside: avoid;
    margin-bottom: var(--space-4);
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero-title {
    font-size: 24pt;
    color: black !important;
  }

  .section-title {
    font-size: 18pt;
    color: black !important;
  }
}

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

/* Contact Page Specific Styles */
.contact-section {
  padding: var(--space-15) 0;
  background: var(--color-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-neutral-900);
}

.contact-info p {
  font-size: var(--text-lg);
  color: var(--color-neutral-400);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-item i {
  width: 24px;
  height: 24px;
  color: var(--color-neutral-900);
  margin-top: var(--space-1);
}

.contact-item h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-neutral-900);
}

.contact-item p {
  font-size: var(--text-base);
  color: var(--color-neutral-400);
  line-height: 1.6;
  margin: 0;
}

.contact-form-container {
  background: var(--color-neutral-50);
  padding: var(--space-8);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--color-neutral-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3);
  border: 1px solid var(--color-neutral-400);
  border-radius: 6px;
  font-size: var(--text-base);
  transition: border-color 0.2s ease;
  background: var(--color-white);
}

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

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  background: var(--color-neutral-900);
  color: var(--color-white);
  border: none;
  padding: var(--space-4) var(--space-6);
  border-radius: 8px;
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: var(--space-4);
}

.submit-btn:hover {
  background: var(--color-neutral-800);
  transform: translateY(-1px);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .contact-form-container {
    padding: var(--space-6);
  }
}

/* About Page Specific Styles */
.story-section {
  padding: var(--space-15) 0;
  background: var(--color-white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.story-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--color-neutral-900);
}

.story-description {
  font-size: var(--text-lg);
  color: var(--color-neutral-400);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.story-description:last-child {
  margin-bottom: 0;
}

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.story-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Values Section */
.values-section {
  padding: var(--space-15) 0;
  background: var(--color-neutral-50);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.value-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s var(--ease-out-cubic);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--color-neutral-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--color-white);
}

.value-icon i,
.value-icon-svg {
  width: 28px;
  height: 28px;
}

.value-icon-svg {
  display: block;
  object-fit: contain;
}

.value-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-neutral-900);
}

.value-description {
  font-size: var(--text-base);
  color: var(--color-neutral-400);
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: var(--space-15) 0;
  background: var(--color-white);
}

.process-timeline {
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 60px;
  top: 120px;
  width: 2px;
  height: var(--space-10);
  background: linear-gradient(to bottom, var(--color-neutral-400), transparent);
}

.step-number {
  width: 120px;
  height: 120px;
  background: var(--color-neutral-900);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.step-content {
  padding: var(--space-4) 0;
}

.step-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-neutral-900);
}

.step-description {
  font-size: var(--text-lg);
  color: var(--color-neutral-400);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: var(--space-15) 0;
  background: var(--color-neutral-50);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-10);
  margin-top: var(--space-12);
}

.team-member {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-cubic);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
  position: relative;
  overflow: hidden;
}

.member-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-img {
  transform: scale(1.05);
}

.member-info {
  padding: var(--space-6);
}

.member-name {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-neutral-900);
}

.member-role {
  font-size: var(--text-base);
  color: var(--color-neutral-400);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.member-bio {
  font-size: var(--text-sm);
  color: var(--color-neutral-400);
  line-height: 1.6;
}

/* Awards Section */
.awards-section {
  padding: var(--space-15) 0;
  background: var(--color-white);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.award-item {
  text-align: center;
  padding: var(--space-6);
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-cubic);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.award-item:hover {
  background: var(--color-neutral-50);
  transform: translateY(-2px);
}

.award-icon {
  width: 48px;
  height: 48px;
  background: var(--color-neutral-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--color-white);
}

.award-icon i,
.award-icon-svg {
  width: 20px;
  height: 20px;
}

.award-icon-svg {
  display: block;
  object-fit: contain;
}

.award-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-neutral-900);
}

.award-year {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-neutral-400);
  margin-bottom: var(--space-2);
}

.award-description {
  font-size: var(--text-sm);
  color: var(--color-neutral-400);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .process-step {
    grid-template-columns: 80px 1fr;
    gap: var(--space-6);
  }

  .process-step:not(:last-child)::after {
    left: 40px;
    top: 80px;
    height: var(--space-8);
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: var(--text-lg);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-4);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

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

  .story-title,
  .step-title {
    font-size: var(--text-2xl);
  }

  .value-card,
  .team-member {
    padding: var(--space-6);
  }
}
