/* =============================================
   horizon-select.css
   Horizon Select ブランドページ専用スタイル
   ※ style.css の変数・共通クラスを継承
   追加カラー:
     --hs-teal:   #4A8C8C  (海・深みのある青緑)
     --hs-gold:   #C4963A  (南国の太陽・ゴールドアクセント)
     --hs-mist:   #EAF0EF  (淡い霧・ライトグリーン背景)
     --hs-deep:   #0A1A1A  (深海・ダークベース)
============================================= */

/* ===== Horizon Select 固有カラー変数 ===== */
body.page-horizon-select {
  --hs-teal:   #4A8C8C;
  --hs-gold:   #C4963A;
  --hs-mist:   #EAF0EF;
  --hs-deep:   #0A1A1A;
  background: var(--cream);
}

/* ===== HEADER Horizon Select用上書き ===== */
.header--brand .header__logo,
.header--solid .header__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.header--brand .header__logo-text,
.header--solid .header__logo-text {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
}
.header--brand .header__logo-sub,
.header--solid .header__logo-sub {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  line-height: 1;
}

/* ===== SP ONLY ===== */
.sp-only { display: none; }
@media (max-width: 600px) { .sp-only { display: inline; } }

/* =============================================
   01 HERO
============================================= */
.hs-hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.hs-hero__bg {
  position: absolute;
  inset: 0;
}
.hs-hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
.hs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,26,26,0.80) 0%,
    rgba(10,26,26,0.32) 50%,
    rgba(10,26,26,0.12) 100%
  );
}
.hs-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--side-pad);
  max-width: calc(var(--max-w) + var(--side-pad) * 2);
  margin: 0 auto;
  width: 100%;
}
.hs-hero__eyebrow {
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s 0.3s both;
}
.hs-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.hs-hero__title span {
  display: block;
  animation: fadeInUp 0.8s both;
}
.hs-hero__title span:nth-child(1) { animation-delay: 0.4s; }
.hs-hero__title span:nth-child(2) { animation-delay: 0.55s; }
.hs-hero__body {
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.7s both;
}
.hs-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.85s both;
}
.hs-hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s 1.5s both;
}

/* =============================================
   02 BRAND STORY
============================================= */
.hs-story {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.hs-story__inner {
  max-width: calc(var(--max-w) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.hs-story__label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--hs-teal);
  margin-bottom: 16px;
}
.hs-story__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.hs-story__body {
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 2.1;
  margin-bottom: 20px;
}
.hs-story__images {
  position: relative;
  width: 100%;
}
.hs-story__img {
  overflow: hidden;
  border-radius: 2px;
}
.hs-story__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}
.hs-story__img:hover img { transform: scale(1.03); }
.hs-story__img--main {
  width: 100%;
}

/* =============================================
   03 ORIGIN（産地・地域）
============================================= */
.hs-origin {
  background: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
}
.hs-origin__inner {
  max-width: calc(var(--max-w) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.hs-origin__label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--hs-teal);
  text-align: center;
  margin-bottom: 10px;
}
.hs-origin__title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.hs-origin__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.hs-origin__card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.hs-origin__card-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.hs-origin__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hs-origin__card:hover .hs-origin__card-img img { transform: scale(1.06); }
.hs-origin__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,26,26,0.60) 0%,
    transparent 60%
  );
  transition: opacity var(--transition);
}
.hs-origin__card:hover .hs-origin__card-overlay { opacity: 0.85; }
.hs-origin__card-body {
  position: absolute;
  bottom: 20px; left: 20px;
  color: var(--white);
  z-index: 2;
}
.hs-origin__card-title {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 4px;
}
.hs-origin__card-sub {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
/* クリック無効化中（将来有効化時は .hs-origin__card--disabled クラスを除去し、a タグに戻す） */
.hs-origin__card--disabled {
  cursor: default;
  pointer-events: none;
}
.hs-origin__card--disabled:hover .hs-origin__card-img img { transform: none; }
.hs-origin__card--disabled:hover .hs-origin__card-overlay { opacity: 1; }

/* =============================================
   04 POPULAR PRODUCTS
============================================= */
.hs-popular {
  background: var(--hs-mist, #EAF0EF);
  padding: clamp(80px, 10vw, 140px) 0;
}
.hs-popular__inner {
  max-width: calc(var(--max-w) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.hs-popular__label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--hs-teal);
  text-align: center;
  margin-bottom: 10px;
}
.hs-popular__title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.hs-popular__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 商品カード */
.hs-product-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hs-product-card:hover {
  box-shadow: 0 16px 48px rgba(10,26,26,0.1);
  transform: translateY(-4px);
}
.hs-product-card__link { display: block; text-decoration: none; color: inherit; }
.hs-product-card__img {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hs-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hs-product-card:hover .hs-product-card__img img { transform: scale(1.05); }
.hs-product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--hs-teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
}
.hs-product-card__body {
  padding: 20px 20px 24px;
}
.hs-product-card__origin {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--hs-teal);
  margin-bottom: 6px;
}
.hs-product-card__name {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.hs-product-card__name span {
  font-size: 0.8em;
  font-weight: 300;
  color: var(--gray-mid);
}
.hs-product-card__price {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.hs-product-card__price span {
  font-size: 0.7rem;
  color: var(--gray-light);
}

/* =============================================
   05 BRAND VALUE
============================================= */
.hs-value {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.hs-value__inner {
  max-width: calc(var(--max-w) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.hs-value__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.hs-value__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hs-value__image:hover img { transform: scale(1.03); }
.hs-value__image-deco {
  position: absolute;
  top: -16px; left: -16px;
  width: 100px; height: 100px;
  border: 1px solid var(--hs-teal);
  border-radius: 2px;
  z-index: -1;
  pointer-events: none;
}
.hs-value__label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--hs-teal);
  margin-bottom: 16px;
}
.hs-value__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}
.hs-value__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hs-value__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-dark);
}
.hs-value__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hs-value__item-num {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--hs-gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.hs-value__item-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.hs-value__item-body {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.9;
}

/* =============================================
   06 GALLERY
============================================= */
.hs-gallery {
  background: var(--white);
  padding: clamp(80px, 10vw, 120px) 0;
}
.hs-gallery__inner {
  max-width: calc(var(--max-w) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.hs-gallery__label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--hs-teal);
  text-align: center;
  margin-bottom: 10px;
}
.hs-gallery__title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.hs-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: clamp(320px, 45vw, 520px);
}
.hs-gallery__item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.hs-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hs-gallery__item:hover img { transform: scale(1.06); }
.hs-gallery__item--wide {
  grid-row: span 2;
}

/* =============================================
   RESPONSIVE — horizon-select
============================================= */
@media (max-width: 900px) {
  .hs-story__inner {
    grid-template-columns: 1fr;
  }
  .hs-story__images {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hs-origin__grid { grid-template-columns: 1fr 1fr; }
  .hs-origin__grid .hs-origin__card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .hs-popular__grid { grid-template-columns: 1fr 1fr; }
  .hs-popular__grid .hs-product-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .hs-value__inner { grid-template-columns: 1fr; }
  .hs-value__image {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .hs-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .hs-gallery__item--wide {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/7;
  }
  .hs-gallery__item { aspect-ratio: 1/1; }
}

@media (max-width: 600px) {
  .hs-hero__actions { flex-direction: column; align-items: flex-start; }

  .hs-origin__grid { grid-template-columns: 1fr; }
  .hs-origin__grid .hs-origin__card:last-child {
    grid-column: 1;
    max-width: 100%;
  }

  .hs-popular__grid { grid-template-columns: 1fr; }
  .hs-popular__grid .hs-product-card:last-child {
    grid-column: 1;
    max-width: 100%;
  }

  .hs-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hs-gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 16/8;
  }
}
