/* ── Hero ── */
#hero {
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.hero-main {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 2.2rem;
  text-wrap: pretty;
}

.hero-sub {
  font-weight: 400;
  font-size: 1.05rem;
  color: #333;
  line-height: 2.1;
  letter-spacing: 0.08em;
  padding-left: 0.1em;
}

/* ── About ── */
.about-text {
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 2.2;
  color: #333;
  text-wrap: pretty;
  letter-spacing: 0.04em;
}

.about-text p+p {
  margin-top: 1.4em;
}

.about-text em {
  font-style: normal;
  color: #333;
  font-weight: 500;
}

/* ── Services ── */
.services-intro {
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 2.0;
  color: #333;
  margin-bottom: 2.4rem;
  letter-spacing: 0.04em;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--rule);
  transition: background 0.2s;
}

.service-num {
  font-size: 0.78rem;
  font-weight: 400;
  color: #bbb;
  letter-spacing: 0.1em;
  padding-top: 0.15em;
  min-width: 2rem;
}

.service-name {
  font-size: 1.02rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.service-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* ── Cafe ── */
.cafe-card {
  background: var(--linen);
  border-radius: 2px;
  padding: 2.4rem 2.6rem;
  position: relative;
  overflow: hidden;
}

.cafe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0.8;
}

.cafe-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.cafe-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 2.15;
  color: #333;
  letter-spacing: 0.04em;
  text-wrap: pretty;
}

.cafe-detail {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cafe-row {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.92rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.06em;
}

.cafe-row-label {
  color: #333;
  min-width: 4rem;
}

/* ── Stories ── */
.stories-intro {
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 2.0;
  color: #333;
  margin-bottom: 2.4rem;
  letter-spacing: 0.04em;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.story-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.story-mark {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
  margin-top: 0.9em;
  flex-shrink: 0;
}

.story-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.95;
  color: #333;
  letter-spacing: 0.04em;
}

.story-text strong {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.02rem;
}

/* ── Contact ── */
#contact {
  padding-bottom: 8rem;
}

@media (max-width: 768px) {
  #hero {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .hero-main {
    font-size: 1.35rem;
  }

  .cafe-card {
    padding: 1.8rem 1.6rem;
  }
}