/* ===================================================
   Blossom Blooms - Top Page
   =================================================== */

/* ===== Hero ===== */
.hero {
  min-height: 100svh;
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-left: 80px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.hero__catch {
  font-family: var(--font-ja);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.hero__sub {
  font-size: 20px;
  color: var(--color-text-light);
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.hero__image {
  position: absolute;
  right: -20px;
  top: var(--header-height);
  width: 52%;
  height: calc(100% - var(--header-height));
  pointer-events: none;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.8;
}

/* ===== What is Blossom Blooms? ===== */
.what-bb__lead {
  text-align: center;
  line-height: 2.3;
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 56px;
  line-height: 1.8;
}

.what-bb__tags {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.tag {
  background-color: var(--color-bg-alt);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, opacity 0.2s;
}

.tag:hover {
  background-color: var(--color-accent);
  opacity: 0.85;
}

.tag__en {
  font-family: var(--font-script);
  font-size: 30px;
}

.tag__ja {
  font-family: var(--font-ja);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* ===== Services ===== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 640px;
  margin: 0 auto;
}

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

.service-card:hover {
  opacity: 0.75;
}

.service-card img {
  width: 210px;
  height: 210px;
  object-fit: contain;
}

.service-card__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card__title-en {
  font-family: var(--font-script);
  font-size: 40px;
  font-weight: 400;
}

.service-card__title-ja {
  font-family: var(--font-ja);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-top: 4px;
}

.service-card__text {
  font-size: 20px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: calc(var(--header-height) + 48px) 24px 72px;
    min-height: 100svh;
  }

  .hero__content {
    position: relative;
    z-index: 1;
    background-color: rgba(250, 247, 242, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 32px 24px;
  }

  .hero__catch {
    font-size: 20px;
  }

  .hero__sub {
  font-size: 15px;
}

  .hero__image {
    position: absolute;
    inset: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

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

  .hero__scroll {
    bottom: 20px;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(250, 247, 242, 0.9);
  }

  .what-bb__lead {
  text-align: center;
  line-height: 2.3;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 56px;
  line-height: 1.8;
}

  .what-bb__tags {
    gap: 16px;
  }

  .tag {
    width: 96px;
    height: 96px;
  }

  .tag__en {
    font-size: 20px;
  }

  .tag__ja {
    font-size: 9px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 260px;
  }

  .service-card img {
    width: 180px;
    height: 180px;
  }

.service-card__text {
  font-size: 18px;
}

}
