/* ============================================
   Home page (TOP) - faithful Figma rebuild
   ============================================ */

/* ===== Scroll reveal animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  overflow: hidden;
  background: #efeae1;
}
.hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
}

/* Hero nav buttons (prev / next) */
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #434243;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base), transform var(--t-base);
}
.hero__nav:hover { background: rgba(255, 255, 255, 0.7); }
.hero__nav:focus-visible { outline: 2px solid #434243; outline-offset: 2px; }
.hero__nav svg { width: 22px; height: 22px; }
.hero__nav--prev { left: 16px; }
.hero__nav--next { right: 16px; }
@media (min-width: 768px) {
  .hero__nav { width: 56px; height: 56px; }
  .hero__nav--prev { left: 32px; }
  .hero__nav--next { right: 32px; }
  .hero__nav svg { width: 26px; height: 26px; }
}

/* Hero dots */
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-base);
}
.hero__dot:hover { background: rgba(255, 255, 255, 0.85); }
.hero__dot:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.hero__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}
@media (min-width: 768px) {
  .hero__dots { bottom: 32px; }
  .hero__dot { width: 12px; height: 12px; }
}
.hero__logo-overlay {
  position: absolute;
  top: 24px; left: 24px;
  width: 130px;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero__logo-overlay { top: 95px; right: 80px; left: auto; width: 170px; }
}

/* ===== Rakuten / Yahoo banner row ===== */
.banner-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) { .banner-row { grid-template-columns: 1fr 1fr; } }

.banner {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 160px;
  overflow: hidden;
  transition: opacity var(--t-base);
}
@media (min-width: 768px) { .banner { height: 222px; } }
.banner:hover { opacity: 0.85; }
.banner--rakuten { background: #a2a595; }
.banner--yahoo   { background: #d2d5c4; }
.banner img {
  width: auto; height: auto;
  max-width: 50%; max-height: 70%;
  object-fit: contain;
}

/* ===== Heritage (structured) ===== */
.heritage {
  background: #fff;
  padding: 62px 0 86px;
}
@media (max-width: 767px) { .heritage { padding: 56px 0 64px; } }

.heritage__container { display: flex; flex-direction: column; gap: 29px; max-width: 1200px; margin: 0 auto; padding: 0 var(--container-pad-mobile); }
@media (min-width: 768px) { .heritage__container { padding: 0 var(--container-pad-desktop); } }

/* Section header */
.heritage__head { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.heritage__eyebrow {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.32em;
  color: #8f8d86;
  line-height: 20px;
}
.heritage__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.04em;
  color: #434243;
  line-height: 1.5;
}
@media (max-width: 767px) { .heritage__title { font-size: 28px; } }
.heritage__tagline {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #434243;
  line-height: 1.8;
}

/* Block (image + text) */
.heritage__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .heritage__block { grid-template-columns: 1fr 1fr; gap: 80px; }
  .heritage__block--reverse > .heritage__text { order: 2; }
}

.heritage__text { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.heritage__block-eyebrow {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.24em;
  color: #8f8d86;
}
.heritage__num {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-serif);
  color: #434243;
  letter-spacing: 0.04em;
  margin: 0;
}
.heritage__num-main {
  font-size: 72px;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: 0.04em;
}
.heritage__num-main--small { font-size: 56px; line-height: 80px; }
.heritage__num-suffix, .heritage__num-prefix {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 24px;
}
@media (max-width: 767px) {
  .heritage__num-main { font-size: 56px; line-height: 64px; }
  .heritage__num-main--small { font-size: 40px; line-height: 64px; }
}
.heritage__divider { display: block; width: 32px; height: 1px; background: #434243; }
.heritage__block-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.16em;
  color: #434243;
  line-height: 28px;
}
.heritage__block-body {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #434243;
  line-height: 26px;
}

.heritage__image {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  padding: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 767px) { .heritage__image { aspect-ratio: 4 / 3; } }
.heritage__image--c1 { background-color: #c9c3b3; }
.heritage__image--c2 { background-color: #b8b09b; aspect-ratio: 15 / 14; }
.heritage__image--c3 { background-color: #d8d3c5; }

/* Media strip */
.heritage__media-strip {
  background: #f8f7f5;
  border-radius: 40px;
  padding: 20px 40px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 24px 48px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: #434243;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.heritage__media-eyebrow {
  color: #8f8d86;
  font-size: 16px;
  letter-spacing: 0.24em;
}
@media (max-width: 767px) { .heritage__media-strip { padding: 16px 24px; gap: 12px 24px; } }

/* Sustainability */
.heritage__sustainability {
  background: #faf9f8;
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .heritage__sustainability {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 48px 80px;
  }
}
@media (max-width: 767px) { .heritage__sustainability { padding: 32px 24px; gap: 32px; } }

.heritage__sus-text { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.heritage__sus-eyebrow {
  white-space: pre;
}
.heritage__sus-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 0.04em;
  color: #434243;
  line-height: 64px;
}
@media (max-width: 767px) { .heritage__sus-title { font-size: 36px; line-height: 1.3; } }
.heritage__sus-lead {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #434243;
  line-height: 26px;
}
.heritage__sus-body {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #434243;
  line-height: 22px;
}

.heritage__sdgs-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  justify-self: center;
}
@media (max-width: 767px) {
  .heritage__sdgs-logo { max-width: 240px; margin: 0 auto; }
}

/* ===== Service (structured) ===== */
.service {
  background: #ecebe6;
  padding: 80px 0;
}
@media (max-width: 767px) { .service { padding: 56px 0; } }

.service__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex; flex-direction: column;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1023px) { .service__container { padding: 0 40px; gap: 48px; } }
@media (max-width: 767px)  { .service__container { padding: 0 20px; gap: 40px; } }

/* Section header */
.service__head { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.service__eyebrow {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.32em;
  color: #8f8d86;
  line-height: 20px;
}
.service__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.04em;
  color: #434243;
  line-height: 1.5;
}
@media (max-width: 767px) { .service__title { font-size: 28px; } }
.service__tagline {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #434243;
  line-height: 1.8;
}

.service__head-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding: 14px 32px;
  background: #fff;
  border: 1px solid #434243;
  border-radius: 999px;
  font-family: var(--font-zen);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #434243;
  transition: background var(--t-base), color var(--t-base);
}
.service__head-btn:hover {
  opacity: 1;
  background: #434243;
  color: #fff;
}

/* Bubble */
.service__bubble {
  background: #f9f8f4;
  border-radius: 24px;
  padding: 24px;
  width: 100%;
  display: flex; flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) { .service__bubble { padding: 16px; gap: 12px; } }

.service__row {
  display: grid;
  gap: 16px;
}
@media (max-width: 767px) { .service__row { gap: 12px; } }

.service__row--3 {
  grid-template-columns: repeat(3, 1fr);
}
.service__row--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: calc(66.666% - 16px / 3);
  margin: 0 auto;
  width: calc(66.666%);
}

@media (max-width: 1023px) {
  .service__row--3 { grid-template-columns: repeat(2, 1fr); }
  .service__row--2 { grid-template-columns: repeat(2, 1fr); width: 100%; max-width: none; }
}
@media (max-width: 639px) {
  .service__row--3,
  .service__row--2 { grid-template-columns: 1fr; width: 100%; max-width: none; }
}

/* Service card */
.svc-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex; flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(67, 66, 67, 0.08);
}
.svc-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}
.svc-card__link-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.svc-card__head {
  display: flex;
  justify-content: center;
  width: 100%;
}
.svc-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.16em;
  line-height: 22px;
  color: #434243;
  margin: 0;
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background-color: #e5e2d8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.svc-card__woes {
  background: #f5f4ef;
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
  text-align: left;
  display: flex; flex-direction: column;
  gap: 4px;
  font-family: var(--font-serif);
  color: #434243;
  font-size: 16px;
  line-height: 18px;
  margin-top: auto;
  min-height: 84px;
}
.svc-card__woes p { margin: 0; }
.svc-card__woes-label {
  font-weight: 500;
  color: #8f8d86;
  font-size: 16px;
  letter-spacing: 0.08em;
}

/* Specialists header */
.service__spec-head {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.service__spec-en {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.16em;
  color: #434243;
}
.service__spec-line {
  display: block;
  width: 40px; height: 1px;
  background: #8f8d86;
}
.service__spec-jp {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.24em;
  color: #8f8d86;
}

/* Specialists row */
.service__spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
@media (max-width: 1023px) { .service__spec-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .service__spec-row { grid-template-columns: 1fr; } }

.spec-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  text-align: left;
  box-shadow: 0 2px 10px rgba(67, 66, 67, 0.04);
}
.spec-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.spec-card__tag {
  align-self: flex-start;
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #c0bcb4;
  border-radius: 14px;
  font-family: var(--font-zen);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #8f8d86;
  white-space: nowrap;
}
.spec-card__photo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: #f5f4ef;
  border: 1px solid #e5e2d8;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.spec-card__photo > svg {
  width: 60%;
  height: 60%;
  fill: #c0bcb4;
}
.spec-card__photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .spec-card__photo { width: 90px; height: 90px; }
}
.spec-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #434243;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spec-card__text {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #8f8d86;
  line-height: 1.7;
  margin: 0;
}

/* ===== Product Lineup ===== */
.product-lineup {
  background: #f3f1ee;
  padding: 72px 0;
}
@media (min-width: 768px) { .product-lineup { padding: 100px 0; } }

.product-lineup__title {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: 56px;
}
@media (min-width: 768px) { .product-lineup__title { margin-bottom: 72px; } }
.product-lineup__title .eyebrow {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.32em;
  color: #8f8d86;
  line-height: 20px;
}
.product-lineup__title h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.04em;
  color: #434243;
  line-height: 1.5;
}
.product-lineup__title p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #434243;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

/* Product grid: 2/3/5 columns based on screen */
.product-lineup__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) { .product-lineup__grid { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; } }
@media (min-width: 1024px) { .product-lineup__grid { grid-template-columns: repeat(5, 1fr); gap: 32px 24px; } }

/* Product card */
.product-card {
  text-align: center;
}
.product-card__link {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform var(--t-base);
  cursor: pointer;
}
.product-card__link:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.product-card__link:hover .product-card__photo img {
  transform: scale(1.05);
}
.product-card__photo {
  display: block;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(67, 66, 67, 0.04);
}
.product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.16em;
  color: #434243;
}
.product-card__link {
  gap: 20px;
}

/* ============================================
   Store Info — clean Flexbox rebuild (Figma 6118:2)
   ============================================ */
.store {
  background: #f9f8f5;
  overflow: hidden;
  padding: 70px 0;
}

/* Inner: 2-column flex on desktop, single col on mobile */
.store__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

/* === Left column === */
.store__left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}

.store__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 60px;
}
.store__eyebrow {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.32em;
  color: #8f8d86;
}
.store__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.04em;
  color: #434243;
  line-height: 1.5;
  margin: 0;
}
.store__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #434243;
  margin: 0;
}

.store__photo {
  width: 100%;
  max-width: 652px;
  height: auto;
  aspect-ratio: 652 / 320;
  object-fit: cover;
  align-self: flex-start;
}

/* === Right column === */
.store__right {
  flex: 1 1 50%;
  position: relative;
  padding: 10px 0 130px 40px;
}

/* Decorative Japan map - behind everything */
.store__map {
  position: absolute;
  top: 0;
  right: 110px;
  width: 541px;
  height: 541px;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.store__lead {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 38px;
  color: #434243;
  margin: 0 0 48px;
}

.store__shops {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 28px;
}
.store__shop-row {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #434243;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  line-height: 1.8;
  white-space: nowrap;
}
.store__shop-row a {
  color: #434243;
  padding: 2px 4px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background var(--t-base), opacity var(--t-base);
}
.store__shop-row a:hover {
  opacity: 1;
  background: rgba(67, 66, 67, 0.08);
}
.store__shop-row a:focus-visible {
  outline: 2px solid #434243;
  outline-offset: 2px;
}
.store__sep {
  color: #cfccc2;
  user-select: none;
  font-family: var(--font-serif);
  font-size: 16px;
}

.store__more {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.16em;
  color: #434243;
  padding: 4px 0;
  transition: opacity var(--t-base);
}
.store__more:hover { opacity: 0.6; }
.store__more-line {
  display: block;
  width: 60px; height: 1px;
  background: #434243;
}

/* Badge: absolute at right-bottom of right column */
.store__badge {
  position: absolute;
  right: 80px;
  bottom: 0;
  z-index: 3;
  width: 120px;
  height: 120px;
  border: 1px solid #434243;
  border-radius: 60px;
  background: #f9f8f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  padding: 12px 8px;
  gap: 2px;
}
.store__badge-cap {
  font-size: 16px;
  letter-spacing: 0.16em;
  color: #434243;
  line-height: 14px;
}
.store__badge-num {
  font-size: 36px;
  line-height: 44px;
  color: #434243;
  letter-spacing: 0.04em;
}

/* ===== Tablet & Mobile (≤1023px) ===== */
@media (max-width: 1023px) {
  .store {
    padding: 56px 0;
  }
  .store__inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }
  .store__left,
  .store__right {
    flex: 1 1 auto;
    width: 100%;
  }
  .store__left {
    gap: 32px;
  }
  .store__title { padding: 0; }
  .store__photo {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
  .store__right {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .store__map {
    top: auto;
    bottom: 0;
    right: -20px;
    width: 200px;
    height: 200px;
    opacity: 0.18;
  }
  .store__lead {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 32px;
  }
  /* Badge: switch from absolute to flow, right-align */
  .store__badge {
    position: static;
    align-self: flex-end;
    margin-top: 24px;
    width: 96px;
    height: 96px;
  }
  .store__badge-num {
    font-size: 28px;
    line-height: 32px;
  }
}

/* ===== News ===== */
.news {
  background: #f9f8f5;
  padding: 72px 0;
}
@media (min-width: 768px) { .news { padding: 100px 0; } }

.news__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .news__inner { grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
}
.news__title .eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.24em;
  color: #8f8d86;
  margin-bottom: 8px;
}
.news__title h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 48px);
  letter-spacing: 0.04em;
  color: #434243;
}

.news__list {
  display: flex; flex-direction: column; gap: 0;
  align-items: stretch;
}
.news__item {
  display: flex; gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #cfccc2;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #434243;
}
@media (max-width: 767px) { .news__item { flex-direction: column; gap: 4px; } }
.news__item time {
  flex-shrink: 0;
  width: 100px;
  letter-spacing: 0.06em;
}

.news__view-all {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 24px;
  align-self: flex-start;
  padding: 14px 40px;
  border: 1px solid #434243;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.16em;
  color: #434243;
  transition: opacity var(--t-base), background var(--t-base), color var(--t-base);
}
.news__view-all:hover { opacity: 1; background: #434243; color: #fff; }

