@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@300;400&family=Noto+Sans+SC:wght@300;400&display=swap');

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

:root {
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-beige: #FAF8F3;
  --color-gold: #C9B896;
  --color-marble-gray: #D4D4D4;
  --color-text-dark: #2C2C2C;
  --color-text-light: #8C8C8C;
  --font-serif: 'Noto Serif SC', serif;
  --font-sans: 'Noto Sans SC', sans-serif;
  --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text-dark);
  background: var(--color-white);
  overflow-x: hidden;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.12em;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 5%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-text-dark);
  text-decoration: none;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--color-text-dark);
}

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

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInText 2s ease-in-out forwards;
}

@keyframes fadeInText {
  to { opacity: 1; }
}

.progress-bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.progress-fill {
  height: 100%;
  background: var(--color-white);
  width: 0;
  animation: progressFill 8s linear infinite;
}

@keyframes progressFill {
  to { width: 100%; }
}

.section {
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--color-text-dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(201, 184, 150, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-text {
  color: var(--color-white);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.dialogue-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 6rem;
}

.dialogue-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.dialogue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.dialogue-content h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.dialogue-text {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--color-text-light);
}

.dialogue-text .highlight {
  color: var(--color-gold);
  font-weight: 400;
}

.series-intro {
  text-align: center;
  padding: 10rem 5% 6rem;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-beige) 100%);
}

.series-intro h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.series-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  letter-spacing: 0.15em;
}

.series-cards {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  padding: 4rem 5%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.series-cards::-webkit-scrollbar {
  height: 8px;
}

.series-cards::-webkit-scrollbar-track {
  background: var(--color-light-gray);
}

.series-cards::-webkit-scrollbar-thumb {
  background: var(--color-gold);
}

.series-card {
  min-width: 400px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.series-card:hover {
  transform: translateY(-10px);
}

.series-card-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 2rem;
}

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

.series-card:hover .series-card-image img {
  transform: scale(1.08);
}

.series-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

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

.detail-focus {
  padding: 8rem 5%;
  background: var(--color-light-gray);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

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

.detail-circle {
  width: 250px;
  height: 250px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--color-marble-gray);
}

.detail-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-caption {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.inspiration-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.inspiration-images {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0 5%;
}

.float-image {
  width: 200px;
  opacity: 0;
  animation: floatIn 1.5s ease-out forwards;
}

.float-image:nth-child(1) { animation-delay: 0.2s; }
.float-image:nth-child(2) { animation-delay: 0.4s; }
.float-image:nth-child(3) { animation-delay: 0.6s; }
.float-image:nth-child(4) { animation-delay: 0.8s; }
.float-image:nth-child(5) { animation-delay: 1s; }

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

.float-image img {
  width: 100%;
  border: 2px solid var(--color-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.float-text {
  position: absolute;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.magazine-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  padding: 8rem 5%;
  align-items: start;
}

.magazine-image {
  width: 100%;
  height: 700px;
  overflow: hidden;
}

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

.magazine-content h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.magazine-text {
  font-size: 1.05rem;
  line-height: 2.2;
  color: var(--color-text-light);
  margin-bottom: 3rem;
}

.small-images {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.small-images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  opacity: 0.7;
}

.color-palette {
  padding: 8rem 5%;
  background: var(--color-beige);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

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

.color-swatch {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-marble-gray);
}

.color-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.zen-icon {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  animation: rotate 20s linear infinite;
  z-index: 999;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.zen-icon:hover {
  opacity: 1;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.zen-quote {
  position: fixed;
  bottom: 120px;
  right: 40px;
  background: rgba(44, 44, 44, 0.95);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  max-width: 300px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 999;
}

.zen-quote.show {
  opacity: 1;
  pointer-events: auto;
}

footer {
  text-align: center;
  padding: 3rem 5%;
  color: var(--color-text-light);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  border-top: 1px solid var(--color-marble-gray);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

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

@media (max-width: 768px) {
  nav {
    padding: 1.5rem 5%;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-size: 0.85rem;
  }
  
  .hero-text {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 5rem 5%;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .dialogue-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dialogue-image {
    height: 400px;
  }
  
  .series-cards {
    padding: 3rem 5%;
  }
  
  .series-card {
    min-width: 300px;
  }
  
  .series-card-image {
    height: 400px;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .magazine-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 5%;
  }
  
  .magazine-image {
    height: 500px;
  }
  
  .color-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .zen-icon {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
  }
  
  .zen-quote {
    bottom: 100px;
    right: 30px;
    max-width: 250px;
  }
}