/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
  font-weight: 300;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Loading Screen ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-text {
  display: flex;
  gap: 4px;
}

.loading-text span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: loadFade 0.5s ease forwards;
}

.loading-text span:nth-child(1) { animation-delay: 0.0s; }
.loading-text span:nth-child(2) { animation-delay: 0.1s; }
.loading-text span:nth-child(3) { animation-delay: 0.2s; }
.loading-text span:nth-child(4) { animation-delay: 0.3s; }
.loading-text span:nth-child(5) { animation-delay: 0.4s; }

@keyframes loadFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.header.hide {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #111;
}

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

.nav-desktop a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  position: relative;
  transition: color 0.3s ease;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #111;
  transition: width 0.3s ease;
}

.nav-desktop a:hover {
  color: #111;
}

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

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nav-mobile-inner a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.nav-mobile.open .nav-mobile-inner a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.open .nav-mobile-inner a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.open .nav-mobile-inner a:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile.open .nav-mobile-inner a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.open .nav-mobile-inner a:nth-child(4) { transition-delay: 0.25s; }

.nav-mobile-inner a:hover {
  color: #999;
}

.nav-mobile-sns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.nav-mobile.open .nav-mobile-sns {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-sns a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 1 !important;
  transform: none !important;
}

/* ===== Hero ===== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #111;
  overflow: hidden;
}

/* Background media layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide fallback image when video is playing */
.hero-video.is-playing + .hero-fallback {
  display: none;
}

/* If no video source loads, hide video element and show fallback */
.hero-video {
  position: absolute;
  inset: 0;
}

.hero-fallback {
  position: absolute;
  inset: 0;
}

/* Semi-transparent overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

/* No media loaded: show gradient fallback */
.hero-bg--empty {
  background: linear-gradient(180deg, #fff 0%, #f8f6f4 100%);
}
.hero-bg--empty ~ .hero-overlay {
  background: none;
}
.hero-bg--empty ~ .hero-content .hero-sub { color: #999; }
.hero-bg--empty ~ .hero-content .hero-title { color: #111; text-shadow: none; }
.hero-bg--empty ~ .hero-content .hero-desc { color: #bbb; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ===== Sections ===== */
.section {
  padding: 120px 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 60px;
  color: #111;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 16px;
}

/* ===== About ===== */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #f5f0ed 0%, #ebe5e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #ccc;
  position: relative;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.about-image-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #111;
}

.about-bio {
  font-size: 0.9rem;
  line-height: 2;
  color: #666;
  margin-bottom: 32px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-detail {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.detail-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  min-width: 80px;
}

.detail-value {
  font-size: 0.9rem;
  color: #555;
}

/* ===== News ===== */
.news {
  background: #faf9f8;
}

.news-list {
  max-width: 700px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
  cursor: pointer;
  flex-wrap: wrap;
}

.news-item:hover {
  background: rgba(0, 0, 0, 0.01);
}

.news-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #aaa;
  white-space: nowrap;
}

.news-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  color: #888;
  white-space: nowrap;
}

.news-text {
  font-size: 0.9rem;
  color: #444;
  flex: 1;
}

/* ===== Schedule ===== */
.schedule {
  background: #fff;
}

.schedule-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.schedule-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: #faf9f8;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.schedule-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.schedule-month {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #bbb;
  text-transform: uppercase;
}

.schedule-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #111;
  line-height: 1.1;
}

.schedule-info {
  flex: 1;
}

.schedule-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a87c;
}

.schedule-name {
  font-size: 1rem;
  font-weight: 400;
  margin: 4px 0;
  color: #333;
}

.schedule-detail {
  font-size: 0.8rem;
  color: #999;
}

/* ===== Shop ===== */
.shop {
  background: #faf9f8;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.shop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px 24px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.shop-icon {
  color: #555;
  transition: color 0.3s ease;
}

.shop-card:hover .shop-icon {
  color: #111;
}

.shop-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #333;
}

.shop-desc {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.7;
  margin-top: 4px;
}

.shop-desc--coming {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #b89968;
  margin-top: 6px;
}

/* ===== Portfolio ===== */
.portfolio {
  background: #faf9f8;
}

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

.tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #111;
  transition: width 0.3s ease;
}

.tab-btn.active {
  color: #111;
}

.tab-btn.active::after {
  width: 100%;
}

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

.portfolio-grid--video {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-grid.hidden {
  display: none;
}

.portfolio-coming {
  padding: 40px 0 20px;
}

.portfolio-coming.hidden {
  display: none;
}

.portfolio-photo-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.portfolio-photo-content.hidden {
  display: none;
}

.photo-album-header {
  text-align: center;
  margin-bottom: 28px;
}

.photo-album-date {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.photo-album-name {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #111;
}

.photo-album-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.photo-thumb-link {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0ebe7;
  position: relative;
}

.photo-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.photo-thumb-link:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .photo-album-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .photo-album-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.is-open .lightbox-overlay {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.is-open .lightbox-content {
  opacity: 1;
  transform: scale(1);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav--prev { left: 24px; }
.lightbox-nav--next { right: 24px; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
  .lightbox-nav--prev { left: 12px; }
  .lightbox-nav--next { right: 12px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 1.3rem; }
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f0ebe7 0%, #e8e2dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #ccc;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.02);
}

.portfolio-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.portfolio-item:hover .portfolio-thumb::before {
  background: rgba(0, 0, 0, 0.03);
}

.video-thumb {
  aspect-ratio: 16 / 9;
}

.play-btn {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}

.portfolio-item:hover .play-btn {
  transform: scale(1.1);
  background: #fff;
}

.video-title {
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
  text-align: center;
}

/* ===== Section More Link ===== */
.section-more,
.portfolio-more {
  text-align: center;
  margin-top: 40px;
}

.portfolio-more.hidden {
  display: none;
}

.more-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid #ddd;
  border-radius: 40px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.more-link:hover {
  color: #111;
  border-color: #111;
  background: rgba(0, 0, 0, 0.02);
}

.timetree-icon {
  flex-shrink: 0;
}

/* ===== Links ===== */
.links {
  background: #fff;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px 24px;
  background: #faf9f8;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.link-icon {
  color: #555;
  transition: color 0.3s ease;
}

.link-card:hover .link-icon {
  color: #111;
}

.link-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
}

.link-id {
  font-size: 0.75rem;
  color: #aaa;
}

/* ===== Coming Soon (generic) ===== */
.coming-soon-status {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #b89968;
  text-align: center;
  margin-bottom: 16px;
}

.contact-button + .contact-text--secondary {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #eee;
}

.coming-soon-note {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.9;
  text-align: center;
}

/* ===== Present ===== */
.present {
  background: #faf9f8;
}

.present-box {
  max-width: 480px;
  margin: 0 auto;
  padding: 56px 32px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
}

.present-lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 24px;
}

.present-status {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #b89968;
  margin-bottom: 20px;
}

.present-note {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.9;
}

.present-address {
  margin-bottom: 8px;
  padding: 20px 16px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  line-height: 1.8;
  color: #333;
}

.present-zip {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #555;
  margin-bottom: 6px;
}

.present-addr-line {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.present-addressee {
  font-size: 1rem;
  font-weight: 500;
}

.present-addressee-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #b89968;
  padding: 2px 8px;
  border: 1px solid #b89968;
  margin-right: 10px;
  vertical-align: middle;
}

.present-addressee-name {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.present-warning {
  margin-top: 28px;
  font-size: 0.78rem;
  line-height: 1.8;
  color: #8a6d3b;
}

.present-box-action {
  margin-top: 16px;
}

.present-notes-btn {
  background: none;
  cursor: pointer;
  font: inherit;
}

.present-notes-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.present-notes-btn:hover .present-notes-arrow {
  transform: translateX(4px);
}

.present-notes-block {
  margin-bottom: 28px;
}

.present-notes-block:last-child {
  margin-bottom: 0;
}

.present-notes-heading {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #555;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 2px solid #b89968;
}

.present-notes-list {
  list-style: none;
  padding-left: 14px;
}

.present-notes-list li {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.9;
  position: relative;
  padding-left: 16px;
}

.present-notes-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #c0a87c;
}

.present-notes-text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.9;
  padding-left: 14px;
}

.present-notes-text + .present-notes-list {
  margin-top: 10px;
}

.present-notes-block--important {
  background: #faf5ec;
  border-radius: 6px;
  padding: 22px 24px;
  margin-bottom: 32px;
}

.present-notes-block--important .present-notes-heading {
  color: #8a6d3b;
  border-left-color: #8a6d3b;
  margin-bottom: 10px;
}

.present-notes-block--important .present-notes-text {
  padding-left: 0;
  color: #6b5530;
}

.present-notes-block--important strong {
  color: #5a4423;
  font-weight: 500;
}

/* ===== Present Popup ===== */
.present-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.present-popup.is-open {
  display: flex;
}

.present-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 18, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.present-popup.is-open .present-popup-overlay {
  opacity: 1;
}

.present-popup-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  padding: 48px 40px 40px;
  text-align: left;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.present-popup.is-open .present-popup-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.present-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.2s ease;
}

.present-popup-close:hover {
  color: #111;
}

.present-popup-title {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #111;
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}

@media (max-width: 480px) {
  .present-popup-card {
    padding: 40px 24px 32px;
  }
}

/* ===== Contact ===== */
.contact {
  background: #fff;
}

.contact-text {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  line-height: 2;
  margin-bottom: 40px;
}

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

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  background: #111;
  padding: 18px 44px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-link:hover {
  background: #b89968;
  transform: translateY(-2px);
}

.contact-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-link:hover .contact-arrow {
  transform: translateX(4px);
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0;
  text-align: center;
  background: #faf9f8;
  border-top: 1px solid #f0f0f0;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #ccc;
  margin-bottom: 12px;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #ccc;
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-placeholder {
    max-width: 300px;
    margin: 0 auto;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }

  .news-item > :first-child {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .schedule-item {
    padding: 20px;
    gap: 16px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    letter-spacing: 0.1em;
  }

  .hero-video,
  .hero-fallback {
    object-position: left center;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-date-block {
    min-width: 48px;
  }

  .schedule-day {
    font-size: 1.8rem;
  }
}

/* ===== News Popup ===== */
.news-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.news-popup.is-open {
  display: flex;
}

.news-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 18, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.news-popup.is-open .news-popup-overlay {
  opacity: 1;
}

.news-popup-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  padding: 48px 36px 40px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.news-popup.is-open .news-popup-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.news-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #333;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 2;
  transition: color 0.2s ease, background 0.2s ease;
}

.news-popup-close:hover {
  color: #111;
  background: #fff;
}

.news-popup-image {
  display: block;
  width: calc(100% + 72px);
  max-width: none;
  margin: -48px -36px 24px;
  max-height: 320px;
  object-fit: cover;
}

.news-popup-image.hidden {
  display: none;
}

.news-popup-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #b89968;
  margin-bottom: 18px;
}

.news-popup-title {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.5;
}

.news-popup-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 28px;
  white-space: pre-line;
}

.news-popup-link {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #fff;
  background: #111;
  padding: 14px 36px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.news-popup-link:hover {
  background: #b89968;
  transform: translateY(-2px);
}

.news-popup-link.hidden {
  display: none;
}

@media (max-width: 480px) {
  .news-popup-card {
    padding: 40px 24px 32px;
  }

  .news-popup-title {
    font-size: 1.25rem;
  }

  .news-popup-image {
    width: calc(100% + 48px);
    margin: -40px -24px 20px;
    max-height: 240px;
  }
}
