@charset "UTF-8";

/* =========================================================================
   UTAMIZUKI APPLE-STYLE CSS (v2 with Advanced Animations)
   ========================================================================= */

:root {
  --bg-color: #000000;
  --text-main: #f5f5f7;
  --text-muted: #86868b;
  --accent-color: #2997ff;
  --box-bg: rgba(255, 255, 255, 0.04);
  --font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  
  /* Easing functions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

html {
  font-size: 16px;
  /* Smooth scroll handled mainly by JS now for parallax consistency, but keep as fallback */
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

.headline-hero {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.headline-section {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.text-large {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.text-body {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
}

.text-bold {
  font-weight: 600;
}

.text-muted-box {
  background: var(--box-bg);
  padding: 24px 32px;
  border-radius: 16px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.text-muted-box ul {
  padding-left: 20px;
  margin: 8px 0 0 0;
}
.text-muted-box li {
  margin-bottom: 6px;
}
.text-muted-box strong {
  color: #fff;
  font-weight: 500;
}

/* =========================================================================
   LAYOUT UTILITIES
   ========================================================================= */
.container {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}

.section {
  padding: 160px 0;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

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

/* =========================================================================
   ILLUSTRATIONS
   ========================================================================= */
.floating-illustration {
  position: absolute;
  z-index: 1; /* Bring above background */
  opacity: 0.9; /* Natural look */
  pointer-events: none;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

.float-left {
  top: -60px;
  left: -2%;
  width: 250px;
  transform: rotate(-5deg);
}

.float-right {
  top: -30px;
  right: -2%;
  width: 220px;
  transform: rotate(8deg);
}

@media (max-width: 768px) {
  .float-left { top: -40px; left: -5%; width: 180px; }
  .float-right { top: -20px; right: -5%; width: 160px; }
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: transform 0.4s var(--ease-out-expo), background 0.4s;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 5%;
}

.nav-logo img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

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

/* =========================================================================
   BUTTONS & MICRO-INTERACTIONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
}

.btn-nav {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: scale(1.02);
}

.hover-lift:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
  height: 100vh;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Parallax Wrapper */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Extra height for parallax */
  z-index: -2;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: heroBreathing 20s infinite alternate ease-in-out;
}

.hero-overlay {
  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.85) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 60px; /* offset for nav */
}

.hero .headline-hero {
  margin-bottom: 24px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.8);
}

.hero .text-body {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 48px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes heroBreathing {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

/* =========================================================================
   VALUE SECTION
   ========================================================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

.value-item {
  text-align: center;
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

.value-item p {
  color: var(--text-muted);
}

/* =========================================================================
   EXPERIENCE SECTION & DIVIDER
   ========================================================================= */
.section-divider-logo {
  text-align: center;
  margin: 100px 0;
  display: flex;
  justify-content: center;
}

.section-divider-logo img {
  max-width: 280px;
  width: 60%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.experience-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.experience-image {
  width: 100%;
  max-width: 980px;
  height: 65vh;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
  /* Box shadow removed for a cleaner Apple feel */
}

.parallax-zoom {
  width: 100%;
  height: 120%; /* Allow parallax scroll space */
  object-fit: cover;
  position: absolute;
  top: -10%;
  left: 0;
}

.experience-text {
  text-align: center;
  max-width: 600px;
}

/* =========================================================================
   PRICING SECTION
   ========================================================================= */
.pricing-wrapper {
  max-width: 800px;
  margin: 60px auto 0;
}

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

.pricing-table th,
.pricing-table td {
  padding: 24px 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.pricing-price {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: right;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.pricing-divider {
  margin: 40px 0 20px;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
}
.pricing-divider span {
  color: var(--accent-color);
  letter-spacing: 0.05em;
}

.pricing-supplement {
  margin-top: 40px;
}

.menu-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .menu-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--box-bg);
}

.menu-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================================================================
   ACCESS SECTION
   ========================================================================= */
.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 80px;
}

@media (min-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.access-info {
  background: var(--box-bg);
  padding: 48px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.access-info:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.access-map {
  width: 100%;
  height: 450px;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  position: relative;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(100%) hue-rotate(180deg) brightness(85%) contrast(85%); /* Apple Map dark mode look approx */
}

.info-row {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 16px;
}
.info-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  flex: 0 0 100px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.info-value {
  flex: 1;
  color: var(--text-main);
  line-height: 1.6;
}

.access-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 10;
}

.footer p {
  color: var(--text-muted);
}

/* =========================================================================
   NEW VISUAL EXCITMENT ELEMENTS (Vibe Enhancers)
   ========================================================================= */

/* Ambient Glow Backgrounds */
.ambient-glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -3; /* Behind everything */
  opacity: 0.15;
  pointer-events: none;
}

.glow-1 {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, #2997ff, rgba(41,151,255,0));
  animation: breatheGlow1 12s ease-in-out infinite alternate;
}

.glow-2 {
  bottom: -10%;
  right: -10%;
  background: radial-gradient(circle, #bf5af2, rgba(191,90,242,0));
  animation: breatheGlow2 15s ease-in-out infinite alternate;
}

@keyframes breatheGlow1 {
  0% { transform: scale(0.8) translate(0, 0); opacity: 0.1; }
  100% { transform: scale(1.2) translate(5%, 5%); opacity: 0.25; }
}

@keyframes breatheGlow2 {
  0% { transform: scale(1.0) translate(0, 0); opacity: 0.1; }
  100% { transform: scale(0.8) translate(-5%, -5%); opacity: 0.2; }
}

/* Scrolling Text Marquee */
.marquee-section {
  width: 100%;
  overflow: hidden;
  background: var(--accent-color);
  color: #000;
  padding: 16px 0;
  position: relative;
  z-index: 10;
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin: 40px 0 80px 0;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 20s linear infinite;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.marquee-content span {
  padding-right: 20px;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); } /* Because we have 3 identical spans */
}

/* Gallery Slider (Infinite Horizontal Scroll) */
.gallery-section {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 10;
}

.gallery-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 24px;
  animation: scrollGallery 45s linear infinite;
  width: max-content;
}

.gallery-track img {
  height: 250px;
  width: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease-out-expo);
}

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

@media (max-width: 768px) {
  .gallery-track img {
    height: 180px;
  }
}

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); } /* 50% of track length + half gap */
}

/* =========================================================================
   REVEAL ANIMATIONS (Triggered via Intersection Observer)
   ========================================================================= */
.reveal {
  will-change: transform, opacity, filter;
}

/* Fade Up */
.reveal.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.reveal.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale Up */
.reveal.scale-up {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 1.4s var(--ease-out-expo), transform 1.4s var(--ease-out-expo);
}
.reveal.scale-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Clip Reveal */
.reveal.clip-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.4s var(--ease-out-expo);
}
.reveal.clip-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

/* Delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-500 { transition-delay: 500ms; }
