/* ============================================
   ツマギアンズ - Main Stylesheet
   Logos Land Style Reference
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors - ツマギアンズ用カラースキーム */
  --primary: #E8763B;        /* 夕陽オレンジ */
  --primary-dark: #D4652E;
  --primary-light: #F5A66B;
  --secondary: #4A7C59;      /* フォレストグリーン */
  --secondary-dark: #3A6247;
  --secondary-light: #6B9B7A;
  --accent: #8B5A2B;         /* ウッドブラウン */
  --bg-warm: #F5F1EB;        /* ウォームベージュ */
  --bg-green: #2D5A3D;       /* ダークグリーン */
  --text-dark: #333333;
  --text-light: #666666;
  --text-white: #FFFFFF;
  --gold: #D4A853;

  /* Typography */
  --font-heading: 'Noto Serif JP', 'Yu Mincho', serif;
  --font-body: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  --font-english: 'Playfair Display', serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-warm);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

ul, ol {
  list-style: none;
}

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

/* ---------- Loading Screen ---------- */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-screen .logo {
  width: 150px;
  margin-bottom: 30px;
  animation: pulse 1.5s infinite;
}

.loading-text {
  color: var(--text-white);
  font-family: var(--font-english);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}

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

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logo img {
  height: 50px;
  transition: var(--transition-normal);
}

.header.scrolled .header-logo img {
  height: 40px;
}

.header-logo .site-name {
  font-family: var(--font-english);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  transition: var(--transition-normal);
}

.header.scrolled .header-logo .site-name {
  color: var(--text-dark);
}

/* 予約ページとランチページのサイト名を黒文字に */
.reservation-page .header-logo .site-name,
.lunch-page .header-logo .site-name {
  color: var(--text-dark);
}

/* Navigation - Left Side (Logos Land Style) */
.nav-left {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.nav-left ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.nav-left li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-white);
  font-size: 1rem;
  letter-spacing: 0.15em;
  transition: var(--transition-normal);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-left li a .en {
  font-family: var(--font-english);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.nav-left li a .jp {
  font-size: 1rem;
  font-weight: 500;
}

.nav-left li a:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Navigation color variants based on section */
.nav-left.dark-section li a {
  color: var(--text-dark);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.nav-left.dark-section li a:hover {
  color: var(--primary);
}

.nav-left.light-section li a {
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-left.light-section li a:hover {
  color: var(--primary-light);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  position: relative;
  transition: var(--transition-normal);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-normal);
}

.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { bottom: -8px; }

.menu-toggle.active span {
  background: transparent;
}

.menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  text-align: center;
}

.mobile-nav li {
  margin: 20px 0;
}

.mobile-nav a {
  color: var(--text-white);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* CTA Buttons in Header */
.header-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(232, 118, 59, 0.3);
  border: 2px solid transparent;
}

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

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

.btn-reserve:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 118, 59, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-reserve:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232, 118, 59, 0.3);
}

.btn-reserve span {
  position: relative;
  z-index: 1;
}

.btn-lunch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  border-radius: 30px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-normal);
  font-family: var(--font-english);
}

.btn-lunch:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.header.scrolled .btn-lunch {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.header.scrolled .btn-lunch:hover {
  background: var(--bg-warm);
  border-color: var(--primary);
  color: var(--primary);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after,
.hero-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
}

.hero-slider-nav button {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-slider-nav button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero-slider-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider-dots .dot.active {
  background: var(--text-white);
  border-color: var(--text-white);
  transform: scale(1.2);
}

.hero-slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-content {
  text-align: center;
  color: var(--text-white);
  z-index: 2;
  padding: 100px 20px 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-width);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-catch {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto 30px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  letter-spacing: 0.5em;
}

.hero-catch-line {
  writing-mode: vertical-rl;
  display: inline-block;
  text-align: center;
}

.hero-sub {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--primary);
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-normal);
  margin-bottom: 80px;
  transform: translateX(-100px);
}

.hero-cta:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-white);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 50px;
  background: var(--text-white);
  margin-top: 10px;
}

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

/* News Ticker */
.news-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  z-index: 10;
}

.news-ticker-inner {
  display: flex;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

.news-label {
  background: var(--primary);
  color: var(--text-white);
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 3px;
  margin-right: 20px;
  flex-shrink: 0;
}

.news-content {
  flex: 1;
  overflow: hidden;
}

.news-content a {
  display: block;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.news-content a:hover {
  color: var(--primary);
}

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

/* ---------- Section Common ---------- */
.section {
  padding: var(--section-padding) 0;
}

.section-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

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

.section-en {
  font-family: var(--font-english);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--secondary);
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.section-en span {
  display: inline-block;
  transition: var(--transition-normal);
}

.section-jp {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-light);
  letter-spacing: 0.2em;
}

.lunch-hours-text {
  margin-top: 10px;
  margin-bottom: 0;
}

/* ---------- Concept Section ---------- */
.concept {
  background: var(--bg-warm);
  position: relative;
}

.concept-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.concept-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.concept-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.concept-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.concept-text p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 2;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid var(--secondary);
  transition: var(--transition-normal);
}

.btn-more:hover {
  color: var(--primary);
  border-color: var(--primary);
  gap: 15px;
}

.btn-more::after {
  content: '→';
}

.owner-name {
  margin-top: 30px;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ---------- Experience Cards (Eat/Play/Stay/Rent style) ---------- */
.experience {
  background: var(--secondary);
  padding: var(--section-padding) 0;
}

.experience .section-en {
  color: var(--text-white);
}

.experience .section-jp {
  color: rgba(255, 255, 255, 0.7);
}

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

.experience-card {
  background: var(--primary);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.experience-card-image {
  height: 200px;
  overflow: hidden;
}

.experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.experience-card:hover .experience-card-image img {
  transform: scale(1.1);
}

.experience-card-content {
  padding: 25px;
  color: var(--text-white);
  text-align: center;
}

.experience-card-en {
  font-family: var(--font-english);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.experience-card-jp {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.experience-card-jp span {
  display: inline-block;
}

.experience-card-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.9;
}

.experience-card-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  transition: var(--transition-normal);
}

.experience-card:hover .experience-card-link {
  background: var(--text-white);
  color: var(--primary);
}

/* ---------- Features Section ---------- */
.features {
  background: var(--bg-warm);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-item:nth-child(even) {
  direction: rtl;
}

.feature-item:nth-child(even) > * {
  direction: ltr;
}

.feature-number {
  font-family: var(--font-english);
  font-size: 4rem;
  font-weight: 300;
  color: var(--secondary);
  opacity: 0.3;
  margin-bottom: 10px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-desc {
  color: var(--text-light);
  line-height: 2;
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* ---------- Service Sections (BBQ, Stay, etc.) ---------- */
.service-section {
  padding: var(--section-padding) 0;
}

.service-section.alt-bg {
  background: #FFF;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.service-label {
  font-family: var(--font-english);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--secondary);
  display: flex;
  gap: 3px;
}

.service-label span {
  display: inline-block;
}

.service-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-grid.sauna-grid {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto 50px;
}

.service-card {
  background: #FFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card-slider {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-card-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.slider-nav button {
  width: 35px;
  height: 35px;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.slider-nav button:hover {
  background: var(--primary);
  color: var(--text-white);
}

.service-card-content {
  padding: 25px;
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding: 30px;
  background: var(--secondary);
  border-radius: 15px;
}

.service-cta.sauna-cta {
  flex-direction: column;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

/* Cafe Section Styles */
.cafe-content {
  max-width: 1000px;
  margin: 0 auto;
}

.cafe-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.cafe-highlight-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cafe-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.cafe-highlight-image:hover img {
  transform: scale(1.05);
}

.cafe-highlight-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cafe-highlight-text p {
  color: var(--text-light);
  line-height: 2;
  font-size: 1rem;
}

.cafe-atmosphere {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 80px;
}

.cafe-atmosphere-text {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cafe-atmosphere-image {
  order: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.cafe-atmosphere-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.cafe-atmosphere-image:hover img {
  transform: scale(1.05);
}

.cafe-atmosphere-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cafe-atmosphere-text p {
  color: var(--text-light);
  line-height: 2;
  font-size: 1rem;
}

.cafe-lunch-link {
  max-width: 900px;
  margin: 0 auto;
}

.cafe-lunch-card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transition: var(--transition-normal);
}

.cafe-lunch-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cafe-lunch-image {
  position: relative;
  overflow: hidden;
}

.cafe-lunch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.cafe-lunch-card:hover .cafe-lunch-image img {
  transform: scale(1.1);
}

.cafe-lunch-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-warm);
}

.cafe-lunch-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-weight: 500;
  align-self: flex-start;
}

.cafe-lunch-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  text-align: left;
}

.cafe-lunch-card p {
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 30px;
  text-align: left;
}

.cafe-lunch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: var(--primary);
  color: var(--text-white);
  font-weight: 600;
  border-radius: 30px;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.cafe-lunch-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
  .cafe-highlight,
  .cafe-atmosphere {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cafe-highlight-image {
    order: -1;
  }

  .cafe-atmosphere-text {
    order: 2;
  }

  .cafe-atmosphere-image {
    order: 1;
  }
}

/* Camp Section Styles */
.camp-content {
  max-width: 1000px;
  margin: 0 auto;
}

.camp-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 80px;
}

.camp-overview-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.camp-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.camp-overview-image:hover img {
  transform: scale(1.05);
}

.camp-overview-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.camp-overview-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.camp-overview-text p {
  color: var(--text-light);
  line-height: 2;
  font-size: 1rem;
}

.camp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.camp-feature-content {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.camp-feature-image {
  order: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.camp-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.camp-feature-image:hover img {
  transform: scale(1.05);
}

.camp-feature-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.camp-feature-content p {
  color: var(--text-light);
  line-height: 2;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .camp-overview,
  .camp-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .camp-overview-image {
    order: -1;
  }

  .camp-feature-content {
    order: 2;
  }

  .camp-feature-image {
    order: 1;
  }
}

/* Activity Section Styles */
.activity-content {
  max-width: 1000px;
  margin: 0 auto;
}

.activity-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.activity-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.activity-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.activity-text p {
  color: var(--text-light);
  line-height: 2;
  font-size: 1rem;
  margin-bottom: 30px;
}

.activity-info {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 2px solid var(--bg-warm);
}

.activity-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-label {
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.info-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
}

@media (max-width: 992px) {
  .activity-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .activity-image {
    order: -1;
  }

  .activity-info {
    flex-direction: column;
    gap: 20px;
  }
}

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

  .cafe-lunch-image {
    height: 250px;
  }

  .cafe-lunch-content {
    padding: 30px 20px;
  }

  .cafe-lunch-card h3,
  .cafe-lunch-card p {
    text-align: center;
  }

  .cafe-lunch-badge {
    align-self: center;
  }
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: var(--primary);
  color: var(--text-white);
  font-weight: 600;
  border-radius: 30px;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.service-cta-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.service-cta-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Sauna Section Specific Styles */
.sauna-intro {
  text-align: center;
  margin-bottom: 60px;
}

.sauna-intro-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
}

.sauna-cta-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.9;
}

/* ---------- Access Section ---------- */
.access {
  background: var(--secondary);
  color: var(--text-white);
}

.access .section-en {
  color: var(--text-white);
}

.access .section-jp {
  color: rgba(255, 255, 255, 0.7);
}

.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.access-info h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.access-info h3::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.access-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.9;
}

.access-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.access-address {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.access-address p {
  margin-bottom: 10px;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 25px;
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.btn-map:hover {
  background: var(--primary-dark);
}

/* ---------- Instagram Section ---------- */
.instagram {
  padding: var(--section-padding) 0;
  background: var(--bg-warm);
}

.instagram-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.instagram-header h2 {
  font-family: var(--font-english);
  font-size: 2rem;
}

.instagram-header span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--text-white);
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition-normal);
}

.btn-instagram:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* ---------- Price Tables ---------- */
.price-tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.price-tables > .price-table:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

.price-table {
  background: #FFF;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.price-table-title {
  font-family: var(--font-english);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-warm);
}

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

.price-table th,
.price-table td {
  padding: 15px 10px;
  text-align: left;
  border-bottom: 1px solid var(--bg-warm);
}

.price-table th {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.price-table td {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  text-align: right;
  white-space: nowrap;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: none;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 15px;
}

.price-disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('../images/cta-bg.jpg') center/cover no-repeat;
  color: var(--text-white);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--primary);
  color: var(--text-white);
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.cta-btn-primary:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.cta-btn-secondary:hover {
  background: var(--text-white);
  color: var(--text-dark);
}

/* ---------- Footer ---------- */
.footer {
  background: #1a1a1a;
  color: var(--text-white);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand .address {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-nav-group h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.footer-nav-group ul li {
  margin-bottom: 10px;
}

.footer-nav-group ul li a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: var(--transition-normal);
}

.footer-nav-group ul li a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: var(--primary);
  color: var(--text-white);
  font-weight: 600;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.footer-cta-btn:hover {
  background: var(--primary-dark);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social img {
  width: 20px;
  height: 20px;
}

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

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

.footer-links a {
  font-size: 0.8rem;
  opacity: 0.6;
  transition: var(--transition-normal);
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ---------- Fixed CTA (Mobile) ---------- */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--text-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 15px 20px;
}

.fixed-cta-inner {
  display: flex;
  gap: 15px;
}

.fixed-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.fixed-cta-btn.phone {
  background: var(--secondary);
  color: var(--text-white);
}

.fixed-cta-btn.reserve {
  background: var(--primary);
  color: var(--text-white);
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

  .nav-left {
    display: none;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px;
  }

  .concept-content,
  .feature-item,
  .access-content,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .feature-item:nth-child(even) {
    direction: ltr;
  }

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

  .footer-main {
    gap: 40px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  html {
    font-size: 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-catch {
    writing-mode: horizontal-tb;
    font-size: 2rem;
  }

  .hero-slider-nav {
    padding: 0 15px;
  }

  .hero-slider-nav button {
    width: 40px;
    height: 40px;
  }

  .hero-slider-dots {
    bottom: 100px;
  }

  .hero-slider-dots .dot {
    width: 10px;
    height: 10px;
  }

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

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

  .fixed-cta {
    display: block;
  }

  .footer {
    padding-bottom: 100px;
  }

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

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- Reservation Page ---------- */
.reservation-page {
  padding-top: 150px;
  min-height: calc(100vh - 200px);
}

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

.reservation-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.reservation-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 2;
}

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

.reservation-widget {
  width: 100%;
  min-height: 800px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #FFF;
}

.reservation-widget iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.reservation-placeholder {
  background: var(--bg-warm);
  border-radius: 15px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.reservation-placeholder-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.reservation-placeholder-content > p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 2;
}

.reservation-info {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid var(--bg-warm);
}

.reservation-info p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-dark);
}

.btn-reservation-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary);
  color: var(--text-white);
  font-weight: 600;
  border-radius: 30px;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.btn-reservation-phone:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .reservation-page {
    padding-top: 120px;
  }

  .reservation-header h1 {
    font-size: 2rem;
  }

  .reservation-placeholder {
    padding: 40px 20px;
  }
}

/* ---------- Lunch Page Styles ---------- */
.lunch-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

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

.lunch-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lunch-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.lunch-hero-content {
  text-align: center;
  color: var(--text-white);
  z-index: 2;
  padding: 0 20px;
  position: relative;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.lunch-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  justify-content: center;
}

.lunch-hero-link {
  color: var(--text-white);
  text-decoration: underline;
  font-size: 0.8rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.lunch-hero-link:hover {
  opacity: 1;
}

.lunch-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 15px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
}

.lunch-hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
  opacity: 0.95;
}

.lunch-section {
  background: var(--bg-warm);
  padding-top: 100px;
}

.lunch-intro {
  text-align: center;
  margin-bottom: 50px;
}

.lunch-image-section {
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lunch-main-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  max-height: 500px;
  margin-bottom: 20px;
}

.lunch-price {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 15px;
  letter-spacing: 0.05em;
}

.lunch-award-compact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.15) 0%, rgba(45, 90, 61, 0.15) 100%);
  border: 1.5px solid var(--primary);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 30px;
}

.award-icon-small {
  font-size: 1.3rem;
}

.award-text-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.award-text-compact strong {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.award-link-compact {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.award-link-compact:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.lunch-award-badge {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(45, 90, 61, 0.1) 100%);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.award-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.award-text {
  flex: 1;
}

.award-text strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.award-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.award-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.award-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.lunch-intro-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.lunch-points-section {
  margin-bottom: 50px;
}

.lunch-points-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 15px;
}

.lunch-points-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.lunch-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lunch-point {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: #FFF;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition-normal);
  border-left: 4px solid var(--primary);
}

.lunch-point:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.point-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
  min-width: 50px;
}

.point-content {
  flex: 1;
}

.point-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary);
  font-weight: 600;
}

.point-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.lunch-features-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.lunch-feature-compact {
  background: #FFF;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
  border-top: 3px solid var(--primary);
}

.lunch-feature-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.lunch-feature-compact h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--secondary);
  font-weight: 600;
}

.lunch-feature-compact p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.lunch-ingredients-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px;
  background: rgba(74, 124, 89, 0.05);
  border-radius: 12px;
  margin-bottom: 30px;
}

.lunch-hours {
  margin-bottom: 50px;
}

.lunch-hours-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 18px 25px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--primary);
}

.hours-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hours-time {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  font-family: var(--font-heading);
}

.ingredient-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.ingredient-name-compact {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
}

.ingredient-separator {
  color: var(--text-light);
  opacity: 0.5;
}

.lunch-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.lunch-feature-item {
  text-align: center;
  padding: 30px 20px;
  background: #FFF;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.lunch-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.lunch-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
}

.lunch-feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.lunch-feature-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.lunch-highlights {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.lunch-highlight {
  background: #FFF;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.lunch-highlight h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.lunch-highlight p {
  color: var(--text-light);
  line-height: 2;
}

.lunch-ingredients {
  background: var(--secondary);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
}

.ingredients-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 30px;
}

.ingredients-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ingredient-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ingredient-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.ingredient-detail {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.lunch-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.lunch-cta-section {
  background: var(--secondary);
  color: var(--text-white);
  padding: 80px 0;
  text-align: center;
}

.lunch-cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 15px;
}

.lunch-cta-section p {
  font-size: 1.1rem;
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 1.8;
}

.lunch-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .lunch-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lunch-hero {
    height: 50vh;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .lunch-hero {
    margin-top: 70px;
    height: 45vh;
    min-height: 350px;
  }

  .lunch-hero-badge {
    flex-direction: column;
    gap: 10px;
  }

  .lunch-image-section {
    margin-bottom: 25px;
  }

  .lunch-main-image {
    border-radius: 15px;
    max-height: 400px;
  }

  .lunch-award-compact {
    flex-direction: column;
    gap: 8px;
    padding: 12px 18px;
  }

  .award-text-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lunch-points-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .lunch-point {
    flex-direction: column;
    gap: 15px;
    padding: 20px 25px;
    border-left: none;
    border-top: 4px solid var(--primary);
  }

  .lunch-point:hover {
    transform: translateY(3px);
  }

  .point-number {
    font-size: 1.8rem;
    min-width: auto;
  }

  .lunch-features-compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lunch-price {
    font-size: 1.6rem;
  }

  .lunch-hours-content {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  .lunch-ingredients-compact {
    flex-direction: column;
    gap: 8px;
    padding: 15px;
  }

  .ingredient-separator {
    display: none;
  }

  .lunch-award-badge {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .award-icon {
    font-size: 2rem;
  }

  .award-text {
    text-align: center;
  }

  .lunch-intro-text {
    font-size: 1rem;
    line-height: 2;
  }

  .cafe-lunch-badge {
    align-self: center;
  }

  .lunch-highlight {
    padding: 20px;
  }

  .lunch-ingredients {
    padding: 30px 20px;
  }

  .ingredients-list {
    flex-direction: column;
    gap: 20px;
  }

  .lunch-cta-buttons {
    flex-direction: column;
  }

  .lunch-cta-buttons .cta-btn-primary,
  .lunch-cta-buttons .cta-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-inner {
    padding: 0 20px;
  }

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

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
