/* Lav-Fabec Roasters - Main Stylesheet */
:root {
  --bg: #2a2a2a;
  --ink: #e0e0e0;
  --ink-weak: #999999;
  --cream: #2a2a2a;
  --gold: #c6a664;
  --dark: #171717;
  --container: min(1120px, 92vw);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.theme-tbc {
  --bg: #2a2a2a;
  --cream: #2a2a2a;
  --dark: #161616;
}

/* Base Styles */
* {
  box-sizing: border-box;
}
 
html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
}

/* 全ての要素にPlayfair Displayを適用 */
* {
  font-feature-settings: "palt" 1;
  font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
}

/* 英数字に明示的にPlayfair Displayを適用 */
body,
h1, h2, h3, h4, h5, h6,
p, span, div, a, button,
.section__title,
.section__subtitle,
.section__title--large,
.pillar__title,
.pillar__subtitle,
.pillar__text,
.timeline-header__title,
.timeline-header__subtitle,
.timeline-step__time,
.timeline-step__label,
.timeline-step__desc,
.aroma-gauge__title,
.aroma-gauge__subtitle,
.aroma-gauge__label,
.nuts-quality__title,
.nuts-quality__subtitle,
.chocolate__title,
.chocolate__subtitle,
.reviews__title,
.faq__title,
.faq__question,
.story__title,
.story__eyebrow,
.image-text__title,
.image-text__subtitle {
  font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
}

:where(.aroma-gauge,
       .aroma-gauge__title,
       .aroma-gauge__subtitle,
       .aroma-gauge__label,
       .aroma-gauge__label--peak strong,
       .image-text__title,
       .image-text__subtitle) {
  font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
}

.main:focus {
  outline: none;
}

/* Utility Classes */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.skiplink {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skiplink:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.6rem 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.5);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.header__brand {
  display: block;
  text-decoration: none;
  color: #fff;
  line-height: 0;
}

.header__logo {
  height: 60px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease);
}

.header__logo:hover {
  opacity: 0.8;
}

.header__nav {
  display: flex;
}

.header__menu {
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__link {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.header__link:focus-visible,
.header__link:hover {
  color: var(--gold);
}

.header__link:hover::after {
  transform: scaleX(1);
}

.header__link--cta {
  padding: 0.4rem 0.8rem;
  border: 1px solid #fff;
  border-radius: 999px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
  z-index: 60;
}

.header__burger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
}

/* Side Navigation */
.sidenav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 0.4rem;
  display: flex;
}

.sidenav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sidenav__link {
  display: block;
  text-decoration: none;
  color: var(--ink-weak);
  font-size: 0.85rem;
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.sidenav__link:hover {
  color: var(--ink);
}

.sidenav__link.is-active {
  color: #fff;
  background: var(--ink);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  padding-bottom: 80px;
  overflow: visible;
  margin-top: 0;
}

.hero__videos-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__video-left,
.hero__video-right {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.hero__video-single {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__video-pc {
  display: block;
}

.hero__video-sp {
  display: none;
}

@media (max-width: 960px) {
  .hero__video-pc {
    display: none;
  }

  .hero__video-sp {
    display: block;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg--parallax {
  will-change: transform;
}

.hero__bg--parallax .hero__video,
.hero__bg--parallax .hero__image {
  transform: scale(1.12);
  transform-origin: center top;
}

.hero__video,
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(96%) contrast(96%);
  background: #000;
}

/* 動画が再生されない場合のポスター画像表示を確実にする */
.hero__video {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 古いブラウザ対応：ポスター画像の代替表示 */
.hero__video:not([poster]) {
  background-image: url('images/hero-poster.jpg');
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.42));
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-bottom: 60px;
  transition: opacity 1s ease-out, transform 0.8s ease-out;
}

.hero__content--hidden {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.hero__title {
  font-size: clamp(2rem, 3.5vw, 4rem);
  letter-spacing: 0.02em;
  margin: 0.2rem 0 0.6rem;
}

.hero__lead {
  max-width: 60ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
}

.hero__cta {
  margin-top: 1.2rem;
}

.hero__scrolldown {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  z-index: 2;
}

.hero__chevron {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin: 10px auto 0;
  animation: chev 1.5s infinite;
}

.after-hero {
  position: relative;
  overflow: visible;
  z-index: 10;
  pointer-events: none;
}

.after-hero > * {
  pointer-events: auto;
}

.after-hero.is-released {
  margin-top: 0;
}

/* Freshness Journey Section (combines Freshness + Timeline + Aroma Gauge) */
.section--freshness-journey {
  background: #1a2332 !important;
  padding: 250px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: -300px;
  z-index: 20 !important;
  border-radius: 0;
}

.freshness-journey__bg {
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: 0;
  overflow: hidden;
}

.freshness-journey__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.freshness-journey__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.freshness-journey__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(36, 50, 70, 0.92) 0%,
    rgba(36, 50, 70, 0.88) 50%,
    rgba(36, 50, 70, 0.92) 100%
  );
  z-index: 1;
}

.section--freshness-journey .container {
  position: relative;
  z-index: 50;
}

/* 幕のアニメーション */
.curtain-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
}

.curtain-bg-left,
.curtain-bg-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #1a2332;
}

.curtain-bg-left {
  left: 0;
  transform-origin: right center;
}

.curtain-bg-right {
  right: 0;
  transform-origin: left center;
}

.section--freshness-journey.animate .curtain-bg {
  pointer-events: none;
}

.section--freshness-journey.animate .curtain-bg-left {
  animation: curtainSlideLeft 2.5s ease-out 0.3s forwards;
}

.section--freshness-journey.animate .curtain-bg-right {
  animation: curtainSlideRight 2.5s ease-out 0.3s forwards;
}

@keyframes curtainSlideLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(-5px);
    opacity: 1;
  }
  70% {
    transform: translateX(-70%);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes curtainSlideRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(5px);
    opacity: 1;
  }
  70% {
    transform: translateX(70%);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.curtain-cut {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: var(--gold);
  z-index: 11;
}

.section--freshness-journey.animate .curtain-cut {
  animation: curtainCut 0.8s ease-out forwards;
}

@keyframes curtainCut {
  0% {
    height: 0;
    opacity: 1;
  }
  80% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}

/* Freshness Section - Removed */

/* Three Pillars Section (Speed × Specialty × Story) */
.section--three-pillars {
  background: #1a2332 !important;
  padding: 180px 0 200px;
  margin-top: -150px;
  margin-bottom: 270px;  /* lineup-zoomの-120px分を考慮して増加 */
  position: relative;
  z-index: 25 !important;
}

.section--three-pillars .container {
  width: 100%;
  max-width: 1600px;
  padding: 0 40px;
  margin: 0 auto;
}

.section__title--large {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 200px;
  padding-bottom: 80px;
}

.section--three-pillars .section__title--large {
  color: #fff;
}

.three-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 100%;
  margin: 0;
  padding: 0 0 160px;
  justify-items: stretch;
}

.three-pillars .pillar:nth-child(1) {
  justify-self: stretch;
  width: 100%;
  margin-left: 0;
}

.three-pillars .pillar:nth-child(2) {
  justify-self: stretch;
  width: 100%;
}

.three-pillars .pillar:nth-child(3) {
  justify-self: stretch;
  width: 100%;
  margin-right: 0;
}

.pillar {
  position: relative;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pillar[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pillar:nth-child(1)[data-reveal].is-visible {
  transition-delay: 0s;
}

.pillar:nth-child(2)[data-reveal].is-visible {
  transition-delay: 0.15s;
}

.pillar:nth-child(3)[data-reveal].is-visible {
  transition-delay: 0.3s;
}

.pillar__bg {
  position: relative;
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  flex-shrink: 0;
}

.pillar:hover .pillar__bg {
  transform: scale(1.05);
}

.pillar__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.pillar__content {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: #fff;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.pillar__title {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  color: #fff;
}

.pillar__subtitle {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 32px;
}

.pillar__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Image Text Section */
.section--image-text {
  background: #1a2332 !important;
  min-height: 120vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 50 !important;
  margin-top: -150px;
  padding: 15vh 0;
}

.section--image-text .container {
  width: 100%;
  max-width: 1600px;
  padding: 0 60px;
  margin: 0 auto;
}

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

.image-text__content {
  color: #fff;
  text-align: center;
}

.image-text__title {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.4;
  text-transform: uppercase;
}

.image-text__subtitle {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
  color: #fff;
  line-height: 1.2;
}

.image-text__divider {
  width: 80%;
  max-width: 500px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 32px;
}

.image-text__text {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  opacity: 0;
  min-height: 400px;
  text-align: left;
}

.image-text__content[data-reveal].is-visible .image-text__text {
  opacity: 1;
  animation: typing-fade 0.5s ease-out forwards;
}

@keyframes typing-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.image-text__text:last-child {
  margin-bottom: 0;
}

.image-text__signature {
  margin: 40px 0 0;
  text-align: right;
  padding-right: 10%;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: rgba(255, 255, 255, 0.9);
}

.signature-svg {
  width: 70%;
  max-width: 200px;
  height: auto;
  margin-left: auto;
  display: block;
}

.signature-svg.signature-draw {
  overflow: visible;
}

.signature-svg.signature-draw path {
  fill: currentColor;
  opacity: 1;
  transform-origin: center;
  overflow: visible;
}

.signature-svg.signature-draw.is-filled path {
  transition: fill-opacity 0.3s ease, stroke 0.35s ease;
}

@keyframes signature-stroke {
  to {
    stroke-dashoffset: 0;
  }
}

.signature-mask-path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signature-reveal-mask-rect {
  fill: #fff;
  transform-origin: left center;
  transform: scaleX(0);
  animation: signature-reveal-ltr 4s linear forwards;
  animation-play-state: paused;
  will-change: transform;
}

.signature-svg.signature-draw.is-animating .signature-reveal-mask-rect {
  animation-play-state: running;
}

@keyframes signature-reveal-ltr {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.image-text__media {
  position: relative;
  width: 800px;
  height: 600px;
  overflow: hidden;
  border-radius: 8px;
}

.image-text__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s ease;
}

.image-text__media[data-reveal].is-visible .image-text__img {
  transform: scale(1.1);
  opacity: 1;
}

@media (max-width: 1380px) {
  .section--image-text {
    min-height: 100vh;
    padding: 20vh 0;
  }

  .section--image-text .container {
    padding: 0 20px;
  }

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

  .image-text__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .image-text__signature {
    text-align: center;
    padding-right: 0;
  }

  .image-text__media {
    width: 100%;
    height: auto;
    max-height: 600px;
    overflow: hidden;
  }

  .image-text__img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
  }

  .image-text__title {
    margin-bottom: 24px;
  }
}

@media (max-width: 960px) {
  .three-pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section--three-pillars {
    padding: 80px 0;
    margin-top: -80px;
    margin-bottom: 30px;
  }

  /* モバイルで重なりを減らす */
  .section--cream,
  .section--freshness-journey,
  .section--nuts-quality,
  .section--chocolate,
  .section--reviews,
  .section--faq {
    margin-top: -80px;
  }

  /* モバイルではかぶさり効果を無効化 */
  .section--cover {
    margin-top: 0 !important;
    padding-top: 60px !important;
    border-radius: 0 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Story セクションのモバイル調整 */
  .section--story.section--cover {
    margin-top: 0 !important;
    padding-top: 60px !important;
  }
}

/* Timeline Section */
.section--timeline {
  background: transparent;
  padding: 0;
  margin-bottom: 80px;
}

.timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-header__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  color: #f2f6ff;
  margin: 0 0 8px 0;
}

.timeline-header__subtitle {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  letter-spacing: 0.08em;
  color: rgba(242, 246, 255, 0.6);
  margin: 0;
  font-weight: 300;
}

.timeline-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  position: relative;
  padding-top: 20px;
}

/* 全体を繋ぐ線 */
.timeline-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(198, 166, 100, 0.3) 10%,
    rgba(198, 166, 100, 0.5) 50%,
    rgba(198, 166, 100, 0.3) 90%,
    transparent 100%);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 全てのステップを一直線に配置 */

.timeline-step[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step:nth-child(1)[data-reveal].is-visible {
  transition-delay: 0s;
}

.timeline-step:nth-child(2)[data-reveal].is-visible {
  transition-delay: 0.1s;
}

.timeline-step:nth-child(3)[data-reveal].is-visible {
  transition-delay: 0.2s;
}

.timeline-step:nth-child(4)[data-reveal].is-visible {
  transition-delay: 0.3s;
}

.timeline-step:nth-child(5)[data-reveal].is-visible {
  transition-delay: 0.4s;
}

.timeline-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  background: rgba(198, 166, 100, 0.1);
  border: 1px solid rgba(198, 166, 100, 0.3);
  border-radius: 50%;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.timeline-step__number {
  position: relative;
}

.timeline-step__number::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(198, 166, 100, 0.6);
  border-radius: 50%;
  animation: ripple 2.5s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.timeline-step__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-step__time {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
}

.timeline-step__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f2f6ff;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline-step__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 160px;
}

.timeline-cta {
  margin-top: 60px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-cta[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn--timeline {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}


.aroma-gauge {
  display: none;
}

.timeline-cta__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}


@media (max-width: 960px) {
  .section--timeline {
    padding: 80px 0;
  }

  .timeline-header {
    margin-bottom: 60px;
  }

  .timeline-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }

  .timeline-flow::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .section--timeline {
    padding: 60px 0;
  }

  .timeline-header {
    margin-bottom: 40px;
  }

  .timeline-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }

  .timeline-step__number {
    font-size: 1.2rem;
  }

  .timeline-step__time {
    font-size: 0.8rem;
  }

  .timeline-step__label {
    font-size: 0.9rem;
  }

  .timeline-step__desc {
    font-size: 0.85rem;
  }
}

/* Aroma Peak Gauge Section */
.section--aroma-gauge {
  background: transparent;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.aroma-gauge {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.aroma-gauge__header {
  margin-top: 100px;
  margin-bottom: 80px;
}

.aroma-gauge__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 0 1.2rem;
  font-weight: 300;
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-style: italic;
}

.aroma-gauge__subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(198, 166, 100, 0.9);
  letter-spacing: 0.08em;
  margin: 0;
  font-weight: 300;
  font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
}

.aroma-gauge,
.aroma-gauge * {
  font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
}

.aroma-gauge__track {
  background: transparent;
  border-radius: 0;
  padding: 80px 60px;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
}

.aroma-gauge__labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding: 0 20px;
}

.aroma-gauge__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  font-weight: 300;
  line-height: 1.5;
  font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
}


.aroma-gauge__label--peak {
  color: var(--gold);
  font-weight: 400;
  font-size: 1.1rem;
  text-shadow: 0 4px 24px rgba(198, 166, 100, 0.5);
  transform: translateY(-8px);
}

.aroma-gauge__label--peak strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-top: 8px;
  font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
  font-weight: 600;
  text-transform: uppercase;
}

.aroma-gauge__note,
.btn--aroma {
  font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
}

.aroma-gauge__bar {
  position: relative;
  height: 6px;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(198, 166, 100, 0.3) 30%,
    var(--gold) 50%,
    rgba(198, 166, 100, 0.3) 70%,
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 999px;
  overflow: visible;
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.05);
}

.aroma-gauge__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(to right, transparent, rgba(198, 166, 100, 0.5));
  border-radius: 999px;
  animation: gaugeGlow 3s ease-in-out infinite;
}

.aroma-gauge__marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, var(--gold) 0%, rgba(198, 166, 100, 0.8) 100%);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(198, 166, 100, 0.25),
    0 0 0 8px rgba(198, 166, 100, 0.15),
    0 0 0 12px rgba(198, 166, 100, 0.08),
    0 0 30px rgba(198, 166, 100, 0.9),
    0 0 50px rgba(198, 166, 100, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.4);
  animation: markerPulse 2.5s ease-in-out infinite;
}

.aroma-gauge__footer {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn--aroma {
  --btn-bg: #000;
  --btn-fg: #fff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.btn--aroma:hover {
  transform: translateY(-3px);
  background: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.aroma-gauge__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.02em;
}

@keyframes gaugeGlow {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

@keyframes markerPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 4px rgba(198, 166, 100, 0.3),
      0 0 20px rgba(198, 166, 100, 0.6),
      0 4px 15px rgba(0, 0, 0, 0.4);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow:
      0 0 0 6px rgba(198, 166, 100, 0.4),
      0 0 30px rgba(198, 166, 100, 0.8),
      0 4px 20px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 640px) {
  .section--aroma-gauge {
    padding: 60px 0;
  }

  .aroma-gauge__header {
    margin-bottom: 40px;
  }

  .aroma-gauge__track {
    padding: 30px 20px;
  }

  .aroma-gauge__labels {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 20px;
    text-align: center;
  }

  .aroma-gauge__label {
    font-size: 0.8rem;
  }

  .aroma-gauge__label--peak {
    font-size: 0.9rem;
  }

  .aroma-gauge__label--peak strong {
    font-size: 1.2rem;
  }

  .aroma-gauge__bar {
    width: 100%;
    max-width: 300px;
    margin: 40px auto;
  }

  .aroma-gauge__footer {
    margin-top: 60px;
  }

  .btn--aroma {
    width: 100%;
    max-width: 300px;
  }
}

/* Nuts Quality Section */
.section--nuts-quality {
  background: var(--cream);
  padding: 280px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: -150px;
  z-index: 60 !important;
}

.section--nuts-quality .container {
  width: 100%;
  max-width: 1600px;
  padding: 0 60px;
  margin: 0 auto;
}

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

.nuts-quality__text {
  max-width: 100%;
}

.nuts-quality__title {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.nuts-quality__subtitle {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 0 0 1.5rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
}

.nuts-quality__desc {
  font-size: 1rem;
  color: var(--ink-weak);
  line-height: 1.8;
  margin: 0 0 2.5rem;
  letter-spacing: 0.02em;
}

.nuts-quality__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.nuts-quality__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.nuts-quality__feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.nuts-quality__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 166, 100, 0.1);
  border-radius: 50%;
  color: var(--gold);
}

.nuts-quality__feature-content {
  flex: 1;
}

.nuts-quality__feature-title {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.nuts-quality__feature-text {
  font-size: 0.85rem;
  color: var(--ink-weak);
  margin: 4px 0 0;
  line-height: 1.6;
  font-weight: 300;
}

.btn--nuts {
  --btn-bg: #000;
  --btn-fg: #fff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.btn--nuts:hover {
  transform: translateY(-3px);
  background: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nuts-quality__media {
  position: relative;
  width: 800px;
  height: 600px;
}

.nuts-quality__media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}

.nuts-quality__img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transform: scale(1.2);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s ease;
}

.nuts-quality__media[data-reveal].is-visible .nuts-quality__img {
  transform: scale(1);
  opacity: 1;
}

.nuts-quality__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(198, 166, 100, 0.4);
  text-align: center;
}

.nuts-quality__badge-text {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.nuts-quality__badge-sub {
  display: block;
  font-size: 0.85rem;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

@media (max-width: 1380px) {
  .section--nuts-quality {
    padding: 80px 0 60px;
    margin-top: 0;
  }

  .section--nuts-quality .container {
    padding: 0 20px;
  }

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

  .nuts-quality__text {
    order: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nuts-quality__title {
    width: 100%;
    color: #1a1a1a;
  }

  .nuts-quality__subtitle,
  .nuts-quality__desc {
    width: 100%;
  }

  .nuts-quality__features {
    align-items: center;
    width: 100%;
  }

  .nuts-quality__feature {
    justify-content: center;
  }

  .nuts-quality__media {
    order: 2;
    width: 100%;
    height: auto;
    max-height: 600px;
    overflow: hidden;
  }

  .nuts-quality__img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
  }
}

@media (max-width: 640px) {
  .section--nuts-quality {
    padding: 60px 0;
  }

  .nuts-quality {
    gap: 40px;
  }

  .nuts-quality__features {
    gap: 20px;
  }

  .nuts-quality__feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .nuts-quality__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .nuts-quality__badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
  }

  .nuts-quality__badge-text {
    font-size: 1rem;
  }

  .nuts-quality__badge-sub {
    font-size: 0.8rem;
  }

  .btn--nuts {
    width: 100%;
  }
}

/* Chocolate Section */
.section--chocolate {
  background: #1a2332 !important;
  padding: 280px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: -150px;
  z-index: 40 !important;
}

.section--chocolate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/DSC01336-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: -1;
}

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

.chocolate__media {
  position: relative;
  max-width: 85%;
  margin: 0;
  align-self: flex-start;
}

.chocolate__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.chocolate__video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4/5;
}

.chocolate__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chocolate__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(198, 166, 100, 0.9);
  border: none;
  border-radius: 50%;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(198, 166, 100, 0.4);
}

.chocolate__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
}

.chocolate__play-btn svg {
  margin-left: 4px;
}

.chocolate__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(44, 62, 79, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(198, 166, 100, 0.3);
}

.chocolate__badge-icon {
  font-size: 1.2rem;
}

.chocolate__badge-text {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.chocolate__text {
  max-width: 680px;
  max-width: 600px;
  color: #f2f6ff;
}

.chocolate__title {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: #fff;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  font-weight: 400;
  line-height: 1.3;
}

.chocolate__subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 0 0 1.5rem;
  font-weight: 400;
}

.chocolate__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0 0 2.5rem;
  letter-spacing: 0.02em;
}

.chocolate__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.chocolate__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.chocolate__feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.chocolate__feature-icon {
  font-size: 2rem;
  line-height: 1;
  min-width: 40px;
  text-align: center;
}

.chocolate__feature-content {
  flex: 1;
}

.chocolate__feature-title {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.btn--chocolate {
  --btn-bg: #000;
  --btn-fg: #fff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.btn--chocolate:hover {
  transform: translateY(-3px);
  background: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.chocolate__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 2.5rem;
  font-style: italic;
}

.chocolate__pairing {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(198, 166, 100, 0.2);
}

.chocolate__pairing-title {
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.chocolate__pairing-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chocolate__pairing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chocolate__pairing-item:last-child {
  border-bottom: none;
}

.chocolate__pairing-label {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 120px;
}

.chocolate__pairing-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .chocolate {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .chocolate__text {
  max-width: 680px;
    order: 2;
  }

  .chocolate__media {
    order: 1;
  }
}

@media (max-width: 640px) {
  .section--chocolate {
    padding: 60px 0;
  }

  .chocolate {
    gap: 35px;
  }

  .chocolate__play-btn {
    width: 64px;
    height: 64px;
  }

  .chocolate__badge {
    top: 16px;
    right: 16px;
    padding: 8px 16px;
  }

  .chocolate__features {
    gap: 16px;
  }

  .chocolate__feature {
    padding: 12px;
  }

  .chocolate__pairing {
    padding: 20px;
  }

  .chocolate__pairing-label {
    min-width: 100px;
    font-size: 0.7rem;
  }

  .chocolate__pairing-name {
    font-size: 0.85rem;
  }

  .btn--chocolate {
    width: 100%;
  }
}

/* Reviews Section */
.section--reviews {
  background: var(--cream);
  padding: 280px 0 100px;
  margin-top: -150px;
  position: relative;
  z-index: 45 !important;
}

.reviews__header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews__title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  color: var(--ink);
  letter-spacing: 0.08em;
  margin: 0 0 1.5rem;
  font-weight: 700;
}

.reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reviews__stars {
  display: flex;
  gap: 6px;
  font-size: 1.8rem;
}

.reviews__star {
  color: var(--gold);
}

.reviews__rating-text {
  font-size: 1rem;
  color: var(--ink-weak);
  margin: 0;
  letter-spacing: 0.02em;
}

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

.review {
  background: #2a2a2a;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.review__stars {
  display: flex;
  gap: 4px;
  font-size: 1.1rem;
}

.review__star {
  color: var(--gold);
}

.review__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.02em;
  flex: 1;
}

.review__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.review__author {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.review__date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .section--reviews {
    padding: 60px 0;
  }

  .reviews__header {
    margin-bottom: 40px;
  }

  .reviews__stars {
    font-size: 1.5rem;
    gap: 4px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review {
    padding: 24px;
  }

  .review__text {
    font-size: 0.9rem;
  }
}

/* FAQ Section */
.section--faq {
  background: #1a2332 !important;
  padding: 100px 0;
  margin-top: -150px;
  position: relative;
  z-index: 50;
}

.faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.faq__title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  color: #fff;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.faq__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: 0.04em;
}

.faq__list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(198, 166, 100, 0.3);
}

.faq__item[open] {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.faq__question {
  padding: 24px 28px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
  transition: color 0.3s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  min-width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 28px 24px;
  animation: fadeIn 0.3s ease;
}

.faq__answer p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.02em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .section--faq {
    padding: 60px 0;
  }

  .faq__header {
    margin-bottom: 40px;
  }

  .faq__list {
    gap: 12px;
  }

  .faq__question {
    padding: 20px;
    font-size: 1rem;
    gap: 12px;
  }

  .faq__answer {
    padding: 0 20px 20px;
  }

  .faq__answer p {
    font-size: 0.95rem;
  }
}

/* Page Header */
.page-header {
  padding: 120px 0 60px;
  background: var(--cream);
  text-align: center;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--ink-weak);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Section Styles */
.section {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

/* 下からかぶさるセクションの共通スタイル */
.section--cover {
  position: relative !important;
  margin-top: -10vh !important;
  padding-top: 15vh !important;
  border-radius: 0 !important;
  will-change: transform;
  transform: translateY(200px);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.section--cream {
  background: #2a2a2a !important;
  padding: 60px 0 200px;
  position: relative;
  z-index: 10;
}

.section--dark {
  background: var(--dark);
  color: #e9e9e9;
}

.section--cta {
  background: linear-gradient(135deg, #efe7d6, #e2d3b4);
}

.section__inner {
  display: grid;
  gap: 40px;
}

.section__head {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 80px;
}

.section__title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  letter-spacing: 0.02em;
  margin: 0 0 0.2rem;
}

.section__subtitle {
  color: var(--ink-weak);
  margin: 0 auto;
  max-width: 70ch;
}

.section--dark .section__subtitle {
  color: #bbb;
}

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__title {
  margin: 0.2rem 0 0.6rem;
}

.split__text {
  margin: 0.6rem 0;
}

.split__body {
  max-width: none;
}

/* Media Elements */
.media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media--1x1 {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.media--3x4 {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.media--16x9 {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.card:hover .card__media img {
  transform: scale(1.05);
  transition: transform 0.3s var(--ease);
}

.card:hover .card__title {
  color: var(--gold);
  transition: color 0.3s var(--ease);
}

.card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-decoration: none;
}

.card__media {
  overflow: hidden;
}

.card__media img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 18px;
  position: relative;
  z-index: 2;
  pointer-events: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__title {
  margin: 0.2rem 0 0.4rem;
}

.card__text {
  color: var(--ink-weak);
}

.card__foot {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.price {
  font-weight: 700;
}

/* Story Section */
.section--story {
  position: relative;
  background: #1a2332;
  color: #e9eef7;
  padding: 250px 0;
  overflow: visible;
  z-index: 10;
}

/* Story セクションのかぶさり効果調整 */
.section--story.section--cover {
  margin-top: -30vh !important;
  padding-top: 45vh !important;
  padding-bottom: 25vh !important;
  z-index: 10 !important;
  transform: translateY(300px);
  isolation: isolate;
}

/* Story セクション背景を確実に表示 */
.section--story.section--cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1a2332;
  z-index: -2;
}

/* Story セクション背景画像 */
.section--story.section--cover::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  pointer-events: none;
}

#story {
  padding-top: 30px;
  padding-bottom: 100px;
  margin-block: 0;
  scroll-margin-top: 120px;
}

.story__body {
  position: relative;
  z-index: 2;
  max-width: 60ch;
  margin: 0 auto;
  margin-top: -200px;
  text-align: left;
  color: #f2f6ff;
  padding: 0 40px;
}

.story__eyebrow {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  letter-spacing: 0.18em;
}

.story__title {
  margin: 0.1rem 0 1.3rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: 0.14em;
}

.story__text p {
  margin: 1.5rem 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  line-height: 3.5;
  text-align: left;
}

.story__video {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transform: scale(1.5);
  transform-origin: center center;
}

.story__media--left,
.story__media--rt,
.story__media--rb {
  position: absolute;
  width: min(32vw, 320px);
  will-change: transform;
  transform: translateZ(0);
  contain: paint;
  overflow: hidden;
  border-radius: 12px;
  z-index: 1;
}

.story__media--left {
  top: 0;
  left: 0;
  animation: floatY 4s cubic-bezier(0.45, 0.04, 0.55, 0.96) infinite alternate;
}

.story__media--rt {
  top: 0;
  right: 0;
  animation: floatYrev 4s cubic-bezier(0.45, 0.04, 0.55, 0.96) infinite alternate;
}

.story__media--rb {
  right: 0;
  bottom: 0;
  animation: floatX 5s cubic-bezier(0.45, 0.04, 0.55, 0.96) infinite alternate;
}

.story__media--rb .story__video {
  aspect-ratio: 16/9;
}

/* Design Section */
#design .section__head {
  margin-top: 48px;
}

.design__item,
.design__item--reverse,
.design__item--experiences {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.design__item {
  grid-template-columns: 0.95fr 1.05fr;
}

.design__item--reverse {
  grid-template-columns: 1.05fr 0.95fr;
  margin-bottom: -70px;
}

.design__item--experiences {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.design__media img,
.design__video {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.design__num {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.design__title {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  margin: 0.1rem 0 0.6rem;
  letter-spacing: 0.04em;
}

.design__text {
  color: var(--ink-weak);
  max-width: 60ch;
}

.design__media--stack {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 3/4;
  overflow: visible;
}

.design__media--stack .design__img--front {
  position: absolute;
  inset: 0;
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease);
  z-index: 1;
}

.design__media--stack .design__img--back {
  position: absolute;
  top: -32px;
  right: -20px;
  width: 90%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease);
  z-index: 3;
}

.design__video {
  object-fit: cover;
  aspect-ratio: 3/4;
}

.design__media--exp-left {
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: end;
}

.design__body--center {
  grid-column: 2/3;
  grid-row: 1/2;
  text-align: center;
}

.design__media--exp-right {
  grid-column: 3/4;
  grid-row: 1/2;
  justify-self: end;
}

/* Lineup Section */
#lineup .container {
  --container: min(1400px, 92vw);
  width: var(--container);
  max-width: 1400px;
}

.section--lineupfx {
  background: var(--bg);
  padding: 0;
  position: relative;
  z-index: 5;
  clear: both;
}

/* PC only */
@media (min-width: 961px) {
  .section--lineupfx {
    padding-top: 0;
    padding-bottom: 150px;
    margin-top: -120px;
  }
}

/* Mobile */
@media (max-width: 960px) {
  .section.section--lineupfx {
    padding-top: 10px !important;
    padding-bottom: 70px !important;
    margin-top: 0 !important;
  }
}

.section--lineupfx .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.s-product_panel {
  position: relative;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.lineup-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.btn--lineup {
  padding: 22px 60px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.btn--lineup:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.8);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
}

@media (max-width: 960px) {
  .btn--lineup {
    padding: 14px 36px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 640px) {
  .btn--lineup {
    padding: 10px 20px !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.05em !important;
    border-width: 1.5px !important;
    white-space: nowrap !important;
  }

  .lineup-button-wrapper {
    width: auto !important;
    max-width: 90% !important;
  }
}

.s-product_imgwrap {
  width: 100vw;
  max-width: 100%;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  opacity: 0;
  filter: none;
  will-change: clip-path;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: opacity 0.8s ease, clip-path 0.8s ease;
  position: relative;
}

.s-product_imgwrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.s-product_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  pointer-events: none;
  z-index: 1;
}

.s-product_frame {
  position: relative;
  height: auto;
  min-height: auto;
}

.s-product_imgwrap.is-mask-run {
  animation: maskRevealFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition: none;
}

.s-product_imgwrap.is-mask-done {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

@keyframes maskRevealFromLeft {
  0% {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* Category Navigation */
.category-nav {
  position: sticky;
  top: 64px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  margin-bottom: 3rem;
}

.category-nav__list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.category-nav__link {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}

.category-nav__link:hover,
.category-nav__link.is-active {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* Products */
.products-category {
  margin-bottom: 5rem;
  padding-top: 100px;
  margin-top: -100px;
  scroll-margin-top: 100px;
}

.products-category__title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  scroll-margin-top: 100px;
}

/* Specific Product Grids */
#subscription .cards {
  grid-template-columns: repeat(3, 1fr);
}

#subscription .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

#subscription .card__media {
  height: 280px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

#subscription .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#subscription .card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 1rem;
  text-align: center;
}

#subscription .card__title {
  margin: 0.2rem 0 0.3rem;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}

#subscription .card__text {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
}

#subscription .card__foot {
  margin-top: auto;
  padding-top: 0.5rem;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

#coffee .cards {
  grid-template-columns: repeat(4, 1fr);
}

#nuts .cards,
#chocolate .cards {
  grid-template-columns: repeat(3, 1fr);
}

/* Buy Section */
.section--buy {
  --buy-bg: #1a1a1a;
  background: var(--buy-bg);
  color: #dedede;
  padding: clamp(100px, 12vw, 140px) 0;
}

.buy-visual {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.buy-visual__bg {
  position: absolute;
  inset: 0;
}

.buy-visual__bg img,
.buy-visual__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: zoomSlow 5s ease-in-out infinite alternate;
}

.buy-visual__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  height: 100%;
  justify-content: center;
  max-width: 540px;
  padding-top: 10vh;
}

.buy-visual__logo {
  width: 140px;
  height: auto;
}

.buy-visual__catch {
  margin: 0.6rem 0 0;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.14em;
}

.buy-visual__sub {
  font-size: 0.9rem;
  opacity: 0.8;
}

.buy-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 60px;
  align-items: start;
}

.buy-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: #fff;
  margin: 0 0 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 0.6rem;
}

.buy-price {
  font-size: 0.9rem;
  font-weight: 400;
  color: #ccc;
}

.buy-desc {
  line-height: 1.85;
  margin: 1.2rem 0;
  max-width: 60ch;
}

.buy-btn {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1px solid currentColor;
  width: 100%;
  max-width: 540px;
  margin: 2rem 0 1rem;
}

.buy-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.buy-links a {
  color: #aaa;
  text-decoration: none;
}

.buy-links a:hover {
  color: #fff;
}

.buy-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

/* Button */
.btn {
  --btn-bg: #000;
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  background: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn--primary {
  --btn-bg: #000;
  --btn-fg: #fff;
}

.btn--lg {
  padding: 0.9rem 1.4rem;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: #010101;
  color: #888;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.footer__bg-video {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.footer__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
  display: block;
}

.footer__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #010101 0%, rgba(1, 1, 1, 0.8) 30%, rgba(1, 1, 1, 0.3) 100%);
  z-index: 1;
}

.footer__container {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  width: 140px;
  height: auto;
  display: block;
  opacity: 1;
  filter: brightness(1.1);
}

.footer__tagline {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-style: italic;
  font-weight: 300;
}

.footer__nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__nav-link {
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 2px;
}

.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer__nav-link:hover {
  color: var(--gold);
}

.footer__nav-link:hover::after {
  width: 100%;
}

.footer__location {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.footer__location p {
  margin: 0;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: #666;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social:hover {
  color: #E1306C;
  transform: scale(1.1);
}

.footer__social-icon {
  width: 28px;
  height: 28px;
}

.footer__bottom {
  padding-top: 30px;
  text-align: center;
}

.footer__copy {
  font-size: 0.75rem;
  color: #444;
  letter-spacing: 0.08em;
  font-weight: 300;
}

.footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.footer__legal-link {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.03em;
}

.footer__legal-link:hover {
  color: var(--gold);
}

.footer__legal-divider {
  color: #444;
  font-size: 0.75rem;
}

@media (max-width: 640px) {
  .footer__legal {
    gap: 0.5rem 0.6rem;
  }

  .footer__legal-link {
    font-size: 0.8rem;
  }
}

@media (max-width: 960px) {
  .footer__bg-video {
    width: 70%;
    right: -15%;
    opacity: 0.2;
  }

  .footer__video-overlay {
    background: linear-gradient(to right, #010101 0%, rgba(1, 1, 1, 0.9) 20%, rgba(1, 1, 1, 0.5) 100%);
  }
}

@media (max-width: 640px) {
  .footer__bg-video {
    width: 100%;
    right: 0;
    left: 0;
    opacity: 0.25;
  }

  .footer__video {
    object-position: center center;
  }

  .footer__video-overlay {
    background: linear-gradient(to right, rgba(1, 1, 1, 0.9) 0%, rgba(1, 1, 1, 0.6) 50%, rgba(1, 1, 1, 0.3) 100%);
  }
}

/* Page Loader */
.pageloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #f4efe6;
  transition: opacity 0.8s ease;
}

.pageloader__inner {
  text-align: center;
  opacity: 0;
  animation: plFadeIn 0.8s 0.2s forwards;
}

.pageloader__logo {
  width: 180px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 1.2rem;
}

.pageloader__tagline {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: #6d6d6d;
}

body.is-loaded .pageloader {
  opacity: 0;
  pointer-events: none;
}

/* Reveal Animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Concept Section Custom Animation */
.section--cream [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.section--cream [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section--cream .section__head [data-reveal] {
  transition-delay: 0.2s;
}

.section--cream .split__media [data-reveal].is-visible {
  transition-delay: 0.4s;
}

.section--cream .split__body [data-reveal].is-visible {
  transition-delay: 0.6s;
}

/* Special Sections */
#concept {
  scroll-margin-top: 120px;
  position: relative;
}

#concept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/lavfabecroasters-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  z-index: 0;
  pointer-events: none;
}

#concept::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

#concept > * {
  position: relative;
  z-index: 2;
}

#concept .section__head {
  margin-bottom: 35px;
}

#concept .section__title {
  margin-bottom: 0.3rem;
}

#concept .section__title--large {
  margin-bottom: 1rem;
  padding-bottom: 0;
}

#concept .section__subtitle {
  margin-bottom: 0;
}

#concept .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

#concept .split {
  gap: 40px;
  grid-template-columns: 600px 1fr;
  padding-right: 0;
  padding-left: 0;
}

#concept .split__media {
  margin-left: -60px;
  width: 100%;
  max-width: none;
  height: 600px;
}

#concept .split__media img {
  border-radius: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#concept .split__body {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

#concept .split__body p {
  line-height: 2.5;
}

#concept .split__media {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
  position: relative;
  z-index: 5;
}

#concept .split__media.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Concept Section Responsive */
@media (max-width: 960px) {
  #concept .split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }

  #concept .split__media {
    margin-left: 0;
    height: auto;
    min-height: 400px;
  }

  #concept .split__media img {
    height: 100%;
    min-height: 400px;
  }

  #concept .split__body {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  #concept .split__media {
    min-height: 300px;
  }

  #concept .split__media img {
    min-height: 300px;
  }

  #concept .split__body {
    padding: 0 16px;
  }

  #concept .split__body p {
    line-height: 2;
  }
}

/* Animations */
@keyframes chev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(4px) rotate(45deg);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}

@keyframes floatY {
  from {
    transform: translate3d(0, -24px, 0);
  }
  to {
    transform: translate3d(0, 24px, 0);
  }
}

@keyframes floatYrev {
  from {
    transform: translate3d(0, 24px, 0);
  }
  to {
    transform: translate3d(0, -24px, 0);
  }
}

@keyframes floatX {
  from {
    transform: translate3d(-28px, 0, 0);
  }
  to {
    transform: translate3d(28px, 0, 0);
  }
}

@keyframes maskRevealX {
  from {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
    -webkit-clip-path: inset(0 0% 0 0);
  }
}

@keyframes zoomSlow {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.22);
  }
}

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

/* Media Queries */
@media (max-width: 1400px) {
  .cards--5cols {
    grid-template-columns: repeat(4, 1fr);
  }
  .cards--mixed {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .sidenav {
    display: none;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards--5cols {
    grid-template-columns: repeat(3, 1fr);
  }

  #coffee .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .design__media--stack .design__img--back {
    right: 0;
    width: 85%;
    top: -20px;
  }
}

@media (max-width: 1060px) {
  .story__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .story__media--left,
  .story__media--rt {
    display: none;
    animation: none;
  }

  .story__media--rb {
    position: static;
    width: 100%;
    max-width: 500px;
    animation: none;
    order: 2;
  }

  .story__body {
    text-align: center;
    margin: 0 auto;
    padding: 2rem 1rem;
    max-width: 100%;
    order: 1;
  }
}

@media (max-width: 960px) {
  .header__inner {
    padding: 0.5rem 0;
  }

  .header__logo {
    height: 45px;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 0;
    padding: 0.4rem;
    cursor: pointer;
    z-index: 60;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-100%);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    z-index: 50;
    overflow-y: auto;
    padding-top: 60px; /* ヘッダー分の余白 */
  }

  .header__nav.is-open {
    transform: translateY(0);
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .header__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__link {
    display: block;
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }

  .header__link::after {
    display: none;
  }

  .header__link--cta {
    border-radius: 0;
    margin: 0;
  }

  .hero {
    padding-bottom: 60px;
  }

  .hero__content {
    padding-bottom: 40px;
  }

  .hero__scrolldown {
    bottom: 20px;
  }

  .hero__lead {
    display: none;
  }

  .hero__title {
    margin-bottom: 1rem;
  }

  .hero__cta {
    margin-top: 0.8rem;
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .design__item,
  .design__item--reverse,
  .design__item--experiences {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .design__media--stack {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 3/4;
    overflow: visible;
  }

  .design__media--stack .design__img--front {
    position: relative;
    width: 85%;
    height: auto;
    margin: 0;
    z-index: 1;
  }

  .design__media--stack .design__img--back {
    position: absolute;
    top: -20px;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: auto;
    margin-top: 0;
    z-index: 3;
    aspect-ratio: 16/9;
  }

  .design__media--exp-left {
    display: none;
  }

  .design__body--center {
    order: 1;
    text-align: left;
    max-width: 100%;
    padding: 0;
  }

  .design__media--exp-right {
    order: 2;
    width: 100%;
    max-width: 100%;
    justify-self: center;
  }

  #subscription .cards,
  #coffee .cards,
  #nuts .cards,
  #chocolate .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #subscription .card__title,
  #coffee .card__title,
  #nuts .card__title,
  #chocolate .card__title {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  #subscription .card__text,
  #coffee .card__text,
  #nuts .card__text,
  #chocolate .card__text {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 50px;
  }

  .hero__content {
    padding: 1rem;
    padding-bottom: 30px;
  }

  .hero__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

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

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

  .footer__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .design__media--stack .design__img--back {
    width: 65%;
    top: -15px;
    right: 0;
  }

  #subscription .cards,
  #coffee .cards,
  #nuts .cards,
  #chocolate .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .card__body {
    padding: 0.8rem;
  }

  .card__title {
    font-size: 0.85rem;
  }

  .price {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  #subscription .cards,
  #coffee .cards,
  #nuts .cards,
  #chocolate .cards {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 960px) {
  #subscription .cards,
  #coffee .cards,
  #nuts .cards,
  #chocolate .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .card {
    display: flex;
    flex-direction: column;
  }

  .card__body {
    padding: 0.6rem;
  }

  .card__title {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .card__text {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .price {
    font-size: 0.85rem;
  }
}

@media (max-width: 374px) {
  #subscription .cards,
  #coffee .cards,
  #nuts .cards,
  #chocolate .cards {
    grid-template-columns: 1fr;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  .story__media,
  .buy-visual__bg img {
    transition: none;
    animation: none;
  }

  .story__media--left,
  .story__media--rt,
  .story__media--rb {
    animation: none;
  }

  .buy-visual__bg img {
    animation: none;
    transform: scale(1.12);
  }
}
/* Timeline (Process & Delivery) */
.timeline {
  display: grid;
  gap: 28px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.timeline__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline__title {
  margin: 0.2rem 0 0.4rem;
}

.timeline__text {
  color: #cfcfcf;
}

/* Stores */
.stores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.store {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.store__name {
  margin: 0.2rem 0 0.5rem;
}

.store__time {
  color: var(--ink-weak);
}

.section--cream .store {
  background: rgba(255, 255, 255, 0.9);
}

/* FAQ - OLD STYLES REMOVED (replaced by section--faq styles above) */

/* Responsive */
@media (max-width: 960px) {
  .timeline__item {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .stores {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh; /* 明示的に高さを指定 */
    background: var(--bg);
    transform: translateY(-100%);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    z-index: 50;
    overflow-y: auto;
    padding-top: 60px;
    padding-bottom: 60px; /* 下部にも余白を追加 */
    display: flex; /* flexboxを使用 */
    flex-direction: column; /* 縦方向に配置 */
  }

  .header__nav.is-open {
    transform: translateY(0);
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    flex: 1; /* 親要素の高さいっぱいに広がる */
    min-height: 0; /* flexアイテムのデフォルトmin-heightをリセット */
  }

  .header__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .header__link {
    display: block;
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }
}
@media (max-width: 960px) {
  .header {
    transform: translateY(0) !important;
  }

  .header--hide {
    transform: translateY(-100%) !important;
  }
}
@media (max-width: 960px) {
  .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: translateY(0) !important;
    z-index: 100 !important;
  }

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

  .header__inner {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* ヘッダーの高さ分、mainに余白を追加 */
  .main {
    padding-top: 60px;
  }

  /* after-heroのz-indexを下げる */
  .after-hero {
    z-index: 0 !important;
    transform: translateY(0) !important;
    margin-top: 0 !important;
  }

  /* モバイルメニューの修正 */
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    transform: translateY(-100%);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    z-index: 50;
    overflow-y: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
  }

  .header__nav.is-open {
    transform: translateY(0);
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    flex: 1;
    min-height: 0;
  }
}
.sidenav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  z-index: 40;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 0.4rem;
  display: flex;
  /* 初期状態は非表示 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
@media (max-width: 960px) {
  .sidenav {
    display: none !important;
  }
}

/* Logo Video Preloader */
.logo-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.logo-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.logo-preloader__inner {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-preloader__video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-preloader__inner {
    max-width: 400px;
    padding: ｚｚ1.5rem;
  }
}

/* ===================================
   Product Image Hotspots
   =================================== */

.product-hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.product-hotspot {
  position: absolute;
  pointer-events: auto;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.4rem 0.6rem 0.2rem 0.6rem;
  border: 1.5px solid transparent;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.product-hotspot__label,
.product-hotspot__title {
  color: #fff;
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-align: center;
}

.product-hotspot__label {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  margin-bottom: 0.3rem;
  width: 100%;
}
.product-hotspot__desc {
  font-size: clamp(9px, 0.9vw, 12px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}


.product-hotspot__title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
}

.product-hotspot:hover {
  border-color: var(--gold);
  background: rgba(198, 166, 100, 0.15);
  transform: scale(1.05);
}

.product-hotspot:hover .product-hotspot__label,
.product-hotspot:hover .product-hotspot__title {
  color: var(--gold);
  transform: scale(1.1);
}

/* Individual hotspot positions */
.product-hotspot--gift-box {
  top: 9%;
  left: 15%;
  width: 18%;
  height: 14%;
}

.product-hotspot--specialty-coffee {
  top: 27%;
  left: 5%;
  width: 24%;
  height: 13%;
}

.product-hotspot--drip-bag {
  top: 52%;
  left: 5%;
  width: 19%;
  height: 12%;
}

.product-hotspot--nuts {
  bottom: 9%;
  left: 8%;
  width: 17%;
  height: 15%;
}

.product-hotspot--chocolates {
  bottom: 6%;
  right: 15%;
  width: 20%;
  height: 16%;
}



.product-hotspot--lf-gift {
  top: 5%;
  right: 5%;
  width: 15%;
  height: 12%;
  background: rgba(0, 0, 0, 0.2);
}

/* Mobile: hide hotspots, show button */
@media (max-width: 768px) {
  .product-hotspots {
    display: none;
  }

  .lineup-button-wrapper:not(.lineup-button-wrapper--mobile) {
    display: none;
  }

  .lineup-button-wrapper--mobile {
    display: block;
    text-align: center;
    margin-top: 2rem;
  }
}

/* PC: show hotspots, hide mobile button */
@media (min-width: 769px) {
  .product-hotspots {
    display: block;
  }

  .lineup-button-wrapper--mobile {
    display: none;
  }
}

/* ===================================
   Mobile Responsive Adjustments
   =================================== */

@media (max-width: 768px) {
  /* General Section Padding */
  .section {
    padding: 40px 0;
  }

  /* Lineup Section Override */
  .section.section--lineupfx {
    padding-top: 10px !important;
    padding-bottom: 70px !important;
    margin-top: 0 !important;
  }

  /* Quality Section (image-text) */
  .section--image-text {
    padding-bottom: 120px;
  }

  .image-text__media {
    margin-bottom: 1.5rem;
  }

  /* Nuts Quality Section */
  .nuts-quality {
    display: flex;
    flex-direction: column;
  }

  .nuts-quality__media {
    order: 2;
    margin-bottom: 2rem;
  }

  .nuts-quality__text {
    order: 1;
    text-align: left;
    margin-bottom: 2rem;
  }

  .nuts-quality__title,
  .nuts-quality__subtitle,
  .nuts-quality__desc {
    text-align: left;
  }

  .nuts-quality__features {
    list-style: none;
  }

  .nuts-quality__feature::before {
    content: none !important;
  }

  /* Chocolate Section */
  .chocolate {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .chocolate__text {
    order: 1;
  }

  .chocolate__title,
  .chocolate__subtitle {
    order: 1;
  }

  .chocolate__media {
    order: 2;
    margin: 2rem auto;
    max-width: 100%;
  }

  .chocolate__desc {
    order: 3;
  }

  .chocolate__bottom {
    order: 4;
  }

  .chocolate__pairing {
    order: 5;
  }
}
