/* 
  Maruyama Pudding - Premium Landing Page Stylesheet
  Theme: Warm Custard, Rich Caramel & Luxurious Chocolate
*/

/* Custom CSS Variables for Design System */
:root {
  --primary-color: #c58f2d; /* Gold Caramel */
  --primary-light: #e5b75b;
  --primary-dark: #8e6216;
  --accent-color: #e35235; /* Sweet Red Accent */
  
  --bg-cream: #faf5ed; /* Milk Cream Background */
  --bg-cream-dark: #eedec5;
  --bg-white: #ffffff;
  
  --text-dark: #2a1608; /* Dark Cocoa */
  --text-muted: #6a5340; /* Soft Caramel */
  --text-light: #fefcf9; /* Milky White */
  
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: rgba(74, 44, 17, 0.08);
  
  --card-shadow: 0 10px 30px -5px rgba(74, 44, 17, 0.06), 
                 0 4px 12px -2px rgba(74, 44, 17, 0.03);
  --card-shadow-hover: 0 20px 40px -10px rgba(74, 44, 17, 0.12), 
                       0 8px 20px -4px rgba(74, 44, 17, 0.06);
                       
  --font-serif: 'Shippori Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-quick: all 0.2s ease-out;
}

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

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

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0.03em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-quick);
}

/* Base Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Common Styling */
.section-padding {
  padding: 100px 0;
}

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

.section-header .subtitle {
  font-family: var(--font-outfit);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary-color);
  display: block;
  margin-bottom: 12px;
}

.section-header .title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #513012, #7a481c);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1000;
}

.announcement-bar span {
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 6px;
  display: inline-block;
}

/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  z-index: 999;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-family: var(--font-outfit);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary-color);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-quick);
}

.nav-item:hover::after {
  width: 100%;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-tel-quick {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 8px 14px;
  border-radius: 50px;
  background-color: var(--bg-cream-dark);
}

.btn-tel-quick i {
  width: 16px;
  height: 16px;
  color: var(--primary-dark);
}

.btn-tel-quick:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-cta-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(197, 143, 45, 0.25);
}

.btn-cta-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 143, 45, 0.35);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-quick);
  transform-origin: left center;
}

/* Mobile Nav Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-cream);
  z-index: 998;
  transition: var(--transition-smooth);
  padding: 120px 32px 32px;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-item {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(74, 44, 17, 0.1);
  padding-bottom: 12px;
}

.mobile-nav-ctas {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-btn-tel, .mobile-btn-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
}

.mobile-btn-tel {
  background-color: var(--bg-white);
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
}

.mobile-btn-map {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 6px 18px rgba(197, 143, 45, 0.3);
}

/* Active Hamburger Icon State */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(-2px, -3px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(-2px, 3px);
}


/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: zoomBg 20s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(20, 10, 3, 0.85) 35%, rgba(20, 10, 3, 0.25) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-title-main {
  display: block;
  color: var(--primary-light);
}

.hero-title-sub {
  font-size: 1.9rem;
  font-weight: 600;
  display: block;
  margin-top: 8px;
  color: #fff;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary-hero {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-dark);
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(197, 143, 45, 0.4);
  transition: var(--transition-smooth);
}

.btn-primary-hero i {
  width: 18px;
  height: 18px;
  transition: var(--transition-quick);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 143, 45, 0.5);
}

.btn-primary-hero:hover i {
  transform: translateX(3px) rotate(15deg);
}

.btn-secondary-hero {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.btn-secondary-hero:hover {
  background-color: #fff;
  color: var(--text-dark);
  transform: translateY(-3px);
}

.hero-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background-color: #2ec4b6;
  border-radius: 50%;
  animation: pulseGreen 1.5s infinite;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: var(--bg-cream);
}

/* Animations Keyframes */
@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(46, 196, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}


/* Highlights Section */
.highlights-section {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}

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

.highlight-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(74, 44, 17, 0.02);
}

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

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(197, 143, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
}

.highlight-icon i {
  width: 28px;
  height: 28px;
}

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* Concept Section */
.concept-section {
  background-color: var(--bg-cream);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.concept-item {
  background-color: var(--bg-white);
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(74, 44, 17, 0.01);
  position: relative;
  overflow: hidden;
}

.concept-num {
  font-family: var(--font-outfit);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(197, 143, 45, 0.1);
  position: absolute;
  top: 15px;
  right: 24px;
}

.concept-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
  padding-right: 40px;
}

.concept-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Concept Video Fallback Frame */
.concept-video-fallback {
  height: 380px;
  border-radius: 24px;
  background-image: linear-gradient(135deg, rgba(74, 44, 17, 0.1) 0%, rgba(42, 22, 8, 0.2) 100%), url('assets/hero-pudding.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: flex-end;
}

.fallback-overlay {
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(42, 22, 8, 0.8) 0%, transparent 100%);
  color: #fff;
}

.fallback-content {
  max-width: 600px;
}

.fallback-content h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fallback-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}


/* Menu Section */
.menu-section {
  background-color: var(--bg-white);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.menu-tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  background-color: var(--bg-cream);
  color: var(--text-muted);
  border: 1px solid rgba(74, 44, 17, 0.05);
}

.menu-tab-btn.active {
  background-color: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

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

.menu-card {
  display: flex;
  background-color: var(--bg-cream);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

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

.menu-image-container {
  width: 40%;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.menu-card:hover .menu-image {
  transform: scale(1.06);
}

.menu-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.badge-popular {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.badge-new {
  background-color: var(--accent-color);
  color: white;
}

.badge-gift {
  background-color: #513012;
  color: white;
}

.menu-content {
  width: 60%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.menu-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(74, 44, 17, 0.06);
  padding-top: 12px;
}

.menu-price {
  font-family: var(--font-outfit);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
}

.tax-info {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.menu-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-meta i {
  width: 12px;
  height: 12px;
}

.menu-notice {
  margin-top: 48px;
  padding: 24px;
  background-color: var(--bg-cream);
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
}

.menu-notice p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* Reviews Section */
.reviews-section {
  background-color: var(--bg-cream);
}

.rating-summary-card {
  max-width: 400px;
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: 20px;
  margin: 0 auto 48px;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(197, 143, 45, 0.1);
}

.rating-number {
  font-family: var(--font-outfit);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.rating-stars-container {
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.stars i {
  width: 20px;
  height: 20px;
}

.fill-gold {
  fill: #f5b027;
  color: #f5b027;
}

.review-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-carousel-wrapper {
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  min-width: 100%;
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(74, 44, 17, 0.01);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(74, 44, 17, 0.05);
  padding-bottom: 12px;
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars i {
  width: 16px;
  height: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--bg-cream-dark);
  cursor: pointer;
  transition: var(--transition-quick);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.reviews-action {
  text-align: center;
  margin-top: 32px;
}

.btn-review-write {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 2px dashed var(--primary-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-quick);
}

.btn-review-write i {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

.btn-review-write:hover {
  background-color: var(--primary-color);
  color: white;
  border-style: solid;
}

.btn-review-write:hover i {
  color: white;
}


/* Access & Store Info Section */
.access-section {
  background-color: var(--bg-white);
}

.access-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.access-info {
  background-color: var(--bg-cream);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.info-table tr {
  border-bottom: 1px solid rgba(74, 44, 17, 0.08);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table th {
  text-align: left;
  vertical-align: top;
  padding: 16px 0;
  width: 100px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.info-table td {
  padding: 16px 0 16px 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.tel-link {
  font-family: var(--font-outfit);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-dark);
}

.tel-notice {
  font-size: 0.75rem;
  color: var(--accent-color);
}

.access-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-access-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

.btn-access-action i {
  width: 16px;
  height: 16px;
}

.btn-access-action.map-route {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(197, 143, 45, 0.2);
}

.btn-access-action.map-route:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 143, 45, 0.3);
}

.btn-access-action.tel-call {
  background-color: var(--bg-white);
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
}

.btn-access-action.tel-call:hover {
  background-color: var(--text-dark);
  color: white;
  transform: translateY(-2px);
}

.access-map-wrapper {
  height: 100%;
  min-height: 480px;
}

.simulated-map {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(74, 44, 17, 0.05);
  position: relative;
}

.map-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  max-width: 280px;
  z-index: 5;
}

.map-overlay-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.map-overlay-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.map-overlay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--text-dark);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 50px;
}

.map-overlay-btn i {
  width: 14px;
  height: 14px;
}

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


/* FAQ Section */
.faq-section {
  background-color: var(--bg-cream);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(246, 240, 230, 0.3);
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* Closing Call To Action */
.closing-cta {
  background-color: #2a1608;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-dark) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.15;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

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

.btn-cta-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
}

.btn-cta-large i {
  width: 20px;
  height: 20px;
}

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

.btn-cta-large.tel-btn:hover {
  background-color: var(--bg-cream-dark);
  transform: translateY(-2px);
}

.btn-cta-large.map-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(197, 143, 45, 0.3);
}

.btn-cta-large.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 143, 45, 0.4);
}


/* Footer Section */
.footer {
  background-color: #1a0d04;
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 20px;
  font-size: 0.9rem;
}

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

.footer-brand .logo-text {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: inline-block;
}

.brand-desc {
  line-height: 1.6;
  margin-bottom: 24px;
}

.sns-links {
  display: flex;
  gap: 12px;
}

.sns-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-quick);
}

.sns-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.sns-links a i {
  width: 18px;
  height: 18px;
}

.footer-nav h4, .footer-info h4 {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-info a:hover {
  color: var(--primary-light);
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}


/* Mobile Sticky Widget for MEO conversions */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
  z-index: 990;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 10px 16px;
  gap: 12px;
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

.sticky-cta-btn i {
  width: 16px;
  height: 16px;
}

.sticky-cta-btn.phone-btn {
  background-color: white;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
}

.sticky-cta-btn.route-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}


/* Scroll Reveal Animation Styles */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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


/* Responsive Media Queries */

/* Tablet Layout (under 1024px) */
@media (max-width: 1024px) {
  .header-container {
    padding: 12px 20px;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-title-sub {
    font-size: 1.6rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .concept-grid {
    gap: 20px;
  }
  
  .menu-grid {
    gap: 20px;
  }
  
  .access-container {
    gap: 24px;
  }
  
  .footer-grid {
    gap: 40px;
  }
}

/* Landscape Mobile & Small Tablets (under 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header .title {
    font-size: 1.8rem;
  }
  
  /* Menu header adjustments */
  .nav-menu {
    display: none; /* Hide standard nav menu */
  }
  
  .header-actions {
    display: none; /* Hide header buttons */
  }
  
  .mobile-menu-toggle {
    display: flex; /* Show hamburger */
  }
  
  /* Hero section adjustments */
  .hero-section {
    height: auto;
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-overlay {
    background: linear-gradient(to top, rgba(20, 10, 3, 0.92) 50%, rgba(20, 10, 3, 0.4) 100%);
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-title-sub {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-primary-hero, .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }
  
  /* Highlights & Concept Cards layout */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .concept-video-fallback {
    height: 250px;
  }
  
  .fallback-overlay {
    padding: 20px;
  }
  
  .fallback-content h3 {
    font-size: 1.25rem;
  }
  
  /* Menu layout */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .menu-card {
    flex-direction: column;
  }
  
  .menu-image-container {
    width: 100%;
    height: 180px;
    min-height: auto;
  }
  
  .menu-content {
    width: 100%;
    padding: 20px;
  }
  
  /* Access details */
  .access-container {
    grid-template-columns: 1fr;
  }
  
  .access-map-wrapper {
    min-height: 350px;
  }
  
  .simulated-map {
    height: 350px;
  }
  
  .access-info {
    padding: 24px;
  }
  
  .access-actions {
    grid-template-columns: 1fr;
  }
  
  /* Reviews Carousel */
  .review-card {
    padding: 24px;
  }
  
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  /* CTA Closing buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-cta-large {
    width: 100%;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Show Mobile Sticky CTA Widget */
  .mobile-sticky-cta {
    display: grid;
  }
  
  /* Add padding to body for sticky widget */
  body {
    padding-bottom: 68px;
  }
}

/* ============================================
   SAMPLE 見本表示（透かし & リボン）
   ============================================ */
.sample-watermark {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4vh;
  transform: rotate(-30deg) scale(1.6);
  transform-origin: center;
}
.sample-watermark-row {
  display: flex;
  justify-content: center;
  gap: 6vw;
  white-space: nowrap;
}
.sample-watermark-row span {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 6vw;
  letter-spacing: 0.15em;
  color: rgba(120, 120, 120, 0.12);
  text-transform: uppercase;
  user-select: none;
}
.sample-ribbon {
  position: fixed;
  top: 32px;
  right: -60px;
  z-index: 99999;
  pointer-events: none;
  transform: rotate(45deg);
  background: #c0392b;
  color: #fff;
  padding: 8px 70px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.sample-ribbon span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  user-select: none;
}
@media (max-width: 768px) {
  .sample-watermark-row span { font-size: 11vw; }
  .sample-ribbon { top: 24px; right: -64px; padding: 7px 70px; }
  .sample-ribbon span { font-size: 12px; }
}
