/* Hero */
.hero {
  padding: 96px 0 120px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
}

.hero__title em {
  display: block;
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 500;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 460px;
  margin: 0 0 40px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual: placeholder photo panel + stamp card overlay.
   Replace the .hero__photo background with `background: url('coffee.jpg') center/cover;`
   once you have a real photograph. */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
}

.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  background: radial-gradient(
    ellipse at 70% 30%,
    #e7d6bf 0%,
    #c9b196 45%,
    #8f7359 100%
  );
  box-shadow: var(--shadow);
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 240, 220, 0.35) 0%,
    rgba(255, 240, 220, 0) 40%,
    rgba(40, 24, 12, 0.15) 100%
  );
}

.stamp-card {
  position: absolute;
  left: -8%;
  bottom: 8%;
  width: 56%;
  background: #fbf6ec;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 30px 60px -20px rgba(31, 23, 20, 0.35);
  font-family: "Inter", sans-serif;
}

.stamp-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.stamp-card__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e6ecd9;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 16px;
  color: var(--sage-deep);
}

.stamp-card__label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.stamp-card__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.stamp {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ece4d3;
}

.stamp--filled {
  background: var(--sage);
}

.stamp-card__footnote {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  text-align: center;
  padding-top: 6px;
  border-top: 1px solid rgba(31, 23, 20, 0.06);
}

/* Features section */
.features {
  background: var(--ink-soft);
  color: var(--on-dark);
  padding: 110px 0 130px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.feature__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin: 0 0 28px;
}

.feature__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 48px;
  color: var(--on-dark);
}

.feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}

.feature__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 223, 211, 0.12);
  font-size: 16px;
  color: var(--on-dark);
  line-height: 1.55;
}

.feature__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.feature__list .num {
  font-family: "Fraunces", serif;
  color: var(--on-dark-faint);
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media (max-width: 960px) {
  .hero {
    padding: 64px 0 80px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero__visual {
    max-height: 520px;
  }

  .features {
    padding: 80px 0 90px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }
}

@media (max-width: 520px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .stamp-card {
    width: 70%;
  }
}

/* On the landing page the dark features section sits flush above the footer.
   Lift the footer's top border and the cream background it brings, so the
   transition is dark→cream→dark only where intended (between sections). */
.landing .site-footer {
  border-top: 0;
  margin-top: 0;
}
