.brand-hero {
    min-height: 100vh;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
    position: relative;
  }
  
  .brand-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 117, 104, 0.95) 0%, rgba(74, 99, 88, 0.98) 100%);
  }
  
  .brand-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-bg-light);
  }
  
  .brand-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto 40px;
    opacity: 0.9;
    background: rgba(248, 247, 244, 0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(248, 247, 244, 0.2);
  }
  
  .brand-hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: var(--color-bg-light);
  }
  
  .brand-tagline {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.15em;
    opacity: 0.8;
    font-style: italic;
  }
  
  @media (max-width: 768px) {
    .brand-logo {
      width: 150px;
      height: 150px;
      padding: 20px;
      margin-bottom: 30px;
    }
    
    .brand-hero h1 {
      font-size: 36px;
    }
    
    .brand-tagline {
      font-size: 14px;
    }
  }
  
  .brand-story {
    background: var(--color-bg-light);
    padding: 120px 0;
  }
  
  .brand-story h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 60px;
  }
  
  .story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .story-content p {
    font-size: 16px;
    line-height: 2.2;
    color: var(--color-text-dark);
    letter-spacing: 0.08em;
  }
  
  @media (max-width: 768px) {
    .brand-story {
      padding: 80px 0;
    }
    
    .brand-story h2 {
      margin-bottom: 40px;
    }
    
    .story-content p {
      font-size: 15px;
    }
  }
  
  .fragrances {
    background: var(--color-bg-white);
    padding: 120px 0;
  }
  
  .fragrances > .container > h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 80px;
  }
  
  .fragrance-item {
    max-width: 900px;
    margin: 0 auto 100px;
    background: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .fragrance-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  }
  
  .fragrance-item:last-child {
    margin-bottom: 0;
  }
  
  .fragrance-header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  .fragrance-image {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .fragrance-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
  }
  
  .fragrance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .fragrance-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    color: var(--color-bg-light);
  }
  
  .fragrance-title-overlay h3 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  .fragrance-title-overlay .fragrance-concept {
    font-size: 14px;
    letter-spacing: 0.1em;
    opacity: 0.95;
    font-style: italic;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }
  
  .fragrance-content {
    padding: 50px 40px;
  }
  
  .fragrance-pyramid {
    margin: 0 0 40px 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  
  .fragrance-pyramid h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 30px;
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
  }
  
  .pyramid {
    display: grid;
    gap: 16px;
  }
  
  .pyramid-layer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--color-bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
    transition: all 0.3s ease;
  }
  
  .pyramid-layer:hover {
    background: rgba(139, 115, 85, 0.05);
    transform: translateX(8px);
  }
  
  .pyramid-layer.top {
    border-left-color: #a8c5ba;
  }
  
  .pyramid-layer.middle {
    border-left-color: var(--color-accent);
  }
  
  .pyramid-layer.base {
    border-left-color: #6b5d52;
  }
  
  .layer-label {
    flex-shrink: 0;
    width: 70px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    padding-top: 2px;
  }
  
  .layer-notes {
    flex: 1;
    font-size: 15px;
    color: var(--color-text-dark);
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
  
  .fragrance-description {
    font-size: 15px;
    line-height: 2;
    color: var(--color-text-dark);
    margin: 0 0 40px 0;
    letter-spacing: 0.05em;
  }
  
  .fragrance-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
  }
  
  .fragrance-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: none;
  }
  
  .price {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-accent);
  }
  
  .volume {
    font-size: 14px;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
  }
  
  @media (max-width: 768px) {
    .fragrances {
      padding: 80px 0;
    }
    
    .fragrances > .container > h2 {
      margin-bottom: 50px;
    }
    
    .fragrance-item {
      margin-bottom: 60px;
    }
    
    .fragrance-header {
      height: 300px;
    }
    
    .fragrance-title-overlay {
      padding: 30px 25px;
    }
    
    .fragrance-title-overlay h3 {
      font-size: 28px;
    }
    
    .fragrance-title-overlay .fragrance-concept {
      font-size: 13px;
    }
    
    .fragrance-content {
      padding: 35px 25px;
    }
    
    .fragrance-pyramid h4 {
      font-size: 13px;
      margin-bottom: 20px;
    }
    
    .pyramid {
      gap: 12px;
    }
    
    .pyramid-layer {
      flex-direction: column;
      gap: 8px;
      padding: 15px;
    }
    
    .layer-label {
      width: auto;
      font-size: 11px;
    }
    
    .layer-notes {
      font-size: 14px;
    }
    
    .fragrance-description {
      font-size: 14px;
      margin-bottom: 30px;
    }
    
    .fragrance-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    
    .price {
      font-size: 28px;
    }
  }
  
  .back-section {
    background: var(--color-bg-light);
    padding: 80px 0;
    text-align: center;
  }
  
  .btn-back {
    display: inline-block;
    padding: 16px 50px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .btn-back:hover {
    background: var(--color-accent);
    color: var(--color-bg-white);
  }
  
  @media (max-width: 768px) {
    .back-section {
      padding: 60px 0;
    }
  }

  /* ===== Carousel (per product: 2 images) ===== */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

/* 既存の .fragrance-image img (width/height/object-fit) をそのまま活かす */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(44, 44, 44, 0.35);
  color: var(--color-bg-light);
  line-height: 1;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}

.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: rgba(255, 255, 255, 0.75);
}

/* モバイルでボタンが大きすぎる場合の微調整 */
@media (max-width: 640px) {
  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}

/* ===== Carousel (per product: 2 images) ===== */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .carousel-slide.is-active {
    opacity: 1;
  }
  
  /* 既存の .fragrance-image img (width/height/object-fit) をそのまま活かす */
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(44, 44, 44, 0.35);
    color: var(--color-bg-light);
    line-height: 1;
    font-size: 22px;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(6px);
  }
  
  .carousel-btn.prev { left: 16px; }
  .carousel-btn.next { right: 16px; }
  
  .carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
  }
  
  .carousel-dot.is-active {
    background: rgba(255, 255, 255, 0.75);
  }
  
  /* モバイルでボタンが大きすぎる場合の微調整 */
  @media (max-width: 640px) {
    .carousel-btn {
      width: 34px;
      height: 34px;
      font-size: 20px;
    }
  }
  

/* ===== Brand item cards (brand landing page) ===== */
.brand-items{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC: 3列 */
  gap: 18px;
}

/* カード全体 */
.brand-item-card{
  display: flex;
  flex-direction: column;              /* 画像上、テキスト下 */
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 2s ease, box-shadow 2s ease;
}
.brand-item-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

/* サムネ */
.brand-item-thumb{
  width: 100%;
  aspect-ratio: 4 / 3;                 /* 横並びでも高さが揃う */
  background: var(--color-bg-light);
}
.brand-item-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキスト */
.brand-item-meta{
  padding: 16px 18px 18px;
  text-align: center;
}
.brand-item-meta .brand{
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin: 0 0 8px;
}
.brand-item-meta .name{
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 1024px){
  .brand-items{
    grid-template-columns: repeat(2, 1fr); /* タブレット: 2列 */
  }
}
@media (max-width: 640px){
  .brand-items{
    grid-template-columns: 1fr;           /* スマホ: 1列 */
  }
  .brand-item-meta .name{ font-size: 16px; }
}
