/* Custom styles — complements Tailwind */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;

}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-display {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
}

.font-body {
  font-family: "Noto Sans JP", sans-serif;
}

/* Hero gradient overlay */
.hero-overlay {
  background: linear-gradient(
    165deg,
    rgba(45, 42, 46, 0.55) 0%,
    rgba(107, 78, 90, 0.35) 45%,
    rgba(250, 247, 244, 0.15) 100%
  );
}

/* Subtle grain texture */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Section divider ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #c9a9a6;
}

.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: 3rem;
  background: linear-gradient(90deg, transparent, #e8c4c4, transparent);
}

/* Timeline connector */
.timeline-line {
  position: absolute;
  left: 1.25rem;
  top: 2.5rem;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, #e8c4c4, transparent);
}

/* FAQ accordion */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* CTA shimmer on hover */
.btn-primary {
  background: linear-gradient(135deg, #6b4e5a 0%, #8b6b7a 50%, #6b4e5a 100%);
  background-size: 200% 200%;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 12px 32px -8px rgba(107, 78, 90, 0.45);
}

/* Card hover lift */
.card-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(45, 42, 46, 0.12);
}

/* Season color dots for color section */
.season-spring { background: #e8b4b8; }
.season-summer { background: #b8c9d4; }
.season-autumn { background: #c4a882; }
.season-winter { background: #9b8b9e; }

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky header — transparent over hero, solid on scroll */
#site-header {
  color: #fff;
}

#site-header .logo-title,
#site-header .logo-sub,
#site-header .nav-link {
  color: inherit;
  transition: color 0.3s ease;
}

#site-header .nav-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

#site-header .menu-btn {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

#site-header.header-scrolled {
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 169, 166, 0.2);
  color: #2d2a2e;
}

#site-header.header-scrolled .nav-cta {
  background: linear-gradient(135deg, #6b4e5a 0%, #8b6b7a 50%, #6b4e5a 100%);
  border: none;
  color: #fff;
}

#site-header.header-scrolled .menu-btn {
  border-color: rgba(201, 169, 166, 0.6);
  color: #6b4e5a;
}

/* Mobile menu */
.mobile-nav {
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.is-open {
  transform: translateX(0);
}
.text-white01{
  --tw-text-opacity: 1;
  color:#b9ac91;
}