/* ========================================
   UMASHI DINING — Design Tokens & Styles
   Japanese Fusion • Dark Luxury • Immersive
   ======================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --font-display: 'Noto Serif JP', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* === DARK LUXURY PALETTE === */
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-surface-2: #1a1a1a;
  --color-surface-offset: #0e0e0e;
  --color-divider: #2a2a2a;
  --color-border: #333333;

  --color-text: #f0ece4;
  --color-text-muted: #9a958c;
  --color-text-faint: #5a5650;
  --color-text-inverse: #0a0a0a;

  /* Primary: Warm Gold */
  --color-primary: #c9a96e;
  --color-primary-hover: #dbbf8a;
  --color-primary-active: #a88c56;

  /* Accent: Deep Red (Japanese) */
  --color-accent: #8b2d2d;
  --color-accent-hover: #a33a3a;
  --color-accent-light: rgba(139, 45, 45, 0.15);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.15);
}

/* === GLOBAL === */
body {
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
}

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

.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

/* === LOADING SCREEN === */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-6);
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-logo {
  height: 160px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  animation: kanji-appear 1.5s var(--ease-out) forwards;
}
.loading-line {
  width: 80px;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  animation: line-grow 1.2s var(--ease-out) 0.3s forwards;
}
@keyframes kanji-appear {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes line-grow {
  to { transform: scaleX(1); }
}

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-5) 0;
  transition: background 0.4s var(--ease-out), padding 0.3s var(--ease-out), backdrop-filter 0.4s;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-3) 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}


.nav-links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover {
  color: var(--color-text);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: var(--text-sm);
  color: var(--color-bg) !important;
  background: var(--color-primary);
  padding: var(--space-2) var(--space-6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}
.nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.3s var(--ease-out);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.mobile-menu a:hover {
  color: var(--color-primary);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.5) 40%,
    rgba(10,10,10,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--space-6);
}
.hero-tagline {
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  margin-bottom: var(--space-6);
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.8s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2s forwards;
}
.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.2s forwards;
}
.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.4s forwards;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.8s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
  border: 1px solid var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* === SECTION COMMONS === */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}
.section-label {
  font-size: var(--text-xs);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  margin-bottom: var(--space-4);
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--color-primary);
  margin: var(--space-6) 0;
}

/* === CONCEPT SECTION (2-column) === */
.concept-section {
  background: var(--color-surface);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.concept-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.concept-image:hover img {
  transform: scale(1.03);
}
.concept-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.15);
  pointer-events: none;
}
.concept-text {
  padding: var(--space-8) 0;
}
.concept-text .section-label {
  text-align: left;
}
.concept-text .section-subtitle {
  margin-bottom: var(--space-8);
}

/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.feature-list li svg {
  flex-shrink: 0;
  color: var(--color-primary);
  width: 16px;
  height: 16px;
}

/* === MENU HIGHLIGHTS === */
.menu-section {
  text-align: center;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.menu-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--color-divider);
}
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
}
.menu-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  transition: padding 0.3s var(--ease-out);
}
.menu-card:hover .menu-card-overlay {
  padding-bottom: var(--space-8);
}
.menu-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.menu-card-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* === PARALLAX DIVIDER === */
.parallax-divider {
  position: relative;
  height: clamp(300px, 40vw, 500px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-divider img {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  object-fit: cover;
  opacity: 0.4;
}
.parallax-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
}
.parallax-quote {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-6);
}
.parallax-quote blockquote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--space-4);
}
.parallax-quote cite {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* === REVIEWS SECTION === */
.reviews-section {
  background: var(--color-bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.review-card {
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.review-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--color-primary);
  font-size: var(--text-lg);
  letter-spacing: 0.1em;
  line-height: 1;
}
.review-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.review-name {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
  display: block;
}
.review-date {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.reviews-summary {
  margin-top: var(--space-12);
  text-align: center;
}
.reviews-score {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-10);
  border: 1px solid var(--color-divider);
  background: var(--color-surface);
}
.score-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}
.score-stars {
  color: var(--color-primary);
  font-size: var(--text-xl);
  letter-spacing: 0.08em;
}
.score-count {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* === INFO / HOURS SECTION === */
.info-section {
  background: var(--color-surface);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-8);
}
.info-card {
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
  background: var(--color-surface-2);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.info-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow-glow);
}
.info-icon {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  width: 32px;
  height: 32px;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list li strong {
  color: var(--color-text);
  font-weight: 500;
}
.hours-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
  font-style: italic;
}

.info-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.info-card a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-size: var(--text-sm);
  margin-top: var(--space-3);
  transition: gap 0.3s var(--ease-out);
}
.info-card a:hover {
  gap: var(--space-3);
  color: var(--color-primary-hover);
}

/* === WOLT BANNER === */
.wolt-banner {
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-surface));
  border: 1px solid var(--color-divider);
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  margin-top: var(--space-16);
}
.wolt-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.wolt-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* === MAP SECTION === */
.map-section {
  position: relative;
}
.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--color-divider);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(1) brightness(0.6) contrast(1.2);
}

/* === FOOTER === */
.footer {
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer-brand .logo {
  margin-bottom: var(--space-4);
}
.footer-brand .logo-img {
  height: 36px;
}
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 320px;
  line-height: 1.7;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer-links a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.digisilta-credit {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.digisilta-credit a {
  color: var(--color-text-muted);
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

.reveal-up {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .reveal-up {
    clip-path: inset(100% 0 0 0);
    animation: reveal-clip linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

@keyframes reveal-clip {
  to { clip-path: inset(0 0 0 0); }
}

/* === FLOATING PARTICLES === */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) translateX(0); }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-10vh) translateX(50px); }
}

/* === GRAIN OVERLAY === */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .concept-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .concept-image {
    aspect-ratio: 16/9;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-title {
    font-size: var(--text-2xl);
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .menu-card {
    aspect-ratio: 16/9;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .wolt-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
