/* =========================================
   BIOND - Main Stylesheet
   ========================================= */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Noto+Serif+JP:wght@500;600;700&display=swap');

/* === Custom Properties === */
:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-secondary: #444444;
  --color-text-meta: #747474;
  --color-text-label: #929292;
  --color-section-bg: #efefef;
  --color-cta-brown: #7b4a0e;
  --color-overlay-dark: #3c3c3c;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Noto Serif JP', serif;

  --z-header: 1000;
  --z-menu: 999;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

ul { list-style: none; }

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

/* =========================================
   FLOATING HEADER
   ========================================= */
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
}

.floating-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Keep header visible when mobile menu is open */
.floating-header.menu-is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .floating-header {
    transition: none;
  }
}

.floating-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.floating-header__logo {
  display: block;
  flex-shrink: 0;
}

.floating-header__logo img {
  height: 27px;
  width: auto;
}

/* PC Nav */
.floating-header__nav {
  display: none;
}

.floating-header__nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

.floating-header__nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #000;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.floating-header__nav a:hover {
  opacity: 0.6;
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #000;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* === PC: show nav, hide hamburger === */
@media (min-width: 1024px) {
  .floating-header__nav {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

/* === Tablet === */
@media (min-width: 768px) and (max-width: 1023px) {
  .floating-header__inner {
    padding: 0 20px;
    height: 64px;
  }
}

/* === SP === */
@media (max-width: 767px) {
  .floating-header__inner {
    height: 50px;
    padding: 0 20px;
  }
  .floating-header__logo img {
    height: 16px;
  }
  .hamburger {
    gap: 8px;
  }
}

/* =========================================
   MOBILE MENU OVERLAY
   ========================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: var(--z-menu);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: none;
  }
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: #000;
  letter-spacing: 2px;
  transition: opacity 0.2s;
}

.mobile-menu__link:hover {
  opacity: 0.6;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
}

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

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero__overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 670px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 1360 670' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><defs><radialGradient id='g' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(74.942 -38.547 46.205 80.37 680 349.74)'><stop stop-color='rgba(0,0,0,0)' offset='0.37981'/><stop stop-color='rgba(0,0,0,.4)' offset='0.625'/><stop stop-color='rgba(0,0,0,1)' offset='1'/></radialGradient></defs><rect width='100%25' height='100%25' fill='url(%23g)' opacity='.5'/></svg>");
  background-size: 100% 100%;
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Hero top bar (logo + nav) */
.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 80px;
  flex-shrink: 0;
}

.hero__logo img {
  height: 54px;
  width: auto;
}

.hero__nav {
  display: none;
}

.hero__nav ul {
  display: flex;
  gap: 44px;
  align-items: center;
}

.hero__nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}

/* Hero content */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 190px;
  text-align: center;
}

.hero__copy {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 90px;
  color: #fff;
  line-height: 1;
  letter-spacing: 2.7px;
  text-shadow: 0 8px 12px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.hero__copy--luxury {
  letter-spacing: 1.8px;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 19px;
  width: 400px;
  height: 60px;
  background-color: var(--color-cta-brown);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2.4px;
  transition: opacity 0.2s;
}

.hero__cta:hover {
  opacity: 0.85;
}

.hero__tagline {
  margin-top: 45px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 26px;
  color: #fff;
  letter-spacing: 2.6px;
  white-space: nowrap;
}

.sp-break {
  display: none;
}

.hero__gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #b08100 0%, #e7a900 50%, #b08100 100%);
}

/* PC: show in-hero nav */
@media (min-width: 1024px) {
  .hero__nav {
    display: block;
  }
}

/* Tablet hero */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__header {
    padding: 30px 40px;
    justify-content: center;
  }
  .hero__logo img {
    height: 54px;
  }
  .hero__overlay {
    top: 40px;
    left: 40px;
    right: 40px;
    height: 670px;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 688 670' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><defs><radialGradient id='g' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(37.912 -38.547 23.374 80.37 344 349.74)'><stop stop-color='rgba(0,0,0,0)' offset='0.37981'/><stop stop-color='rgba(0,0,0,.4)' offset='0.625'/><stop stop-color='rgba(0,0,0,1)' offset='1'/></radialGradient></defs><rect width='100%25' height='100%25' fill='url(%23g)' opacity='.5'/></svg>");
    background-size: 100% 100%;
  }
  .hero__content {
    padding-top: 220px;
  }
  .hero__copy {
    font-size: 50px;
    letter-spacing: 1.5px;
  }
  .hero__copy--luxury {
    letter-spacing: 1px;
  }
  .hero__cta {
    width: 400px;
    height: 60px;
    font-size: 24px;
    margin-top: 39px;
  }
  .hero__tagline {
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 95px;
  }
}

/* SP hero */
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;   /* フォールバック: svh/dvh 非対応ブラウザ向け */
    min-height: 100svh;  /* 安定VP高: アドレスバー表示時に画面を埋める最小値 */
    height: 100dvh;      /* 動的VP高: アドレスバーの表示・非表示に追従 */
  }
  .hero__bg img {
    object-position: center top;
  }
  .hero__header {
    padding: 41px 20px;
    justify-content: center;
  }
  .hero__logo img {
    height: 38px;
  }
  .hero__overlay {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    height: auto;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 335 670' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><defs><radialGradient id='g' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(19.95 -41.974 12.632 87.355 167.5 349.74)'><stop stop-color='rgba(0,0,0,0)' offset='0.37981'/><stop stop-color='rgba(0,0,0,.4)' offset='0.625'/><stop stop-color='rgba(0,0,0,1)' offset='1'/></radialGradient></defs><rect width='100%25' height='100%25' fill='url(%23g)' opacity='.5'/></svg>");
    background-size: 100% 100%;
  }
  .hero__content {
    padding-top: 290px;
  }
  .hero__copy {
    font-size: 36px;
    letter-spacing: 1.08px;
  }
  .hero__copy--luxury {
    letter-spacing: 0.72px;
  }
  .hero__cta {
    width: 200px;
    height: 40px;
    font-size: 18px;
    letter-spacing: 1.8px;
    margin-top: 16px;
  }
  .sp-break {
    display: inline;
  }
  .hero__tagline {
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 54px;
    padding: 0 50px;
    white-space: normal;
    text-align: center;
  }
}

/* =========================================
   CATEGORY SECTION
   ========================================= */
.category {
  background-color: var(--color-section-bg);
  padding: 64px 0;
  text-align: center;
}

.category__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.category__grid {
  display: flex;
  justify-content: center;
  gap: 50px;
}

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

.category__img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255,255,255,0.3);
}

.category__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
}

.category__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.category__link:hover {
  opacity: 0.7;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .category {
    padding: 40px 0 58px;
  }
}

@media (max-width: 767px) {
  .category {
    padding: 50px 0 60px;
  }
  .category__heading {
    margin-bottom: 30px;
  }
  .category__grid {
    gap: 10px;
  }
  .category__item {
    gap: 20px;
  }
  .category__link {
    gap: 20px;
  }
  .category__img {
    width: 110px;
    height: 110px;
  }
  .category__label {
    font-size: 10px;
    letter-spacing: 2px;
  }
}

/* =========================================
   SILK LOTION BANNER
   ========================================= */
.lotion-banner {
  position: relative;
  width: 100%;
  height: 370px;
  overflow: hidden;
}

.lotion-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/silk-lotion-bg.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.lotion-banner__overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 1380 310' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><defs><radialGradient id='g' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(76.044 -17.835 46.885 37.186 690 161.82)'><stop stop-color='rgba(255,255,255,0)' offset='0.37981'/><stop stop-color='rgba(255,255,255,0.4)' offset='0.625'/><stop stop-color='rgba(255,255,255,1)' offset='1'/></radialGradient></defs><rect width='100%25' height='100%25' fill='url(%23g)' opacity='.6'/></svg>");
  background-size: 100% 100%;
  pointer-events: none;
}

.lotion-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 306px;
  padding-top: 107px;
}

.lotion-banner__subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-overlay-dark);
  letter-spacing: 3px;
  margin-bottom: 0;
}

.lotion-banner__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-overlay-dark);
  letter-spacing: 6.4px;
  margin-bottom: 21px;
}

.lotion-banner__copy {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-overlay-dark);
  letter-spacing: 3.6px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .lotion-banner__bg {
    background-image: url(../images/silk-lotion-bg-tablet.jpg);
  }
  .lotion-banner__overlay {
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 708 310' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><defs><radialGradient id='g' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(39.014 -17.835 24.054 37.186 354 161.82)'><stop stop-color='rgba(255,255,255,0)' offset='0.37981'/><stop stop-color='rgba(255,255,255,0.4)' offset='0.625'/><stop stop-color='rgba(255,255,255,1)' offset='1'/></radialGradient></defs><rect width='100%25' height='100%25' fill='url(%23g)' opacity='.6'/></svg>");
  }
  .lotion-banner__content {
    padding-left: 61px;
    padding-top: 57px;
    padding-bottom: 60px;
  }
  .lotion-banner__title {
    font-size: 32px;
    letter-spacing: 6.4px;
    margin-bottom: 0;
  }
  .lotion-banner__copy {
    font-size: 18px;
    letter-spacing: 3.6px;
    margin-top: auto;
  }
}

@media (max-width: 767px) {
  .lotion-banner__bg {
    background-image: url(../images/silk-lotion-bg-sp.jpg);
  }
  .lotion-banner {
    height: 230px;
  }
  .lotion-banner__overlay {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 355 210' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><defs><radialGradient id='g' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(19.562 -12.082 12.061 25.191 177.5 109.62)'><stop stop-color='rgba(255,255,255,0)' offset='0.37981'/><stop stop-color='rgba(255,255,255,0.4)' offset='0.625'/><stop stop-color='rgba(255,255,255,1)' offset='1'/></radialGradient></defs><rect width='100%25' height='100%25' fill='url(%23g)' opacity='.6'/></svg>");
  }
  .lotion-banner__content {
    justify-content: center;
    padding: 0 30px;
    padding-top: 0;
  }
  .lotion-banner__subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }
  .lotion-banner__title {
    font-size: 12px;
    letter-spacing: 2.4px;
    margin-bottom: 13px;
  }
  .lotion-banner__copy {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.4px;
    line-height: 1.8;
    margin-top: 0;
  }
}

/* =========================================
   BRAND MESSAGE
   ========================================= */
.brand-message {
  text-align: center;
  padding: 170px 60px 105px;
}

.brand-message__heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 3.8px;
  margin-bottom: 14px;
}

.brand-message__body {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-secondary);
  letter-spacing: 1.4px;
  line-height: 2.2;
  margin-bottom: 26px;
}

.brand-message__note {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-secondary);
  letter-spacing: 2px;
  line-height: 1.8;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .brand-message {
    padding: 120px 40px 80px;
  }
  .brand-message__heading {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .brand-message {
    padding: 80px 20px 60px;
  }
  .brand-message__heading {
    font-size: 18px;
    letter-spacing: 1.8px;
    margin-bottom: 18px;
  }
  .brand-message__body {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 29px;
  }
  .brand-message__body .bm-line {
    display: block;
  }
  .brand-message__body .bm-break {
    display: none;
  }
  .brand-message__note {
    font-size: 14px;
    letter-spacing: 1.4px;
    text-align: center;
  }
}

/* =========================================
   TERROIR SECTION
   ========================================= */
.terroir-wrapper {
  padding: 0 60px;
  margin-bottom: 0;
}

.terroir {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

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

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

.terroir__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    250deg,
    rgba(1,21,5,0.8) 0%,
    rgba(1,42,9,0.32) 48%,
    rgba(1,21,5,0.8) 100%
  );
}

.terroir__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 283px;
}

.terroir__subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.terroir__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 50px;
  color: #fff;
  letter-spacing: 5px;
  line-height: 2.2;
  margin-bottom: 20px;
}

.terroir__body {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: 2;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.terroir__quote {
  background-color: rgba(1,26,6,0.7);
  padding: 20px 26px;
  max-width: 632px;
}

.terroir__quote p {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  line-height: 2.2;
  letter-spacing: 1.2px;
}

@media (max-width: 1023px) {
  .terroir-wrapper {
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .terroir__content {
    padding: 0 41px;
  }
  .terroir__title {
    font-size: 38px;
  }
  .terroir__body {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .terroir {
    height: 560px;
  }
  .terroir__content {
    padding: 0 20px;
    justify-content: flex-start;
    padding-top: 89px;
  }
  .terroir__subtitle {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .terroir__title {
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .terroir__body {
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 2;
  }
  .terroir__quote {
    padding: 14px 18px;
  }
  .terroir__quote p {
    font-size: 11px;
    line-height: 2;
  }
}

/* =========================================
   NATURAL INGREDIENTS
   ========================================= */
.ingredients {
  padding: 160px 0;
  position: relative;
}

.ingredients__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 180px 0 295px;
  display: flex;
  align-items: flex-start;
}

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

.ingredients__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 50px;
  color: #000;
  letter-spacing: 5px;
  line-height: 1.2;
  margin-bottom: 7px;
}

.ing-subtitle-br {
  display: none;
}

.ingredients__subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 18px;
  white-space: nowrap;
}

.ingredients__body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: #000;
  line-height: 2.2;
  white-space: pre-line;
}

.ingredients__image-wrap {
  flex: 0 0 590px;
  padding-top: 125px;
}

.ingredients__photo {
  width: 100%;
  aspect-ratio: 590 / 443;
  object-fit: cover;
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .ingredients__inner {
    padding: 0 60px;
    gap: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ingredients {
    padding: 120px 0;
  }
  .ingredients__inner {
    padding: 0 40px;
    display: block;
  }
  .ingredients__text {
    margin-bottom: 18px;
  }
  .ingredients__heading {
    font-size: 50px;
  }
  .ingredients__image-wrap {
    padding-top: 0;
    margin-left: 138px;
  }
  .ingredients__photo {
    width: 590px;
    aspect-ratio: 590 / 443;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .ingredients {
    padding: 130px 0;
  }
  .ingredients__inner {
    padding: 0;
    display: block;
  }
  .ingredients__text {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .ingredients__heading {
    font-size: 40px;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .ing-subtitle-br {
    display: inline;
  }
  .ingredients__subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .ingredients__body {
    font-size: 14px;
  }
  .ingredients__image-wrap {
    padding-top: 0;
    margin: 0;
  }
  .ingredients__photo {
    width: 100%;
    aspect-ratio: 375 / 282;
    object-fit: cover;
  }
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products {
  padding: 80px 0;
  text-align: center;
}

.products__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 180px);
  column-gap: 50px;
  row-gap: 40px;
  justify-content: center;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.2s;
}

.product-card:hover {
  opacity: 0.7;
}

.product-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.product-card__code {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  color: var(--color-text-label);
  letter-spacing: 1px;
  line-height: 1.6;
  margin-top: 20px;
}

.product-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: #000;
  letter-spacing: 1.2px;
  line-height: 1.6;
  margin-top: 0;
}

.product-card__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  color: #000;
  letter-spacing: 1px;
  line-height: 1.6;
  margin-top: 12px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .products__grid {
    grid-template-columns: repeat(3, 180px);
    column-gap: 50px;
    row-gap: 40px;
  }
}

@media (max-width: 767px) {
  .products__grid {
    grid-template-columns: repeat(2, 170px);
    column-gap: 9px;
    row-gap: 40px;
  }
  .product-card__code {
    margin-top: 10px;
  }
}

/* =========================================
   POST SECTION
   ========================================= */
.post-section {
  padding: 80px 60px;
  text-align: center;
}

.post-section__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.post-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  column-gap: 40px;
  justify-content: center;
}

.post-card {
  width: 260px;
  text-align: left;
}

.post-card__link {
  display: block;
  transition: opacity 0.2s;
}

.post-card__link:hover {
  opacity: 0.7;
}

.post-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.post-card__title {
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  color: #000;
}

.post-card__excerpt {
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.8;
  color: #000;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .post-section {
    padding: 60px 40px;
  }
  .post-section__heading {
    margin-bottom: 60px;
  }
  .post-section__grid {
    grid-template-columns: repeat(2, 260px);
    column-gap: 40px;
    row-gap: 40px;
  }
}

@media (max-width: 767px) {
  .post-section {
    padding: 60px 13px;
  }
  .post-section__heading {
    margin-bottom: 40px;
  }
  .post-section__grid {
    grid-template-columns: repeat(2, 170px);
    column-gap: 9px;
    row-gap: 40px;
  }
  .post-card {
    width: 170px;
  }
  .post-card__img {
    height: 105px;
  }
  .post-card__title {
    font-size: 12px;
  }
  .post-card__excerpt {
    font-size: 10px;
  }
}

/* =========================================
   Q&A SECTION
   ========================================= */
.qa-section {
  padding: 80px 60px;
  text-align: center;
}

.qa-section__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.qa-list {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.qa-item {
  border-bottom: 1px solid #000;
}

.qa-item:first-child {
  border-top: 1px solid #000;
}

.qa-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #000;
  letter-spacing: 1.6px;
  gap: 20px;
}

.qa-item__icon {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2.4px;
  line-height: 1.8;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  user-select: none;
}

.qa-item.is-open .qa-item__icon {
  transform: rotate(45deg);
}

.qa-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.qa-item.is-open .qa-item__answer {
  max-height: 300px;
}

.qa-item__answer-inner {
  padding: 4px 0 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.8;
  color: #000;
  letter-spacing: 1.2px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .qa-section {
    padding: 60px 40px;
  }
  .qa-list {
    max-width: 688px;
  }
}

@media (max-width: 767px) {
  .qa-section {
    padding: 60px 10px;
  }
  .qa-list {
    max-width: 355px;
  }
  .qa-item__question {
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 16px 0;
  }
  .qa-item__icon {
    font-size: 18px;
  }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  padding: 80px 60px 102px;
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 53px;
}

.site-footer__logo img {
  height: 54px;
  width: auto;
  margin: 0 auto;
}

.site-footer__copy {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.6px;
  line-height: 1;
  color: #000;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 19px;
}

.site-footer__tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.8px;
  color: #000;
  margin-bottom: 42px;
}

.site-footer__company {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 1.2px;
  color: #000;
  margin-bottom: 20px;
}

.site-footer__sns {
  display: flex;
  justify-content: center;
}

.site-footer__sns a {
  display: block;
  width: 26px;
  height: 26px;
}

.site-footer__sns img {
  width: 26px;
  height: 26px;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 60px 20px 62px;
  }
  .site-footer__logo {
    margin-bottom: 20px;
  }
  .site-footer__logo img {
    height: 43px;
  }
  .site-footer__copy {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .site-footer__tagline {
    margin-bottom: 99px;
  }
}

/* =========================================
   ARTICLE PAGE – STATIC TOP HEADER
   ========================================= */
.page-header {
  width: 100%;
  height: 84px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}

.page-header__logo img {
  height: 54px;
  width: auto;
}

.page-header__nav {
  display: none;
}

.page-header__nav ul {
  display: flex;
  gap: 40px;
}

.page-header__nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #000;
}

@media (min-width: 1024px) {
  .page-header__nav {
    display: block;
  }
  .page-header .hamburger {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .page-header {
    padding: 0 20px;
    height: 64px;
  }
  .page-header__logo img {
    height: 27px;
  }
}

@media (max-width: 767px) {
  .page-header {
    padding: 0 20px;
    height: 50px;
  }
  .page-header__logo img {
    height: 16px;
  }
}

/* =========================================
   ARTICLE CONTENT
   ========================================= */
.article-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  padding: 60px 285px 0;
}

.breadcrumb p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: #000;
  letter-spacing: 1.2px;
}

/* Article header */
.article-header {
  padding: 0 285px;
  margin-top: 30px;
}

.article-date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text-meta);
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.article-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #000;
  letter-spacing: 2.6px;
  line-height: 1.5;
}

/* Eyecatch */
.article-eyecatch {
  margin: 30px 285px 0;
  width: calc(100% - 570px);
  height: 535px;
  object-fit: cover;
}

/* Article body */
.article-body {
  padding: 0 285px;
  margin-top: 60px;
}

.article-body p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: #000;
  letter-spacing: 1.6px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.article-body h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #000;
  letter-spacing: 2.6px;
  margin-bottom: 20px;
  margin-top: 60px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-note {
  padding: 0 285px;
  margin-top: 0;
  margin-bottom: 60px;
}

.article-note p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text-meta);
  letter-spacing: 1.2px;
  line-height: 1.6;
}

/* Back button */
.article-back {
  display: flex;
  justify-content: center;
  margin: 60px 0 80px;
}

.article-back__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 60px;
  border: 1px solid #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #000;
  letter-spacing: 1.8px;
  transition: background-color 0.2s, color 0.2s;
}

.article-back__btn:hover {
  background-color: #000;
  color: #fff;
}

/* Article products section */
.article-products {
  padding: 60px 0;
  text-align: center;
}

.article-products__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

/* Tablet article */
@media (min-width: 768px) and (max-width: 1023px) {
  .breadcrumb {
    display: none;
  }
  .article-header {
    padding: 20px 20px 0;
    margin-top: 0;
  }
  .article-eyecatch {
    margin: 20px 0 0;
    width: 100%;
    height: 472px;
  }
  .article-body {
    padding: 0 20px;
    margin-top: 40px;
  }
  .article-body p {
    font-size: 14px;
  }
  .article-body h2 {
    font-size: 22px;
  }
  .article-note {
    padding: 0 20px;
  }
  .article-back__btn {
    width: 400px;
  }
}

/* SP article */
@media (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
  .article-header {
    padding: 14px 20px 0;
    margin-top: 0;
  }
  .article-title {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .article-eyecatch {
    margin: 14px 0 0;
    width: 100%;
    height: 231px;
  }
  .article-body {
    padding: 0 20px;
    margin-top: 30px;
  }
  .article-body p {
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 1.8;
  }
  .article-body h2 {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .article-note {
    padding: 0 20px;
  }
  .article-back {
    margin: 40px 20px 60px;
  }
  .article-back__btn {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.js-enabled .js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.js-enabled .js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-enabled .js-reveal,
  .js-enabled .js-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
}

/* =========================================
   HERO TYPEWRITER
   ========================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__copy {
  min-height: 1em;
}

.hero__copy__cursor {
  display: inline-block;
  width: 2px;
  height: 0.78em;
  background-color: #fff;
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: hero-cursor-blink 0.9s step-end infinite;
}

@keyframes hero-cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy__cursor {
    animation: none;
    opacity: 1;
  }
}

/* ========================================
   HERO TEXT GLOW SWEEP
   ======================================== */

.hero__copy-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__copy-wrap.is-sweeping .hero__copy {
  animation: hero-text-glow 0.9s ease-in-out forwards;
}

.hero__copy-wrap.is-sweeping .hero__copy--luxury {
  animation-delay: 0.05s;
}

@keyframes hero-text-glow {
  0% {
    text-shadow:
      0 8px 12px rgba(0, 0, 0, 0.25),
      0 0 8px  rgba(255, 255, 255, 0),
      0 0 30px rgba(255, 255, 255, 0),
      0 0 70px rgba(255, 255, 255, 0);
  }
  50% {
    text-shadow:
      0 2px  6px rgba(0, 0, 0, 0.05),
      0 0 8px  rgba(255, 255, 255, 1.0),
      0 0 30px rgba(255, 255, 255, 0.85),
      0 0 70px rgba(255, 255, 255, 0.50);
  }
  100% {
    text-shadow:
      0 8px 12px rgba(0, 0, 0, 0.25),
      0 0 8px  rgba(255, 255, 255, 0),
      0 0 30px rgba(255, 255, 255, 0),
      0 0 70px rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy-wrap.is-sweeping .hero__copy {
    animation: none;
  }
}

/* ========================================
   HERO INTRO ANIMATION
   ======================================== */

/* Plain background while bg image is hidden */
.hero--intro {
  background-color: #fff;
}

/* Suppress drop shadow during typewriter — animation overrides when glow starts */
.hero--intro .hero__copy {
  text-shadow: none;
}
