/* ==========================================================================
   home.css — トップページ（ビジュアル主導版）
   ========================================================================== */

/* ==========================================================================
   フルスクリーンヒーロー（写真×オーバーレイ）
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1410;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3a2817 0%, #1a1410 60%, #2a1f14 100%);
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  animation: heroZoom 20s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 2;
}
.hero__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--space-md);
  max-width: 900px;
  animation: fadeUp 1.4s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__slogan {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1.8vw, 1.125rem);
  letter-spacing: 0.5em;
  opacity: 0.85;
  margin-bottom: var(--space-lg);
  padding-right: 0.5em; /* letter-spacing 最後の余白 */
}
.hero__slogan::before,
.hero__slogan::after {
  content: "—";
  margin: 0 1em;
  opacity: 0.5;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--space-lg);
}
.hero__title em {
  font-style: normal;
  color: #d7b48a;
  padding: 0 0.05em;
}
.hero__subtitle {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  letter-spacing: 0.3em;
  opacity: 0.7;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  opacity: 0.7;
  animation: scrollHint 2s ease-in-out infinite;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.5);
  margin: var(--space-xs) auto 0;
}
@keyframes scrollHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 4px); opacity: 0.9; }
}

/* ==========================================================================
   Split Block（画像 + テキストを半々で見せる）
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, #3a2817, #1a1410);
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.split:hover .split__image img { transform: scale(1.05); }
.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
}
@media (max-width: 640px) {
  .split__content { padding: var(--space-xl) var(--space-md); }
}
.split__label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.split__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.split__text {
  line-height: 2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.split--dark {
  background: linear-gradient(135deg, #1a1410 0%, #2a1f14 100%);
  color: var(--color-white);
}
.split--dark .split__title { color: var(--color-white); }
.split--dark .split__text { color: rgba(255, 255, 255, 0.85); }
.split--dark .split__label { color: #d7b48a; }

/* ==========================================================================
   店舗カード4つ（ビジュアル強化版）
   ========================================================================== */
.stores-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}
.stores-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
}
.stores-section__label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.stores-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}
.stores-section__desc {
  color: var(--color-text-muted);
  line-height: 2;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (max-width: 768px) {
  .stores-grid { grid-template-columns: 1fr; }
}

.store-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  color: var(--color-white);
  transition: transform 0.4s ease;
  background: #1a1410;
}
@media (max-width: 768px) {
  .store-card { aspect-ratio: 1 / 1; }
}
.store-card:hover {
  transform: translateY(-4px);
  color: var(--color-white);
}
.store-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.store-card__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.store-card:hover .store-card__image img { transform: scale(1.08); }
.store-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 2;
}
.store-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-lg);
  z-index: 2;
}
.store-card__tag {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  opacity: 0.85;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
}
.store-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--space-xs);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.store-card__catch {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-sm);
}
.store-card__link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.85;
}
.store-card__link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.3s ease;
}
.store-card:hover .store-card__link::after { transform: translateX(6px); }

/* ==========================================================================
   Mission ブロック（写真背景型）
   ========================================================================== */
.mission-block {
  position: relative;
  min-height: 80vh;
  padding: var(--space-2xl) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
  background: #1a1410;
}
.mission-block__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mission-block__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: slowPan 30s ease-in-out infinite alternate;
}
.mission-block__image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.45),
    rgba(26, 20, 16, 0.7)
  );
}
.mission-block__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.mission-block__label {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: #d7b48a;
  margin-bottom: var(--space-lg);
}
.mission-block__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4.5vw, 2.75rem);
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}
.mission-block__title em {
  font-style: normal;
  color: #d7b48a;
}
.mission-block__text {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  line-height: 2;
  opacity: 0.9;
}
.mission-block .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}
.mission-block .btn:hover {
  background: var(--color-white);
  color: #1a1410;
  border-color: var(--color-white);
}

/* ==========================================================================
   Vision 帯（写真の上に文字をオーバーレイ）
   ========================================================================== */
.vision-band {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  background: linear-gradient(135deg, #2a1f14 0%, #1a1410 100%);
}
.vision-band__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vision-band__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.vision-band__image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(26, 20, 16, 0.5),
    rgba(26, 20, 16, 0.8));
}
.vision-band__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.vision-band__label {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  opacity: 0.7;
  margin-bottom: var(--space-md);
}
.vision-band__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
}
.vision-band__quote::before { content: "「"; }
.vision-band__quote::after { content: "」"; }
.vision-band__sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

/* ==========================================================================
   Location 帯（梅田の街）
   ========================================================================== */
.location-band {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
  text-align: center;
}
.location-band__label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.location-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}
.location-band__text {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 2;
  color: var(--color-text-muted);
  padding: 0 var(--space-md);
}
