@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:wght@400;500;600&family=Fira+Code:wght@400;500&display=swap');

:root {
  --warm-lumiere: #FFF9F0;
  --golden-cream: #FFF5E6;
  --deep-burgundy: #4A2828;
  --rich-cocoa: #5D4E42;
  --faded-amber: #B8A898;
  --gastronomic-gold: #D4A853;
  --rose-lavender: #B8A4C4;
  --white: #FFFFFF;
  --shadow-soft: rgba(74, 40, 40, 0.08);
  --shadow-medium: rgba(74, 40, 40, 0.12);
  --shadow-gold: rgba(212, 168, 83, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--rich-cocoa);
  background: var(--warm-lumiere);
  overflow-x: hidden;
}

strong, p, b {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--deep-burgundy);
  line-height: 1.2;
}

.layout-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: rgba(255, 249, 240, 0.99);
  border-right: 1px solid rgba(212, 168, 83, 0.15);
  box-shadow: 8px 0 48px rgba(74, 40, 40, 0.06);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.sidebar-inner {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 168, 83, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 83, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.sidebar-logo-section {
  padding: 32px 28px;
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #D4A853, #4A2828);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-burgundy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.logo-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 168, 83, 0.2);
  margin-top: 12px;
}

.sidebar-nav {
  flex: 1;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  border-left: 2px solid transparent;
}

.nav-item:hover {
  background: rgba(212, 168, 83, 0.08);
  border-left-color: var(--gastronomic-gold);
}

.nav-item:hover .nav-icon {
  stroke: var(--gastronomic-gold);
}

.nav-item:hover .nav-text {
  color: var(--gastronomic-gold);
}

.nav-item.active {
  background: rgba(212, 168, 83, 0.12);
  border-left-color: var(--gastronomic-gold);
}

.nav-item.active .nav-icon,
.nav-item.active .nav-text {
  color: var(--gastronomic-gold);
  stroke: var(--gastronomic-gold);
}

.nav-icon {
  width: 20px;
  height: 20px;
  stroke: rgba(93, 78, 66, 0.5);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.nav-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--rich-cocoa);
  white-space: nowrap;
}

.sidebar-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.sidebar-divider {
  width: 100%;
  height: 1px;
  background: rgba(184, 164, 196, 0.15);
  margin-bottom: 20px;
}

.cta-button {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #D4A853, #C49843);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
  transition: all 0.25s ease;
  text-decoration: none;
}

.cta-button:hover {
  box-shadow: 0 10px 32px rgba(212, 168, 83, 0.4);
  transform: translateY(-2px);
}

.sidebar-phone {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--gastronomic-gold);
  letter-spacing: 0.02em;
  margin-top: 12px;
  text-align: center;
}

.main-content {
  flex: 1;
  margin-left: 280px;
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 249, 240, 0.99);
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  box-shadow: 0 4px 20px rgba(74, 40, 40, 0.06);
  z-index: 1000;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
}

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

.mobile-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #D4A853, #C49843);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
}

.mobile-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-burgundy);
}

.hamburger {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 83, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hamburger:hover {
  background: rgba(212, 168, 83, 0.15);
}

.hamburger svg {
  width: 24px;
  height: 24px;
  stroke: var(--gastronomic-gold);
  stroke-width: 2;
  fill: none;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 249, 240, 0.99);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
  stroke: var(--gastronomic-gold);
  stroke-width: 2;
  fill: none;
}

.mobile-nav-item {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--deep-burgundy);
  padding: 16px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  text-decoration: none;
}

.mobile-menu-overlay.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { transition-delay: 0.16s; }
.mobile-nav-item:nth-child(3) { transition-delay: 0.22s; }
.mobile-nav-item:nth-child(4) { transition-delay: 0.28s; }
.mobile-nav-item:nth-child(5) { transition-delay: 0.34s; }
.mobile-nav-item:nth-child(6) { transition-delay: 0.4s; }

.mobile-nav-divider {
  width: 60px;
  height: 2px;
  background: var(--gastronomic-gold);
  margin: 8px auto;
}

.mobile-menu-contact {
  margin-top: auto;
  padding-bottom: 60px;
  text-align: center;
}

.mobile-menu-phone {
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  color: var(--gastronomic-gold);
  margin-bottom: 8px;
}

.mobile-menu-address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--faded-amber);
}

.hero-section {
  min-height: 100vh;
  background: var(--golden-cream);
  position: relative;
  overflow: hidden;
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: floatGradient 50s ease-in-out infinite alternate;
}

.gradient-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.3), transparent 70%);
  top: -100px;
  right: 20%;
  animation-delay: 0s;
}

.gradient-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 164, 196, 0.25), transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-delay: -15s;
}

.gradient-blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 245, 230, 0.4), transparent 70%);
  top: 40%;
  right: 5%;
  animation-delay: -30s;
}

@keyframes floatGradient {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 30px) scale(1.08);
  }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(212, 168, 83, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 83, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 30s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 15px);
  }
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  padding: 120px 80px 100px;
  min-height: 100vh;
  align-items: center;
}

.hero-left {
  animation: fadeInUp 0.8s ease-out;
}

.hero-decor {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
}

.hero-decor svg {
  width: 100%;
  height: 100%;
  stroke: rgba(212, 168, 83, 0.4);
  stroke-width: 2;
  fill: none;
}

.hero-badge {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--deep-burgundy);
  line-height: 0.88;
  margin-bottom: 8px;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(212, 168, 83, 0.6);
  margin-bottom: 16px;
}

.hero-title-jp {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--gastronomic-gold);
  line-height: 0.9;
  margin-bottom: 8px;
}

.hero-technical {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: rgba(212, 168, 83, 0.5);
  margin-bottom: 20px;
}

.hero-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--rich-cocoa);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 28px;
}

.hero-markers {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-marker {
  width: 10px;
  height: 10px;
  background: var(--gastronomic-gold);
  border-radius: 50%;
  filter: drop-shadow(0 4px 12px rgba(212, 168, 83, 0.25));
}

.hero-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, var(--gastronomic-gold), var(--rose-lavender));
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 22px 48px;
  background: linear-gradient(135deg, #D4A853, #C49843);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(212, 168, 83, 0.3);
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.4);
  transform: translateY(-3px);
}

.btn-secondary {
  padding: 20px 40px;
  background: transparent;
  border: 2px solid var(--deep-burgundy);
  color: var(--deep-burgundy);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 4px;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--gastronomic-gold);
  color: var(--gastronomic-gold);
}

.hero-right {
  position: relative;
  height: 520px;
  animation: fadeIn 1s ease-out 0.3s both;
}

.hero-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  height: 100%;
  position: relative;
}

.hero-bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.hero-bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: saturate(0.98);
}

.hero-bento-item:hover img {
  transform: scale(1.05);
  z-index: 10;
}

.hero-bento-item-1 {
  grid-column: span 1;
  grid-row: span 2;
  margin-top: -24px;
  margin-left: -20px;
  box-shadow: 0 28px 72px rgba(74, 40, 40, 0.1);
}

.hero-bento-item-2,
.hero-bento-item-3,
.hero-bento-item-4 {
  height: 248px;
}

.hero-overlay-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 4px;
  padding: 16px 20px;
  box-shadow: 0 16px 48px rgba(74, 40, 40, 0.08);
  z-index: 5;
}

.hero-overlay-card-1 {
  top: 40px;
  right: 20px;
}

.hero-overlay-card-2 {
  bottom: 40px;
  right: 20px;
  z-index: 4;
}

.overlay-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--deep-burgundy);
}

.overlay-card-value {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--gastronomic-gold);
}

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

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

.section {
  padding: 100px 80px;
  position: relative;
}

.section-light {
  background: var(--warm-lumiere);
}

.section-cream {
  background: var(--golden-cream);
}

.section-dark {
  background: var(--deep-burgundy);
}

.section-dark .section-title,
.section-dark .section-subtitle,
.section-dark .card-title,
.section-dark .card-text {
  color: var(--white);
}

.section-dark .card-text {
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .card-value {
  color: var(--gastronomic-gold);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--faded-amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 16px;
}

.section-title-accent {
  color: var(--gastronomic-gold);
  font-style: italic;
}

.section-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.section-marker {
  width: 8px;
  height: 8px;
  background: var(--gastronomic-gold);
  border-radius: 50%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(74, 40, 40, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: scale(1.03);
  border-color: rgba(212, 168, 83, 0.15);
  box-shadow: 0 24px 64px rgba(212, 168, 83, 0.1);
  z-index: 10;
}

.service-card-image {
  height: 180px;
  overflow: hidden;
}

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

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

.service-card-content {
  padding: 22px 24px 24px;
}

.service-card-category {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gastronomic-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 10px;
}

.service-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--rich-cocoa);
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.service-card-price {
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  color: var(--gastronomic-gold);
}

.service-card-link {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-burgundy);
  transition: color 0.25s ease;
  text-decoration: none;
}

.service-card-link:hover {
  color: var(--gastronomic-gold);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

.about-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  min-height: 500px;
}

.about-image-section {
  position: relative;
  overflow: hidden;
}

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

.about-image-decor {
  position: absolute;
  bottom: 48px;
  left: 48px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(212, 168, 83, 0.3);
}

.about-overlap-block {
  position: absolute;
  top: 28px;
  left: -48px;
  width: 130px;
  height: 90px;
  background: rgba(212, 168, 83, 0.04);
  border-radius: 4px;
  z-index: 10;
  transition: all 0.3s ease;
}

.about-image-section:hover .about-overlap-block {
  z-index: 20;
  opacity: 1;
}

.about-content-section {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content-decor {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.about-content-decor svg {
  width: 100%;
  height: 100%;
  stroke: rgba(212, 168, 83, 0.4);
  stroke-width: 2;
  fill: none;
}

.about-content-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-content-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--rich-cocoa);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content-divider {
  width: 40px;
  height: 1px;
  background: rgba(212, 168, 83, 0.1);
  margin: 20px 0;
}

.process-marquee {
  position: relative;
  overflow-x: hidden;
  padding: 48px 0;
  max-width: calc(100vw - 430px);
}

.process-marquee::before,
.process-marquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(212, 168, 83, 0.06);
  z-index: 1;
}

.process-marquee::before { top: 0; }
.process-marquee::after { bottom: 0; }

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track-reverse {
  animation: marqueeScrollReverse 35s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.process-card {
  min-width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(74, 40, 40, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}

.process-card-image {
  height: 100px;
  overflow: hidden;
}

.process-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-card-content {
  padding: 16px 20px 20px;
}

.process-card-icon {
  width: 40px;
  height: 40px;
  stroke: var(--gastronomic-gold);
  stroke-width: 2;
  fill: none;
  margin: 16px 0 12px;
}

.process-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 4px;
}

.process-card-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--faded-amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.process-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--rich-cocoa);
  line-height: 1.5;
}

.philosophy-marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 0;
  background: var(--warm-lumiere);
  overflow: hidden;
  max-width: calc(100vw - 430px);
}

.philosophy-item {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-burgundy);
  white-space: nowrap;
}

.philosophy-divider {
  width: 8px;
  height: 8px;
  background: var(--gastronomic-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 4px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.advantage-card:hover {
  flex-grow: 1.5;
  background: var(--white);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 168, 83, 0.15);
  z-index: 10;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1);
}

.advantage-card:hover .advantage-value {
  color: var(--gastronomic-gold);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  stroke: var(--rose-lavender);
  stroke-width: 2;
  fill: none;
  margin: 0 auto 14px;
  transition: transform 0.3s ease;
}

.advantage-value {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--deep-burgundy);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.advantage-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--rich-cocoa);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.advantage-decor {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 2px;
  background: rgba(212, 168, 83, 0.4);
}

.testimonials-stack {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(74, 40, 40, 0.08);
  margin-bottom: -80px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gastronomic-gold), var(--rose-lavender));
}

.testimonial-card:hover {
  z-index: 10 !important;
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(212, 168, 83, 0.1);
}

.testimonial-card:nth-child(1) { z-index: 3; }
.testimonial-card:nth-child(2) { z-index: 2; }
.testimonial-card:nth-child(3) { z-index: 1; }

.testimonial-inner {
  display: flex;
  gap: 28px;
  padding: 28px;
}

.testimonial-icon {
  width: 48px;
  height: 48px;
  stroke: var(--gastronomic-gold);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
}

.testimonial-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 4px;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gastronomic-gold);
  margin-bottom: 8px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--rich-cocoa);
  line-height: 1.6;
}

.testimonial-divider {
  width: 40px;
  height: 1px;
  background: rgba(212, 168, 83, 0.2);
  margin-top: 12px;
}

.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 80px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: var(--white);
  border-color: rgba(212, 168, 83, 0.15);
  box-shadow: 0 20px 56px rgba(212, 168, 83, 0.08);
  z-index: 10;
}

.faq-item-icon {
  width: 40px;
  height: 40px;
  stroke: var(--gastronomic-gold);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-right: 16px;
}

.faq-item-question {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-burgundy);
}

.faq-item-arrow {
  width: 20px;
  height: 20px;
  stroke: rgba(212, 168, 83, 0.3);
  stroke-width: 2;
  fill: none;
  transition: all 0.2s ease;
  margin-left: 12px;
}

.faq-item:hover .faq-item-arrow {
  stroke: var(--gastronomic-gold);
  transform: translateX(4px);
}

.faq-reveal {
  position: relative;
  min-height: 300px;
}

.faq-image {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(74, 40, 40, 0.12);
  position: relative;
}

.faq-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(212, 168, 83, 0.1) 0%, transparent 40%);
  border-radius: 4px;
}

.faq-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(212, 168, 83, 0.9);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
}

.achievements-section {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 80px;
}

.achievements-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.achievements-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.achievements-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
}

.achievement-node {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 4px;
  border: 1px solid rgba(212, 168, 83, 0.08);
  padding: 18px 20px;
  box-shadow: 0 16px 48px rgba(74, 40, 40, 0.08);
  text-align: center;
  min-width: 140px;
  transition: all 0.3s ease;
}

.achievement-node:hover {
  transform: scale(1.06);
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: 0 24px 64px rgba(212, 168, 83, 0.1);
  z-index: 10;
}

.achievement-node-image {
  height: 80px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}

.achievement-node-icon {
  width: 40px;
  height: 40px;
  stroke: var(--gastronomic-gold);
  stroke-width: 2;
  fill: none;
  margin: 0 auto 10px;
}

.achievement-node-title {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 6px;
}

.achievement-node-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--rich-cocoa);
  line-height: 1.5;
}

.achievement-node-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gastronomic-gold);
  margin: 8px 0;
}

.team-accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 80px;
}

.team-panel {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(74, 40, 40, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  align-self: start;
}

.team-panel:nth-child(even) {
  margin-top: 24px;
}

.team-panel:hover {
  border-color: rgba(212, 168, 83, 0.15);
  box-shadow: 0 20px 56px rgba(212, 168, 83, 0.08);
  z-index: 10;
}

.team-panel-header {
  display: flex;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}

.team-panel-icon {
  width: 44px;
  height: 44px;
  stroke: var(--gastronomic-gold);
  stroke-width: 2;
  fill: none;
  margin-right: 16px;
  flex-shrink: 0;
}

.team-panel-title {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-burgundy);
}

.team-panel-image {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  margin-left: 16px;
}

.team-panel-arrow {
  width: 20px;
  height: 20px;
  stroke: var(--faded-amber);
  stroke-width: 2;
  fill: none;
  transition: all 0.3s ease;
  margin-left: 12px;
}

.team-panel.active .team-panel-arrow {
  stroke: var(--gastronomic-gold);
  transform: rotate(180deg);
}

.team-panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.team-panel.active .team-panel-content {
  max-height: 400px;
}

.team-panel-content-inner {
  padding: 0 24px 24px;
}

.team-panel-content-image {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  margin-top: 16px;
}

.team-panel-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--gastronomic-gold), var(--rose-lavender));
  margin-bottom: 16px;
}

.team-panel-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--rich-cocoa);
  line-height: 1.75;
  margin-top: 12px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.contact-form-section {
  padding: 80px 64px;
}

.contact-form-decor {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.contact-form-decor svg {
  width: 100%;
  height: 100%;
  stroke: rgba(212, 168, 83, 0.4);
  stroke-width: 2;
  fill: none;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--faded-amber);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--faded-amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid rgba(74, 40, 40, 0.1);
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--rich-cocoa);
  transition: border-color 0.25s ease;
  border-radius: 0;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--gastronomic-gold);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  color: var(--gastronomic-gold);
}

.form-textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid rgba(74, 40, 40, 0.1);
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--rich-cocoa);
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.25s ease;
}

.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--gastronomic-gold);
}

.form-submit {
  padding: 18px 44px;
  background: linear-gradient(135deg, #D4A853, #C49843);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.2);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.form-submit:hover {
  box-shadow: 0 8px 28px rgba(212, 168, 83, 0.3);
  transform: translateY(-2px);
}

.contact-info-section {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 4px;
  padding: 80px 48px;
  border: 1px solid rgba(212, 168, 83, 0.08);
  box-shadow: 0 20px 60px rgba(74, 40, 40, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-block {
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.contact-block:last-child {
  border-bottom: none;
}

.contact-block-icon {
  width: 24px;
  height: 24px;
  stroke: var(--gastronomic-gold);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 12px;
}

.contact-block-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--rich-cocoa);
  line-height: 1.6;
}

.contact-map {
  width: 100%;
  height: 200px;
  border-radius: 4px;
  border: 1px solid rgba(212, 168, 83, 0.08);
  box-shadow: 0 8px 24px rgba(74, 40, 40, 0.06);
  margin-top: 24px;
  filter: grayscale(100%);
}

.footer {
  background: var(--deep-burgundy);
  color: var(--white);
  padding: 60px 80px 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #D4A853, #C49843);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.footer-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--gastronomic-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  stroke: var(--gastronomic-gold);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease;
  text-decoration: none;
}

.footer-legal-link:hover {
  color: var(--gastronomic-gold);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(74, 40, 40, 0.15);
  z-index: 9999;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 12px;
}

.cookie-banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--rich-cocoa);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #D4A853, #C49843);
  color: var(--white);
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(74, 40, 40, 0.2);
  color: var(--rich-cocoa);
}

.cookie-btn-decline:hover {
  border-color: var(--gastronomic-gold);
  color: var(--gastronomic-gold);
}

.cookie-banner-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gastronomic-gold);
  text-decoration: underline;
  margin-left: 8px;
}

.page-hero {
  min-height: 280px;
  background: var(--warm-lumiere);
  position: relative;
  overflow: hidden;
  padding: 80px;
  display: flex;
  align-items: center;
}

.page-hero .hero-gradient-bg,
.page-hero .hero-grid-overlay {
  opacity: 0.6;
}

.page-hero-content {
  position: relative;
  z-index: 4;
  max-width: 560px;
}

.breadcrumbs {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--faded-amber);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--faded-amber);
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumbs a:hover {
  color: var(--gastronomic-gold);
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--deep-burgundy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-title svg {
  width: 24px;
  height: 24px;
  stroke: var(--gastronomic-gold);
  stroke-width: 2;
  fill: none;
}

.page-hero-markers {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.page-hero-marker {
  width: 8px;
  height: 8px;
  background: var(--gastronomic-gold);
  border-radius: 50%;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s ease-out;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.5s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.6s ease-out;
}

.reveal-geometric {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease-out;
}

.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
  background: var(--golden-cream);
  position: relative;
  overflow: hidden;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  stroke: var(--gastronomic-gold);
  stroke-width: 2;
  fill: none;
  margin-bottom: 32px;
}

.thank-you-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 16px;
}

.thank-you-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--rich-cocoa);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.thank-you-btn {
  padding: 18px 40px;
  background: linear-gradient(135deg, #D4A853, #C49843);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
  transition: all 0.25s ease;
}

.thank-you-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 168, 83, 0.4);
}

.legal-page {
  padding: 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-page p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--rich-cocoa);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--rich-cocoa);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
  position: relative;
  list-style: disc;
}

.glow-torch {
  position: fixed;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

body:hover .glow-torch {
  opacity: 1;
}

[data-glow="true"]:hover {
  box-shadow: 0 20px 60px rgba(212, 168, 83, 0.2);
}

.scrollbar-custom::-webkit-scrollbar {
  width: 8px;
}

.scrollbar-custom::-webkit-scrollbar-track {
  background: transparent;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gastronomic-gold), var(--rose-lavender));
  border-radius: 4px;
}

.scrollbar-custom::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  
  .mobile-header {
    display: flex;
  }
  
  .main-content {
    margin-left: 0;
    padding-top: 64px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    padding: 60px 40px;
  }
  
  .hero-right {
    height: 400px;
  }
  
  .about-split {
    grid-template-columns: 1fr;
  }
  
  .about-image-section {
    height: 350px;
  }
  
  .contact-split {
    grid-template-columns: 1fr;
  }
  
  .team-accordion {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }
  
  .team-panel:nth-child(even) {
    margin-top: 0;
  }
  
  .faq-section {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }
  
  .faq-reveal {
    display: none;
  }
  
  .section {
    padding: 80px 40px;
  }
  
  .footer {
    padding: 48px 40px 32px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 40px 24px;
  }
  
  .hero-badge {
    font-size: 36px;
  }
  
  .hero-title-jp {
    font-size: 32px;
  }
  
  .hero-right {
    height: 300px;
  }
  
  .hero-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-bento-item-1 {
    grid-column: span 1;
    grid-row: span 1;
    margin: 0;
  }
  
  .hero-overlay-card {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-card {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  
  .advantage-icon {
    margin: 0;
  }
  
  .advantage-decor {
    display: none;
  }
  
  .section {
    padding: 60px 24px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .page-hero {
    padding: 60px 24px;
  }
  
  .page-hero-title {
    font-size: 32px;
  }
  
  .team-accordion {
    padding: 0 24px;
  }
  
  .faq-section {
    padding: 0 24px;
  }
  
  .contact-form-section,
  .contact-info-section {
    padding: 48px 24px;
  }
  
  .footer {
    padding: 40px 24px 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-page {
    padding: 40px 24px;
  }
  
  .legal-page h1 {
    font-size: 28px;
  }
  
  .legal-page h2 {
    font-size: 20px;
  }
  
  .thank-you-section {
    padding: 60px 24px;
  }
  
  .thank-you-title {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 28px;
  }
  
  .hero-tagline {
    font-size: 16px;
  }
  
  .hero-title-jp {
    font-size: 24px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .mobile-logo-text {
    display: none;
  }
  
  .philosophy-marquee {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .testimonial-inner {
    flex-direction: column;
  }
  
  .testimonial-icon {
    margin-bottom: 12px;
  }
}
