*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --coal: #1c1c1c;
  --charcoal: #2d2d2d;
  --stone: #555;
  --pebble: #888;
  --sand: #f7f5f2;
  --cream: #fffdfb;
  --rust: #8f1d1d;
  --rust-glow: rgba(143, 29, 29, 0.16);
  --swiper-navigation-size: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--cream);
  color: var(--coal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/bg_wave.png") repeat;
  background-size: auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}

/* Utility */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ======================= */
/* POPUP MODAL             */
/* ======================= */

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.img-wrapper {
  position: relative;
  height: 400px;
}

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

.overlay {
  position: absolute;
  top: 15%;
  left: 5%;
  width: fit-content;
  max-width: 80%;
  height: 70%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}

.overlay h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.overlay p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-btn {
  background: #8f1d1d;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: white;
  cursor: pointer;
  z-index: 2;
  padding: 5px 15px;
  background: #00000028;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .overlay {
    width: 100%;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .close-modal {
    top: 5px;
    right: 5px;
    padding: 0 10px;
  }

  .cta-btn {
    padding: 5px;
  }
}

/* ======================== */
/* HEADER                   */
/* ======================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

header.scrolled {
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-text-primary {
  font-family: "Permanent Marker", cursive;
  font-style: normal;
  font-size: 2.2rem;
  color: #8f1d1d;
  transform: rotate(-3deg);
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.logo-text-secondary {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 4px;
  margin-left: -6px;
  transition: color 0.4s ease;
}

header.scrolled .logo-text-secondary {
  color: var(--coal);
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.4s ease;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

nav a.nav-cta {
  text-shadow: none;
}

header.scrolled nav a {
  color: var(--stone);
  text-shadow: none;
}

nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width 0.3s ease;
}

nav a:not(.nav-cta):hover::after {
  width: 80%;
}

nav a:hover {
  color: #fff;
}

header.scrolled nav a:hover {
  color: var(--coal);
}

/* Nav status indicator */
.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin-right: 8px;
}

.nav-status .status-dot {
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  position: relative;
}

.nav-status .status-dot::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: rgba(76, 175, 80, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.nav-status .status-dot.closed {
  background: #e53935;
}

.nav-status .status-dot.closed::before {
  background: rgba(229, 57, 53, 0.3);
}

.nav-status .status-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

header.scrolled .nav-status {
  background: rgba(0, 0, 0, 0.05);
}

header.scrolled .nav-status .status-text {
  color: var(--coal);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.95);
  color: var(--coal) !important;
  padding: 12px 28px;
  border-radius: 8px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

header.scrolled .nav-cta {
  background: var(--coal);
  color: var(--cream) !important;
}

.nav-cta:hover {
  background: var(--coal);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header.scrolled .nav-cta:hover {
  background: #333;
  color: var(--cream) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Order Dropdown */
.order-dropdown-container {
  position: relative;
}

.order-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--cream);
  border-radius: 8px 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 200;
  overflow: hidden;
}

.order-dropdown.open {
  opacity: 1;
  visibility: visible;
}

.order-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--coal) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.order-dropdown-item:hover {
  background: var(--sand);
  padding-left: 24px;
  color: var(--coal) !important;
}

.order-dropdown-item::after {
  content: "→";
  margin-left: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  color: var(--coal);
}

.order-dropdown-item:hover::after {
  opacity: 0.6;
  transform: translateX(0);
}

.order-dropdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pebble);
  padding: 12px 20px 8px;
  display: block;
}

/* Hide mobile-only nav content on desktop */
.nav-mobile-footer {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  transition:
    all 0.3s ease,
    background 0.4s ease;
  border-radius: 2px;
}

header.scrolled .menu-toggle span {
  background: var(--coal);
}

.menu-toggle.active span {
  background: var(--coal);
}

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

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

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

/* ======================== */
/* HERO                     */
/* ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--coal);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  min-height: 100vh;
  padding: 40px 60px 40px max(48px, calc((100vw - 1320px) / 2 + 48px));
  background: transparent;
  pointer-events: none;
  user-select: none;
}

.hero-content .btn {
  pointer-events: auto;
}

.hero-content > span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.7s ease 0.2s forwards;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s ease 0.35s forwards;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.btn-dark {
  background: rgba(255, 255, 255, 0.95);
  color: var(--coal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-dark:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: var(--coal);
}

.order-cta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.7s ease 0.55s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.hero-buttons .btn {
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
}

.hero-buttons .btn-dark {
  background: rgba(255, 255, 255, 0.95);
  color: var(--coal);
  border-color: transparent;
}

.hero-buttons .btn-dark:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Helper classes from working site */
.h-100 {
  height: 100%;
}

.over-hidden {
  overflow: hidden;
}

/* Main slider - full screen behind content */
.main-slider.ignt-webgl {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  overflow: hidden;
  z-index: 0 !important;
  opacity: 0;
  animation: heroFadeIn 1.2s ease 0.5s forwards;
  background: var(--coal);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Dark overlay for text readability */
.main-slider.ignt-webgl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.main-slider .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-slider .bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-slider .swiper-container {
  width: 100%;
  height: 100%;
}

.main-slider .swiper-slide {
  overflow: hidden;
}

.main-slider .image-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-slider .cover-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* WebGL Canvas (injected by ignt-grid.js) */
.main-slider canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Allow swipe through to Swiper */
}

/* Hide displacement texture during initialization */
.main-slider img[src*="displacement"] {
  display: none !important;
}

/* WebGL active - hide slide images, let canvas render */
.main-slider.webgl-active .swiper-slide .image-bg {
  visibility: hidden;
}

/* Fallback for no WebGL */
.main-slider:not(.webgl-active) .swiper-slide img {
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

/* Parallax title fade on scroll */
.ignt-hero-parallax-title {
  will-change: transform, opacity;
}

/* ======================== */
/* REVEAL ANIMATIONS        */
/* ======================== */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

/* ======================== */
/* SECTION TAG              */
/* ======================== */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.6);
}

/* ======================== */
/* JAPANESE WAVE DIVIDER    */
/* ======================== */
.wave-divider {
  width: 100%;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.wave-divider.sm {
  height: 24px;
}

.wave-divider.lg {
  height: 60px;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: var(--sand);
}

.wave-divider.rust svg {
  fill: var(--rust);
}

.wave-divider.sand svg {
  fill: var(--sand);
}

.wave-divider.cream svg {
  fill: var(--cream);
}

.wave-divider.coal svg {
  fill: var(--coal);
}

/* Subtle opacity versions */
.wave-divider.subtle svg {
  opacity: 0.15;
}

.wave-divider.subtle-light svg {
  opacity: 0.08;
}

/* ======================== */
/* DECORATIVE SVG ELEMENTS  */
/* ======================== */
.deco-svg {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.deco-svg.top-right {
  top: 60px;
  right: 80px;
}

.deco-svg.top-left {
  top: 80px;
  left: 60px;
}

.deco-svg.bottom-right {
  bottom: 60px;
  right: 100px;
}

.deco-svg.bottom-left {
  bottom: 80px;
  left: 80px;
}

/* Wave divider - above footer */
.wave-divider {
  width: 100%;
  height: 40px;
  background: transparent;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  fill: #f6f5f2;
}

.wave-divider.subtle svg {
  opacity: 1;
}

.deco-svg.flower {
  width: 80px;
  height: 80px;
  opacity: 0.12;
}

.deco-svg.flower.sm {
  width: 50px;
  height: 50px;
  opacity: 0.08;
}

.deco-svg.flower.lg {
  width: 120px;
  height: 120px;
  opacity: 0.08;
}

.deco-svg.sushi {
  width: 100px;
  height: 60px;
  opacity: 0.1;
}

.deco-svg.sushi.sm {
  width: 60px;
  height: 36px;
  opacity: 0.08;
}

.deco-svg.sushi.lg {
  width: 140px;
  height: 84px;
  opacity: 0.08;
}

.deco-svg.light {
  opacity: 0.15;
}

.deco-svg.light.sm {
  opacity: 0.1;
}

/* Hero blossom - Fan out entrance animation */
.hero-blossom {
  position: absolute;
  top: 180px;
  left: 420px;
  width: 70px;
  height: 70px;
  opacity: 0;
  transform: scale(0.3) rotate(-90deg);
  animation: fanOut 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(196, 86, 58, 0.2));
}

@keyframes fanOut {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-90deg);
  }

  40% {
    opacity: 0.7;
  }

  100% {
    opacity: 0.85;
    transform: scale(1) rotate(0deg);
  }
}

/* Hero cherry blossom branch - blooms in */
.hero-cherry-blossom {
  position: absolute;
  left: -30px;
  bottom: -19px;
  height: 37%;
  width: auto;
  max-height: 800px;
  pointer-events: none;
  z-index: 1;
  transform: scaleX(-1);
  clip-path: inset(100% 0 0 0);
  animation: bloomIn 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes bloomIn {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* Blossom styles - for other sections */
.deco-svg.blossom {
  width: 60px;
  height: 60px;
  opacity: 0.25;
  animation: subtleFloat 8s ease-in-out infinite;
}

.deco-svg.blossom.sm {
  width: 40px;
  height: 40px;
  opacity: 0.18;
  animation-delay: -2s;
}

.deco-svg.blossom.lg {
  width: 90px;
  height: 90px;
  opacity: 0.2;
  animation-delay: -4s;
}

/* Fan styles */
.deco-svg.fan {
  width: 80px;
  height: 80px;
  opacity: 0.2;
  animation: subtleFloat 10s ease-in-out infinite;
}

.deco-svg.fan.sm {
  width: 50px;
  height: 50px;
  opacity: 0.15;
  animation-delay: -3s;
}

.deco-svg.fan.lg {
  width: 120px;
  height: 120px;
  opacity: 0.18;
  animation-delay: -5s;
}

/* Consistent subtle float animation */
@keyframes subtleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ======================== */
/* SIGNATURE STRIP          */
/* ======================== */
.signature-strip {
  background: var(--coal);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.strip-track {
  display: flex;
  width: max-content;
  --marquee-distance: 50%;
  animation: marquee-infinite 30s linear infinite;
}

.strip-content {
  display: flex;
  gap: 32px;
  padding-right: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.strip-content span {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.strip-dot {
  color: var(--rust) !important;
  font-size: 0.5rem;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--marquee-distance)));
  }
}

.signature-strip[data-rotate="false"] {
  display: flex;
  justify-content: center;
}

.signature-strip[data-rotate="false"] .strip-track {
  animation-play-state: paused;
}

.signature-strip[data-background] {
  background: transparent;
}

.signature-strip[data-text] .strip-content span {
  color: transparent;
}

/* ======================== */
/* ABOUT - EDITORIAL SPLIT   */
/* ======================== */
.about {
  padding: 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.about-content {
  padding: 120px 80px 120px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--cream);
  z-index: 5;
}

/* Dramatic vertical line accent */
.about-content::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 120px;
  bottom: 120px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--rust), transparent);
  opacity: 0.3;
}

.about-tag {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.about-tag::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--rust);
  flex-shrink: 0;
}

.about h2 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--coal);
  margin-bottom: 40px;
}

.about h2 span {
  font-style: italic;
  color: var(--rust);
}

.about-text {
  max-width: 480px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 24px;
}

.about-text p:first-of-type::first-letter {
  font-family: "Libre Baskerville", serif;
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin-right: 12px;
  margin-top: 6px;
  color: var(--coal);
}

/* Stats row with dramatic numbers */
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-left: -64px;
  padding-left: 64px;
}

.about-stat {
  position: relative;
}

.about-stat-number {
  font-family: "Libre Baskerville", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--coal);
  line-height: 1;
  display: block;
}

.about-stat-number::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--rust);
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 16px;
  display: block;
}

/* Image side with dramatic overlap */
.about-visual {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}

.about-image-main {
  position: absolute;
  inset: 60px;
  overflow: hidden;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.about:hover .about-image-main img {
  transform: scale(1.05);
}

/* Accent card - appears from under left content */
.about-accent-card {
  position: absolute;
  bottom: 20%;
  left: -12px;
  background: var(--coal);
  color: var(--cream);
  padding: 32px;
  width: 260px;
  z-index: 2;
}

.about-accent-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--rust);
  border-left: 2px solid var(--rust);
}

.about-accent-number {
  font-family: "Libre Baskerville", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.about-accent-text {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Freshness stamp badge */
.about-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 90px;
  height: 90px;
  border: 3px solid var(--rust);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  background: rgba(255, 253, 251, 0.95);
  transform: rotate(-12deg);
}

.about-badge-text {
  font-family: "Oswald", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rust);
}

.about-badge-main {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust);
  line-height: 1.1;
}

/* Large background word */
.about-watermark {
  position: absolute;
  bottom: -20px;
  right: -40px;
  font-family: "Libre Baskerville", serif;
  font-size: 20vw;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

/* ======================== */
/* MENU - PREMIUM SHOWCASE  */
/* ======================== */
.menu {
  padding: 80px 0 100px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.menu::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(196, 86, 58, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.menu::after {
  content: "";
  position: absolute;
  bottom: 100px;
  left: -50px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(196, 86, 58, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.menu-intro {
  text-align: left;
  max-width: none;
  margin: 0 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
}

.menu-intro-left {
  position: relative;
}

.menu-intro h2 {
  font-size: 3.5rem;
  margin-bottom: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.menu-intro-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-intro p {
  color: var(--stone);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 400px;
  margin: 0;
}

.menu-scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pebble);
}

.menu-scroll-hint::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--rust);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  perspective: 1000px;
}

.menu-card {
  background: var(--cream);
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(196, 86, 58, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.menu-card.featured {
  box-shadow: 0 8px 40px rgba(196, 86, 58, 0.12);
  border: none;
  position: relative;
}

.menu-card.featured::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  right: 20px;
  height: 8px;
  background: var(--rust);
  opacity: 0.8;
  z-index: -1;
}

.menu-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.5s ease;
  filter: brightness(0.95);
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.1);
  filter: brightness(1.02);
}

/* Gradient overlay on image */
.menu-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-card:hover .menu-card-image::after {
  opacity: 1;
}

.menu-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cream);
  color: var(--coal);
  padding: 8px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

.menu-card:hover .menu-card-badge {
  background: var(--coal);
  color: var(--cream);
}

.menu-card-badge.hot {
  background: #e53935;
  color: white;
}

.menu-card:hover .menu-card-badge.hot {
  background: #c62828;
}

.menu-card-badge.chef {
  background: var(--rust);
  color: white;
}

.menu-card-badge.premium {
  background: linear-gradient(135deg, #1c1c1c, #333);
  color: #daa520;
}

.menu-card-content {
  padding: 28px;
  position: relative;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.menu-card-header h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.25rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.menu-card:hover .menu-card-header h3 {
  color: var(--coal);
}

.menu-card-price {
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--rust);
  position: relative;
}

.menu-card-content > p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.65;
}

.menu-cta {
  text-align: center;
  margin-top: 72px;
  position: relative;
}

.menu-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pebble), transparent);
  opacity: 0.3;
  z-index: 0;
}

.btn-outline {
  background: var(--cream);
  color: var(--coal);
  border: 1px solid var(--coal);
  padding: 18px 40px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.btn-outline:hover {
  background: var(--coal);
  color: var(--cream);
  letter-spacing: 0.15em;
}

/* ======================== */
/* CATERING                 */
/* ======================== */
.catering {
  padding: 160px 0;
  background: var(--coal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern overlay */
.catering::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Accent glow */
.catering::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(196, 86, 58, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.catering-bg {
  display: none;
}

.catering-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.catering-content {
  position: relative;
}

.catering-content .section-tag {
  color: var(--rust);
  margin-bottom: 20px;
}

.catering-content h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.catering-content > p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 48px;
  font-size: 1.05rem;
  max-width: 400px;
}

.catering-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.tier {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: default;
}

.tier:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tier::before {
  display: none;
}

/* Number indicator */
.tier-number {
  font-family: "Libre Baskerville", serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
}

.tier:hover .tier-number {
  color: var(--rust);
}

.tier-size {
  font-family: "Libre Baskerville", serif;
  font-size: 1.4rem;
  min-width: auto;
  transition: all 0.4s ease;
}

.tier:hover .tier-size {
  transform: translateX(8px);
}

.tier-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.tier-serves {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tier-price {
  font-family: "Libre Baskerville", serif;
  color: var(--cream);
  font-weight: 400;
  font-size: 1.25rem;
  transition: all 0.4s ease;
}

.tier:hover .tier-price {
  color: var(--rust);
}

.tier:hover {
  background: linear-gradient(
    90deg,
    rgba(196, 86, 58, 0.08) 0%,
    transparent 100%
  );
  border-color: rgba(196, 86, 58, 0.2);
}

.tier:hover + .tier {
  border-top-color: rgba(196, 86, 58, 0.2);
}

/* Remove old tier-details structure */
.tier-details {
  display: none;
}

.catering-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  font-style: normal;
  letter-spacing: 0.02em;
}

.btn-rust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--cream);
  padding: 18px 40px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--rust);
  border-radius: 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-rust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-rust:hover::before {
  transform: scaleX(1);
}

.btn-rust:hover {
  color: #fff;
  border-color: var(--rust);
}

.btn-rust::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn-rust:hover::after {
  transform: translateX(4px);
}

/* Visual side - dramatic image treatment */
.catering-visual {
  position: relative;
  padding: 40px;
}

.catering-image-stack {
  position: relative;
}

/* Decorative frame */
.catering-image-stack::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 40px;
  bottom: 40px;
  border: 1px solid rgba(196, 86, 58, 0.3);
  pointer-events: none;
  transition: all 0.6s ease;
}

.catering-image-stack:hover::before {
  top: -30px;
  left: -30px;
}

.catering-image-stack .stack-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) contrast(1.05);
}

.catering-image-stack:hover .stack-main {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  filter: brightness(1) contrast(1.05);
}

/* Corner accent */
.stack-accent {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 120px;
  height: 120px;
  background: var(--rust);
  z-index: 1;
  opacity: 0.9;
  transition: all 0.6s ease;
}

.catering-image-stack:hover .stack-accent {
  width: 140px;
  height: 140px;
  bottom: -16px;
  right: -16px;
}

/* Floating label on image */
.catering-visual::after {
  content: "Party Platters";
  position: absolute;
  bottom: 80px;
  right: 0;
  background: var(--coal);
  color: var(--cream);
  padding: 16px 32px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
  transform: translateX(20%);
}

/* ======================== */
/* CONTACT - ASYMMETRIC     */
/* ======================== */
.contact {
  padding: 160px 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6)),
    url("images/mezcla-hq-1.png") center center / cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

/* Large background text */
.contact::before {
  content: none;
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: "Libre Baskerville", serif;
  font-size: 20vw;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
}

.contact > .container {
  position: relative;
  z-index: 1;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 120px;
}

.contact-left .section-tag {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-left h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
}

.contact-left h2 span {
  color: #ffd1b9;
  font-style: italic;
}

.contact-left > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 360px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

/* Status indicator - simple inline */
.contact-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  position: relative;
}

.status-dot::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: rgba(76, 175, 80, 0.25);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.status-dot.closed {
  background: #e53935;
}

.status-dot.closed::before {
  background: rgba(229, 57, 53, 0.25);
}

.status-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Phone CTA - light */
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coal);
  text-decoration: none;
  padding: 14px 28px;
  background: white;
  border: 1px solid var(--coal);
  border-radius: 0;
  transition: all 0.3s ease;
}

.contact-phone:hover {
  background: var(--coal);
  color: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.phone-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.contact-phone:hover .phone-icon {
  transform: rotate(15deg) scale(1.1);
}

/* Right side - Card stack */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-block {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--rust);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.contact-info-block:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-info-block:hover::before {
  transform: scaleY(1);
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
  display: block;
}

.contact-info-value {
  font-family: "Libre Baskerville", serif;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--coal);
}

.contact-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--stone);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.contact-directions:hover {
  color: var(--rust);
}

.contact-hours {
  margin-top: 0;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--sand);
}

.contact-hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-hours-day {
  color: var(--stone);
  font-size: 0.95rem;
}

.contact-hours-time {
  font-family: "Libre Baskerville", serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--coal);
}

/* Decorative elements */
.contact-decor {
  display: none;
}

/* FOOTER - PREMIUM         */
/* ======================== */

/* Gradient fade transition from cream to sand */
.footer-transition {
  height: 120px;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--sand) 100%);
}

footer {
  background-color: var(--sand);
  background-image: url("images/bg_wave.png");
  background-repeat: repeat;
  background-size: auto;
  /* native size */
  color: var(--coal);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Overlay with fade at top and bottom - only for page footer, not menu overlay */
footer:not(.menu-overlay-footer)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 25%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.95) 75%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
}

.footer-top {
  padding: 80px 0 60px;
  position: relative;
}

/* Large watermark behind footer */
.footer-watermark {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.footer-watermark .logo-text-primary {
  font-size: 8vw;
  opacity: 0.08;
}

.footer-watermark .logo-text-secondary {
  font-size: 8vw;
  color: var(--stone);
  opacity: 0.06;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  padding-right: 40px;
}

.footer-brand .logo {
  margin-bottom: 24px;
}

/* Footer logo - proper sizing and dark colors on light bg */
.footer-brand .logo-text-primary {
  font-size: 2rem;
}

.footer-brand .logo-text-secondary {
  font-size: 0.9rem;
  color: var(--coal);
  margin-left: -4px;
}

.footer-brand > p {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 320px;
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  color: var(--coal);
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--coal);
  color: var(--cream);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
}

.footer-column a {
  display: block;
  color: var(--coal);
  text-decoration: none;
  padding: 8px 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-column a::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--rust);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--rust);
  padding-left: 8px;
}

.footer-column a:hover::before {
  opacity: 1;
  left: -8px;
}

.footer-column p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-column .footer-phone {
  display: inline-block;
  font-family: "Libre Baskerville", serif;
  font-size: 1.2rem;
  color: var(--rust);
  text-decoration: none;
  margin-top: 8px;
  padding: 0;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.footer-column .footer-phone::before {
  display: none;
}

.footer-column .footer-phone:hover {
  color: var(--coal);
  padding-left: 0;
  opacity: 0.8;
}

.footer-hours {
  margin-top: 16px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}

.footer-hours-day {
  color: var(--stone);
}

.footer-hours-time {
  color: var(--coal);
  font-weight: 500;
}

.footer-bottom {
  background: transparent;
  padding: 24px 0;
  position: relative;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--stone);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--coal);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

.footer-credit {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--stone);
}

.footer-credit .heart {
  color: var(--rust);
  opacity: 1;
}

.footer-credit a {
  color: var(--coal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* ======================== */
/* TABLET/MEDIUM STYLES     */
/* ======================== */
@media (max-width: 1024px) {
  /* Hero content takes more space at medium viewport */
  .hero-content {
    padding: 100px 48px 60px;
    width: 75%;

    max-width: 75%;
  }

  .hero-images {
    height: 50vh;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  /* Bento grid responsive */
  .about-bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bento-image {
    grid-column: 1 / -1;
  }

  /* Menu cards responsive */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Catering responsive */
  .catering-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .catering-visual {
    order: -1;
  }

  .catering-image-stack .stack-main {
    height: 320px;
  }

  .stack-accent {
    display: none;
  }

  /* Contact responsive */
  .contact-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-left {
    padding-right: 0;
    border-right: none;
    text-align: center;
  }

  .contact-left p {
    margin: 0 auto 40px;
  }

  .contact-right {
    padding-left: 0;
  }

  /* Footer responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 24px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 60px 40px 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  /* Subtle top accent line */
  nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rust), transparent);
  }

  nav::after {
    display: none;
  }

  nav.open {
    right: 0;
  }

  nav a {
    font-size: 1.3rem;
    font-family: "Libre Baskerville", serif;
    color: var(--coal);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    position: relative;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: var(--rust);
  }

  nav a::before {
    display: none;
  }

  /* Hide status in nav links area - will show in footer */
  .nav-status {
    display: none;
  }

  /* Hide Order Now button on mobile */
  .nav-cta {
    display: none !important;
  }

  /* Order section in mobile - clean layout */
  .order-dropdown-container {
    width: 100%;
    margin-top: 48px;
  }

  .order-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .order-dropdown-label {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    padding: 0;
    margin-bottom: 16px;
    display: block;
  }

  .order-dropdown-item {
    font-family: "Libre Baskerville", serif;
    font-size: 0.95rem;
    color: var(--coal);
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: block;
  }

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

  .order-dropdown-item::after {
    display: none;
  }

  .order-dropdown-item:hover {
    color: var(--rust);
  }

  /* Mobile nav footer with contact info */
  .nav-mobile-footer {
    display: block;
    margin-top: auto;
    padding-top: 16px;
  }

  .nav-mobile-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--rust), transparent);
    margin-bottom: 24px;
  }

  .nav-mobile-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .nav-mobile-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e74c3c;
  }

  .nav-mobile-status-dot.open {
    background: #27ae60;
  }

  .nav-mobile-status-text {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coal);
  }

  .nav-mobile-phone {
    font-family: "Libre Baskerville", serif;
    font-size: 1.4rem;
    color: var(--coal);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    padding: 10px 0;
    transition: color 0.3s ease;
  }

  .nav-mobile-phone:hover {
    color: var(--rust);
  }

  .nav-mobile-address {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.6;
    margin: 0 0 12px;
  }

  .nav-mobile-social {
    display: flex;
    gap: 16px;
  }

  .nav-mobile-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coal);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
  }

  .nav-mobile-social a::before {
    display: none;
  }

  .nav-mobile-social a:hover {
    background: var(--rust);
    border-color: var(--rust);
    color: white;
    text-decoration: none;
  }

  .nav-mobile-social a:hover::before,
  .nav-mobile-social a:hover::after {
    display: none;
  }

  .nav-footer-hours {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
  }

  /* About mobile */
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-content {
    padding: 80px 32px;
  }

  .about-content::before {
    display: none;
  }

  .about-visual {
    min-height: 60vh;
  }

  .about-image-main {
    inset: 32px;
  }

  .about-accent-card {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: 0 32px;
    padding: 24px;
  }

  .about-badge {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 20px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }

  .about-watermark {
    font-size: 30vw;
  }

  /* Menu cards mobile */
  .menu-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .menu-intro h2 {
    font-size: 2.5rem;
  }

  .menu-intro p {
    max-width: 100%;
  }

  .menu-scroll-hint {
    display: none;
  }

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

  .menu-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* Catering mobile */
  .tier {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .tier-details {
    width: 100%;
  }

  /* Footer mobile */
  .footer-links,
  .footer-contact {
    text-align: left;
  }

  .hero-content {
    max-width: 100% !important;
    width: 100%;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .order-cta {
    text-align: center;
  }

  .hero-buttons {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  /* Signature strip slower on mobile */
  .strip-content {
    animation-duration: 30s;
  }

  /* Contact mobile */
  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left {
    position: static;
    text-align: center;
  }

  .contact-left > p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-status {
    justify-content: center;
  }

  .contact-phone {
    width: 100%;
    justify-content: center;
  }

  .contact-left h2 {
    font-size: 2.2rem;
  }

  /* Contact section mobile - reduce top padding */
  .contact {
    padding: 60px 0 80px;
  }

  .contact-info-block {
    padding: 24px;
  }

  .contact-info-value {
    font-size: 1.1rem;
  }

  /* Footer grid mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-brand p {
    max-width: 400px;
    margin: 0 auto 24px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column h4 {
    font-size: 0.65rem;
  }

  .footer-column a,
  .footer-column p {
    font-size: 0.85rem;
  }

  .footer-column .footer-phone {
    font-size: 1rem;
  }

  .footer-hours-row {
    flex-direction: column;
    gap: 2px;
    text-align: left;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* Overlay for mobile menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  z-index: 90;
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ======================== */
/* FULLSCREEN MENU OVERLAY  */
/* ======================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.menu-overlay-pdf-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-overlay-pdf {
  width: 100%;
  height: 100%;
  border: none;
  flex: 1;
  min-height: 0;
}

/* Header */
.menu-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--cream);
  flex-shrink: 0;
  /* Override generic header styles */
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  z-index: auto !important;
  backdrop-filter: none !important;
}

.menu-overlay-title {
  font-family: "Libre Baskerville", serif;
  font-size: 1.5rem;
  color: var(--coal);
}

.menu-overlay-close {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.menu-overlay-close:hover {
  transform: rotate(90deg);
}

.menu-overlay-close::before,
.menu-overlay-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--coal);
  transform-origin: center;
}

.menu-overlay-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-overlay-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Category Tabs */
.menu-overlay-tabs {
  display: flex !important;
  flex-direction: row !important;
  gap: 8px;
  padding: 20px 48px;
  overflow-x: auto;
  overflow-y: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--sand);
  flex-shrink: 0;
  min-height: 64px;
  max-height: 80px !important;
  align-items: center;
  /* Override mobile nav styles */
  position: static !important;
  right: auto !important;
  left: auto !important;
  width: 100% !important;
  height: auto !important;
  top: auto !important;
  box-shadow: none !important;
  justify-content: flex-start !important;
}

.menu-overlay-tabs::-webkit-scrollbar {
  display: none;
}

.menu-overlay-tabs {
  cursor: grab;
}

.menu-overlay-tabs.dragging {
  cursor: grabbing;
  user-select: none;
}

.menu-tab {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid transparent;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-tab:hover {
  color: var(--coal);
  background: rgba(0, 0, 0, 0.03);
}

.menu-tab.active {
  background: var(--cream);
  color: var(--coal);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Content Area */
.menu-overlay-content {
  flex: 1;
  overflow-y: auto;
  padding: 40px 48px 80px;
  scroll-behavior: smooth;
}

.menu-overlay-content::-webkit-scrollbar {
  width: 6px;
}

.menu-overlay-content::-webkit-scrollbar-track {
  background: transparent;
}

.menu-overlay-content::-webkit-scrollbar-thumb {
  background: var(--pebble);
  border-radius: 3px;
}

/* Category Section */
.menu-category {
  margin-bottom: 72px;
  position: relative;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.menu-category-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--rust);
}

.menu-category-number {
  font-family: "Libre Baskerville", serif;
  font-size: 0.9rem;
  color: var(--pebble);
  font-style: italic;
  min-width: 32px;
}

.menu-category-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1.6rem;
  color: var(--coal);
  margin: 0;
  letter-spacing: -0.01em;
}

.menu-category-note {
  font-size: 0.7rem;
  color: white;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--rust);
  padding: 6px 12px;
  border-radius: 2px;
  margin-left: auto;
}

/* Menu Items Grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-item {
  background: white;
  padding: 24px 28px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rust), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover {
  border-color: rgba(196, 86, 58, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.menu-item:hover::before {
  transform: scaleX(1);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.menu-item-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  color: var(--coal);
  margin: 0;
  line-height: 1.35;
  flex: 1;
}

/* Dotted leader line effect */
.menu-item-header::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted var(--pebble);
  opacity: 0.4;
  margin: 0 8px 4px;
  min-width: 20px;
}

.menu-item-price {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coal);
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.menu-item:hover .menu-item-price {
  background: var(--rust);
  color: white;
}

.menu-item-description {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}

/* Compact grid for A La Carte / Rolls */
.menu-items-grid.compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.menu-items-grid.compact .menu-item {
  padding: 16px 20px;
}

.menu-items-grid.compact .menu-item-header::after {
  display: none;
}

.menu-items-grid.compact .menu-item-name {
  font-size: 0.95rem;
}

/* Restaurant Info */
.menu-overlay-footer {
  padding: 20px 48px;
  background: #1c1c1c !important;
  border-top: none;
  flex-shrink: 0;
}

.menu-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.menu-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-footer-brand .logo-text-primary {
  font-family: "Permanent Marker", cursive;
  font-size: 1.6rem;
  color: #d32f2f !important;
  transform: rotate(-2deg);
}

.menu-footer-brand .logo-text-secondary {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fffdfb !important;
  margin-left: -4px;
}

.menu-footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-footer-phone {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  color: #fffdfb !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-footer-phone:hover {
  color: var(--rust);
}

.menu-footer-hours {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8) !important;
}

.menu-footer-notes {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65) !important;
  text-align: right;
}

/* Extra Large Screens */
@media (min-width: 1440px) {
  .menu-items-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .menu-overlay-header,
  .menu-overlay-tabs,
  .menu-overlay-content,
  .menu-overlay-footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .menu-overlay-header {
    padding: 16px 20px;
  }

  .menu-overlay-title {
    font-size: 1.2rem;
  }

  .menu-overlay-tabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding: 12px 16px;
    gap: 8px;
    position: static !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: 70px !important;
    top: auto !important;
    box-shadow: none !important;
    background: var(--sand) !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .menu-overlay-tabs::before {
    display: none !important;
  }

  /* Scroll fade indicators */
  .menu-overlay-tabs::before,
  .menu-overlay-tabs::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    pointer-events: none;
    z-index: 2;
  }

  .menu-overlay-tabs::before {
    left: 0;
    background: linear-gradient(90deg, var(--sand), transparent);
  }

  .menu-overlay-tabs::after {
    right: 0;
    background: linear-gradient(-90deg, var(--sand), transparent);
  }

  .menu-tab {
    padding: 12px 18px;
    font-size: 0.72rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .menu-overlay-content {
    padding: 24px 20px 60px;
  }

  .menu-items-grid,
  .menu-items-grid.compact {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-category-name {
    font-size: 1.3rem;
  }

  .menu-category-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .menu-category-note {
    margin-left: 0;
  }

  .menu-item {
    padding: 20px;
  }

  .menu-overlay-footer {
    padding: 20px;
  }

  .menu-footer-info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .menu-footer-contact {
    display: none;
  }

  .menu-footer-notes {
    text-align: right;
  }
}

/* Mobile View Full Menu Button */
.mobile-menu-btn {
  display: none;
  width: 100%;
  padding: 14px 24px;
  margin-top: 16px;
  background: var(--coal);
  color: var(--cream);
  border: none;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--rust);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}

/* ======================== */
/* GALLERY SECTION      */
/* ======================== */

.swiper-button-next,
.swiper-button-prev {
  transform: translateY(-100%) !important;
}

.gallery {
  padding: 100px 0 20px;
  background: var(--cream);
}

.gallery .swiper {
  width: 85%;
  margin: 0 auto;
  overflow: hidden;
}

.gallery .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.gallery .swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery .swiper-slide:hover img {
  transform: scale(1.05);
}

.gallery .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.gallery .swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}

.gallery .swiper-pagination-bullet-active {
  opacity: 1;
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
  color: #000;
  transition: opacity 0.3s ease;
}

.gallery .swiper-button-next:hover,
.gallery .swiper-button-prev:hover {
  opacity: 0.7;
}

/* ============== */
/* ONLINE ORDER   */
/* ============== */
.order-section {
  position: relative;
  padding: 100px 20px 0;
  margin-bottom: 100px;
  color: #fff;
  overflow: hidden;
}

.order-section .background-image-holder {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.order-section .background-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.order-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.order-section .content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
  flex-wrap: wrap;
}

.order-section .text {
  flex: 1 1 500px;
  margin-bottom: 100px;
}

.order-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.order-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.order-section .btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ff7a18;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.order-section .btn:hover {
  background: #ff5a00;
  transform: translateY(-2px);
}

.order-section .image {
  flex: 1 1 350px;
  text-align: center;
  margin: -7px;
}

.order-section .image img {
  max-width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .order-section {
    padding: 70px 20px 0;
    text-align: center;
  }

  .order-section .content {
    flex-direction: column;
    gap: 10px;
  }

  .order-section .text {
    margin-bottom: 0;
  }

  .order-section h2 {
    font-size: 2rem;
  }
}

/* ======================== */
/* TESTIMONIAL SECTION      */
/* ======================== */

.testimonial-container {
  padding: 0 0 20px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 80px;
}

.slider {
  position: relative;
  box-shadow: none;
}

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

.slider .slide {
  width: 100%;
  margin-right: 16px;
}

.testimonial {
  padding: 40px 80px;
  border-radius: 8px;
  box-shadow: none;
}

.testimonial blockquote {
  color: #888;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  margin: 0 0 24px;
}

.testimonial h5 {
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial span {
  color: #888;
  font-size: 0.7rem;
  font-weight: 400;
}

@media (max-width: 640px) {
  .testimonial-container {
    width: 100%;
    padding: 0 16px 20px;
  }

  .testimonial {
    padding: 24px 30px;
  }

  .testimonial blockquote {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}

/* ======================== */
/* CONTACT OVERLAY          */
/* ======================== */
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s;
}

.contact-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-overlay-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    #f8f6f3 50%,
    var(--sand) 100%
  );
  z-index: 0;
}

.contact-bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/bg_wave.png") repeat;
  background-size: auto;
  opacity: 0.04;
}

.contact-floating-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(196, 86, 58, 0.06) 0%,
    transparent 70%
  );
  top: -200px;
  right: -150px;
  animation: floatCircle 20s ease-in-out infinite;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(196, 86, 58, 0.04) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: 20%;
  animation: floatCircle 25s ease-in-out infinite reverse;
}

.circle-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(45, 45, 45, 0.03) 0%,
    transparent 70%
  );
  top: 40%;
  left: -100px;
  animation: floatCircle 18s ease-in-out infinite;
}

@keyframes floatCircle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

/* Close Button */
.contact-overlay-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border: none;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-overlay-close:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.contact-overlay-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--coal);
  transition: background 0.3s ease;
}

.contact-overlay-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-overlay-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-overlay-close:hover span {
  background: var(--rust);
}

/* Split Layout */
.contact-split-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  height: 100%;
  position: relative;
  z-index: 10;
}

/* Left Panel */
.contact-left-panel {
  background: linear-gradient(
    160deg,
    var(--coal) 0%,
    #1a1a1a 50%,
    #252525 100%
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.contact-left-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/bg_wave.png") repeat;
  background-size: auto;
  opacity: 0.025;
}

/* Decorative Elements */
.contact-panel-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decor-corner {
  position: absolute;
  width: 80px;
  height: 80px;
}

.decor-corner-tl {
  top: 40px;
  left: 40px;
  border-top: 1px solid rgba(196, 86, 58, 0.4);
  border-left: 1px solid rgba(196, 86, 58, 0.4);
}

.decor-corner-br {
  bottom: 40px;
  right: 40px;
  border-bottom: 1px solid rgba(196, 86, 58, 0.4);
  border-right: 1px solid rgba(196, 86, 58, 0.4);
}

.decor-vertical-line {
  position: absolute;
  left: 50px;
  top: 140px;
  bottom: 140px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(196, 86, 58, 0.3) 20%,
    rgba(196, 86, 58, 0.3) 80%,
    transparent 100%
  );
}

.contact-left-content {
  position: relative;
  z-index: 2;
  max-width: 380px;
  padding-left: 20px;
}

/* Logo in overlay - matches main page */
.contact-overlay-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: contactReveal 0.7s ease forwards 0.15s;
}

.contact-overlay-logo .logo-text-primary {
  font-size: 2.4rem;
  color: var(--rust);
  transform: rotate(-3deg);
}

.contact-overlay-logo .logo-text-secondary {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-left: -6px;
  margin-top: 4px;
}

/* Headline Block */
.contact-headline-block {
  position: relative;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: contactReveal 0.7s ease forwards 0.25s;
}

.contact-headline-accent {
  position: absolute;
  left: -30px;
  top: 8px;
  width: 16px;
  height: 2px;
  background: var(--rust);
}

.contact-headline {
  margin: 0;
}

.contact-headline-line {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.12;
  color: white;
}

.contact-headline-line:last-child {
  color: var(--rust);
  font-style: italic;
}

.contact-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 300px;
  opacity: 0;
  transform: translateY(20px);
  animation: contactReveal 0.7s ease forwards 0.35s;
}

/* Info Stack - numbered items */
.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-20px);
}

.contact-info-item:nth-child(1) {
  animation: contactSlideIn 0.6s ease forwards 0.4s;
}

.contact-info-item:nth-child(2) {
  animation: contactSlideIn 0.6s ease forwards 0.5s;
}

.contact-info-item:nth-child(3) {
  animation: contactSlideIn 0.6s ease forwards 0.6s;
}

.contact-info-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

a.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.03);
  padding-left: 8px;
  margin-left: -8px;
  padding-right: 8px;
}

.contact-info-number {
  font-family: "Libre Baskerville", serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s ease;
}

a.contact-info-item:hover .contact-info-number {
  color: var(--rust);
}

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

.contact-overlay .contact-info-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.contact-overlay .contact-info-value {
  font-family: "Libre Baskerville", serif;
  font-size: 0.95rem;
  color: white;
  line-height: 1.45;
}

.contact-info-arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

a.contact-info-item:hover .contact-info-arrow {
  color: var(--rust);
  transform: translateX(4px);
}

/* Social Row */
.contact-social-row {
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: contactReveal 0.6s ease forwards 0.7s;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social-link:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: white;
  transform: translateY(-3px);
}

/* Decorative Seal */
.contact-seal {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(196, 86, 58, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  animation: sealFloat 6s ease-in-out infinite;
}

.seal-text {
  font-family: "Oswald", sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.seal-text-lg {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rust);
  margin-top: -2px;
}

@keyframes sealFloat {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }

  50% {
    transform: rotate(-8deg) translateY(-6px);
  }
}

/* Right Panel */
.contact-right-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow-y: auto;
}

.contact-form-container {
  width: 100%;
  max-width: 520px;
  position: relative;
}

/* Form Header */
.contact-form-header {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: contactReveal 0.8s ease forwards 0.3s;
}

.contact-form-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(196, 86, 58, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.contact-form-title {
  font-family: "Libre Baskerville", serif;
  font-size: 2.2rem;
  color: var(--coal);
  margin: 0 0 12px;
}

.contact-form-subtitle {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.6;
  margin: 0;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.contact-form .form-group:nth-child(1) {
  animation: contactReveal 0.6s ease forwards 0.4s;
}

.contact-form .form-row .form-group:nth-child(1) {
  animation: contactReveal 0.6s ease forwards 0.4s;
}

.contact-form .form-row .form-group:nth-child(2) {
  animation: contactReveal 0.6s ease forwards 0.45s;
}

.contact-form > .form-group:nth-of-type(1) {
  animation: contactReveal 0.6s ease forwards 0.5s;
}

.contact-form > .form-group:nth-of-type(2) {
  animation: contactReveal 0.6s ease forwards 0.55s;
}

.contact-form > .form-group:nth-of-type(3) {
  animation: contactReveal 0.6s ease forwards 0.6s;
}

.contact-form > .form-group:nth-of-type(4),
.contact-form .textarea-group {
  animation: contactReveal 0.6s ease forwards 0.65s;
}

.floating-label input,
.floating-label select,
.floating-label textarea {
  width: 100%;
  padding: 20px 16px 8px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  color: var(--coal);
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.floating-label textarea {
  resize: none;
  min-height: 120px;
}

.floating-label select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.floating-label label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--pebble);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  padding: 0 4px;
}

.textarea-group label {
  top: 24px;
}

.floating-label input:focus,
.floating-label select:focus,
.floating-label textarea:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 4px rgba(196, 86, 58, 0.1);
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label input:valid + label,
.floating-label select:focus + label,
.floating-label select:valid + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rust);
}

.input-highlight {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.floating-label input:focus ~ .input-highlight,
.floating-label select:focus ~ .input-highlight,
.floating-label textarea:focus ~ .input-highlight {
  width: calc(100% - 4px);
  border-radius: 0 0 10px 10px;
}

/* Submit Button */
.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--rust) 0%, #d35a3f 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: contactReveal 0.6s ease forwards 0.7s;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 86, 58, 0.35);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-ripple {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 60%
  );
  opacity: 0;
  transform: scale(0);
  transition: all 0.6s ease;
}

.contact-submit-btn:active .btn-ripple {
  opacity: 1;
  transform: scale(2);
}

/* Success State */
.contact-form-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: white;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-success.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.checkmark {
  width: 100%;
  height: 100%;
}

.checkmark-circle {
  stroke: var(--rust);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkmarkCircle 0.6s ease-in-out forwards;
}

.checkmark-check {
  stroke: var(--rust);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkmarkCheck 0.3s ease-in-out 0.6s forwards;
}

@keyframes checkmarkCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes checkmarkCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.contact-form-success h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.8rem;
  color: var(--coal);
  margin: 0 0 12px;
}

.contact-form-success p {
  font-size: 1rem;
  color: var(--stone);
  margin: 0 0 32px;
  max-width: 300px;
}

.success-close-btn {
  padding: 14px 32px;
  background: var(--coal);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  background: var(--rust);
  transform: translateY(-2px);
}

/* Animations */
@keyframes contactReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Contact Overlay Responsive */
@media (max-width: 1024px) {
  .contact-split-layout {
    grid-template-columns: 1fr;
  }

  .contact-left-panel {
    display: none;
  }

  .contact-right-panel {
    padding: 100px 40px 60px;
  }

  .contact-overlay-close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 640px) {
  .contact-right-panel {
    padding: 90px 24px 40px;
    align-items: flex-start;
  }

  .contact-form-title {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-overlay-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .contact-overlay-close span {
    width: 20px;
  }
}

:is(
  [id*="google_ads_iframe"],
  [id*="taboola-"],
  .taboolaHeight,
  .taboola-placeholder,
  #top-ad,
  #credential_picker_container,
  #credentials-picker-container,
  #credential_picker_iframe,
  [id*="google-one-tap-iframe"],
  #google-one-tap-popup-container,
  .google-one-tap__module,
  .google-one-tap-modal-div,
  #amp_floatingAdDiv,
  #ez-content-blocker-container
) {
  display: none !important;
  min-height: 0 !important;
  height: 0 !important;
}

/* ======================== */
/* HERO SLIDER FIXES        */
/* ======================== */

.main-slider.webgl-active .swiper-slide .image-bg {
  visibility: visible !important;
  opacity: 1 !important;
}

.main-slider canvas {
  display: none !important;
}

.image-bg {
  position: relative;
}

.image-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
  pointer-events: none;
}
