@charset "UTF-8";

/* =========================================
   Variables & Reset
 ========================================= */
:root {
  --color-bg: #FFFFFF;
  --color-text: #000000;
  --color-accent: #888888;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --font-serif-en: 'Cormorant Garamond', serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans: 'Outfit', sans-serif;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: var(--font-sans);
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative; /* Ensure containment */
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden; /* Contain section decorations */
}

.bg-light {
  background-color: var(--color-light-gray);
}

.center {
  text-align: center;
}

/* =========================================
   Typography
 ========================================= */
.section-title {
  font-family: var(--font-serif-en);
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.1;
  line-height: 1;
}

.section-lead {
  font-family: var(--font-serif-en);
  font-size: 1.5rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid var(--color-text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 20px;
}

.btn:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

/* =========================================
   Animations
 ========================================= */
.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.js-fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }

/* =========================================
   Header
 ========================================= */
.header {
  position: fixed; /* Changed back to fixed for accessibility */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  color: var(--color-white);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  color: var(--color-text);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.nav ul {
  display: flex;
  gap: 15px;
}

.nav li a {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.header.scrolled .nav li a {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text);
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
}

/* =========================================
   Hero
 ========================================= */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: filter 1.5s ease;
}

.hero-bg.is-colored {
  filter: grayscale(0%);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 4px;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-content h2 i {
  font-family: var(--font-serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: 4rem;
}

.hero-content p {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  margin-top: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* =========================================
   Style (Lookbook)
 ========================================= */
.style-grid {
  display: flex;
  flex-direction: column;
  gap: 15rem;
}

.style-item {
  display: flex;
  align-items: center;
  position: relative;
}

.style-item:nth-child(even) {
  flex-direction: row-reverse;
}

.style-img {
  width: 60%;
  aspect-ratio: 16 / 9;
}

.style-text {
  width: 30%;
  padding: 0 5%;
}

.style-text .no {
  font-family: var(--font-serif-en);
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.style-text h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

/* =========================================
   Menu
 ========================================= */
.menu-list {
  max-width: 800px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}

.menu-info h4 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.menu-info p {
  font-size: 0.8rem;
  color: #888;
}

.menu-item .price {
  font-family: var(--font-serif-en);
  font-size: 1.2rem;
}

/* =========================================
   Recruit
 ========================================= */
.recruit-flex {
  display: flex;
  align-items: center;
  gap: 10%;
}

.recruit-text {
  width: 40%;
}

.recruit-img {
  width: 50%;
  aspect-ratio: 1 / 1;
  background-color: #000;
}

/* =========================================
   Access
 ========================================= */
.access-grid {
  display: flex;
  gap: 5%;
}

.map-area {
  width: 60%;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.info-area {
  width: 35%;
}

.info-area h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.info-area p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* =========================================
   Footer
 ========================================= */
.footer {
  background-color: #111;
  color: #fff;
  padding: 60px 0;
}

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

.footer-logo {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

.copyright {
  font-size: 0.7rem;
  opacity: 0.5;
}

/* =========================================
   Responsive
 ========================================= */
@media screen and (max-width: 899px) {
  .style-grid { gap: 8rem; }
  .style-item, .style-item:nth-child(even), .recruit-flex, .access-grid {
    flex-direction: column;
    gap: 40px;
  }
  .style-img, .style-text, .recruit-text, .recruit-img, .map-area, .info-area {
    width: 100%;
  }
  .hero-content h2 { font-size: 2.5rem; }
  .hero-content h2 i { font-size: 3rem; }
  .nav ul { gap: 10px; }
  .nav li a { padding: 5px 10px; font-size: 0.65rem; }
}
