/* ============================================================
   Variables & Reset
   ============================================================ */
:root {
  --bg:         #F9F7F4;
  --bg-sub:     #F0EDE8;
  --dark:       #1A1A18;
  --gold:       #B8976A;
  --text:       #1C1C1A;
  --muted:      #6B6961;
  --border:     #E2DDD8;
  --serif:      'Playfair Display', 'Cormorant Garamond', 'Hiragino Mincho ProN', 'Yu Mincho', Georgia, serif;
  --sans:       'Noto Sans JP', sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w:      1160px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ============================================================
   Utilities
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow--light { color: rgba(255,255,255,0.6); }

.h2 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 4vw, 5.2rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 32px;
}

.h2--light { color: #F0EDE8; }
.h2--ja { font-size: clamp(2.7rem, 3.4vw, 4.4rem); }

.text--light {
  color: rgba(255,255,255,0.82);
  line-height: 2.2;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 44px;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: pointer;
}

.btn--glass {
  padding: 10px 32px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn--glass:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.btn--dark {
  display: block;
  background: #4A3A30;
  color: #fff;
  border-color: #4A3A30;
  margin-top: 28px;
  text-align: center;
}
.btn--dark:hover {
  background: #9E8468;
  border-color: #9E8468;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  margin-top: 44px;
}
.btn--outline:hover {
  background: #fff;
  color: var(--dark);
}

/* ============================================================
   Animations
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.fade-up--d1 { transition-delay: 0.14s; }
.fade-up--d2 { transition-delay: 0.28s; }
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 48px;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.4s var(--ease);
}

.header.is-scrolled {
  background: rgba(249,247,244,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.header__logo {
  grid-column: 2;
  display: flex;
  justify-content: center;
}

.header__logo img {
  width: 135px;
  filter: brightness(0) invert(1);
  transition: filter 0.5s var(--ease);
}
.header.is-scrolled .header__logo img { filter: none; }

.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  grid-column: 3;
  justify-self: end;
}

.header__social {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.8);
  transition: color 0.4s var(--ease);
}
.header__social:hover { color: #fff; }
.header.is-scrolled .header__social { color: var(--muted); }
.header.is-scrolled .header__social:hover { color: var(--dark); }

.header__cta {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.header.is-scrolled .header__cta {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero__video--sp { display: none; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,18,0.25) 0%,
    rgba(20,20,18,0.50) 55%,
    rgba(20,20,18,0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero__title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(3.25rem, 4.375vw, 5.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: 0;
  color: #F0EDE8;
  margin-bottom: 28px;
  white-space: nowrap;
}

.hero__lead {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2;
  color: rgba(255,255,255,0.84);
  margin-bottom: 80px;
  letter-spacing: 0.06em;
}

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 1;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.38);
  transform-origin: top;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.hero__scroll-label {
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ============================================================
   Story
   ============================================================ */
.story {
  padding: 128px 0;
}

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

.story__body p {
  font-size: 1.55rem;
  color: #4A4A48;
  line-height: 2.1;
}

.story__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ============================================================
   Rebrand
   ============================================================ */
.rebrand {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-sub);
}

.rebrand__inner {
  text-align: center;
}

.rebrand__tag {
  font-family: var(--sans);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 28px;
}

.rebrand__copy {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--text);
  letter-spacing: 0.03em;
}

/* ============================================================
   Fragrance
   ============================================================ */
.fragrance {
  position: relative;
  padding: 168px 0;
  overflow: hidden;
}

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

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

.fragrance__overlay {
  position: absolute;
  inset: 0;
  background: rgba(72,54,40,0.62);
}

.fragrance__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 64px;
  text-align: left;
}

.fragrance__text {
  flex: 1;
  min-width: 0;
}

.fragrance__triangle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.fragrance__triangle img {
  display: block;
  width: 414px;
  max-width: 100%;
  height: auto;
}


.fragrance__content .h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.fragrance__scent {
  font-size: 1.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.12em;
  margin-top: -12px;
  margin-bottom: 0;
}

.fragrance__scent::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.32);
  margin: 22px 0 26px;
}

.fragrance__content p {
  font-size: 1.55rem;
  line-height: 2.3;
}

.fragrance__content .text--light {
  font-weight: 400;
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  padding: 96px 48px;
  background: var(--bg);
}

.gallery__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery__item {
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   Quality
   ============================================================ */
.quality {
  padding: 128px 0;
  background: var(--bg-sub);
}

.quality__head {
  text-align: center;
  margin-bottom: 72px;
}

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

.quality__card {
  background: var(--bg);
  overflow: hidden;
}

.quality__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.quality__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.quality__card:hover .quality__img img {
  transform: scale(1.04);
}

.quality__body {
  padding: 44px 44px 56px;
}

.quality__num {
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

.quality__ttl {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quality__ttl-jp {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 400;
  color: #4E4D49;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.quality__catch {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 12px;
}

.quality__list li {
  font-size: 1.4rem;
  color: #4E4D49;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.quality__list li:first-child { border-top: 1px solid var(--border); }

.quality__card p {
  font-size: 1.45rem;
  color: #4E4D49;
  line-height: 2;
}

/* ============================================================
   Products
   ============================================================ */
.products {
  padding: 128px 0;
}

.products__head {
  text-align: center;
  margin-bottom: 48px;
}

/* Recommended lead */
.products__recommend {
  padding: 20px 0 44px;
  margin-bottom: 48px;
  text-align: center;
}

.products__recommend-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.products__recommend-tag {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.products__recommend p {
  font-size: 1.55rem;
  color: #4A4A48;
  line-height: 1.85;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.pcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}

.pcard__labels {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 24px;
}

.pcard__labels span {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.pcard__labels span:first-child {
  border-right: 1px solid var(--border);
}

.pcard__imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--bg-sub);
}

.pcard__badge-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 7px 14px;
}

.pcard__badge-img--brown {
  background: #7A6355;
  color: #ffffff;
}

.pcard__badge-img--greige {
  background: #C4BDB6;
  color: #2A2A28;
}

.pcard__imgs--single {
  grid-template-columns: 1fr;
}

.pcard__imgs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--bg-sub);
  padding: 36px 28px;
}

.pcard__body {
  padding: 44px 44px 52px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pcard__tag {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 14px;
}

.pcard__name {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 8px;
}

.pcard__sub {
  font-size: 1.8rem;
  font-weight: 300;
}

.pcard__vol {
  font-size: 1.2rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.pcard__scent {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.pcard__desc {
  font-size: 1.4rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 16px;
  flex: 1;
}

.pcard__price {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--dark);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pcard__tax {
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--muted);
}

/* Toggle button */
.products__toggle-wrap {
  text-align: center;
  margin-top: 56px;
}

.products__toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 48px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.products__toggle:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.products__toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.products__toggle-icon::before,
.products__toggle-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.products__toggle-icon::before {
  width: 12px;
  height: 1px;
}

.products__toggle-icon::after {
  width: 1px;
  height: 12px;
}

.products__toggle[aria-expanded="true"] .products__toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Expandable more grid */
.products__more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.products__more.is-open {
  max-height: 3000px;
}

.products__more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 48px;
}

/* Small pcard (3-column) */
.pcard--sm .pcard__imgs img {
  aspect-ratio: 1 / 1;
  padding: 24px 20px;
}

.pcard--sm .pcard__body {
  padding: 28px 28px 36px;
}

.pcard--sm .pcard__name {
  font-size: 2rem;
}

.pcard--sm .pcard__sub {
  font-size: 1.5rem;
}

.pcard--sm .pcard__price {
  font-size: 2.2rem;
}

/* Coming soon state
   ---------------------------------------------------------------
   販売開始時の対応:
   1. <article> から "pcard--coming-soon" クラスを削除
   2. <span class="pcard__badge--soon"> 要素を削除
   --------------------------------------------------------------- */
.pcard--coming-soon .pcard__price,
.pcard--coming-soon .btn {
  display: none;
}

.pcard__badge--soon {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--muted);
  border-radius: 2px;
  padding: 3px 10px;
  margin-top: 12px;
}

/* ============================================================
   Essence
   ============================================================ */
.essence {
  position: relative;
  padding: 168px 0;
  overflow: hidden;
}

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

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

.essence__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,20,18,0.68);
}

.essence__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.essence__content p {
  font-size: 1.55rem;
}

.essence__logo {
  display: block;
  width: 108px;
  margin: 0 auto 36px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 52px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer__logo {
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: color 0.3s var(--ease);
}
.footer__social:hover { color: rgba(255,255,255,0.9); }

.footer__shop {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.footer__shop:hover { color: #fff; }

.footer__copy {
  font-size: 1.32rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
}

.footer__operator {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.footer__operator a {
  color: inherit;
  text-decoration: none;
}
.footer__operator a:hover {
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   Page Top Button
   ============================================================ */
.pagetop {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,247,244,0.88);
  border: 1px solid var(--border);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease);
  z-index: 90;
  backdrop-filter: blur(6px);
}
.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.pagetop:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.pagetop svg {
  display: block;
}

/* ============================================================
   Lineup (brand index only)
   ============================================================ */
.lineup {
  padding: 128px 0;
  background: var(--bg-sub);
}

.lineup__head {
  text-align: center;
  margin-bottom: 72px;
}

.lineup__head p {
  font-size: 1.4rem;
  color: var(--muted);
  margin-top: -16px;
}

.lineup__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
}

.lcard {
  background: transparent;
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.lcard:nth-child(4n) {
  border-right: none;
}

.lcard:nth-child(n+5) {
  border-top: 1px solid var(--border);
}

.lcard__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: transparent;
}

.lcard__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px 20px;
  transition: transform 0.7s var(--ease);
}

.lcard:hover .lcard__img img {
  transform: scale(1.04);
}

.lcard__body {
  padding: 20px 24px 32px;
}

.lcard__name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 6px;
}

.lcard__sub {
  font-size: 1.4rem;
  font-weight: 300;
}

.lcard__name-ja {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
  margin-bottom: 0;
}

.lcard__vol {
  font-size: 1.2rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.lcard__scent {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.lcard__badge {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 3px 10px;
  margin-bottom: 10px;
  border-radius: 2px;
}

.lcard__badge--sale {
  background: #C8C2BA;
  color: var(--dark);
}

.lcard__badge--spring {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--muted);
}


.lineup__cta {
  text-align: center;
}

.lineup__cta .btn--dark {
  display: inline-block;
  margin-top: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .story__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .story__visual { order: -1; }

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

  .products__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .gallery {
    padding: 72px 24px;
  }

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

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

  .lcard:nth-child(4n) {
    border-right: 1px solid var(--border);
  }

  .lcard:nth-child(2n) {
    border-right: none;
  }

  .lcard:nth-child(n+5) {
    border-top: none;
  }

  .lcard:nth-child(n+3) {
    border-top: 1px solid var(--border);
  }
}

@media (min-width: 641px) {
  .hero__title br { display: none; }
  .br--sp { display: none; }
  .hero__content { margin-top: 74px; }
  .fragrance__text { padding-left: 80px; }
}

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

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

  .container { padding: 0 24px; }

  .header { padding: 16px 24px; }
  .header.is-scrolled { padding-top: 12px; padding-bottom: 12px; }

  .header__inner {
    display: flex;
    justify-content: space-between;
  }

  .header__logo {
    grid-column: auto;
    justify-content: flex-start;
  }

  .header__logo img { width: 90px; }

  .header__right {
    grid-column: auto;
    justify-self: auto;
  }

  .hero__title { font-size: clamp(2.6rem, 8vw, 4.2rem); white-space: normal; }
  .hero__title br { display: inline; }
  .hero__lead { font-size: 1.4rem; margin-bottom: 40px; }

  .story,
  .quality,
  .products { padding: 88px 0; }

  .fragrance,
  .essence { padding: 112px 0; }

  .fragrance__content {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .fragrance__content p {
    font-size: 1.35rem;
  }

  .fragrance__scent::after {
    margin: 22px auto 26px;
  }

  .fragrance__triangle {
    padding: 24px;
  }

  .fragrance__triangle img { width: 414px; }

  .rebrand { padding: 64px 0; }

  .pcard__body { padding: 32px 28px 40px; }
  .quality__body { padding: 32px 24px 40px; }

  .quality__grid { grid-template-columns: 1fr; }
  .lineup__grid { grid-template-columns: repeat(2, 1fr); }
  .lineup { padding: 88px 0; }

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

  .products__toggle {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Company Page
   ============================================================ */
.company-hero {
  padding: 160px 0 80px;
  background: var(--bg-sub);
  text-align: center;
}

.company-hero__title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(3.6rem, 5vw, 5.2rem);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.company-hero__title-ja {
  display: block;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.2em;
  margin-top: 12px;
}

.company-info {
  padding: 96px 0 128px;
  background: var(--bg);
}

.company-info__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--border);
}

.company-table tr:first-child {
  border-top: 1px solid var(--border);
}

.company-table th {
  width: 200px;
  padding: 28px 0;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.company-table td {
  padding: 28px 0 28px 32px;
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
}

.company-table td small {
  display: block;
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 4px;
}

.company-link {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.company-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 640px) {
  .company-hero { padding: 120px 0 60px; }

  .company-info__inner { padding: 0 24px; }

  .company-table th {
    width: auto;
    display: block;
    padding: 20px 0 4px;
    font-size: 1.2rem;
  }

  .company-table td {
    display: block;
    padding: 0 0 20px;
  }

  .company-table tr {
    display: block;
  }

  .company-table tr:first-child {
    border-top: none;
  }
}
