

.hero {
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: 480px;
  margin-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

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

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}

@media (max-width: 768px) {
  .hero__video { display: none; }
  .hero__img   { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__img   { display: block; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(var(--text-rgb), 0.55) 0%, rgba(var(--text-rgb), 0.45) 40%, rgba(var(--text-rgb), 0.80) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  font-family: var(--font-sans-en);
  font-size: var(--fs-xs);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--text-inv);
  display: block;
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-sans-ja);
  font-size: var(--fs-hero);
  font-weight: var(--fw-medium);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--text-inv);
  margin-bottom: var(--space-md);
}

.hero__desc {
  font-family: var(--font-sans-ja);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--text-inv);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  right: var(--gutter);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-sans-en);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--text-inv);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  animation: scroll-line 2s var(--ease) infinite;
}

@keyframes scroll-line {
  0%   { top: -100%; }
  100% { top: 100%; }
}

.brand-message {
  padding: var(--section-py) var(--gutter);
  background: var(--bg);
}

.brand-message__inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  text-align: center;
}

.brand-message__en {
  font-family: var(--font-serif-en);
  font-size: var(--fs-h3);
  font-style: italic;
  color: var(--accent-mid);
  display: block;
  margin-bottom: var(--space-sm);
}

.brand-message__ja {
  margin-bottom: var(--space-lg);
}

.brand-message__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 auto var(--space-lg);
}

.brand-message__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  
  width: 120%;
  margin-left: -10%;
  margin-right: -10%;
}

.brand-message__photo {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.brand-message__photo img {
  filter: sepia(0.18) saturate(0.88) brightness(0.97);
  transition: filter var(--duration-fast) var(--ease);
}
.brand-message__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--warm) 10%, transparent);
  pointer-events: none;
  border-radius: inherit;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.product-card__img { aspect-ratio: 3/4; border-radius: var(--radius-md); }
.product-card__img:hover { box-shadow: var(--shadow-md); }
.product-card__img--bottom img { object-position: center bottom; }
.product-card__img::after {
  content: '→';
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans-en);
  font-size: var(--fs-body);
  color: var(--text);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--duration-base) var(--ease), transform var(--duration-base) var(--ease);
}
.product-card:hover .product-card__img::after { opacity: 1; transform: scale(1); }
.product-card__cat { display: block; }
.product-card__name { font-size: var(--fs-h3); margin-bottom: 0.4em; }
.product-card__desc { font-size: var(--fs-sm); color: var(--text-mid); }

.craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.craft__img {
  background: var(--bg);
  font-family: var(--font-sans-en);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  color: var(--text-light);
  min-height: 360px;
  overflow: hidden;
}

.craft__body {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}
.craft__quote {
  margin-bottom: 0;
 
}

.craft__text {
  font-size: var(--fs-body);
  font-weight: var(--fw-light);
  color: var(--text-mid);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-lg);
}

.oem {
  background: var(--bg-warm);
  padding: var(--section-py) var(--gutter);
}

.oem__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.oem__label {
  font-family: var(--font-sans-en);
  font-size: var(--fs-xs);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--accent-mid);
  display: block;
  margin-bottom: 0.5em;
}

.oem__title {
  margin-bottom: 0;
 
}

.oem__text {
  font-size: var(--fs-body);
  font-weight: var(--fw-light);
  color: var(--text-mid);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-lg);
}

.oem__features { display: flex; flex-direction: column; gap: var(--space-sm); }

.oem__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.oem__feature:last-child { border-bottom: none; }

.oem__feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-sans-en);
  font-size: var(--fs-sm);
  color: var(--text-inv);
  border: 1px solid var(--accent);
}

.oem__feature-title {
  font-family: var(--font-serif-ja);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--text);
  margin-bottom: 0.3em;
  letter-spacing: var(--ls-normal);
}

.oem__feature-text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: var(--text-mid);
  line-height: var(--lh-heading);
}

.oem__actions .btn--ghost {
  color: var(--gold-brown);
  border: 1px solid var(--accent);
  background: transparent;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.news-card {
  display: block;
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease);
}

.news-card:hover { transform: translateY(-4px); }

.news-card__img {
  aspect-ratio: 3/2;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}
.news-card__img img { transform: scale(1.2); transform-origin: center; }

.news-card__body { padding: 0 var(--space-2xs); }

.news-card__date {
  font-family: var(--font-sans-en);
  font-size: var(--fs-xs);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wide);
  color: var(--text-light);
  display: block;
  margin-bottom: var(--space-2xs);
}

.news-card__title {
  font-family: var(--font-serif-ja);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text);
  line-height: var(--lh-body);
  margin-bottom: var(--space-xs);
  transition: color var(--duration-fast) var(--ease);
}

.news-card:hover .news-card__title { color: var(--accent); }

.news-card__tag {
  display: inline-block;
  font-family: var(--font-sans-en);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 0.2em 0.7em;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--text-inv);
  border: 1px solid var(--accent);
}

.news-card__tag--care { background: var(--warm-pale); color: var(--gold-brown); }

@media (max-width: 1024px) { .craft__body { padding: var(--space-lg) var(--space-md); } }
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  .hero { padding-bottom: var(--space-lg); }
  .hero__title { font-size: var(--fs-h1); }
  .hero__desc { font-size: var(--fs-sm); }
  .hero__scroll { display: none; }
}

@media (max-width: 768px) { .craft { grid-template-columns: 1fr; } }

@media (max-width: 768px)  { .craft__body { padding: var(--space-lg) var(--gutter); } }

@media (max-width: 768px) { .oem__inner { grid-template-columns: 1fr; gap: var(--space-lg); } }

@media (max-width: 768px) { .news-cards { grid-template-columns: 1fr; } }

@media (max-width: 768px) { .brand-message__photos { grid-template-columns: 1fr; width: 100%; margin-left: 0; margin-right: 0; } }

@media (max-width: 768px) { .products-grid { grid-template-columns: 1fr; } }
